/* --------------------------------------------- */
/* --------- Branding: Color Palette ----------- */
/* --------------------------------------------- */
/* These are the colors of the boxes under the Branding section */

#swatch1{
	background-color: #1d9ba6;
}
#mini1a{
	background-color:#a6dcdf;
}	
#mini1b{
	background-color:#57bdd0;
}
#mini1c{
	background-color:#005b6c;
}

#swatch2{
	background-color:#2d9fcf;
}
#mini2a{
	background-color:#90dcf6;
}	
#mini2b{
	background-color:#59caf1;
}
#mini2c{
	background-color:#1a6299;
}
	
#swatch3{
	background-color: #4e4ea4;
}	
#mini3a{
	background-color:#cfcfe7;
}	
#mini3b{
	background-color:#8383b7;
}
#mini3c{
	background-color:#290c59;
}

#swatch4{
	background-color: #ffffff;
}
#mini4a{
	background-color:#c3c3c3;
}	
#mini4b{
	background-color:#737373;
}
#mini4c{
	background-color:#2c2c2c;
}		

/* ----------------------------------------------------- */
/* --------- Typography: Heading & Body Copy ----------- */
/* ----------------------------------------------------- */
/* These are the font families of all the headings and body copy */

body{
	font-family: Raleway, Helvetica, Arial, sans-serif;
}

h1,h2,h3,h4,h5,h6{
	font-family: Raleway, Helvetica, Arial, sans-serif;
}


/* -------------------------------------------------- */
/* --------- Navigation: Main & Secondary ----------- */
/* -------------------------------------------------- */
/* Colors, style, floating, shapes, etc of main & secondary navs */

/* Main Navigation Style */
#mainnav{
	background-image: url("images/navbkg.png");
	clear:both;
	height:50px;
}
#mainnav ul{
	display:flex;
	list-style:none;
	float:right;
	margin:0;
}
#mainnav li{
	line-height:49px;
}
#mainnav li:hover{
	background-color:#005b6c;
}
#mainnav a{
	font-size:1.2em;
	text-align:center;
	padding:0px 20px;
	color: #ffffff;
}
#mainnav a:link{

	font-weight:bold;
	text-decoration:none;
	/* other styles */
}
#mainnav a:visited{
	color: #ffffff;
	/* other styles */
}
#mainnav a:active{
	color: #a6f1f0;
	/* other styles */
}

#headersample{
	display:block;
	margin-left:auto;
	margin-right:auto;
}

/* Secondary Navigation Style */
#secondnav{
	height:30px;
	background-color:#005b6c;
	text-align:center
}
#secondnav ul{
	display:flex;
	list-style:none;
	margin:0;
	padding:0;
	justify-content:center;
}
#secondnav li{
	line-height:29px;
	font-size:.9em;
}
#secondnav a{
	padding:0px 30px;
	color: #ffffff;
	font-weight:bold;
}
#secondnav a:link{
	text-decoration:none;
	/* other styles */
}
#secondnav a:visited{
	color: #ffffff;
	/* other styles */
}
#secondnav a:hover{
	color: #d0f1f1;
	/* other styles */
}
#secondnav a:active{
	color: #a6f1f0;

	/* other styles */
}




/* ----------------------------------- */
/* --------- HTML Elements ----------- */
/* ----------------------------------- */
/* Styling for all HTML Elements */

/* True for all headings */
h1, h2, h3 ,h4, h5, h6{
	color: #4e4ea4;
}


/* Style for individual headings */
h1{
	font-size:3em;
}

h2{
	font-size:2em;
}

h3{
	font-size:1.5em;
}
h4{
	font-size:1.2em;
}
h2, h4{
	font-weight:normal;
}

h2, h4, h5, h6{
	color:#1d9ba6;
}


/* List Styles */
.notNav{
	margin-left:0px;
	padding-left:0;
}
.notNav > li{
	position:relative;
	margin: 0 0 10px 25px;
	padding: 4px 8px;
	padding-left:32px;
	list-style: none;
	background: url(images/bullet.png) left center no-repeat;
}

