/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
	 2.0.1) Font Face
	 2.0.2) Global Headings
	 2.0.3) Form Elements
	 2.0.4) List styles
	 2.0.5) General Text Formatting
	 2.0.6) Link elements
	 2.0.7) Table Elements
	 2.0.8) Button Styles
	 2.0.9) Sprite Icons
	 2.1.0) 960 Grid Style
 3.) Site Wide Content
 4.) Header Style
 5.) Footer Style
 ===============================================*/

/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 1.) Global Typography
 ----------------------------------------*/
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	font-size: 62.5%;
	font-family: 'Montserrat', sans-serif;
}
/*
 2.0.1) Font Face
 -----------------------------*/
/*Put Your font face Styles here*/

/*
 2.0.2) Global Headings
 -----------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #161e21;
}
h1 {
	/* font-size: 48px; */
	font-size: 2.4em;
	line-height: 0.875;
	margin: 0 0 0.4375em 0;
}
h2 {
	/* font-size: 32px; */
	font-size: 32px;
	line-height: 1.1;
	margin: 0 0 10px 0;
	color: #8b4726;
}
h3 {
	/* font-size: 24px; */
	font-size: 28px;
	line-height: 1;
	color: #8b4726;
	margin: 0 0 18px 0;
}
h4 {
	/* font-size: 21px; */
	font-size: 2.1em;
	line-height: 1;
	margin: 0 0 1em 0;
}
h5 {
	/* font-size: 18px; */
	font-size: 1.8em;
	line-height: 1.16667;
	margin: 0 0 1.16667em 0;
}
h6 {
	/* font-size: 14px; */
	font-size: 1.4em;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
}
/*
 2.0.3) Form Elements
 -----------------------------*/
