@charset "utf-8";
@font-face {
	font-family: Cabin;
	src: url(../_assests/Cabin-Regular.otf) format("opentype"),
		 local("Cabin-Regular");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: Cabin;
	src: url(../_assests/Cabin-Bold.otf) format("opentype"),
		 local("Cabin-Bold");
	font-weight: Bold;
	font-style: normal;
}
@font-face {
	font-family: Cabin;
	src: url(../_assests/Cabin-Italic.otf) format("opentype"),
		 local("Cabin-Italic");
	font-weight: normal;
	font-style: italic;
}
/*! normalize.css v1.0.0 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.75em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:75%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.cf:after {
    clear: both;
}
/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}
body {
	background: #CCCCCC;
	margin: 0;
	padding: 0;
	border: 0;			/* This removes the border around the viewport in old versions of IE */
	width: 100%;
	color: #000;
	/* [disabled]font: 1.2em/105%; */
	font-family: Cabin, Arial, Helvetica, sans-serif;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl, li{ /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	list-style: none;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1 {
	font-size: 120%;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: bolder;
}
h2 {
	font-size: 115%;
	font-weight: bold;				
}
h3, h4, h5 {
	font-size: 110%;	
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
.menu a:link {
	text-decoration: none;
}
.menu a:visited {
	color: #000066;
}
.menu a:hover, active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;	
}
.menu a:focus {
	outline: thin dotted;
}
a:link {
	color: #0000FF;
	text-decoration: underline;
}
a:visited {
	color: #999999;
}
a:hover, active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #FF0000;
	text-decoration: underline;	
}
a:focus {
	outline: thin dotted;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	max-width: 1580px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 1240px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
/* ~~ the header is not given a width. It will extend the full width of your layout. */
.header {
	background: #000000;
}
/* ~~ These are the columns for the layout. ~~ 
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
*/
.sidebar1 {
	float: left;
	max-width: 24%;
	min-width: 314px;
	background: #FFFFFF;
	padding: 10px 0px 10px 0px;
}
.sidebar1 h1, .sidebar1 h2, .sidebar1 h3 {
	padding: 5px 5px 5px 8px;
	font-size: 105%;
	color: #FFF;
	text-transform: uppercase; 
	background: #333; 
	letter-spacing: 1px;
}
.sidebar1 p{
font: 1.1em/95%;
text-align: justify;
text-justify: newspaper; */Does not work in all browsers. */
}
.sidebar1 ol, .sidebar li{
	font: 1.1em/95%;
	text-align: left;
	margin-right: 10px;
	margin-left: 25px;
	list-style: decimal outside;
}
.sidebar1 ul, .sidebar li{
	font: 1.2em/110%;
	text-align: left;
	margin-right: 10px;
	margin-left: 25px;
	list-style: inside;
}
.content {
	padding: 8px 0px;
	width: 76%;
	float: left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ol, .content ol { 
	padding: 0 8px 12px 12px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
.content table.tabledata {
	font: 0.7em/100% Arial, Helvetica, sans-serif;
	margin: 4px 4px auto 4px;
	height: auto;
	width: 76%;
	border-top: thin solid #666;
	border-right: thin solid #333;
	border-bottom: thin solid #333;
	border-left: thin solid #666;
}
.content table.tabledata caption {
	font: bolder 1.1em Cabin, Arial, Helvetica, sans-serif;
	text-align: center;
	margin-bottom: 2px;
}
.content table.tabledata td {
	border: thin solid #CCC;
	font: normal 0.7em Arial, Helvetica, sans-serif;
	left: 1px;
	right: 1px;
	padding: .2em .2em;
	height: auto;
	width: auto;
	text-align: center;
}
.content table.tabledata thead {
	border: thin solid #CCC;
	background: #333;
	width: auto;
	height: auto;
	padding: .2em .2em;
}
.content table.tabledata th {
	border: thin solid #CCC;
	font: bold normal 0.9em "Times New Roman", Times, serif;
	color: #FFF;
	background: #999;
	word-spacing: normal;
	left: 1px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	text-align: center;
	padding: .2em .2em;
	height: auto;
	width: auto;
}
.date{
text-align: left;
}
.close{
text-align: center;
}
.grade{
text-align: right;
}

.projected{
color: red;
}
.content table.tabledesc thead {
	border: thin solid #CCC;
	background: #333;
	width: auto;
	height: auto;
}
.content table.tabledesc caption {
	font: 1.2em Cabin, Arial, Helvetica, sans-serif;
	text-align: center;
	margin-bottom: 3px;
}
.content table.tabledesc th {
	border: thin solid #000;
	font: bold normal 1em "Times New Roman", Times, serif;
	color: #FFF;
	background: #999;
	word-spacing: normal;
	left: 1px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	padding: .1em .1em;
	text-align: center;
}
.content table.tabledesc td {
	border: thin solid #000;
	font: normal 0.8em/100% Arial, Helvetica, sans-serif;
	text-align: left;
	padding: .2em .2em;
}
.content table.tabledesc {
	font: 0.7em/100% Arial, Helvetica, sans-serif;
	margin: 7px 7px;
	height: auto;
	width: auto;
	border-top: thin solid #333;
	border-right: thin solid #333;
	border-bottom: thin solid #333;
	border-left: thin solid #333;
	float: left;
	clear: none;
}
.content table.tabledescleft {
	font: 0.7em/100% Arial, Helvetica, sans-serif;
	margin: 7px 9px;
	height: auto;
	width: auto;
	border-top: thin solid #333;
	border-right: thin solid #333;
	border-bottom: thin solid #333;
	border-left: thin solid #333;
	clear: left;
	float: left;
}
.content table.tabledescleft caption {
	font: bolder 0.8em Cabin, Arial, Helvetica, sans-serif;
	text-align: center;
	margin-bottom: 3px;
}
.content table.tabledescleft thead {
	border: thin solid #CCC;
	background: #333;
	width: auto;
	height: auto;
}
.content table.tabledescleft th {
	border: thin solid #000;
	font: normal 0.8em/100% "Times New Roman", Times, serif;
	color: #FFF;
	background: #999;
	word-spacing: normal;
	left: 2px;
	top: 2px;
	right: 2px;
	bottom: 1px;
	padding: .2em .2em;
	text-align: center;
}
.content table.tabledescleft td {
	border: thin solid #000;
	font: normal 0.8em/100% Arial, Helvetica, sans-serif;
	text-align: left;
	padding: .2em .2em;
}
.content table.key {
	margin: 7px 7px;
	float: left;
	clear: both;
	padding: 7px;
	color: #333;
	height: auto;
	width: auto;
	border: thin none #FFF;
	height: auto;
	width: auto;
}
.content table.key td {
	font-family: Arial, Helvetica, sans-serif;
	border: thin none #FFF;
	padding: 2px;
	text-align: left;
}
.content img.imageleft {
	float: left;
	position: relative;
	margin: 2px 2px 2px 0px;
}
.content img.imageright {
	float: right;
	position: relative;
	margin: 3px 3px 3px 0px;
}
.content center {
	margin-top: 2px;
	margin-bottom: 3px;
}
.content screening-style
{
	font: Arial, Helvetica, sans-serif;
	color: #000;
	height: auto;
	width: 1100px;
	margin: 20px;
	text-align: left;
	background: #fff;
	border-collapse: collapse;	
}
.content screening-style th
{
	font-size: 115%;
	font-weight: bold;	
	color: #000;
	border-bottom: 2px solid #000;
}
.content screening-style td
{
	font-size: 95%;
	padding: 6px 6px;	
}
.content screening-style tbody tr:hover td
{
	color: #333;
}
.shiftright
{
	clear: both;
	float: right;
	padding: 6px 12px 6px 6px;	
}
/* ~~ The navigation list styles */
#nav {
	float: right;
	padding-right: 4em;
	padding-left: 1.2em;

}
/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #000000;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.footer p{
	color: #FFF;
	margin: 15px;
	border: 0;			/* This removes the border around the viewport in old versions of IE */
	background: #000;
	font: 1.2em/105% Cabin, Arial, Helvetica, sans-serif;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0;
}
.container .content .tabledata tbody tr td em {
	color: #F00;
}