ol{
	counter-reset:li;
	margin-left:20px;
	padding-left:0;
}
ol > li{
	position:relative;
	margin: 0 0 10px 30px;
	padding: 4px 8px;
	list-style:none;
}
ol > li:before{
	content:counter(li);
	counter-increment:li;
	position:absolute;
	top:-2px;
	left:-30px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border-radius:1em;
	margin-right:8px;
	padding:4px;
	width:30px;
	height:30px;
	color:#ffffff;
	background:#2d9fcf;
	font-weight:bold;
	text-align:center;
}


/* Non-Navigational Link Styles */
/* This is for all default links on your page */
a{
	text-decoration:none;
	color: #6262d3;
}
a:visited{
	color:#57bdd0;
}
a:hover{
	color:#8484ff;
}
a:active{
	color:#cfcfe7;
}

/* This is for secondary link styles (possibly in your footer, etc) */
.linkstyle2{
	display:inline-block;
	margin-top:20px;
	background-color:#1d9ba6;
	padding:5px;
	font-weight:bold;
	text-transform:uppercase;
	color:#ffffff;
}
.linkstyle2:visited{
	color:#ffffff;
}
.linkstyle2:hover{
	color:#290c59;
}
.linkstyle2:active{
	color:#5050a6;
}


/* Paragraph Styles */
p{
	color:#2c2c2c;
	/* Other paragraph styles */
}


/* Figure and Figcaption Styles */
figure{
	width:200px;
	height:200px;
	background-color:#358ec7;
	margin-left:auto;
	margin-right:auto;
}
figure img{
	display:block;
}
figcaption{
	position:relative;
	display:block;
	visibility:visible;
	width:160px;
	height:160px;
	padding:20px;
	margin-top:-200px;
	color:white;
	font-size:2em;
	background:rgba(78, 78, 163, .8);
}
figcaption:hover{
	visibility:hidden;
}
figure img:hover + figcaption{
	visibility:hidden;
}
#popSANS{
	display:none;
	position:fixed;
	top:50px;
	background:rgba(0,0,0,.8);
	width:600px;
	height:800px;
}
#popSANS figcaption{
	visibility:visible;
	margin:0;
	background:none;
	display:inline-block;
	padding:10px;
	color:white;
	width:580px;
	font-size:1em;
}
.close{
	padding:0px;
	position:absolute;
	top:0px;
	right:10px;
	color:white;
}










/* ------------------------------------- */
/* --------- 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 #777;
	padding: 20px;
}
.styleguide{
	font-family: "Courier New", Courier, monospace;
}
h1.styleguide, h2.styleguide, h3.styleguide, h4.styleguide, h5.styleguide, h6.styleguide{
	color: #777;
	font-family: "Courier New", Courier, monospace;
}
h2.styleguide{
    background-color: #777;
    border-radius: 15px;
    padding: 15px;
    margin-left: -15px;
    color: white;
}
p.styleguide{
	color: #777;
	font-family: "Courier New", Courier, monospace;
}
section{
    margin-top: -10px;
    margin-bottom: 70px; 
}
.layoutimg{
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:40px;
	border:1px dotted #777;
}
.colorgroup{
    float: left;
    width: 170px;
	text-align:center;
}
.colorgroup h4{
	font-size: .9em;
}
.colorgroup p{
    font-size: .8em;
}
.clear{
    clear: both;
}
.swatches{
    width: 99px;
    height: 100px;
    border-radius: 10px 10px 0px 0px;
	border-width:2px 2px 0px 2px;
	border-style: solid;
	border-color: #567490;
	margin-left:auto;
	margin-right:auto;
}
.miniswatch{
	margin:0px;
	padding:0px;
	width:33px;
	height:33px;
	border-bottom: 2px solid #567490;
}
.subswatches{
	display:flex;
	justify-content:center;
}
.minileft{
	border-left:2px solid #567490;
}
.miniright{
	border-right:2px solid #567490;
}