button, input, optgroup, select, textarea {
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: inherit;
	background: #fff;
	border: 1px solid #ccc;
	font-family: 'Montserrat', sans-serif;
}
input {
	line-height: normal;
}
input:focus, select:focus, textarea:focus, button:focus {
	border: 1px #888 solid;
	outline: 0;
}
input[type="checkbox"], input[type="radio"] {
	padding: 0;
	border: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"], input[type="file"] {
	-webkit-appearance: none;
	cursor: pointer;
	line-height: normal;
	overflow: visible;
}
button[disabled], input[disabled] {
	cursor: default;
	color: #999;
	border-color: #ccc;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
/*
 2.0.4) List Styles
 ---------------------------------*/
ul, ol, dl {
	font-size: 100%;
	line-height: 1.5;
}
li, dt {
	line-height: 1.5em;
}
dl {
	margin: 0 0 1em 0;
}
dd {
	margin: 0 0 1em 0.8em;
}
ul {
	list-style-type: disc;
	margin: 0 0 1em 0;
}
ol {
	list-style-type: decimal;
	margin: 0 0 1em 0;
}
ul ul, ol ul {
	list-style-type: circle;
	margin-top: 0;
}
ol ol {
	list-style-type: lower-latin;
	margin-top: 0;
}

/*
 2.0.5) General Text Formatting
 -----------------------------------*/
p {
	font-size: 100%;
	line-height: 1.5;
	 color: #1d1d1d;
    font-size: 13px;
}
blockquote, cite, q, var, dfn {
	font-style: italic;
}
blockquote {
	background: transparent;
	color: #666666;
}
small {
	/* font-size: 12px; */
	font-size: 85.71429%;
	line-height: 1.75;
}
pre, code, kbd, tt, samp, var {
	font-size: 100%;
}
pre {
	font-size: 100%;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
pre, code {
	color: #880000;
}
kbd, samp, var {
	color: #666666;
	font-weight: bold;
}
acronym, abbr {
	border-bottom: 1px #aaa dotted;
	font-variant: small-caps;
	cursor: help;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
/*
 2.0.6) Link style
 -------------------------*/
a {
	color: #4d87c7;
	text-decoration: none;
}
a:hover, a:focus {
	color: #4d87ff;
	text-decoration: none;
}
a:active {
	outline: none;
}

/*
 2.0.7) Table Elements
 --------------------------*/
table {
	width: 100%;
	border-collapse: collapse;
	color: #444444;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	margin: 0 0 1.35714em 0;
}
caption {
	font-variant: small-caps;
}
th, td {
	line-height: 1.5em;
	vertical-align: top;
	padding: 0.71429em 0.5em;
}
th *:first-child, td *:first-child {
	margin-top: 0;
}
thead th {
	text-align: left;
	color: #000;
	border-bottom: 2px #000 solid;
}
tbody th {
	text-align: left;
	border-top: 1px solid #ccc;
}
tbody td {
	text-align: left;
	border-top: 1px solid #ccc;
}
/*
 2.0.8) Button Styles
 -------------------------*/
.btn, input.btn, button.btn {
	display: inline-block;
	font-size: 12px;
	color: #000;
	line-height: normal;
	vertical-align: middle;
	padding: 0 5px;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #eee;
}
.btn:hover, .btn:focus , input.btn:hover, input.btn:focus, button.btn:hover, button.btn:focus{
	color: #4d87ff;
	border: 1px solid #888;
}
/*
 2.0.9) Sprite Icons
 -------------------------*/
 [class^="icon-"], [class*="icon-"] {
	background-image: url(../images/sprite-image.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	display: inline-block;
	height: 25px;
	line-height: 14px;
	vertical-align: text-top;
	width: 25px;
} 
.icon-twitter{
	
}
/* Containers
----------------------------------------------------------------------------------------------------*/
.container {
	margin-left: auto;
	margin-right: auto;
}
/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.clearfix:after {
  clear: both;
}
.outer-container{
	max-width:1540px;
	margin: 0 auto;
	padding:0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.container{
	max-width:1135px;
	margin: 0 auto;
	padding:0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/
.clearfix {
  zoom: 1;
}
/*
 3.) Site Wide Content
 ------------------------------*/
#wrapper {
}
/*
 4.) Header Styles
 ------------------------------*/
#header {

}
#header .top-header{
	background: #8b4726;
}
#header .top-header span.top-header-text{
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	color: #f7f7f7;
	line-height: 30px;
	float: left;
}
#header .top-header span.top-header-text a{
	color: #ffb245;
}
#header .top-header span.top-header-text a:hover{
	color: #fff;
}
#header .top-header .top-header-nav{
	list-style-type: none;
	float: right;
	margin: 0;
}
#header .top-header .top-header-nav li{
	float: left;
	position: relative;
}
#header .top-header .top-header-nav li a.wpml-lng{
	width:50px;
	background: url('../images/globe.png') no-repeat center center;
	color: transparent !important;
}
#header .top-header .top-header-nav li:hover a.wpml-lng{
	background: url('../images/globe.png') no-repeat center center !important;
}
#header .top-header .top-header-nav li.wpml-switcher{
	position: relative;
}
#header .top-header .top-header-nav li.wpml-switcher .current-langauges{
	position: absolute;
	top:100%;
	right:0px;
	z-index: 999;
	width:185px;
	background: #8b4726;
	display: none; 
}
#header .top-header .top-header-nav li.wpml-switcher:hover a{
	background: transparent;
	color: #dfb29d;
}
#header .top-header .top-header-nav li.wpml-switcher ul{
	list-style-type: none;
	margin: 0;
	width:100%;
}
#header .top-header .top-header-nav li.wpml-switcher ul li{
	display: block;
	float: none;
}
#header .top-header .top-header-nav li.wpml-switcher:hover > a{
	background-color:#743517 !important; 
}
#header .top-header .top-header-nav li.wpml-switcher ul li:hover,
#header .top-header .top-header-nav li.wpml-switcher ul li.active{
	background:#743517; 
}
#header .top-header .top-header-nav li.wpml-switcher ul li.active a{
	color: #fff;
	font-weight:500;
}
#header .top-header .top-header-nav li.wpml-switcher ul  img{
	vertical-align: middle;
	margin-right:5px;
}
#header .top-header .top-header-nav li.wpml-switcher ul li:hover a{
	color: #fff;
}
#header .top-header .top-header-nav li.wpml-switcher ul li a{
	display: block;
	border:none;
}
#header .top-header .top-header-nav li a{
	color: #dfb29d;
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	line-height: 30px;
	padding:0 12px;
	display:inline-block;
	border-left:1px solid #ae6c4c;
}
#header .top-header .top-header-nav li:hover a{
	background-color: #743517;
	color: #ffffff;
}
#header .top-header .top-header-nmbr{
	font-size: 12px;
	color: #dfb29d;
	font-family: 'Montserrat', sans-serif;
	float: right;
	line-height: 30px;
	padding:0 12px;
	border-left:1px solid #ae6c4c;
}
#header .top-header .top-header-mail{
	font-size: 12px;
	color: #dfb29d;
	font-family: 'Montserrat', sans-serif;
	float: right;
	line-height: 30px;
	padding:0 12px;
	letter-spacing: 0.5px;
}
#header .top-header .top-header-nmbr:hover,
#header .top-header .top-header-mail:hover{
	background: #743517;
	color: #ffffff;
}
#header .top-header .icons i{
	margin-right:5px;
}
#header .header-main-menu{
	float: left;
	padding-top:12px;
	position: relative;
}
#header .header-main-menu .header-menu{
	float: left;
}
#header .header-main-menu ul{
	list-style-type: none;
	margin: 0;
}
#header .header-main-menu ul li{
	display: inline-block;
	padding-bottom:30px;
	position: relative;
}
#header .header-main-menu ul li a{
	font-size: 13px;
	color: #2c1c07;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	line-height:1.2;
	margin: 0 11px;
}
#header .header-main-menu ul .sub-menu a{
	color: #303030;
}
#header .header-main-menu ul li:hover > a,
#header .header-main-menu ul li.current_page_item > a{
	color: #9a441a;
}
#header .header-main-menu ul.sub-menu li:hover > a,
#header .header-main-menu ul.sub-menu li.current_page_item > a{
	color: #8b4726;
}
#header .header-main-menu ul li.current-menu-item > a{
	font-weight:600;
	color: #9a441a;
}
#header .header-main-menu ul.menu ul.sub-menu{
	position: absolute;
	width:385px;
	background: #f5f5f5;
	top:100%;
	left:0;
	border-top:2px solid #7a3e21;
	padding:35px 30px 50px;
	padding-right:0px;
	display: none;
	z-index: 99;
}
#header .header-main-menu ul.menu ul.sub-menu ul.sub-menu{
	padding:0 0 0 20px;
	width:200px;
	left:100%;
	margin-left:0px;
	top:0;
}
#header .header-main-menu ul.menu ul.sub-menu li{
	display: block;
	padding-bottom:0px;
	position: relative;
}
#header .header-main-menu ul.menu ul.sub-menu li a:before{
	width:5px;
	height:7px;
	content:'';
	position: absolute;
	background: url('../images/list-after.png') no-repeat 0px 0px;
	left:0;
	top:9px;
}
#header .header-main-menu ul.menu ul.sub-menu li a:hover:before,
#header .header-main-menu ul.menu ul.sub-menu li.current-menu-item a:before{
	background: url('../images/list-after-hover.png') no-repeat 0px 0px;
}
#header .header-main-menu ul.menu ul.sub-menu li a{
	display: block;
	margin: 0;
	font-size: 12.5px;
	text-transform: capitalize;
	padding:5px 0px;
	padding-left:20px;
	display: block;
}
#header .header-main-menu ul.menu ul.sub-menu li.current-menu-item > a{
	font-weight:600;
	color: #9a441a;
}
#header .header-main-menu ul.menu li:hover > ul.sub-menu{
	display: block;
}
#header .main-header{
	padding-top:16px;
}
#header .site-logo {
	float: left;
	padding-right:40px;
}
#header .site-logo a{
	display: block;
}
#header .site-logo a img{
	max-width:151px;
	display: block;
}
#header .header-cart-list{
	float: right;
	width:120px;
	text-align: right;
	position: relative;
}
#header .header-cart-list .search-div{
	position: absolute;
	right:15px;
	top:100%;
	width:235px;
	height:35px;
	margin-top:10px;
	display: none;
}
#header .header-cart-list .search-div .search-field{
	width:100%;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border:1px solid #505050;
    color: #000;
    font-size: 14px;
    font-weight:300;
    height:35px;
    padding-left:10px;
}
#header .header-cart-list .search-div .search-submit{
	position: absolute;
	right:0;
	top:0;
	height:35px;
	width:35px;
	background: rgba(0, 0, 0, 0) url("../images/woocommerce-icons.png") no-repeat scroll 8px 3px;
	border:none;
	color: transparent;
	font-size: 0px;
}
#header .header-cart-list .woocmrce-icon{
	display: inline-block;
	padding-top:12px;
	position: relative;
}
#header .header-cart-list .woocmrce-icon a{
	height:25px;
	width:25px;
	display: block;
}
#header .header-cart-list span .number{
	position: absolute;
	right:8px;
	top:8px;
	font-size: 10px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	background: #ff8703;
	height:17px;
	width:17px;
	border-radius: 50%;
	text-align: center;
	line-height: 17px;
}
#header .header-cart-list span.search a{
	background: url('../images/woocommerce-icons.png') no-repeat 4px -2px;
	margin-right:9px;
}
#header .header-cart-list span.cart a{
	background: url('../images/woocommerce-icons.png') no-repeat -33px -2px;
	margin-right:13px;
}
#header .header-cart-list span.wishlist a{
	background: url('../images/woocommerce-icons.png') no-repeat -72px -2px;
	margin-right:12px;
}
.menuicon {
    margin: 7px 0 0 10px;
    cursor: pointer;
    float: right;
    display: none;
}
.menuicon span {
    background: #ff8703;
    display: block;
    height: 3px;
    margin: 6px 0;
    width: 30px;
    -webkit-transition: all 0.4s ease 0s ;
    -moz-transition: all 0.4s ease 0s ;
    -ms-transition: all 0.4s ease 0s ;
    -o-transition: all 0.4s ease 0s ;
    transition: all 0.4s ease 0s ;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 7px) ;
    transform: rotate(-45deg) translate(-6px, 7px) ;
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -7px) ;
    transform: rotate(45deg) translate(-6px, -7px) ;
}
.current-menu-item a{
	color:#b09b07;
}
arrow-mob,.minus-icon{
    cursor: pointer;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    display: none;
    font-style: normal !important;
}
.arrow-mob:after{
	content:"+";
	position: absolute;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    right:15px;
    top:4px;
    font-style: normal !important;
}
.minus-icon:after{
	content:"-";
	position: absolute;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    right:15px;
    top:4px;
    font-style: normal !important;
}
#header .header-main-menu .more-categories{
	float: left;
}
#header .header-main-menu .more-categories span.view-cat{
	display: none;
	/*display: inline-block;*/
	color: #2c1c07;
    font-family: "Montserrat",sans-serif;
    font-size: 13px;
    margin: 0 11px;
    line-height:1.2;
    text-transform: uppercase;
    cursor: pointer;
}
#header .header-main-menu .more-categories .view-cat i{
	color: #ff8703;
	font-size: 20px;
	position:relative;
	top:2px;
	padding-left:3px;
}
#header .header-main-menu .more-categories .view-cat.view i:before{
	content: "\f056";
}
#header .header-main-menu .more-categories .more-cat-menus{
	position: absolute;
	z-index: 99;
	background: #f5f5f5;
	left:0;
	top:54px;
	border-top: 2px solid #7a3e21;
	width:250px;
	padding:15px;
	display:none;
}
#header .header-main-menu .more-categories .more-cat-menus li{
	padding-bottom: 0px;
	display: block;
	position: relative;
}
#header .header-main-menu .more-categories .more-cat-menus li a{
	text-transform: uppercase;
}
#header .header-main-menu .more-categories .more-cat-menus li a:bofore{
	background:url("../images/list-after.png") no-repeat scroll 0 0;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 9px;
    width: 5px;
}
@media screen and (min-width:768px){
	.arrow-mob{
		display: none;
	}
}
/*
 5.) Footer Styles
 ------------------------------*/
