@font-face {
    font-family: 'ClearSans Regular';
    src: url('fonts/ClearSans-Regular.ttf');
}
@font-face {
    font-family: 'ClearSans Bold';
    src: url('fonts/ClearSans-Bold.ttf');
}
@font-face {
    font-family: 'ClearSans Light';
    src: url('fonts/ClearSans-Light.ttf');
}
@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MYRIADPRO-REGULAR.otf');
}
body {
	/*font-family: 'Arial';*/
	font: 14px 'ClearSans Regular';
	color: #333;
}
h1,h2,h3 {
	font-weight: normal;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #ed3237;
}
img {
	width: 100%;
}
.article ul,
.description ul {
	list-style-type: disc;
}
/****** COMMON ***********/
.wrapper{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	/*overflow: hidden;*/
}
.description, article {
	text-align: justify;
}
input, select, textarea {
	border: 1px solid #c2c2c3;
	padding: 2px 5px;
}
input {
	height: 20px;
}
input.btn {
	height: auto;
}
/* [+] validate form */
input[type="submit"] {
	cursor: pointer;
}
.error,
.label_error {
	color: #ff3300;
}
.label_error {
    margin-bottom: 10px;
}
/*.error:before,
.error:after {
	content: " ";
	display: table;
}
.error:after {
	clear: both;
}*/
/* [-] validate form */
.btn-group {
}
.btn {
	padding: 5px 15px;
	margin-right: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	cursor: pointer;
	color: #fff;
}
.btn:last-child {
	margin-right: 0;
}
.btn-blue {
	background-color: #00afef;
	border: 1px solid #00afef;
}
.btn-blue:hover {
	background-color: transparent;
	color: #00afef;
}
.btn-yellow {
	background-color: #ffd908;
	border: 1px solid #ffd908;
}
.btn-yellow:hover {
	background-color: transparent;
	color: #ffd908;
}
.btn-red {
	background-color: #da251d;
	border: 1px solid #da251d;
}
.btn-red:hover {
	background-color: transparent;
	color: #da251d;
}
/**************************/
.box-shadow {
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,.1);
	-moz-box-shadow:    0px 2px 5px 0px rgba(0,0,0,.1);
	box-shadow:         0px 2px 5px 0px rgba(0,0,0,.1);
}
.image-preview {
    overflow: hidden;
}
.one-line {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
article img,
.description img {
    display: inline-block;
}
/****** end COMMON ***********/

/****** HEADER ***********/
.mainHeader {
	border-top: 3px solid #ed3237;
	position: absolute;
	top: 0;
	width: 100%;
	background-color: #ffd908;
}
.mainHeader > .wrapper {
	position: relative;
}
.mainHeader .logo {
	margin-bottom: -23px;
	max-width: 214px;
}
.mainHeader .logo img {
	width: auto;
}
.mainHeader .logo .logo-text {
	visibility: hidden;
	height: 0;
	display: block;
}
.navigation-menu {
}
#open-menu-responsive {
	display: none;
}
.navigation-menu > ul > li {
	float: left;
	padding: 24px 21px;
	border-right: 1px solid #ffe86b;
	position: relative;
}
.navigation-menu > ul > li:first-child {
	padding: 23px 21px;
}
.navigation-menu > ul > li:last-child {
	border-right: none;
	padding: 21px 21px;
}
.navigation-menu > ul > li:hover {
	background-color: #ed3237;
	cursor: pointer;
}
.navigation-menu > ul > li:hover > a {
	color: #fff;
}
.navigation-menu > ul > li > a {
	font-size: 16px;
}
.navigation-menu > ul > li > a.icon-home {
	display: block;
	width: 26px;
	height: 24px;
	background: url("../images/icon-menu-home.png") no-repeat center transparent;
}
.navigation-menu > ul > li > a.icon-search,
#btnsearch {
	display: block;
	width: 28px;
	height: 28px;
	background: url("../images/icon-search.png") no-repeat center #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.navigation-menu > ul > .menu-search {
    position: relative;
}
.navigation-menu > ul > .menu-search .search-box {
    display: none;
    background-color: #ed3237;
}
.navigation-menu > ul > .menu-search:hover .search-box {
    display: block;
    width: 300px;
    position: absolute;
    left: -229px;
    top: 0;
}
#txtsearch {
    height: 50px;
    width: 197px;
    float: left;
    margin: 7px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    font-size: 20px;
}
#btnsearch {
    margin: 21px;
}
.navigation-menu > ul > .menu-search .search-box .div-btnsearch {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: none;
    background-color: transparent;
}
.navigation-menu > ul > li ul {
	display: none;
	min-width: 200px;
	position: absolute;
	background-color: #fff;
	top: 69px;
	left: 0;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.18);
	-moz-box-shadow:    0px 1px 3px 0px rgba(0, 0, 0, 0.18);
	box-shadow:         0px 1px 3px 0px rgba(0, 0, 0, 0.18);
    z-index: 999;
}
.navigation-menu > ul > li:hover ul {
	display: block;
}
.navigation-menu > ul > li ul li {
	padding: 10px;
}
.navigation-menu > ul > li ul li:hover {
	background-color: #f7f7f7;
}
.navigation-menu > ul > li ul li a {
	color: #4d4d4d;
	font: 16px 'ClearSans Light';
}
.navigation-menu > ul > li ul li:hover a {
	color: #da251d;
}
/****** end HEADER ***********/

