html, body, div, span, applet, object, iframe,
 h3,h2,h4,h5, h6,blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike,sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, button, input, textarea {
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-weight: 300;
   font-style: inherit;
   font-size: 100%;
   font-family: 'Roboto', Arial, sans-serif;
   vertical-align:middle;
   text-decoration:none;
   color:#333;
   text-align:center;
   box-sizing:border-box;   
}

body{
	margin: 0;
	min-width: 320px;
	padding: 0;
	background:#fff;
}

.wrap{
	margin: 0 auto;
	padding:0 10px;
    width: 1120px;
	box-sizing:border-box;
}

.clear{
	clear:both;
}

hr{
	border:none;
	border-top:1px solid #ccc;
	margin:0;
	clear:both;
}

ul, li{
	margin:0;
	padding:0;
}

button, a{
	outline:none;
	text-decoration:none;
	vertical-align: baseline;
	cursor:pointer;
}

::-webkit-input-placeholder {
   opacity:0.5;
}

:-moz-placeholder { /* Firefox 18- */
   opacity:0.5;  
}

::-moz-placeholder {  /* Firefox 19+ */
   opacity:0.5;
}

:-ms-input-placeholder {  
   opacity:0.5; 
}

* { 
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover{
	text-decoration:underline;
}

a.morelink{
	text-align:right;
	color:#D14B4B;
	display: inline-block;	
}

.btn1{
	background: #D14B4B;
	color: #fff;
	box-shadow: 0 3px #ab3c3c;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	padding: 8px 20px;
	display: inline-block;
	text-transform: uppercase;
	outline: none;
	position:relative;
	min-width:130px;
	font-size:15px;
	font-weight:400;
}

.btn1:active,
.btn2:active {
	box-shadow: 0 0 #ab3c3c;
	top: 3px;
}

.btn2{
	background: #d14b4b;
    border: none;
    border-radius: 5px;
    box-shadow: 0 3px #ab3c3c;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    min-width: 90px;
    outline: medium none;
    padding: 5px 20px;
    position: relative;
}

.errnotify1{
	color:#F44336;
	font-size:12px;
}

.errfield{
	border:1px solid #C03 !important;
}

.toggle-button {
	background-color: #ddd;
	margin: 5px 0;
	border-radius: 20px;
	border: 2px solid #D0D0D0;
	height: 28px;
	cursor: pointer;
	width: 50px;
	position: relative;
	display: inline-block;
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
}

.toggle-button button {
	cursor: pointer;
	outline: 0;
	display:block;
	position: absolute;
	left: 1px;
	top: 0;
	border-radius: 100%;
	width: 24px;
	height: 24px;
	background-color: white;
	float: left;
	margin: 0;
	border: none;
	transition: left 0.3s;
}

.toggle-button-selected {
	background-color: #83B152;
	border: 2px solid #7DA652;
}

.toggle-button-selected button {
	left: 22px;
}

#loadinggif{
	display:none;
	position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -50px; /* half width of the spinner gif */
    margin-top: -50px; /* half height of the spinner gif */
    text-align:center;
    z-index:123456;
    overflow: auto;
    width: 100px; /* width of the spinner gif */
    height: 102px; /*hight of the spinner gif +2px to fix IE8 issue */
}

.errorstatement{
	font-size:14px;
	color:#d14b4b;
	padding:10px;
	background:#FCC;
	border:1px solid #d14b4b;
	margin-bottom:20px;
}

.successstatement{
	font-size:14px;
	color:#096;
	padding:10px;
	background:#e0fbef;
	border:1px solid #096;
	margin-bottom:20px;
}

.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
    background-color: black;
    border-radius: 6px;
    bottom: 140%;
    color: #fff;
    left: 50%;
    margin-left: -50px;
    opacity: 0;
    padding: 5px 15px;
    position: absolute;
    text-align: center;
    transition: opacity 0.5s ease 0s;
    visibility: hidden;
    z-index: 1;
	width:100px;
	font-size:12px;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
	opacity: 1;
}

.captionimage{
	max-width:100%;
	overflow:hidden;
	margin:15px;
	border-bottom:1px solid #ccc;
}

