﻿

/* BASIC PAGE SETUP ============================================================================= */

html, body { 
margin: 0;
padding: 0;
font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; 	
color: #464646; 
text-align: left;
background: #fff;
height:100%;
}

button, 
input, 
select, 
textarea { 
font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; 
color: #464646; }



/*  TYPOGRAPHY  ============================================================================= */

p, ol, ul, dl, address { 
margin-bottom: 1.5em; 
font-size: 1em; /* 16 / 16 = 1 */ 
line-height: 1.2em;
}

p {
hyphens: auto;  }

p.center {
text-align: center;
}

ul, 
ol { 
margin: 0 0 3px 0; 
padding: 0 0 0 24px; }

li ul, 
li ol { 
margin: 0;
font-size: 1em; /* 16 / 16 = 1 */ }

dl, 
dd { 
margin-bottom: 1.5em; }

dt { 
font-weight: normal; }

b, strong { 
font-weight: bold; }

hr { 
display: block; 
margin: 1em 0; 
padding: 0;
height: 1px; 
border: 0; 
border-top: 1px solid #ccc;
}

small { 
font-size: 1em; /* 16 / 16 = 1 */ }

sub, sup { 
font-size: 75%; 
line-height: 0; 
position: relative; 
vertical-align: baseline; }

sup { 
top: -.5em; }

sub { 
bottom: -.25em; }

.smalltext {
font-size: .8em;
	}

/* LINKS =============================================================================  */

a { 
color: #cc1122;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
text-decoration: none;
}

a:visited { 
color: #ee3344; }

a:focus { 
outline: thin dotted; 
color: rgb(0,0,0); }

a:hover, 
a:active { 
outline: 0;
color: #dd2233;
}


footer a { 
color: #ffffff;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

footer a:visited { 
color: #fff; }

footer a:focus { 
outline: thin dotted; 
color: rgb(0,0,0); }

footer a:hover, 
footer a:active { 
outline: 0;
color: #fff;
}


/* IMAGES ============================================================================= */

img {
border: 0;
max-width: 100%;
height: auto;
width: auto\9; /* ie8 */
}

img.floatleft { float: left; margin: 0 10px 0 0; }
img.floatright { float: right; margin: 0 0 0 10px; }


/* TABLES ============================================================================= */

table { 
border-collapse: collapse;
border:1px solid #ababab;
border-spacing: 0;
margin-bottom: 1.4em; 
width: 100%; 
font-size: 12px;
font-family: Helvetica, Arial, sans-serif;
}

th { 
font-style:bold;
background:#ece9e7;
font-size:14px;
}

th, td, caption { 
padding: .25em 10px .25em 5px; 
border:1px solid #ababab;
}

tr:nth-child(odd) {
background: #ece9e7;
}

tfoot { 
font-style: italic; }

.chartdescription { 
background-color: transparent;
font-size:12px;
line-height:13px;
font-weight:bold;
margin-top:5px;
padding-bottom:5px;
margin-bottom:40px;
border-bottom:2px solid #cccccc;
font-family: Helvetica, Arial, sans-serif;
}

.tablehead  { 
font-weight:bold !important;
font-size:16px !important;
color:#fff;
background-color:#bab5b2;
}





/* FORMS ============================================================================= */

form { 
margin: 0; }

fieldset { 
margin-bottom: 1.5em; 
padding: 0; 
border-width: 0; }

legend { 
*margin-left: -7px; 
padding: 0; 
border-width: 0; }

label{
font-weight: normal;
cursor: pointer;
display:block;
margin:0;
position:relative;
top:0;
left:0;
}

	label.inline{
	display:inline;
	margin:0;
	}
	
	label span{
	color:#464646;
	font-size:0.9em;
	}
	
	label span.right{
	position:absolute;
	bottom:0;
	right:1em;
	text-align:right;
	}
	
	label.disabled{
	color:#ccc;
	}


button, 
search,
input, 
select, 
textarea { 
font-size: 100%; 
margin: 0; 
vertical-align: baseline; 
*vertical-align: middle; }

button, input { 
line-height: normal; 
*overflow: visible; }

button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"] { 
padding: 0.5em 1em;
margin: 0;
cursor: pointer; 
text-shadow:0 1px 0 #fff;
}

input[type="checkbox"], 
input[type="radio"] { 
box-sizing: border-box; }

input[type="search"] { 
	box-sizing: content-box;
}

button::-moz-focus-inner, 
input::-moz-focus-inner { 
padding: 0;
border: 0;  }

input{
margin:0;
border:1px solid #ccc;
font-size:1em;
padding:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
background:#fff;

}

	input::-webkit-input-placeholder,
	input:-moz-placeholder,
	.placeholder{
	color:#464646;
	}
	
	input::-moz-focus-inner {border:0;}

	input[disabled="disabled"], input.disabled{
	color:#999;
	background:#f5f5f5;
	-moz-box-shadow:inset 0px 0px 2px #ddd;
	-webkit-box-shadow:inset 0px 1px 2px #ddd;
	box-shadow:inset 0px 1px 2px #ddd;
	}


/* Colors for form validity */
input:valid, 
textarea:valid   {  
/* Styles */ }

input:invalid, 
textarea:invalid {
-webkit-box-shadow: 0 0 2px #f00; 
-moz-box-shadow: 0 0 2px #f00;
box-shadow: 0 0 2px #f00; }

.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid {
background-color: #ccc; }



/*  MAIN LAYOUT	============================================================================= */


#wrapper {
	width: 100%;
	text-align: left;
	min-height: 100%;
    position:relative;
    height: 100%;
    margin-bottom: -30px;
    
}


	#headcontainer {
		width: 100%;
		background: #a0c1f6;
		background-image: url('../images/banner_new.jpg');
		background-position: left; 
		background-repeat: no-repeat;
		
	}

		header {
			clear: both;
			font-size: 0.8125em; /* 13 / 16 */
			max-width: 92.3em; /* 1200px / 13 */
			margin: 0 auto;
			padding: 5px;
			position: relative;
			color: #000;
			height:115px;
		}
		
.banner {
			
			margin-bottom: 20px;
			border:1px solid #d2cfcd;
		}		
		
header h1 { 
font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
margin-top: 20px;
margin-bottom :0px;
font-size: 5em;
line-height: .6em;
text-align:left;
}



.visible-phone {
    width:100%;
    height:25px;
    font-size:13px;
    -moz-border-radius-bottomright: 5px;
    
}


.pagetitle {
    font-size:24px;
    color:#d25d12;
    padding-top:20px;
}


.pulldown {
border:0px !important;
margin-bottom:0px !important;
margin-top:10px;
margin-bottom:0px;
}

.pulldown select {
background-color:#ece9e7;
display:inline;
border:none;
}

.pulldown td {
border:0px !important;
background-color:#fff !important;
margin-top:20px;
}

.pulldown b {
    font-size:14px;
    color:#4f738a;
    font-weight:bold;
    display:inline;
}

h2 .fa{
color:#d25d12;
}




		


	#maincontentcontainer {
		width: 100%; /* 1000px / 1250px */
		padding-bottom:30px;
	}
	
	
	
 
	

    .nested table {
       margin:0 !important;
       border:none !important;
       width:98% !important;
    }

    .nested td {
       background:#fff !important;
       padding-top:5px;
       padding-left:0;
    }

    #feedback input [type="text"] {
        height:25px !important;
    }

    #feedback, #feedback td, #feedback th {
        background-color:#fff !important;
        border:none;
    }

		
			#maincontent{
				clear: both;
				width: 100%; /* 1000px / 1250px */
				font-size: 0.8125em; /* 13 / 16 */
				max-width: 112em; /* 1300px / 13 */
				margin-left: 1em;
				padding: 1em 0px;
				color: #333;
				line-height: 1.5em;
				position: relative;
			}
		
			
	

	
	footer {
    width: 100% !important; 
}	

			


