@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto-Medium';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
}
body {
  font-family: Roboto-Regular !important;
  color: #333;
}

html
{
    position: relative;
    min-height: 100%;
}

* {
	margin: 0 auto;
}

form
{
    display: inline;
}

a:focus,
a:active {
	outline: none;
	color: #428BCA;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-padding-sides {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.no-padding-left {
	padding-left: 0 !important;
}

.no-padding-right {
	padding-right: 0 !important;
}

/* TOPBAND */

.topband {
	padding: 10px 0;
	background: #f96503;
	text-transform: uppercase;
	font-size: 12px;
	color: #FFF;
	letter-spacing: .7px;
}

	.topband p {
		margin: 0;
	}

	.topband a {
		color: #FFF;
		font-weight: bold;
	}

	.topband button {
		background: transparent;
		border: none;
		font-weight: bold;
		font-size: 20px;
	}

    .topband .user-links
    {
        margin: 0;
        padding: 0;
    }

        .topband .user-links li
        {
            display: inline-block;
            padding: 0 10px;
            border-right: 1px solid #fc9e60;
        }

        .topband .user-links li:first-child
        {
            padding-left: 0;
        }

        .topband .user-links li:last-child
        {
            border: none;
        }

/* HEADER */

header {
	padding: 30px 0;
	background: #f2e118;
}

	header .tagline {
		margin: 10px 0 0 0;
	}

	header .tagline img {
		margin: 1px 10px 0 0;
		float: left;
	}

	header .tagline p {
		float: left;
		margin: 0;
		font-size: 1.563em;
		font-weight: 600;
		color: #191919;
	}

/* NAVIGATION */

.navbar {
	border-radius: 0;
	position: relative;
	z-index: 9999;
}

.main-nav li
{
    margin: 10px 0;
}

/* Mabuhay Modal */
.mabuhay-modal .modal-dialog {
    width: 56%;
    position: relative;
    margin: 120px auto;
}
.mabuhay-modal .modal-dialog .modal-content img {
    max-width: 100%;
}
.mabuhay-modal .modal-dialog .modal-content .btn-close {
    background-color: #f2e118;
    border: none;
    margin: 15px 15px 0px 15px;
    padding: 6px 16px;
    font-weight: 600;
    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}
.mabuhay-modal .modal-dialog .modal-content .btn-close:hover {
    background-color: #333;
    color: #f2e118;
}
/* BANNER */
.banner {
    padding: 56px 0 0 0;
    background: #f2e118 url(../../docs/assets/img/bg_banner.png);
    background-size: cover;
    border-top: 1px solid #fbf287;
}

.mabuhay-content {
    border-top: 1px dashed rgba(0, 0, 0, .16);
    width: 95%;
    margin: 0px;
}
.mabuhay-content h2 {
    font-size: 14px;
    margin: 14px 0px;
    font-weight: 600;
}
.mabuhay-content h2 span {
    color: #e61212;
}
.mabuhay-content ul {
    padding: 0px 0px 16px 0px;
    list-style-type: none;
}
.mabuhay-content ul li:before{
    content: "- ";
}
.note-welcome {
    margin: 0px;
	color: #191919;
}

	.note-welcome h1 {
		padding: 0;
		margin: 0;

		font-size: 2.813em;
		font-weight: 300;
	}

	.note-welcome b {
		font-weight: 400;
	}

	.note-welcome p {
		width: 95%;
		margin: 16px 0 16px 0;
		line-height: 22px;
	}

	.note-welcome .btn-reg,
	.note-welcome .btn-log,
    .note-welcome .btn-logout {
		display: inline-block;
		margin: 0 5px 0 0;
		padding: 10px 30px;
		border: 1px solid #191919;
		font-size: 15px;
		color: #191919;
        text-transform: uppercase;
	}

	.note-welcome .btn-reg:hover,
	.note-welcome .btn-reg:focus,
	.note-welcome .btn-log:hover,
	.note-welcome .btn-log:focus,
    .note-welcome .btn-logout:hover,
    .note-welcome .btn-logout:focus {
		color: #FFF;
		text-decoration: none;
	}

    .note-welcome .btn-reg:focus,
    .note-welcome .btn-log:focus,
    .note-welcome .btn-logout:focus
    {
        background: #191919;
    }

	.note-welcome .btn-reg span:before {
		content: url(../../docs/assets/img/icon_reg.png);
		display: inline-block;
		position: relative;
		top: 3px;
		margin: 0 10px 0 0;
	}

    .note-welcome .btn-reg:focus span:before
    {
        content: url(../../docs/assets/img/icon_reg_hover.png);
    }

	.note-welcome .btn-reg:hover span:before {
		content: url(../../docs/assets/img/icon_reg_hover.png);
	}

	.note-welcome .btn-log span:before {
		content: url(../../docs/assets/img/icon_log.png);
		display: inline-block;
		position: relative;
		top: 3px;
		margin: 0 10px 0 0;
	}

    .note-welcome .btn-log:focus span:before
    {
        content: url(../../docs/assets/img/icon_log_hover.png);
    }

	.note-welcome .btn-log:hover span:before {
		content: url(../../docs/assets/img/icon_log_hover.png);
	}

	.note-welcome .btn-logout span:before {
		content: url(../../docs/assets/img/icon_logout.png);
		display: inline-block;
		position: relative;
		top: 3px;
		margin: 0 10px 0 0;
	}

    .note-welcome .btn-logout:focus span:before
    {
        content: url(../../docs/assets/img/icon_logout_hover.png);
    }

	.note-welcome .btn-logout:hover span:before {
		content: url(../../docs/assets/img/icon_logout_hover.png);
	}