#footer {
}
#footer .top-footer{
	padding-top:83px;
	padding-bottom:54px;
	background: #f2f2f2;
}
#footer .top-footer .container{
	max-width:1200px;
}
#footer .top-footer .footer-sec{
	float: left;
}
#footer .top-footer .about-content{
	width:42%;
}
#footer .top-footer .about-content .content{
	max-width:370px;
}
#footer .top-footer .footer-links{
	width:28%;
}
#footer .top-footer .information{
	width:30%;
	float: right;
	max-width:283px;
}
#footer .top-footer h3{
	color: #313131;
	font-size: 22px;
	text-transform: uppercase;
	font-weight:600;
	margin-bottom:40px;
}
#footer .top-footer p{
	color: #1d1d1d;
	font-size: 13px;
	line-height:1.5;
	margin-bottom:31px;
}
#footer .top-footer .social-menu .social-title{
	font-size: 15px;
	color: #313131;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-weight:600;
	float: left;
	padding-right:20px;
}
#footer .top-footer .social-menu ul{
	list-style-type: none;
	margin: 0;
	float: left;
}
#footer .top-footer .social-menu ul li{
	display: inline-block;
	margin-right:5px;
}
#footer .top-footer .social-menu ul li a{
	display: block;
}
#footer .top-footer .social-menu ul li a:hover{
	opacity: 0.7;
}
#footer .top-footer h4.sec-heading{
	font-size: 15px;
	color: #313131;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-weight:600;
	margin-bottom: 38px;
}
#footer .top-footer .menu{
	list-style-type: none;
	margin: 0;
}
#footer .top-footer .menu li{
	float: left;
	width:50%;
	line-height: 1.5;
}
#footer .top-footer .menu li a{
	font-size: 13px;
	color: #1f1f1f;
}
#footer .top-footer .menu li a:hover{
	color: #9a441a;
}
#footer .top-footer .address-sec span{
	display: block;
	font-size: 13px;
	padding-bottom:10px;
	color: #0b0b0b;
	padding-top:5px;
	padding-left:30px;
	position: relative;
}
#footer .top-footer .address-sec span a{
	color: #0b0b0b;
	 word-wrap: break-word;
}
#footer .top-footer .address-sec span a:hover{
	color: #983a15;
}

