@charset "utf-8";
/* Screen CSS Document 
Implementation Methods
1- Element Selector: p, h1, ol
2- ID Selector: #nav, #header
3- Class Selector: .notice
4- Context Selector: #nav ul li a
5- Psuedo Class: ie. a:link OR a:visited OR a:hover OR a:active
6- Attribute Selector: ie. #nav a[title~=home]

Notice: Case selectors are case sensitive
*/

body{
	background-color: #004b65;
	color:#000;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: .95em;
	margin: 0;
}

#wrapper{
	min-width:900px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-color:#03C;
	background-color:#000;
	padding-bottom: 20px;
}

#topper{
	overflow: auto;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

#header{
	height: 210px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 0;
	padding-bottom: 0;
	background-color:#7ca4b7;
	background-image:url(../../missionshoe/images/logowebtest.jpg);
	background-repeat: no-repeat;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px; /* This is css 3, currently not supported by any browser*/
	-webkit-border-top-left-radius: 40px;
	-webkit-border-top-right-radius: 40px;
	-moz-border-radius-topright: 40px;
	-moz-border-radius-topleft: 40px;	

}

#header img{
	float: left;
}

#header h1{
	float: left;
	display: inline;
}

#nav{
	height: auto;
	width: 95%;
	min-width:800px;
	margin-left: auto;
	margin-right: auto;
	background-repeat:no-repeat;
	background-color:#7ca4b7;
	width: 100%;
	padding; 0;
	padding-top:10px;
}

#nav ul{
	margin: 5px 0px 0px 0px;
	padding: 0px;
	font: bold .85em "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#nav ul li{
	display: inline;
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a{
	display: inline-block;
	font-size:16px;
	font-weight:bold;
	width: 7em;
	margin-left: .6em;
	padding: 3px .5em;
	padding-bottom: 0;
	padding-top: 0;
	margin-top: 0;
	border-bottom: none;
	background-color: #ccc;
	text-decoration: none;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px; /* This is css 3, currently not supported by any browser*/
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;	
}

/* Remember when describing link states the saying Love, Ha */
/*L=Link Statement, V=Visited, H=Hover State, A=During the Clicking Process (Active)*/

#nav a:link{
	color:#000;
}

#nav a:visited{
	color:#000;
}

#nav a:link:hover,
#nav a:visited:hover{
	color:#004b65;
	background-color: #f4f0d7;

}

.home #nav a[title~=home],
.storemain #nav a[title~=storemain],
.testimonial #nav a[title~=testimonial],
.about #nav a[title~=about],
.contact #nav a[title~=contact]{
	color: #000;
	background-color: #000;
}

#midbox{
	overflow: auto;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	background-color: #7ca4b7;
}

#subnav{
	width: 15%;
	min-height: 300px;
	float:left;
	background-color: #f4f0d7;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px; /* This is css 3, currently not supported by any browser*/
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-topleft: 10px;	
}

#subnav ul{
	padding-left: .5em;
	list-style: none;
}
#subnav a{
	display: inline;
	padding-bottom: .3em;
	border-bottom: none;
	text-decoration: none;
	font-size: 1.2em;
	text-align:left;
}

/* Remember when describing link states the saying Love, Ha */
/*L=Link Statement, V=Visited, H=Hover State, A=During the Clicking Process (Active)*/

#subnav a:link{
	color:#000;
}

#subnav a:visited{
	color:#000;
}

#subnav a:link:hover,
#subnav a:visited:hover{
	color:#004b65;
	font-weight: bold;
}

#content{
	width: 100%;
	float: left;
	background-color: #f4f0d7;
}

#content div{
	padding: .25in;
}

#content a img{
	border: none;
}

#content img{
	padding-right:.4em;
}

#content ul{
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: auto;
}


#content label{
	width: 8em;
	float: left;
	font-weight: bold;
}

#content fieldset{
	overflow:auto
}


#aside{
	width: 15%;
	min-height: 300px;
	float: left;
}

#aside div{
	padding:.3em;
}

#aside a{
	text-decoration:none;
	border:none;
}

#aside a img{
	border:none;
}

#footer{
	font-size:smaller;
	background-color:#7ca4b7;
	margin-left: auto;
	margin-right: auto;
	width: 95%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px; /* This is css 3, currently not supported by any browser*/
	-webkit-border-bottom-left-radius: 40px;
	-webkit-border-bottom-right-radius: 40px;
	-moz-border-radius-bottomright: 40px;
	-moz-border-radius-bottomleft: 40px;	
}
	
