/*-----Prevents iPhone from resizing in landscape mode -----*/
html {-webkit-text-size-adjust: none; }

/*----------- apply a natural box layout model to all elements --------------*/
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/*-----BODY -----*/
body {
	font-size: .875em;
    font-family: 'Roboto', sans-serif; ;
    font-weight: 300;
}

/*-----CONTAINER -----*/
#container {
	background-color: #f8f8f8;   /*becomes the nav background color*/
	min-width: 320px;
	max-width: 1140px;
}

/*-----HEADER -----*/
header {
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(255,255,255,1) 32%, rgba(243,243,243,1) 68%, rgba(237,237,237,1) 69%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255,255,255,1) 32%,rgba(243,243,243,1) 68%,rgba(237,237,237,1) 69%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(255,255,255,1) 32%,rgba(243,243,243,1) 68%,rgba(237,237,237,1) 69%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

header img {
    width: 310px;
}

/*------ Decorative Bar ------*/
div.decorativeWrapper {
    display: none;
}

/*-----Navigation -----*/
button#showPhoneNav {
    color: #e8e8e8;
    font-weight: 600;
    display:block;
    border: 1px solid #222;
    border-radius: 10px;
    width: 96%;
    margin-left: 2%;
    padding: .75em 0;
    
    background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
    copy
}

ul#myNav {
    display: none;
}

nav ul {
    border: 1px solid #ccc;
    border-radius: 14px;
    margin: .5em 2%;
    background-color: #f3f3f3;
    box-shadow: 0 0 5px #666;
}
nav ul li {}
nav ul li a {
	display:block;
    text-align: center;
    padding: .6em;
    border-top: 1px solid #ccc;
    text-decoration: none;
    font-weight: 600;
    color: #484848;

}

nav ul li:first-child a {
    border-top:none;
}

nav ul li.selected a {
    color:red;
}

/*-----CONTENT -----*/
#content {
	min-height: 5em;
    background-color: #fff;
}
#content article {
    padding: 0 2%;
}

#content h1 {
    font-size: 1.5em;
    font-weight: 600;
    color: #df0800;
    padding-top: 1.4em;
    padding-bottom: .25em;
    border-bottom: 2px solid #ccc;
}

#content h2 {
    font-size: 1.3em;
    font-weight: 600;
    color: #0046eb;
    padding-top: 1.1em;
}

#content h3 {
    font-size: 1.1em;
    color: #09b809;
    padding-top: .8em;
}

#content p {
    color: #333;
    padding-top: .5em;
    line-height: 130%;
}

#content a {
    color: #0046eb;
}
#content article ul li {
     list-style-type: square;
    margin-left:4%;
}

/*----- FOOTER -----*/
footer {
	clear: both;
	text-align: center;
	padding: .5em;
}

footer p {
    padding: 0.8em;
    text-align: center;
    font-size: 0.6em;
    color:#484848;
}

footer a {
    color: #484848;
}

/* ---- Clear Fix ----*/
.clearfix:after {
    content: "";
    display:table;
    clear:both;
}

/*----- Images -----*/
figure.w50 img { width: 100%;}
figure.w50 {
    background-color: #fff;
    width: 100%;
    border: 1px solid #999;
    box-shadow: 2px 2px 5px rgba(63,63,63,0.5);
    margin-top: .5em;
}
figcaption {
    text-align: center;
    font-size: .7em;
    padding: .3em;}
figure.right {float:right;}
}
}