/* --------------------------------------------- */
/* --------- Branding: Color Palette ----------- */
/* --------------------------------------------- */
/* These are the colors of the boxes under the Branding section */
#swatch1{
	background-color: #000000;
}	
#swatch2{
	background-color: #2F4E6F;
}	
#swatch3{
	background-color: #98B1C4;
}	
#swatch4{
	background-color: #E15119;
}		

/* ----------------------------------------------------- */
/* --------- Typography: Heading & Body Copy ----------- */
/* ----------------------------------------------------- */
/* These are the font families of all the headings and body copy */

body{
	font-family:"Arial Black", Gadget, sans-serif ;
}

h1,h2,h3,h4,h5,h6{
	font-family:Georgia, serif ;
}


/* -------------------------------------------------- */
/* --------- Navigation: Main & Secondary ----------- */
/* -------------------------------------------------- */
/* Colors, style, floating, shapes, etc of main & secondary navs */

/* Main Navigation Style */
#mainnav{
clear:left;
}
#mainnav ul{
}
#mainnav li{
	display: inline;
	text-decoration:none;
	color: white;
	text-align: center;
}
#mainnav a:link{
	color: white;
	text-decoration:none;
	/* other styles */
}
#mainnav a:visited{
	color: white;
	/* other styles */
}
#mainnav a:hover{
	color: #000000;
	background-color: #E15119;
	/* other styles */
}
#mainnav a:active{
	color: #FFFFFF;;
	/* other styles */
}


/* Secondary Navigation Style */
#secondnav{
	height: 200px
}
#secondnav ul{
	text-decoration: none;
}
#secondnav li{
	list-style:none;
	padding: 3px;
}
#secondnav a:link{
	color: white;
	text-decoration:none;
	/* other styles */
}
#secondnav a:visited{
	color: white;
	/* other styles */
}
#secondnav a:hover{
	color: #E15119;
	/* other styles */
}
#secondnav a:active{
	color: #FFFFFF;
	/* other styles */
}




/* ----------------------------------- */
/* --------- HTML Elements ----------- */
/* ----------------------------------- */
/* Styling for all HTML Elements */

/* True for all headings */
h1, h2, h3 ,h4, h5, h6{
	color: #2F4E6F;
}


/* Style for individual headings */
h1, h2, h3 ,h4, h5, h6{
	font-family:Georgia, serif ;
}



/* List Styles */
ul{
	text-decoration:none;
}
ul li{
	text-decoration:none;
}



/* Non-Navigational Link Styles */
/* This is for all default links on your page */
a:link{
	color: white;
	text-decoration:none;
}
a:visited{
	color: white;
}
a:hover{
	color: #E15119;
}
a:active{
	color: #FFFFFF;
}

/* This is for secondary link styles (possibly in your footer, etc) */
.linkstyle2 a:link{
	color: white;
	text-decoration:none;
}
.linkstyle2 a:visited{
	color: white;
}
.linkstyle2 a:hover{
	color: #E15119;
}
.linkstyle2 a:active{
	color: #FFFFFF;
}


/* Paragraph Styles */
p{
	font-family:"Arial Black", Gadget, sans-serif ;
	/* Other paragraph styles */
}


/* Figure and Figcaption Styles */
figure{

}
figure img{

}
figcaption{
text-align: center;
}


img{
border: 2px solid black;
}



/* ------------------------------------- */
/* --------- Style Guide CSS ----------- */
/* ------------------------------------- */
/* The following CSS is used for the styling of the structure of the Style Guide itself */
body{
	width: 700px;
	margin: 10px auto;
	border: 1px solid #2F4E6F;
	padding: 10px;
	background-color:#98B1C4;
}

.styleguide{
	font-family: "Courier New", Courier, monospace;
}
h1.styleguide, h2.styleguide, h3.styleguide, h4.styleguide, h5.styleguide, h6.styleguide{
	color: #2F4E6F;
	font-family: "Courier New", Courier, monospace;
}
h2.styleguide{
    background-color: #2F4E6F;
    border-radius: 15px;
    padding: 15px;
    margin-left: -15px;
    color: white;
}
p.styleguide{
	color: #2F4E6F;
	font-family: "Courier New", Courier, monospace;
}

section{
    margin-top: 10px;
    margin-bottom: 70px; 
	clear:left;
}
.colorgroup{
    float: left;
    width: 170px;
}
.colorgroup h4{
	font-size: .9em;
}
.colorgroup p{
    font-size: .8em;
}
.clear{
    clear: both;
}
.swatches{
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