/****** MAIN ***********/
.mainContent {
}
.mainContent > .wrapper > aside > * {
	margin-bottom: 20px;
}
.mainContent .main,
.mainContent .main-2-col{
	min-height: 380px;
}
/* [+] social-group-all */
.social-group-all {
	position: fixed;
	right: 0;
	top: 320px;
	z-index: 999;
}
.social-group-all > a {
	color: #fff;
	font-family: 'ClearSans Bold';
	text-align: center;
	margin-bottom: 5px;
	display: block;
	width: 46px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.social-group-all > a.facebook {
	height: 46px;
	background: url("../images/icon-facebook.png") no-repeat center #da251d;
}
.social-group-all > a.youtube {
	height: 46px;
	background: url("../images/icon-youtube.png") no-repeat center #da251d;
}
.social-group-all > a.contact {
	background: url("../images/icon-contact.png") no-repeat scroll 10px 10px #da251d;
	padding: 40px 0 5px;
}
/* [-] social-group */
.banner-full {
	margin-bottom: 20px;
}
.pagination {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e9e9e9;
    margin-bottom: 10px;
}
.pagination > * {
    display: inline-block;
    margin-right: 5px;
    padding: 4px 10px;
    cursor: pointer;
    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 16px;
}
.pagination .current {
    background: none repeat scroll 0 0 #da251d;
    border: 1px solid #da251d;
    color: #fff;
}
.pagination a {
	border: 1px solid #e0dfdf;
	background: none repeat scroll 0 0 #fff;
	-webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow:    0px 2px 0px 0px rgba(0, 0, 0, 0.08);
	box-shadow:         0px 2px 0px 0px rgba(0, 0, 0, 0.08);
}
.pagination a:hover {
	color: #fff;
	border: 1px solid #da251d;
	background: none repeat scroll 0 0 #da251d;
}
.pagination b {
	font: 16px 'MyriadPro Semibold';
	color: #898989;
	margin-right: 5px;
}
.pagination .next-page {
	width: 8px;
	text-align: center;
}
.pagination .first-page, .pagination .last-page {
	display: none;
}
/*.pagination .pre-page, .pagination .next-page,.pagination .first-page, .pagination .last-page{
}
.first-page, .last-page, .next-page, .pre-page {
}*/
.partners {
	margin-bottom: 20px; 
}
.partners ul li {
	width: 153px;
	margin-right: 17px;
	float: left;
	max-height: 85px;
	overflow: hidden;
	border: 1px solid #deeec5;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.partners ul li:last-child {
	margin-right: 0;
}
.partners ul li:hover {
	border: 1px solid #91c73e;
}
/****** end MAIN ***********/

/****** FOOTER ***********/
.mainFooter {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #f7f7f7;
}
.footer-top {
	padding: 25px 0 15px;
	border-bottom: 1px solid #e9e9e9;
}
.footer-top .footer-menu > ul > li {
	float: left;
	margin-right: 35px;
}
.footer-top .footer-menu > ul > li > a {
	font-size: 16px;
	line-height: 23px;
}
.footer-top .hotline {
	padding-left: 35px;
	background: url("../images/icon-call.png") no-repeat scroll left center transparent;
}
.footer-top .hotline span {
	font: 16px/23px 'Myriad Pro';
}
.footer-bottom {
	padding: 15px 0 15px;
}
.footer-bottom > * {
	color: #838383;
	font-size: 14px;
}
/****** end FOOTER ***********/

/****** OTHER ***********/

/****** end OTHER ***********/

/****** RESPONSIVE ***********/
@media only screen and (max-width: 1200px) {
	.mainContent .main,
	.mainContent .main-2-col {
		padding: 0 5px;
		-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
		-moz-box-sizing: border-box;    /* Firefox, other Gecko */
		box-sizing: border-box;         /* Opera/IE 8+ */
	}
	.navigation-menu {
		display: none;
	}
}
@media only screen and (max-width: 480px) {
	.footer-bottom > .fl {
		width: 100%;
	}
	.footer-bottom > a {
		float: left;
	}
	.social-group-all {
		top: 250px;
	}
}
/****** end RESPONSIVE ***********/