/* NEWSTICKER */

.newsticker {
	padding: 15px 0;
	background: #f5f5f5;
	border-bottom: 1px solid #e0e0e0;
}

	.newsticker b {
		padding: 0 25px 0 0;
		border-right: 2px solid #e0e0e0;
		font-weight: 500;
	}

.ticker-panel {
	margin: 1px 0 0 0;
	width: 100%;
	float: right; 
}

	.ticker-panel #newscontent {
		width: 80%;
		overflow: hidden;
		height: 20px;
	}

	.ticker-panel #controls {
		margin: 1px 0 0 0;
	}

	.ticker-panel #controls a {
		text-decoration: none;
	}

	.ticker-panel #controls img {
		opacity: 0.4;
		filter: alpha(opacity=40);
	}

	.ticker-panel #controls img:hover {
		opacity: 1;
		filter: alpha(opacity=100);
	}

	.ticker-panel #news a {
		color: #333;
		text-decoration: none;
	}

	.ticker-panel #news a span {
        margin-left: 8px;
		padding: 3px 5px;
		background: #e0e0e0;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
		        border-radius: 3px;
		font-size: 10px;
		font-weight: 500;
		color: #999;
        text-transform: uppercase;
	}

#ticker_container {
	width: 100%;
	font-size: 13px;
}

.news-item {

}

	.news-item h1 {
		text-transform: uppercase;
	}

	.news-item span {
		font-size: 12px;
		color: #999;
		text-transform: uppercase;
	}

/* BANNER AD */

.banner-ad-hr {
	margin: 20px 0 0 0;
	text-align: center;
}

.banner-ad-vr img {
	max-width: 100%;
}

#ads {

}

	#ads table {
		border: 1px solid #ddcd14;
	}

	#ads table th,
	#ads table td {
		padding: 10px;
	}

	#ads table th {
		background: #333;
		border-right: 1px solid #666;
		text-align: center;
		text-transform: uppercase;
		color: #FFF;
	}

	#ads table td {
		background: #f2e118;
		border-right: 1px solid #ddcd14;
		border-bottom: 1px solid #ddcd14;
		font-size: 12px;
		text-align: center;
	}

	#ads .btn-close,
	#box-details .btn-close,
    #forgot-pass .btn-close {
		padding: 10px 15px 0 0;
		background: transparent;
		border: none;
		font-weight: bold;
	}

	#ads p,
	#box-details h1 {
		padding: 20px 10px;
		background: #f8f8f8;
		border-top: 1px dashed #e0e0e0;
		border-bottom: 1px dashed #e0e0e0;
		font-size: 16px;
	}

	#box-details h1 {
		letter-spacing: .5px;
	}


/* MAIN CONTENT */