.captionimage[style='float:left'],
.captionimage[style='float:right']{
	max-width:300px;
}

.captionimage img{
	width:100% !important;
	height:auto !important;
}

.captionimage figcaption{
	color: #666;
    font-family:Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
    font-style: italic;
    text-align: left;
	margin:3px;
	line-height:22px;
}

#header{
	background:#d14b4b;
	height:50px;
	width:100%;
	position:fixed;
	top:0;
	z-index: 10000;
}

.headerwrap{
	max-width:1120px !important;
	width:100%;
}

.menuicon{
	background:url(../images/menu-icon.png) left center no-repeat;
	background-size:30%;
	color: #fff;
    cursor: pointer;
    float: left;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 10px 0;
    padding-left: 32px;
    width: 120px;
	text-align:left;
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow:hidden;
	display:none;
}

.headerlogo{
	display:inline-block;
	margin:0 auto;
	background-image:url(../images/headerlogo.png);
	background-repeat:no-repeat;
	background-position:center;
	height:50px;
	width:200px;
	float:left;
}

.loginicon{
	background:url(../images/user-icon.png) right center no-repeat;
	background-size:30%;
	color: #fff;
    cursor: pointer;
    float: right;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 10px 0;
    padding-right: 32px;
    width: 120px;
	text-align:right;
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow:hidden;
}

.carticon{
	background:url(../images/cart-icon.png) center no-repeat;
	background-size:100% auto;
	color: #fff;
    cursor: pointer;
    float: right;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 10px 20px 10px 0;
    width: 45px;
	text-align:right;
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow:hidden;
}

.carticon font{
	background:#FC9;
	border-radius: 20px;
    color: #333;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    height: 12px;
    line-height: 1;
    padding: 3px;
    text-align: center;
    vertical-align: top;
    width: 12px;
}

#desktopheadersearch{
	float:right;
	margin:10px 20px 10px 10px;
	height:30px;
	overflow:hidden;
	background:#fff;
	border-radius:5px;
	padding:0 5px;
}

#desktopheadersearch input[type="text"]{
	width:200px;
	text-align:left;
	color:#333;
	height:30px;
	border:none;
	display:inline-block;
	box-sizing:border-box;	
}

#desktopheadersearch button{
	background:none;
	color:#333;
	height:30px;
	border:none;
	display:inline-block;
	font-size:15px;
	font-weight:400;
	cursor:pointer;
}

#mobileheadersearch{
	color: #fff;
    cursor: pointer;
    float: right;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 10px;
	display:none;
	border-radius:30px;
	width:30px;
	border:1px solid #fff;
}

#navigation{
	background:#c43838;
	height:40px;
	width:100%;
	position:fixed;
	top:50px;
	z-index: 10000;
}

.sb-left {
	margin-top: 90px;
}

.sb-right {
	margin-top: 90px;
	padding-top:10px;
}

#loginform,
#forgetpassform{
	padding:10px 20px;
	box-sizing:border-box;	
	overflow:hidden;
	transition:0.5s height, 0.3s opacity;
	-webkit-transition:0.5s height, 0.3s opacity;
	-moz-transition:0.5s height, 0.3s opacity;
	-ms-transition:0.5s height, 0.3s opacity;
	-o-transition:0.5s height, 0.3s opacity;
}

#loginform{
	height:225px;
	text-align:center;
}

#forgetpassform{
	height:0px;
	opacity:0;
	text-align:center;
}

.logintrig,
.forgetpasstrig{	
	text-align:center;
	margin:10px 0;
	cursor:pointer;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-ms-transition:0.5s all;
	-o-transition:0.5s all;
}

.logintrig{
	font-size:24px;
	color:#fff;
	font-weight:400;
}

.forgetpasstrig{
	font-size:12px;
	color:#999;
	font-weight:400;
	
}

#loginform input[type="text"],
#loginform input[type="password"],
#forgetpassform input[type="text"]{
	background:#fff;
	border:none;
	border-radius:3px;
	height:35px;
	width:98%;
	padding:0 1%;
	margin:10px 0;
	font-size:14px;
	color:#000;
	font-weight:400;
}