/*  SECTIONS  ============================================================================= */

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

	
/*  CODE  ============================================================================= */

pre.code {
	padding: 0;
	margin: 0;
	font-family: monospace;
	white-space: pre-wrap;
	font-size: 1.1em;
}

strong.code {
	font-weight: normal;
	font-family: monospace;
	font-size: 1.2em;
}





/*  BUTTONS  ============================================================================= */


.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-weight: normal;
	color: #fff;
	padding: .5em 1em;
	margin: 1px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 1.1em;
	background-color:#4f738a;
    width:300px !important;			
}
.button:hover {
	color: #fff;
	text-decoration: none;
}
.button:active {
	color: #fff;
	position: relative;
	top: 1px;
}
.button:visited { 
	color: #fff;
}



/*  GLOBAL OBJECTS ============================================================================= */

.breaker { clear: both; }

.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
    
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
    
}


.floatleft {
    float: left;
}

.floatright {
    float: right;
}


/* VENDOR-SPECIFIC ============================================================================= */

html { 
-webkit-overflow-scrolling: touch; 
-webkit-tap-highlight-color: rgb(52,158,219); 
-webkit-text-size-adjust: 100%; 
-ms-text-size-adjust: 100%; }

.clearfix { 
zoom: 1; }

::-webkit-selection { 
background: rgb(23,119,175); 
color: rgb(250,250,250); 
text-shadow: none; }

