html, body, .containerX, .scroller {
	height: 100%;
}

.mp-menu li a { color: #00CC99; text-shadow: 1px 1px 1px white}
.mp-level li a { color: #FF9900; text-shadow: 1px 1px 1px white;}
.mp-level li a { color: #FFFFFF; text-shadow: 1px 1px 1px black;}

.scroller {
	overflow-y: hidden;
}

.scroller,
.scroller-inner {
	position: relative;
}

.containerX {
	position: relative;
	overflow: hidden;
	background: #666666;
}

.logo {
	position: relative;
	padding: 0px 0px 15px 0px;
	width: 100%; 
	height: auto;
	top: 15px;
	left: 30px; 
	max-width: 370px; 
	min-width: 240px;
}
@media all and (max-width:30em) {
.logo { max-width: 80%; }
}

.menu-trigger {
	position: absolute;
	padding-left: 0px;
	top: 75px;
	left: -5px; 
	width: 40px;
	height: 40px;
	font-size: 0.9em;
	z-index: 1;
}

.menu-trigger:before {
	position: absolute;
	left:-5px;
	width: 40px;
	height: 40px;
	background-image: url(../Graphics/MenuIcon4040.png);
	content: '';
}


/*** TRIGGER FOR MENU ***/
@media all and (max-width:52em) {
.menu-trigger { top: 0px; left: 0px;  }
}


.mp-pusher {
	position: relative;
	left: 0;
	height: 100%;
}

.mp-menu {
	position: absolute; /* we can't use fixed here :( */
	top: 0;
	left: 0;
	z-index: 1;
	width: 250px;
	height: 100%;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.mp-level {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(AQUA,BLACK);
	/*background: #888888;*/
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	content: '';
	opacity: 0;
}

.mp-pusher::after,
.mp-level::after {
	background: rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	-moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.mp-level::after {
	z-index: -1;
}

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.mp-level.mp-level-overlay {
	cursor: pointer;
}

.mp-level.mp-level-overlay.mp-level::before {
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 1;
}

.mp-pusher,
.mp-level {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/* overlap */
.mp-overlap .mp-level.mp-level-open {
	box-shadow: 1px 0 2px rgba(0,0,0,0.2);
	-webkit-transform: translate3d(-40px, 0, 0);
	-moz-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
	box-shadow: none;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* cover */
.mp-cover .mp-level.mp-level-open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* content style */
.mp-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mp-menu h2 {
	margin: 0;
	padding: .6em .3em .6em .2em;
	color: #FFFFFF;
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
}

.mp-menu.mp-overlap h2::before {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 8px;
	font-size: 75%;
	line-height: 1.8;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.1s 0.3s;
	transition: opacity 0.3s, transform 0.1s 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}

.mp-menu.mp-cover h2 {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 1em;
}

.mp-overlap .mp-level.mp-level-overlay > h2::before {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.mp-menu ul li > a {
	display: block;
	padding: 0.7em 1em 0.7em 1.8em;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	text-shadow: 1px 1px 1px black;
	font-size: 1.4em;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}

.mp-menu ul li::before {
	position: absolute;
	left: 10px;
	z-index: -1;
	color: rgba(0,0,0,0.2);
	line-height: 3.5;
}

.mp-level > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.mp-menu ul li a:hover,
.mp-level > ul > li:first-child > a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-back {
	background: rgba(0,0,0,0.1);
	outline: none;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px black;
	letter-spacing: 1px;
	font-weight: 700;
	display: block;
	font-size: 0.8em;
	padding: .6em;
	position: relative;
	box-shadow: inset 0 1px rgba(0,0,0,0.1);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}


.mp-back::after {
	position: absolute;
	right: 10px;
	font-size: 1.3em;
	color: rgba(0,0,0,0.3);
}

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
	background: transparent;
	box-shadow: none;
	color: transparent;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
/* We'll show the first level only */
.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
	padding-left: 250px;
}

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
	display: none;
}

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
	display: block;
}


/*** Cart Icon ***/
.cart-icon {
	position: absolute;
	top: 65px;
	left: 385px;
	/*margin-top: 70px;
	margin-left: 0px;*/
	width: 66px;
	height: 66px;
	float: right;
	overflow: hidden;
	background-image: url(../Graphics/WhiteCartIcon66.png); 
}
/* @media all and (max-width:42em){
.cart-icon {	top: 65px; }

} */
@media all and (max-width:30em){
.cart-icon {	left: 85%;}

} 

/*** EXPANDING SEARCH BAR ***/
.sb-search {
	position: absolute;
	margin-top: 70px;
	right: 0px;
	top: 0px;
	width: 0%;
	min-width: 40px;
	height: 40px;
	float: right;
	overflow: hidden;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	transition: width 0.3s;
	-webkit-backface-visibility: hidden;
}

.sb-search-input {
	position: absolute;
	top: 0px;
	right: 0px;
	/* position: fixed;
	top: 80px;
	right: 140px; */
	border: none;
	outline: none;
	background: #fff;
	max-width: 300px;
	width: 85%;
	height: 40px;
	margin: 0;
	z-index: 10;
	padding: 0px 40px 0px 5px;
	/* padding: 20px 65px 20px 20px;*/
	
	font-family: inherit;
	font-size: 18px;
	color: #2c3e50;
}

.sb-search-input::-webkit-input-placeholder {
	color: #efb480;
}

.sb-search-input:-moz-placeholder {
	color: #efb480;
}

.sb-search-input::-moz-placeholder {
	color: #efb480;
}

.sb-search-input:-ms-input-placeholder {
	color: #efb480;
}

.sb-icon-search,
.sb-search-submit  {
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
	margin: 0;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
}

.sb-search-submit {
	background: #fff; /* IE needs this */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
   	filter: alpha(opacity=0); /*  IE 5-7 */
    	opacity: 0;
	color: transparent;
	border: none;
	outline: none;
	z-index: -1;
}

.sb-icon-search {
	color: #fff;
	background: #e67e22;
	z-index: 90;
	font-size: 22px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
 	background-image: url(../Graphics/SearchIcon40.png); 
}


/* Open state */
.sb-search.sb-search-open,
.no-js .sb-search {
	width: 100%;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
 background-image: url(../Graphics/SearchIcon40.png); 	
 color: #fff;
	z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
	z-index: 90;
}

@media all and (max-width:52em){
/*** EXPANDING SEARCH BAR ***/
.sb-search { 
    	margin-top: 0px; 
}
.sb-search-input { 
    	max-width: 240px; 
}

}








/************************************************************/
/*****              SIGNON popdown SECTION               ****/
/************************************************************/

/* General styles for all menus */
.cbp-spmenu {
background-color: rgba(0, 125, 175, 1.0);	position: fixed;
}

.cbp-spmenu h3 {
	color: #afdefa;
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #0d77b6;
}

.cbp-spmenu a {
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
}

.cbp-spmenu a:hover {
	background: #258ecd;
}

.cbp-spmenu a:active {
	background: #afdefa;
	color: #47a3da;
}



/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-horizontal {
	width: 240px;
	height: 180px;
	left: 0px;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}



/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -400px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}


/* Push classes applied to the body */


.cbp-spmenu-push {
 	background-image: url(../Graphics/GIFedBnB1370.jpg);
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-pushp {
 	background-image: url(../Graphics/home_page_background2.jpg);
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}



/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}



/*** LOG ON/OFF and BUTTON ***/
.signinButton { position: absolute; top: -15px; left: 4px; max-width: 72px; max-height: 38px; background: none; color: #FFA500; text-shadow: 1px 1px 1px blue; font-weight: 800; border: 0; padding: 0px; margin: 0; font-size: 18px; z-index: 1001;}

.signinButton:hover { background: #0d77b6;}

.signedOn { position: absolute; top: 2px; left: 5px; max-width: 200px; background: none; color: #FFFFFF; font-weight: 500; border: 0; padding: 
0px; margin: 0; font-size: 12px; z-index: 1001;}

.signedOn a { font-size: 12px; }



@media all and (min-width:42em) and (max-width:65em) {
.signinButton { top: 2px; left: -4px; font-weight: 700; font-size: 14px; text-align: right;}
}

@media all and (min-width:1em) and (max-width:42em) {
.cbp-spmenu-horizontal { left: 0px; }
.signinButton { top: -2px; left:51%; font-weight: 700; font-size: 12px; text-align: right;}
.signedOn { top: -4px; left: 45%; }
}



/* LOGIN FORM */

.form-4 {
    /* Size and position */
    width: 240px;
    height: 305px;
    margin: 5px;
    padding-top: 0px;
    position: relative;
    color: white;
    text-shadow: 0 2px 1px rgba(0,0,0,0.3);
}

.form-4 h1 {
    font-size: 22px;
    line-height : 26px;
    padding: 20px 0px 8px 0px;
    
}
.form-4 p {
    padding-bottom: 1px;
}
.form-4 p1 {
    font-size: 10px;
    line-height: 12px;
    padding-bottom: 5px;
}

.form-4 p1 a {
	color: #fff;
	font-size: 10px;
	font-weight: 500;
}



.form-4 input[type=text],
.form-4 input[type=password] {
    /* Size and position */
    width: 90%;
    padding: 5px;
    margin-bottom: 5px;

    /* Styles */
    border: 1px solid #4e3043; /* Fallback */
    border: 1px solid rgba(78,48,67, 0.8);
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #fff;
    font-size: 13px;
}

/* Placeholder style (from http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css) */

.form-4 input::-webkit-input-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input:-moz-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input:-ms-input-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input[type=text]:hover,
.form-4 input[type=password]:hover {
    border-color: #333;
}

.form-4 input[type=text]:focus,
.form-4 input[type=password]:focus,
.form-4 input[type=submit]:focus {
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1),
        0 0 0 3px rgba(255,255,255,0.15);
    outline: none;
}

/* Fallback */
.no-boxshadow .form-4 input[type=text]:focus,
.no-boxshadow .form-4 input[type=password]:focus {
    outline: 1px solid white;
}

.form-4 input[type=submit] {
    /* Size and position */
    width: 95%;
    padding: 8px 5px;
    
    /* Styles */
    background: #634056;
    background: -moz-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -ms-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -o-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(99,64,86,0.5)), to(rgba(76,49,65,0.7)));
    background: -webkit-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));    
    border-radius: 5px;
    border: 1px solid #4e3043;
    box-shadow: inset 0 1px rgba(255,255,255,0.4), 0 2px 1px rgba(0,0,0,0.1);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: white;
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
    font-size: 16px;
    font-weight: bold;
}

.form-4 input[type=submit]:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.2), 
        inset 0 20px 30px rgba(99,64,86,0.5);
}

/* Fallback */
.no-boxshadow .form-4 input[type=submit]:hover {
    background: #594642;
}

.form-4 label {
    display: none;
    padding: 0 0 5px 2px;
    cursor: pointer;
}

.form-4 label:hover ~ input {
    border-color: #333;
}

.no-placeholder .form-4 label {
    display: block;
}


/* RESET PAGE LENGTH FORM */

.form-5 {
    /* Size and position 
    width: 85px;*/
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    position: relative;
    color: white;
    z-index: 1;
    text-shadow: 1px 1px 1px black;
}

.form-5 h1 {
    font-size: 20px;
    line-height : 26px;
    padding-bottom: 10px;
}
.form-5 p {
    font-size: 18px;
    line-height : 20px;
    padding-right: 5px;
}


.form-5 input[type=select] {
    /* Size and position */
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 3px;

}

