@charset "utf-8";
/* (min-width: 50px) and (max-width: 639px) */
body { background-image: none; }

header { height: 75px; background: url(../images/banner-logo-small.jpg); }

header a.logo {
	width: 105px;
	height: 40px;
	top: 16px;
	right: 15px;
	background-image: url(../images/logo-small.png);
 }
 
article { padding: 0px 0px 0px 0px; }

/* 
@ 1:23:23 Styling the navigation for small screens.
"position: static" puts nav in order it shows up in the HTML file, which is right before the footer. (Jamar's comment: "So, was nav postion in the HTML file pre-planned?
*/
nav { 
	position: static;
	padding: 10px 0px 10px 0px;
	background-color: #515673;
 }
/*Rounded corners: 1:26:26
*/
nav a { 
	color: #a6abc5;
	display: block;
	margin: 15px;
	padding: 9px;
	border: 1px solid #a6abc5;
	background: url(../images/arrow-mobile.png) no-repeat right center;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
 }


/* 1:28:28 15% alpha is 85% transparency. RGBa(lpha) 
*/

nav a:hover { color: #fff; background-color: rgba(255,255,255,.15)} 

 
.promo-container { padding: 0px; }
 
.promo-container .promo { 
 	width: auto;
	float: none;
	padding: 0px 0px 0px 0px;
	background-position: 0px 0px;
	border-top: 1px solid #ccc;
 }
.promo-container .promo .content { padding: 0px 0px 0px 0px; }

.tagline { padding: 5px 0 0 0; font-size: 0.8em; font:oblique ; font-style:italic; font-weight:; color: #000000; }

footer { border-top: 1px solid #515673;}

body { background-image: none;}  

/* Replacing the SMALL logo and banner graphics with CSS media queries	1:45 */
@media
	Only screen and (-webkit-min-device-pixel-ratio: 2),
	Only screen and (min--moz-device-pixel-ratio: 2),
	Only screen and (-o-min-device-pixel-ratio: 2/1),
	Only screen and (min-device-pixel-ratio: 2),
	Only screen and (min-resolution: 192dpi),
	Only screen and (min-resolution: 2dppx)
{