.main-content {
	padding: 50px 0 50px 0;
}

	.main-content a:hover {
		color: #428BCA;
	}

	.main-content h1 {
		margin: 0 0 20px 0;
		font-size: 22px;
		font-weight: 500;
	}

	.main-content p {
		margin: 15px 0;
		line-height: 22px;
	}

	.main-content ol {
		padding: 10px 0 0 0;
		margin: 0 0 0 15px;
	}

	.main-content ol li {
		margin: 0 0 8px 0;
	}

	.main-content ol li a {

	}

/* SUB CONTENT */

.sub-content {
	padding: 0 5% 0 0;
}

	.sub-content h1 {

	}

	.sub-content p {
		line-height: 22px;
	}

	.sub-content ol {
		padding: 0;
	}

	.sub-content ol {
		list-style: disc;
	}

		.sub-content ol ul li {
			margin: 0 0 3px 0;
		}

	.sub-content .ul-services {
		padding: 0;
		list-style: none;
	}

		.sub-content .ul-services li {
			margin: 10px 0;
		}

		.sub-content .ul-services li img {
			width: 10%;
			margin-right: 10px;
		}

.tag-new
{
    padding: 0px 8px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: bottom;
    background: #F96503;
    font-size: 11px;
    font-weight: bold;
    color: #FFF;
    letter-spacing: 1px;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

	.sub-content img {
		max-width: 100%;
	}

	.sub-content .faq-answer {
		padding: 0 0px 10px 0px;
		color: #888;
		border-bottom: 1px dashed #DDD;
	}

	.sub-content .faq-contact {
		width: 90%;
		font-size: 26px;
		font-weight: 300;
		line-height: 34px;
		text-align: center;
		color: #666;
	}

	.page-title-about {
		background: url(../../docs/assets/img/about1.jpg) 50% 30%;
	}

	.page-title-about h1,
	.page-title-services h1 {
		margin: 0;
		padding: 50px 0;
		text-shadow: 5px 2px 5px rgba(0,0,0,0.2);
		font-size: 30px;
		color: #FFF;
		letter-spacing: 1px;
	}

	.sub-content .contact-form {
		margin: 50px 0 0 0;
	}

		.sub-content .contact-form input[type="text"],
		.sub-content .contact-form input[type="email"],
		.sub-content .contact-form textarea {
			padding: 10px;
			width: 100%;
			border-top: none;
			border-bottom: 1px solid #CCC;
			border-right: none;
			border-left: none;
			color: #999;
		}

		.sub-content .contact-form input[type="text"]:focus,
		.sub-content .contact-form input[type="email"]:focus,
		.sub-content .contact-form textarea:focus {
			border-bottom: 1px solid #f96503;
			color: #666;
		}

		.sub-content .contact-form input[type="submit"] {
			margin: 0 auto;
			padding: 10px 20px;
			display: block;
			background: transparent;
			border: 1px solid #333;
			font-weight: normal;
			color: #333;
			letter-spacing: 1px;

			-webkit-transition: .3s all;
			   -moz-transition: .3s all;
			        transition: .3s all;
		}

		.sub-content .contact-form input[type="submit"]:hover,
		.sub-content .contact-form input[type="submit"]:focus {
			background: #333;
			color: #FFF;

			-webkit-transition: .3s all;
			   -moz-transition: .3s all;
			        transition: .3s all;
		}

/* STEP-BY-STEP */

.step-by-step {

}

	.step-by-step .step-header {

	}

		.step-by-step .step-header p {
			padding: 10px 0;
			background: #f8f8f8;
			border-top: 1px dashed #e0e0e0;
			border-bottom: 1px dashed #e0e0e0;
			font-size: 13px;
			color: #888;
			text-align: center;
			letter-spacing: .5px;
		}

		.step-by-step .step-header h1 {
			margin: 0 0 10px 0;
			text-align: center;
		}

	.step-by-step .step-footer {
		padding: 15px 30px;
		background: #f8f8f8;
		border-top: 1px dashed #e0e0e0;
		border-bottom: 1px dashed #e0e0e0;
		color: #888;
	}

		.step-by-step .step-footer p {
			margin: 0;
			font-size: 13px;
			line-height: 20px;
			text-align: center;
		}

	.step-by-step .step-body {
		margin: 50px 0;
	}

		.step-by-step .step-body img {
			margin: 0 auto;
			display: block;
		}


/* ASIDE */

aside {
	padding: 30px;
	margin-bottom: 20px;
	background: #f8f8f8;
	border: 1px solid #eee;
	color: #777;
}

	.hr {
		width: 100%;
		height: 1px;
		background: #e5e5e5;
	}

.newsfeeds {
	background: #f8f8f8;
	border: 1px solid #eee;	
	color: #777;
}

	.panel {
		box-shadow: none !important;
		-webkit-border-radius: 0 !important;
		   -moz-border-radius: 0 !important;
		        border-radius: 0 !important;
	}

    .newsfeeds .news-date
    {
        width: 60px;
        height: 60px;
        margin-right: 20px;
        padding-top: 11px;
        background: #FFF;
        border: 1px solid #e9e9e9;
        text-align: center;

		-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
		        border-radius: 50%;
    }

        .newsfeeds .news-date .txt-month
        {
            display: block;
            font-weight: bold;
            color: #AAA;
        }

        .newsfeeds .news-date .txt-day
        {
            display: block;
            font-size: 22px;
            color: #AAA;
            line-height: 15px;
        }

	.newsfeeds .demo1 {
		height: 100% !important;
	}

	.newsfeeds .pagination > li > a,
	.newsfeeds .pagination > li > span {
		padding: 3px 5px 0 5px;
		color: #AAA !important;
		border: none;
		background: transparent;
	}

	.newsfeeds .pagination > li > a:hover,
	.newsfeeds .pagination > li > span:hover {
		color: #999 !important;
	}

	.newsfeeds .pagination > li:first-child > a,
	.newsfeeds .pagination > li:first-child > span {
		-webkit-border-radius: 0 !important;
		   -moz-border-radius: 0 !important;
		        border-radius: 0 !important;	
	}

	.newsfeeds .pagination > li:last-child > a,
	.newsfeeds .pagination > li:last-child > span {
		-webkit-border-radius: 0 !important;
		   -moz-border-radius: 0 !important;
		        border-radius: 0 !important;
	}

	.newsfeeds .panel-footer {
		border-top: 1px solid #e5e5e5;
	}

.news-item table td br
{
    display: none;
}

/* FOOTER FILLER */

.footer-filler {
	padding: 60px 0;
	background: #111 url(../../docs/assets/img/bg_footer.png) center 60%;
	background-size: cover;
}

.footer-filler h1 {
	margin: 0 0 20px 0;
	font-size: 22px;
	font-weight: 500;
	color: #f2e118;
}

.footer-filler article {
	margin: 0 0 30px 0;
	color: #AAA;
}

.footer-filler .info-shipment ul {
	padding: 0;
	margin: 0;
}

	.footer-filler .info-shipment ul li {
		display: inline-block;
	}

	.footer-filler .info-shipment ul li:first-child {
		width: 35%;
		vertical-align: top;
	}

	.footer-filler .info-shipment ul li:last-child {
		width: 45%;
		padding-left: 5%;
		border-left: 1px solid #999;
		font-weight: 500;
	}

.footer-filler .note {
	width: 60%;
	margin: 0;
	font-size: 13px;
	color: #777;
}

.footer-filler a {
	display: inline-block;
	margin: 115px 0 0 0;
	color: #f2e118;
	font-weight: 500;
}

	.footer-filler a:hover {
		text-decoration: none;
	}

	.footer-filler a:before {
		content: url(../../docs/assets/img/icon_howto.png);
		display: inline-block;
		position: relative;
		top: 7px;
		margin-right: 10px;
		transform: rotate(0deg);
		transition: all 3s;
	}

	.footer-filler a:hover:before {
		transform: rotate(360deg);
		transition: all 3s;
	}

/* FOOTER */

footer {
	padding: 30px 0;
	background: #f5f5f5;
	font-size: 13px;
	color: #888888;
}

	footer p {
		margin: 0;
	}

	footer ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}

	footer ul li {
		display: inline-block;
		padding: 0 15px;
		border-right: 1px solid #e0e0e0;
	}

	footer ul li:last-child {
		padding-right: 0;
		border-right: none;
	}

	footer ul li a {
		font-size: 13px;
		color: #888;

		-webkit-transition: all .3s;
		   -moz-transition: all .3s;
		        transition: all .3s;
	}

	footer ul li a:hover {
		text-decoration: none;
		color: #555;

		-webkit-transition: all .3s;
		   -moz-transition: all .3s;
		        transition: all .3s;
	}