::-moz-selection { 
background: rgb(23,119,175); 
color: rgb(250,250,250); 
text-shadow: none; }

::selection { 
background: rgb(23,119,175); 
color: rgb(250,250,250); 
text-shadow: none; }

button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"] { 
-webkit-appearance: button; }

::-webkit-input-placeholder {
font-size: .875em; 
line-height: 1.4; }

input:-moz-placeholder { 
font-size: .875em; 
line-height: 1.4; }

.ie7 img,
.iem7 img { 
-ms-interpolation-mode: bicubic; }

input[type="checkbox"], 
input[type="radio"] { 
box-sizing: border-box; }

input[type="search"] { 
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box; }

button::-moz-focus-inner, 
input::-moz-focus-inner { 
padding: 0;
border: 0; }

p {
/* http://www.w3.org/TR/css3-text/#hyphenation */
-webkit-hyphens: auto;
-webkit-hyphenate-character: "\2010";
-webkit-hyphenate-limit-after: 1;
-webkit-hyphenate-limit-before: 3;
-moz-hyphens: auto; }



/*  SECTIONS  ============================================================================= */

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

.nychaChartContainer {
    border:1px solid #cccccc !important;
background-color: transparent;
padding:10px !important;
}


/*  GROUPING  ============================================================================= */


.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

/*  GRID COLUMN SETUP   ==================================================================== */

.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.8%;
}

.col:first-child { margin-left: 0; } /* all browsers except IE6 and lower */


/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */

@media only screen and (max-width: 480px) {
	.col { 
		margin: 1% 0 1% 0%;
	}
}

============================================================================= */

/*  GRID OF TWO   ============================================================================= */


.span_2_of_2 {
	width: 47%;
	vertical-align:top;
    
}

.span_2_of_2 img {
	padding-top:10px;
    
}

.span_1_of_2 {
	width: 47%;
	vertical-align:top;
}

.span_1_of_2_wide {
	width: 100%;
	vertical-align:top;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.span_2_of_2 {
		width: 95%; 
		vertical-align:top;
	}
	.span_1_of_2 {
		width: 95%;
		vertical-align:top;
	}
}

/*  GRID OF THREE   ============================================================================= */

	
.span_3_of_3 {
	width: 15.5%; 
	
}


.span_2_of_3 {
	width: 59.3%; 
	
}

.span_1_of_3 {
	width: 20%;

}





/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.span_3_of_3 {
		width: 95%; 
	}
	.span_2_of_3 {
		width: 95%; 
	}
	.span_1_of_3 {
		width: 95%;
	}

    #devmenu_lower {
        margin-bottom:20px !important;
    }

    table th  {
       font-size:11px;
   }

     table td b  {
       font-size:11px !important;
   } 
   table td {
       font-size:11px;
   }


}


/*  TABS AND CHARTS */

.ui-widget-content {
  border: none !important;
  background: none !important;
  color: #464646;
  }

.ui-widget-header {
    background: #fff !important;
    border-bottom:1px solid #ababab !important;
    border-top:1px solid #fff !important;
    border-left:1px solid #fff !important;
    border-right:1px solid #fff !important;
    border-radius:0px !important;
   
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border:none !important;
    background: #4f738a !important;
    font-weight: bold;
    color: #fff !important;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
    color: #fff !important;
    text-decoration: none;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
    color: #fff !important;
    text-decoration: none;
}

.ui-state-default {
     border:none !important;
    background: #ababab !important;
    font-weight: bold;
    color: #fff !important;
    font-size:12px !important;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}


.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding-top: 15px;
     padding-right: 0px;
     padding-left: 0px;
    background: none;
}





/*  NAVIGATION */

ul#nav { padding-left: 0; list-style: none; width: 100%; margin-bottom: 50px; margin-top:20px;margin-left:0px;
            }
            ul#nav:after { content: "\0020"; display: inline-block; height: 0; clear: both; visibility: hidden; }
            
                ul#nav li { float: left; width: 20%; text-align: center; }
               ul#nav a { 
                        display: block; 
                        background: #ece9e7;
                        color: #54768c; 
                        font-weight: normal;
                        padding-left: 0px;
                        padding-right: 0px;
                        padding-top: 10px;
                        padding-bottom: 5px; 
                        border-right:1px solid #fff;
                        outline: none;
                        font-size:14px;
                }
                
                .label { 
                        font-size: .8em !important; 
                        line-height:.1em;
                        color:#464646;
                }
                
               .icon { 
                        font-size: 1.8em !important;  
                }
                
              ul#nav a:hover { color: #464646; background:#ece9e7; }
              
              

============================================================================= */

/*  LEFT MENU   ============================================================================= */


@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {

#footercontainer {
		display:none;
	}


}