#loginform input[type="submit"],
#forgetpassform input[type="submit"]{
	margin:10px auto;
	display:block;
}

.loginnotify,
.forgetnotify,
.signinnotify,
.signupnotify{
	color:#D14B4B;
	font-size:12px;
}

.signuplink{
	font-size:15px;
	color:#999;
	font-weight:400;
}

#userblock{
	padding:10px 20px;
	box-sizing:border-box;	
}

#userblock .userprofilepic{
	width:120px;
	height:120px;
	border-radius:60px;
	margin:10px 0;
	border:1px solid #333;
}

#userblock h4{
	font-family: 'Oswald', Helvetica, sans-serif;
	text-align:center;
	font-size:18px;
	color:#fff;
}

#userblock h5{
	text-align:center;
	font-size:14px;
	color:#999;
}

#usermenu{
}

#usermenu ul li{
	list-style:none;
	margin:5px 0;
}

#usermenu ul li a{
	background:#292929;
	color:#999;
	text-align:left;
	padding:5px 10px;
	font-size:15px;
	font-weight:400;
	text-transform:uppercase;
	line-height:30px;
	display:block;
	border-left:4px solid #999;
	transition:0.2s all;
	-webkit-transition:0.2s all;
	-moz-transition:0.2s all;
	-ms-transition:0.2s all;
	-o-transition:0.2s all;
}

#usermenu ul li a:hover{
	text-decoration:none;
	border-left:8px solid #D14B4B;
	color:#fff;
	box-shadow:0 0 3px #444;
}

#mobilemenu ul li{
	list-style:none;
	margin:5px 0;
}

#mobilemenu ul li a{
	background:#292929;
	color:#999;
	text-align:left;
	padding:5px 10px;
	font-size:15px;
	font-weight:400;
	text-transform:uppercase;
	line-height:30px;
	display:block;
	border-left:4px solid #999;
	transition:0.2s all;
	-webkit-transition:0.2s all;
	-moz-transition:0.2s all;
	-ms-transition:0.2s all;
	-o-transition:0.2s all;
}

#mobilemenu ul li a:hover{
	text-decoration:none;
	border-left:8px solid #D14B4B;
	color:#fff;
	box-shadow:0 0 3px #444;
}

.footerlink{
	font-size:15px;
	font-weight:400;
	color:#999;
	margin:30px auto 15px;
	display:block;
	line-height:30px;
}

.footerlink a{
	color:#999;
	font-weight:400;
}

#connectwithus{
	padding:0 0 20px;
	border-bottom:1px dashed #999;
}

#connectwithus span{
	display:inline-block;
	font-size:20px;
	text-transform:uppercase;
	font-weight:400;
}

#connectwithus i{
	border: 1px solid #999;
    border-radius: 30px;
    color: #999;
    display: inline-block;
    font-size: 20px;
    margin: 0 10px;
    padding: 15px;
	cursor:pointer;
	transition:0.5s all;
	-webkit-transition:0.3s all;
	-moz-transition:0.3s all;
	-ms-transition:0.3s all;
	-o-transition:0.3s all;
}

#connectwithus i:hover{
	background:#d14b4b;
	color: #fff;
	border: 1px solid #d14b4b;
}

#footer{
	padding:20px 0;
	background:#333;
}

#footer .column1,
#footer .column2{
	float:left;
	width:23%;
	margin:0 1%;
	padding:10px;
}

#footer .column3{
	float:right;
	width:48%;
	margin:0 1%;
	padding:10px;
}

#footer h3{
	color:#666;
	font-size:13px;
	margin:10px 0;
	text-align:left;
}

#footer .column1 ul li,
#footer .column2 ul li{
	list-style:none;
	color:#999;
	text-transform:uppercase;
	font-size:15px;
	text-align:left;
	line-height:35px;
}

#footer .column1 ul li a,
#footer .column2 ul li a{
	color:#999;
}

.footercredits{
	margin-top:20px;
	padding:20px 0 0;
	border-top:1px dashed #999;
}

.footercredits span{
	color:#999;
}

.footercredits a{
	color:#aaa;
}