/* LOGIN */

.bg-login
{
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(../../docs/assets/img/bg_login.jpg) no-repeat;
    background-size: cover;
    letter-spacing: .2px;
}

.logo-holder
{
    padding: 20px 0 0 20px;
}

.login-holder
{
    width: 360px;
    margin: 3% auto 0 auto;
}

    .login-holder h1
    {
        margin: 0 0 10px 0;
        font-size: 50px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .login-holder h1 span
    {
        display: inline-block;
        margin-left: 5px;

        -webkit-transform: rotate(10deg);
           -moz-transform: rotate(10deg);
                transform: rotate(10deg);
    }

    .login-holder a
    {
        color: #333;
        font-weight: 700;
    }

.login-wrapper
{
    padding: 40px;
    margin-top: 20px;
    background: #FFF;
    box-shadow: 0 5px 8px rgba(0,0,0,0.2);

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

    .login-wrapper label
    {
        font-weight: normal;
    }

    .login-wrapper input[type="text"],
    .login-wrapper input[type="password"]
    {
        width: 100%;
        padding: 10px;
        margin: 5px 0 10px 0;
        background: #fbfbfb;
        border: 1px solid #E0E0E0;
        color: #AAA;

        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;
    }

        .login-wrapper input[type="text"]:focus,
        .login-wrapper input[type="password"]:focus
        {
            background: #FFF;
            border: 1px solid #CCC;
            color: #555;
        }

    .login-wrapper input[type="submit"]
    {
        width: 100%;
        padding: 15px;
        margin-top: 5px;
        background: #1888de;
        border: none;
        color: #FFF;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;

        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

        .login-wrapper input[type="submit"]:hover,
        .login-wrapper input[type="submit"]:focus
        {
            background: #333;

            -webkit-transition: all .3s;
               -moz-transition: all .3s;
                    transition: all .3s;
        }

.login-control-holder
{
    width: 400px;
    margin: 20px auto 0 auto;
}

    .login-control-holder a
    {
        color: #333;
    }

    .login-control-holder .btn-forget
    {

    }

    .login-control-holder .btn-back:before
    {
        content: url(../../docs/assets/img/back_arrow.png);
        position: relative;
        top: 2px;
        left: 0;
        margin-right: 10px;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

    .login-control-holder .btn-back:hover
    {
        text-decoration: none;
    }

    .login-control-holder .btn-back:hover:before
    {
        left: -3px;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

    .login-footer
    {
        position: absolute;
        bottom: 0;
        z-index: 9999;
        width: 100%;
        height: 50px;
        padding: 15px 0;
        background: #191919;
    }

        .login-footer p
        {
            padding: 0;
            margin: 0;
            color: #666;
        }

	    .login-footer ul {
		    padding: 0;
		    margin: 0;
		    list-style: none;
	    }

	    .login-footer ul li {
		    display: inline-block;
		    padding: 0 15px;
		    border-right: 1px solid #444;
	    }

	    .login-footer ul li:last-child {
		    padding-right: 0;
		    border-right: none;
	    }

	    .login-footer ul li a {
		    font-size: 13px;
		    color: #666;

		    -webkit-transition: all .3s;
		       -moz-transition: all .3s;
		            transition: all .3s;
	    }

	    .login-footer ul li a:hover {
		    text-decoration: none;
		    color: #888;

		    -webkit-transition: all .3s;
		       -moz-transition: all .3s;
		            transition: all .3s;
	    }

#forgot-pass
{
    color: #888;
    z-index: 99999;
    letter-spacing: .5px;
}

    #forgot-pass h1
    {
        margin-bottom: 10px;
        font-size: 25px;
        font-weight: 300;
    }

    #forgot-pass p
    {
        width: 70%;
        font-weight: 300;
    }

    #forgot-pass input[type="text"]
    {
        width: 100%;
        padding: 10px;
        margin: 5px 0 10px 0;
        background: #fbfbfb;
        border: 1px solid #E0E0E0;
        color: #AAA;

        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;
    }

        #forgot-pass input[type="text"]:focus
        {
            background: #FFF;
            color: #555;
        }

    #forgot-pass input[type="button"]
    {
        padding: 10px 15px;
        background: #1888de;
        border: none;
        color: #FFF;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;

        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

        #forgot-pass input[type="button"]:hover,
        #forgot-pass input[type="button"]:focus
        {
            background: #333;

            -webkit-transition: all .3s;
               -moz-transition: all .3s;
                    transition: all .3s;
        }

    #forgot-pass .modal-footer
    {
        margin-top: 30px;
        background: #EEE;
        text-align: left;
        color: #999;
    }

        #forgot-pass .modal-footer a
        {
            font-weight: bold;
            color: #999;
        }


/* REGISTER */

.bg-register
{
    background: #fbfbfb;
}

.header-reg
{
    padding: 15px 0;
    background: #f2e118;
    border-bottom: 2px solid #d7c813;
}

    .header-reg .btn-signin-reg
    {
        display: block;
        padding: 5px 10px;
        background: #333;
        color: #FFF;

        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

    .header-reg .btn-signin-reg:hover,
    .header-reg .btn-signin-reg:focus
    {
        background: #555;
        text-decoration: none;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

    .header-reg .btn-back
    {
        display: block;
        margin: 5px 0 0 0;
        color: #333;
        text-decoration: none;
    }

    .header-reg .btn-back:before
    {
        content: url(../../docs/assets/img/back_arrow.png);
        position: relative;
        top: 1px;
        left: 0;
        margin-right: 10px;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

    .header-reg .btn-back:hover
    {
        text-decoration: none;
    }

    .header-reg .btn-back:hover:before
    {
        left: -3px;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

.content-reg
{
    padding: 0 0 100px 0 !important;
    color: #888;
    letter-spacing: .2px;
}

    .page-title-reg
    {
        padding: 20px 0;
        color: #888;
    }

        .page-title-reg h1
        {
            padding: 0;
            margin: 50px 0 20px 0;
            font-size: 35px;
            font-weight: 300;
        }

        .page-title-reg p
        {
            font-size: 20px;
            font-weight: 300;
        }

        .page-title-reg p span
        {
            font-weight: normal;
        }

    .content-reg section,
    .identity-holder,
    .terms-holder
    {
        width: 100%;
        padding: 20px;
        margin: 0 auto 20px auto;
        background: #FFF;
        border: 1px solid #e5e5e5;
        color: #888;

        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;
    }

        .content-reg section input[type="text"],
        .content-reg section input[type="password"],
        .content-reg section textarea
        {
            width: 100%;
            padding: 10px;
            margin: 7px 0 0 0;
            border: 1px solid #e0e0e0;

            -webkit-border-radius: 3px;
               -moz-border-radius: 3px;
                    border-radius: 3px;

            color: #AAA;
        }

        .content-reg section input[type="text"]:focus,
        .content-reg section input[type="password"]:focus,
        .content-reg section textarea:focus
        {
            border: 1px solid #CCC;
            color: #888;
        }

        .content-reg section label
        {
            display: inline-block;
            margin: 10px 0 0 0;
            font-weight: normal;
        }

        .content-reg section .txt-error
        {
            display: inline-block;
            font-size: 12px;
            color: #AAA;
        }

.identity-holder input[type="submit"]
{
    padding: 7px 10px;
    background: #fbfbfb;
    border: 1px solid #e5e5e5;
    font-size: 11px;
    font-weight: bold;
    color: #777;
    text-transform: uppercase;
    letter-spacing: .5px;

    -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
            border-radius: 3px;

    -webkit-transition: all .3s;
       -moz-transition: all .3s;
            transition: all .3s;
}

    .identity-holder input[type="submit"]:hover,
    .identity-holder input[type="submit"]:focus
    {
        background: #f5f5f5;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

.identity-holder img
{
    display: block;
    margin: 10px 0;
    max-width: 100%;
}

.terms-holder .terms-content
{
    overflow: auto;
    max-height: 300px;
}

.section-title
{
    border-bottom: 1px solid #e0e0e0;
}

    .section-title h2,
    .section-title h2,
    .section-title h2
    {
        display: inline-block;
        margin: 0;
        padding: 0 0 15px 0;
        font-size: 20px;
    }


.txt-agree
{
    margin: 20px 0 0 0;
    color: #888;
}

    .txt-agree input[type="checkbox"]
    {
        margin: 0 10px 0 0;
    }


.btn-submit-reg
{
    border-style: none;
    border-color: inherit;
    border-width: medium;
    display: block;
    padding: 10px 20px;
    background: #1888de;
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: .5px;

    -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
            border-radius: 3px;

    -webkit-transition: all .3s;
        -moz-transition: all .3s;
            transition: all .3s;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

    .btn-submit-reg:hover,
    .btn-submit-reg:focus
    {
        background: #333;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

/* Activation */

.bg-activation
{
	background: #fbfbfb;
    text-align: center;
}

.bg-error
{
	background: #FFF;
    text-align: center;
    padding-top: 3%;
}

.verify-msg
{
    width: 460px;
    padding: 24px;
    font-size: 16px;
    color: #888;
}

    .verify-msg h1
    {
        padding: 0;
        margin: 24px 0;
        font-size: 30px;
        font-family: 'Roboto-Medium';
        color: #777;
        letter-spacing: .5px;
    }

    .bg-error i
    {
        display: block;
        margin-top: 24px;
        font-size: 14px;
        font-weight: 400;
        color: #999;
    }

.btn-back-home
{
    display: inline-block;
    padding: 10px 15px;
    background: #FFF;
    border: 1px solid #e0e0e0;
    color: #999;
    font-weight: 500;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;

    -webkit-transition: all .3s;
       -moz-transition: all .3s;
            transition: all .3s;

    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);
}

    .btn-back-home:hover,
    .btn-back-home:focus
    {
        text-decoration: none;
        color: #999;
        background: #f8f8f8;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

.btn-back-home-404
{
    display: inline-block;
    padding: 10px 15px;
    background: #e61212;
    border: 1px solid #e61212;
    color: #FFF;
    font-weight: 500;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;

    -webkit-transition: all .3s;
       -moz-transition: all .3s;
            transition: all .3s;

    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);
}

.btn-back-home-500
{
    display: inline-block;
    padding: 10px 15px;
    background: #1888DE;
    border: 1px solid #1888DE;
    color: #FFF;
    font-weight: 500;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;

    -webkit-transition: all .3s;
       -moz-transition: all .3s;
            transition: all .3s;

    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);
}

    .btn-back-home-404:hover,
    .btn-back-home-404:focus,
    .btn-back-home-500:hover,
    .btn-back-home-500:focus
    {
        text-decoration: none;
        color: #FFF;
        background: #555;
        border: 1px solid #555;

        -webkit-transition: all .3s;
           -moz-transition: all .3s;
                transition: all .3s;
    }

/* File Upload */

.reg-fileupload .ui-widget-header
{
    padding: 0.4em 0.4em 0.2em 0.4em !important;
    background: #f8f8f8 !important;
    border: 1px solid #e0e0e0 !important;
}

.reg-fileupload .ui-widget-content
{
    border-top: none !important;
    border-right: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-left: 1px solid #e0e0e0 !important;
}

.reg-fileupload .ui-button
{
    background: #FFF !important;
    vertical-align: top !important;
}

    .reg-fileupload .ui-button:hover,
    .reg-fileupload .ui-button:focus
    {
        border: 1px solid #BBB !important;
    }

.reg-fileupload .ui-widget
{
  font-family: Roboto;
  color: #888 !important;
}

.reg-fileupload .files
{
    font-size: 14px !important;
    color: #888 !important;
}

    .reg-fileupload .files a
    {
        color: #428bca !important;
    }

.wordwrap {
    word-wrap: break-word;
    display: inline-block;
}

.txtDateReceived, .txtDateReceived
{
   display: block;
   width: 100%;
   height: 100%;
}

/* ADS */

.advertisement {
    text-align: left;
    background: #252221;
}

.advertisement span {
    display: inline-block;
    text-align: left;
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
}

.advertisement img {
    margin-left: 40px;
    display: inline-block;
}

div.two-id-required {
    font-style: italic;
    color: #FF0000;
}

div.newsfeed-banner img {
    width: 100%;
    height: 290px;
}