#footer .top-footer .address-sec span i{
	position: absolute;
	left:0;
	font-size:17px;
	top:6px;
	color: #434343;
}

#footer .bottom-footer{
	background: #f2f2f2;
}
#footer .bottom-footer .footer-wrap{
	border-top:1px solid #dbdbdb;
	padding-top:30px;
	padding-bottom:35px;
}
#footer .container {
    max-width: 1200px;
}
#footer .bottom-footer .dowmload-catelog{
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	background: #f28309;
	border:1px solid #f28309;
	font-weight:500;
	padding:12px 24px;
	display: inline-block;
	float: left;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#footer .bottom-footer .dowmload-catelog:hover{
	background: transparent;
	color: #fff;
	color: #f28309;
}
#footer .bottom-footer .gateway-listing{
	float: right;
	list-style-type: none;
	text-align: right;
	margin: 0;
	margin-top:7px;
}
#footer .bottom-footer .gateway-listing li{
	display: inline-block;
	margin-left:8px;
}
#footer .footer-copyright{
	background: #cac6c4;
	text-align: center;
}
#footer .footer-copyright .copyright{
	color: #494544;
	font-size: 12px;
	padding:11px 0px;
	display: inline-block;
}
#newletter-section{
	padding:25px 0px 15px 0px;
	background: #9b3d19 url('../images/newletter-back1.png') no-repeat;
	text-align: center;
	background-size: cover;
}
#newletter-section .news-title{
	color: #ffffff;
	font-size: 24px;
	font-weight:500;
	text-transform: uppercase;
}
#newletter-section form{
	max-width:627px;
	height:50px;
	width:627px;
	margin: 0 auto;
}
#newletter-section form .tnp-field-email label{
	display: none;
}
#newletter-section .tnp-email{
	height:50px;
	border:1px solid #cccccc;
	font-size: 15px;
	color: #5a5a5a;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding-left:20px;
	font-weight:300;
	width:477px;
}
#newletter-section .tnp-submit{
	color: #ffffff;
	font-size: 15px;
	background: #f28309;
	height:50px;
	border:1px solid #f28309;
	text-transform: uppercase;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	font-weight:400;
	width:150px;
}
#newletter-section form .tnp-field{
	float: left;
}
#header .header-main-menu .header-menu.more-cat-menus{
	clear: both;
	display: none;
}
#header.site-header{
	position: fixed;
	left:0;
	top:0;
	width:100%;
	z-index: 999;
	background: #fff;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.page-main-content p a{
	color: #9a441a;
}
.page-main-content .default-page-title{
	color: #f28309;
}
@media screen and (max-width:1150px){
	#header .header-main-menu ul.menu ul.sub-menu{
		width:300px;
		padding:15px;
		padding-right:0px;
	}
}
@media screen and (max-width:1400px){
	#header .header-main-menu ul li a{
		margin: 0 5px;
	}
}
@media screen and (max-width:1300px){
	#header .header-main-menu ul li a{
		font-size: 12px;
	}
	#header .site-logo{
		padding-right:20px;
	}
}
@media screen and (max-width:1200px){
	#header .header-main-menu{
		width:100%;
	}
}
@media screen and (min-width:768px){
	#header .header-main-menu .more-categories .more-cat-menus{
		width:100%;
		top:100%;
		border-top:none;
	}
	#header .header-main-menu .more-categories .more-cat-menus li{
		display: inline-block;
	}
	#header .header-main-menu .more-categories .more-cat-menus{
		background: #fff;
	}
	#header .header-main-menu .more-categories .more-cat-menus:after{
		height:100%;
		width:800%;
		left:50%;
		content:"";
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		background: #fff;
		z-index: 99;
		top:0;
		position: absolute;
		z-index: -1;
	}
}