#contactform input[type="text"]{
	background:#444;
	border:none;
	border-radius:3px;
	height:35px;
	width:48%;
	padding:0 1%;
	margin:0 2% 10px 0;
	font-size:14px;
	float:left;
	text-align:left;
	color:#fff;
	font-weight:400;
}

#contactform textarea{
	background:#444;
	border:none;
	border-radius:3px;
	height:50px;
	width:98%;
	padding:5px 1%;
	margin:0 0 10px 0;
	font-size:14px;
	float:left;
	text-align:left;
	color:#fff;
	font-weight:400;
	resize: none;
	overflow: auto;
}

#contactform #contactsubmit{
	background:#444;
	box-shadow: 0 3px #555;
    color: #999;
}

#contactform #contactsubmit:active{
	box-shadow: 0 0 #555;
}

#contactform p{
	color: #999;
    font-size: 15px;
    line-height: 30px;
	text-align:center;
}

#searchpagesearch{
	margin: 0 0 20px;
}

#searchpagesearch input[type="text"]{
	background:#fff;
	width:90%;
	margin:20px auto;
	max-width:700px;
	padding:5px;
	text-align:left;
	color:#333;
	height:40px;
	border:2px solid #D14B4B;
	display:block;
	border-radius:5px;
}


/*Static Pages*/

#staticpagecontent .wrap{
	width:768px;
}

#staticpagecontent p{
	color:#333;
	font-size:18px;
	text-align:left;
	margin:15px 0;
	line-height:35px;
	font-family: 'Lora', Georgia, serif;
}

#staticpagecontent p a{
	font-family: 'Lora', Georgia, serif;
	color:#d14b4b;
}

#staticpagecontent h2{
	color:#333;
	font-size:30px;
	font-weight:400;
	text-align:left;
	margin:15px 0;
	line-height:30px;
}

/*--Back to top button--*/
#back-top {
	position: fixed;
	bottom: 60px;
	right:15px;
	z-index:100000;
	margin:0;
}
#back-top a {
	width: 50px;
	display: block;
	text-align: center;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #777;
}

#back-top span {
	width: 50px;
	height: 50px;
	display: block;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	position:absolute;
}

#goto-normal{
	background:url(../images/goto-top.png) no-repeat;
	opacity:1;
}

#goto-hover{
	background:url(../images/goto-top-hover.png) no-repeat;
	opacity:0;
}

#goto-active{
	background:url(../images/goto-top-active.png) no-repeat;
	opacity:0;
}


/*Image Scaler*/
.imageScaler {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 56.25% 0 0 0;
}
.imageScaler img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


@media screen and (max-width: 1119px) {	

.wrap{
	max-width: 960px;
}

#back-top {
	display:none !important;
}

}


@media screen and (max-width: 959px) {	

.wrap{
	max-width: 768px;
}

#footer .column1 ul li,
#footer .column2 ul li{
	font-size:13px;
}

}

@media screen and (max-width: 767px) {

.wrap{
	max-width: 480px;
}

.captionimage[style='float:left'],
.captionimage[style='float:right']{
	max-width:100%;
}	

.menuicon{
	display:block;
}

.loginicon{
	width:45px;
	text-indent: -120px;
	background-size:100%;
	padding-right:45px;	
}

.menuicon{
	width:45px;
	text-indent: 100px;
	background-size:100%;
	padding-left:45px;
}

.menuicon:after,
.loginicon:after{
	content:"";
}

.headerlogo{
	float:none;
}

#desktopheadersearch{
	display:none;
}

#mobileheadersearch{
	display:block;
}

#navigation{
	display:none;
}

.sb-left {
	margin-top: 50px;
}

.sb-right {
	margin-top: 50px;
}

#connectwithus span{
	display:block;
	margin-bottom:10px;
}

#footer .column1,
#footer .column2{
	width:48%;
}

#footer .column3{
	border-top: 1px dashed #999;
    clear: both;
    float: none;
    width: 100%;
}

}

@media screen and (max-width: 479px) {

.wrap{
	max-width: 100%;
}

.headerlogo{
	width:60px;
	background-position:left center;
}

#connectwithus i{
	padding:10px;
}

	
}