
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #000;
}


/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}
a img {
	border: none;
}
a:link {
	text-decoration: none; 
}
a:visited {
	text-decoration: none;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}

.container {
	width: 60em;
	background: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	
	background: #ADB96E;
	
}

nav ul a, nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #FFF;
}



header, section, footer, aside, nav, article, figure {
	display: block;
}
.box{
	box-shadow:3px 5px 1px 0px;
	padding:.5em;
	margin:1em;
	margin-left:40px;
	border:2px solid #CCC;
	float:left;
	color:black;
	width:15em;
	height:20em;
	
	background-color:#CCCCCC;
}
.box h1{
	font-size:1.2em;
	text-align:center;
	text-shadow:1px 1px 1px #999;
}





@media all and (min-width:960px){
 #bannerImage{
	height:30em;
	background-image:url(../images/a.jpg);
	background-repeat:none;
	background-size:cover;
	overflow:auto;
}
}

@media all and (min-width:801px) and (max-width: 959px) {
	#bannerImage{
		display:none;
}
}

@media all and (min-width:769px) and (max-width: 800px) {
 #bannerImage{
	display:none;
}
}

@media all and (min-width:569px) and (max-width: 768px) {
 #bannerImage{
	display:none;
}
}

@media all and (min-width:481px) and (max-width: 568px) {
   #bannerImage{
		display:none;
}
}

@media all and (min-width:321px) and (max-width: 480px) {
  #bannerImage{
		display:none;
}
}

@media all and (min-width:0px) and (max-width: 320px) {
   #bannerImage{
		display:none;
}
}
