/* CSS for Texas Secretary of State


/*------------------------------------------------------
	G L O B A L     E L E M E N T S 
------------------------------------------------------*/



body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.10em;
	background-color: #FFF;
	}

p {
  display: block;
  margin-top: 1.2em;
  margin-bottom: 1.7em;
  margin-left: 0;
  margin-right: 0;
} 

.p1 {
    display: block;
    margin-top: 1.2em;
    margin-bottom: 1.7em;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
	line-height: 1.3em;
} 
	
.hidden {
	position: absolute;
	left: 0px;
	top: -500px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	}

.float-right {
	float: right;
	padding: 5px;
	}

img.right {
	float: right;
	padding: 5px;	
	}

img.left {float: left;}

h1 {
	font-size: 1.7em;
	color: #03264B;
	padding: 40px 0 20px 0;
	/*line-height: 1.2em;*/
	line-height: 1.5em;
	}
h2 {
	font-size: 1.5em;
	color: #03264B;
	}

h3 {
	font-size: 1em;
	color: #03264B;
	}
	
p.center {
	text-align: center;
	}

a:link {
	color: #515257;
	text-decoration: underline;
	}

a:visited {
	color: #515257;
	text-decoration: underline;
	}

a:hover {
	color: #043E7A;
	text-decoration: none;
	font-weight: bold;
	text-decoration: underline;
	}
	
a:active {
	color: #043E7A;
	text-decoration: underline;
	}

h2.link {
	font-size: 1.5em;
	color: #03264B;
	}

h3.link {
	font-size: 1em;
	color: #03264B;
	}

a:link.link {
	color: #03264B;
	text-decoration: underline;
	}

a:visited.link {
	color: #03264B;
	text-decoration: underline;
	}

a:hover.link {
	color: #043E7A;
	text-decoration: none;
	}
	
a:active.link {
	color: #043E7A;
	text-decoration: underline;
	}

.indent {
	padding-left: 25px;
	}

.strikeout {
	text-decoration: line-through;
	}

.responsive {
  max-width: 100%;
  height: auto;
}

.responsive2 {
  width: 100%;
  height: auto;
}

/*.underline {
	text-decoration: underline;
	}

.underline-bold {
	text-decoration: underline;
	font-weight: bold;
	}*/



/*------------------------------------------------------
	G L O B A L     N A V I G A T I O N 
------------------------------------------------------*/

:root {
	box-sizing: border-box; 
	
	--primary: #E2F0FC;
	--hover-color: #03264B;
	--hover-color-menu: #E2F0FC;
	--dark: #03264B;
	--light: #fff; 
	
	--header-bg: var(--primary);
}
*, *::after, *::before {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

nav-body {
	font-family: "josefin sans", "helvetica", sans-serif;
	font-size: 1rem;
	}

#header {
	width: 100%;
	height: 96px;
	background-color: #03264B;
	clear: both;
	}

#header h1 {
	display: none;
	font-size: 1.5em;
	color: #000000;
	padding-bottom: 10px;
	}

#header h2 {
	font-size: 1.3em;
	color: #000000;
	}

header { 
	background: var(--header-bg);
	padding-left: 1.5em;
	padding-right: 7em;
	position: relative;
	top: 0;
	z-index: 100;
}

.branding-logo {
    color: var(--dark);
	font-size: calc(0.8rem + 1vw);
	text-decoration: none;
	}

.navbar div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu { 
	display: flex;
	flex-direction: row;

}

.menu li {
	list-style: none;
/*line-height: 1.45em;*/
	line-height: 1.20em;
}

.menu li a {
	display: block;
	text-decoration: none;
	color: var(--dark);
	padding: 1em 1.5em;
	font-size: 1.15rem;
	text-align: center;
	/*font-size: 1.3rem;*/
}

/*Styling submenu */

.has-dropdown {position: relative;
}


.submenu {
position: absolute;
	left: 0;
	background-color: var(--dark);
	/*white-space: nowrap;*/
	padding: 1.5em 0;
	min-width: 22em;
	/*min-width: 16em;*/

	/*hide submenus*/
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top center;
}

.submenu > li > a{
	padding: 0.8em 1.5em;
	color: var(--light);
	text-align: left;
}

.submenu .submenu{
	left: -100%;
	top: 0;
}

.submenu .submenu .submenu{
left: -100%;
	top: 0;
}

.menu > li:hover > a, .submenu > li:hover > a{
	background-color: #E2F0FC;
	color: var(--hover-color);
}

.menu > li:hover > a{
	background-color: var(--dark);
	color: var(--light);
}

/* arrow */

.arrow{
	width: .5em;
	height: .5em;
	display: inline-block;
	vertical-align: middle;
	border-left: 0.15em solid currentColor;
	border-bottom: 0.15em solid currentColor;
	transform: rotate(-45deg);
	margin-top: -0.25em;
	transition: transform 100ms ease-in-out;
}

/* Reveal */
.menu > li:hover > a + .submenu, .submenu > li:hover > a + .submenu{
	opacity: 1;
	transform: scaleY(1);
}

/* animate arrows */
.menu > li:hover > a > .arrow, 
.submenu > li:hover > a > .arrow{
	transform: rotate(225deg);
}

@media only screen and (max-width: 78.75em){
	.submenu .submenu .submenu{
		left: -100%;
		top: 0.5em;
	}
	.submenu{
		min-width: 16em;
	}
}

@media only screen and (max-width: 58.75em){
	.menu li a{
		font-size: 1rem;
	}
}

@media only screen and (max-width: 50em){
	header{
	/*position: relative;*/
		padding 1.5em 2em ;
		padding-top: .85em;
		min-height: 2.5em;
	}
	
	.menu{
		flex-flow: column;
		position: absolute;
		background: var(--dark);
		top: 2em;
		left: 0;
		right: 0;
		padding-bottom: 100px;
		/*height: 100vh;*/
		
		opacity: 0;
		transform: scaleY(0);
		transform-origin: top center;
		transition: 200ms transform cubic-bezier(0.36, 0.4, 0.42, 1.48) 100ms,
		100ms opacity ease-in-out;
		
		overflow-y: scroll;
	}
	
	
	.menu > li > a{
		font-size: 1.25rem;
		color: var(--light);
		text-align: left;
	}
	
	
.menu > li:hover > a, .submenu > li:hover > a{
	background-color: #E2F0FC;
	color: var(--hover-color);
}
	
	.submenu > li a{
		font-size: 1rem;
		position: relative;
	}
	
	.submenu{
		top: 0;
		padding-left: 1.5em;
		border-left: 0.12em dotted hsla(342, 99%, 45%, 0.95);
	}
	
	.submenu .submenu{
		left: 0;
		top: 0;
	}
	.submenu .submenu .submenu{
		left: 0;
		top: 0;
	}
	
	.menu > li:hover > a + .submenu,
	.submenu > li:hover > a + .submenu{
		position: relative;
	}
	
	.hamburger{
		width: 2em; 
		height: 0.25em;
		display: block;
		background: var(--dark);
		position: relative;
		cursor: pointer;
		transition: 0.2s transform ease-in-out;
	}
	
	.hamburger::after, 
	.hamburger::before {
		content: "";
		position: absolute;
		left: 0;
		background: inherit;
		width: inherit;
		height: inherit;
		
		transition: 0.2s transform ease-in-out;
	}
	
	.hamburger::after{
		top: 0.50em;
	}
	
	.hamburger::before{
		bottom: 0.50em;
	}
	
	.close::after, .close::before {
		top: 0;
		transition: 0.2s transform ease-in-out;
	}
	
	.close::before{
		display: none;
	}
	
	.close{
		transform: rotate(45deg);
		transition: 0.2s transform ease-in-out;
	}
	
	.close::after {
		transform: rotate(-90deg);
	}
	
	/* reveal menu */
	input[type="checkbox"]:checked + .menu{
		position: absolute;
		opacity: 1;
		transform: scaleY(1);
	}
	
}

main {*/
	/*just to make scrollable vertically to see sticky navbar */
	height: 200nh;
} 



/*------------------------------------------------------
	T A B L E     E L E M E N T S 
------------------------------------------------------*/

th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	}

th.un_normalize_header {
	text-align: left;
	font-weight: normal;
	}

td {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
	}

table.norm { 
	border-collapse: collapse;
	width: 75%;
	margin-top: 15px;
	}
	
table.norm caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}

table.norm th.green {
	background-color: #096;
	border: solid #CCC 1px;
	font-size: 1.1em;
	color: #FFF;
	}

table.norm th.red {
	background-color: #C00; /* #F00; */
	border: solid #CCC 1px;
	font-size: 1.1em;
	color: #FFF;
	}

table.norm th.blue {
	background-color: #00C;
	border: solid #CCC 1px;
	font-size: 1.1em;
	color: #FFF;
	}

table.norm th.align-left {
	text-align: left;
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}	

table.norm2 { 
	margin: auto;
	border-collapse: collapse;
	width: 85%;
	margin-top: 40px;
	margin-bottom: 40px;
	}
	
table.norm2 caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm2 td {
	border: solid #03264B 1px;
	border-collapse: collapse;
	padding: 10px 10px 10px 15px;
	background-color: #fff;
	}

table.norm2 td.align-r {
	text-align: right;
	border: solid #03264B 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm2 td.align-c {
	text-align: center;
	border: solid #03264B 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm2 tr:hover td {
	background-color: #E2F0FC;
	}

table.norm2 th {
	background-color: #03264B;
	border: solid #03264B 1px;
	font-size: 1.1em;
	line-height: 1.5em;
	color: #FFF;
	padding: 10px;
	}

table.norm2b { 
	margin: left-left: 0;
	border: none;
	padding: 10px, 10px, 10px, 0px;
	border-collapse: collapse;
	width: 50%;
	margin-top: 30px;
	margin-bottom: 30px;
	}


table.norm2b td {
	border: none;
	border-collapse: collapse;
	/*padding: 5px 10px 5px 0px;*/
	background-color: #fff;
	}

table.norm2b th {
	border: none;
	/*padding: 10px;*/
	width: 300px;
	}

@media only screen and (max-width: 1100px){

table.norm2b {
	margin: left-left: 0;
	border: none;
	padding: 10px, 10px, 10px, 0px;
	border-collapse: collapse;
	width: 75%;
	margin-top: 30px;
	margin-bottom: 30px;
	}
	
}

@media only screen and (max-width: 700px){

table.norm2b {
	margin: left-left: 0;
	border: none;
	padding: 10px, 10px, 10px, 0px;
	border-collapse: collapse;
	width: 95%;
	margin-top: 30px;
	margin-bottom: 30px;
	}
	
}


table.norm th.normalize {
	font-weight: normal;
	padding: 5px;
	}		
	
table.norm-historical {
    border-collapse: collapse;
    margin-top: 10px;
    width: 75%;
    text-align: center;
	}
	
table.norm-historical caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-historical td {
    border: solid #CCC 1px;
    border-collapse: collapse;
    padding: 3px;
    text-align: center;
	}

table.norm-historical th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}

table.norm-historical-2 {
    border-collapse: collapse;
    margin-top: 10px;
    width: 75%;
    text-align: center;
	}
	
table.norm-historical-2 caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-historical-2 td {
    border: solid #CCC 1px;
    border-collapse: collapse;
    padding: 3px;
    text-align: left;
	}

table.norm-historical-2 th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}

table.norm-historical-3 {
    border-collapse: collapse;
    margin-top: 10px;
    width: 70%;
    text-align: left;
	}
	
table.norm-historical-3 caption {
	text-align: center;
	padding: 10px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-historical-3 td {
    border: solid #CCC 1px;
    border-collapse: collapse;
    padding: 10px;
	}

table.norm-historical-3 td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-historical-3 th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	padding: 10px;
	}

@media only screen and (max-width: 800px){

table.norm-historical-3 {
    border-collapse: collapse;
    margin-top: 10px;
    width: 90%;
    text-align: center;
	}
	
table.norm-historical-3 caption {
	text-align: center;
	padding: 10px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-historical-3 td {
    border: solid #CCC 1px;
    border-collapse: collapse;
    padding: 10px;
    text-align: left;
	}
	
table.norm-historical-3 td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-historical-3 th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	padding: 10px;
	}
	
}

table.norm-5px {
	border-collapse: collapse;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 10px;
	text-align: left;
	}
	
table.norm-5px caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-5px td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}
	
table.norm-5px th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 5px;
	}
	
table.norm-5px th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 5px;
	}

table.norm-5px th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 5px;
	}		

table.norm-5px tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-5px tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-5px tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-5px tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}

table.norm-5px-ucc {
	width: 70%;
	border-collapse: collapse;
	margin-left: 0px;
	margin-right: 40px;
	margin-bottom: 10px;
	text-align: left;
	}
	
table.norm-5px-ucc caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-5px-ucc td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px-ucc td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px-ucc td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px-ucc th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}
	
table.norm-5px-ucc th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 5px;
	}
	
table.norm-5px-ucc th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 5px;
	}

table.norm-5px-ucc th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 5px;
	}		

table.norm-5px-ucc tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-5px-ucc tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-5px-ucc tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-5px-ucc tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}


@media only screen and (max-width: 800px){

table.norm-5px-ucc {
	width: 90%;
	border-collapse: collapse;
	margin-left: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	text-align: left;
	}
	
table.norm-5px-ucc caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-5px-ucc td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px-ucc td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px-ucc td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5px-ucc th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}
	
table.norm-5px-ucc th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 5px;
	}
	
table.norm-5px-ucc th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 5px;
	}

table.norm-5px-ucc th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 5px;
	}		

table.norm-5px-ucc tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-5px-ucc tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-5px-ucc tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-5px-ucc tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}
	
}


table.norm-5pxc {
	border-collapse: collapse;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 10px;
	text-align: left;
	}
	
table.norm-5pxc caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #fff;
	border: solid #CCC 1px;
	}

table.norm-5pxc td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxc td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxc td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxc th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}
	
table.norm-5pxc th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 5px;
	}
	
table.norm-5pxc th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 5px;
	}

table.norm-5pxc th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 5px;
	}		

table.norm-5pxc tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-5pxc tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-5pxc tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-5pxc tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}

table.norm-5pxc2 {
	border-collapse: collapse;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 10px;
	text-align: left;
	}
	
table.norm-5pxc2 caption {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	background-color: #fff;
	border: solid #CCC 1px;
	}

table.norm-5pxc2 td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxc2 td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxc2 td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxc2 th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	}
	
table.norm-5pxc2 th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 5px;
	}
	
table.norm-5pxc2 th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 5px;
	}

table.norm-5pxc2 th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 5px;
	}		

table.norm-5pxc2 tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-5pxc2 tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-5pxc2 tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .90em;
	color: #666;
	min-height: 15px;
	}

table.norm-5pxc2 tfoot tr:hover td {
	font-size: .90em;
	color: #000;
	min-height: 15px;
	}

table.norm-10px {
	border-collapse: collapse;
	width: 85%;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 10px;
	text-align: left;
	}
	
table.norm-10px caption {
	text-align: center;
	padding: 10px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-10px td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10px td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10px td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10px th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	padding: 15px;
	}
	
table.norm-10px th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 15px;
	}
	
table.norm-10px th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 15px;
	}

table.norm-10px th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 15px;
	}		

table.norm-10px tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-10px tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-10px tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-10px tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}


table.norm-10pxb {
	border-collapse: collapse;
	width: 85%;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 10px;
	text-align: left;
	}
	
table.norm-10pxb caption {
	text-align: center;
	padding: 10px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-10pxb td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10pxb td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10pxb td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10pxb th {
	background-color: #03264B;
	border: solid #CCC 1px;
	font-size: 1em;
	padding: 15px;
	color: white;
	}
	
table.norm-10pxb th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 15px;
	}
	
table.norm-10pxb th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 15px;
	}

table.norm-10pxb th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 15px;
	}		

table.norm-10pxb tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-10pxb tr:hover th {
	background-color: #F5F5F5;
	color: #03264B;
	}

table.norm-10pxb tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-10pxb tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}


table.norm-10apx {
	border-collapse: collapse;
	width: 85%;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 20px;
	text-align: left;
	}
	
table.norm-10apx caption {
	text-align: center;
	padding: 10px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-10apx td {
	/*border: solid #CCC 1px;*/
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10apx td.align-r {
	text-align: right;
	/*border: solid #CCC 1px;*/
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10apx td.align-c {
	text-align: center;
	/*border: solid #CCC 1px;*/
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-10apx th {
	background-color: #F5F5F5;
	/*border: solid #CCC 1px;*/
	font-size: 1em;
	padding: 15px;
	}
	
table.norm-10apx th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 15px;
	}
	
table.norm-10apx th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 15px;
	}

table.norm-10apx th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 15px;
	}		

table.norm-10apx tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-10apx tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-10apx tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-10apx tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}

table.norm-20px {
    border-collapse: collapse;
    width: 90%;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 10px;
    text-align: center;
	}
	
table.norm-20px caption {
	text-align: center;
	padding: 20px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-20px td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 20px;
	}

table.norm-20px td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 20px;
	}

table.norm-20px td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 20px;
	}

table.norm-20px th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	padding: 20px;
	}
	
table.norm-20px th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 20px;
	}
	
table.norm-20px th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 20px;
	}

table.norm-20px th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 20px;
	}		

table.norm-20px tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-20px tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-20px tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-20px tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}

@media only screen and (max-width: 3000px){

table.norm-20px {
    border-collapse: collapse;
    width: 80%;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 10px;
    text-align: center;
	}
	
}

@media only screen and (max-width: 2200px){

table.norm-20px {
    border-collapse: collapse;
    width: 90%;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 10px;
    text-align: center;
	}
	
}


table.norm-5pxb {
	border-collapse: collapse;
	width: 95%;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 30px;
	text-align: left;
	}
	
table.norm-5pxb caption {
	text-align: center;
	color: #FFF;
	padding: 7px;
	font-size: 1.2em;
	background-color: #03264B;
	}
	
table.norm-5pxb td {
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxb td.align-r {
	text-align: right;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxb td.align-c {
	text-align: center;
	border: solid #CCC 1px;
	border-collapse: collapse;
	padding: 5px;
	}

table.norm-5pxb th {
	background-color: #F5F5F5;
	border: solid #CCC 1px;
	font-size: 1em;
	color: #03264B; 
	}
	
table.norm-5pxb th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 5px;
	}
	
table.norm-5pxb th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 5px;
	}

table.norm-5pxb th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 15px;
	}		

table.norm-5pxb tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-5pxb tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-5pxb tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-5pxb tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}

table.norm-5pxb h3 {
	font-size: 1em;
	color: #000000;
	padding-left: 10%;
	}

table.norm-8apx {
	border-collapse: collapse;
	width: 90%;
	margin-left: 10px;
	margin-right: 40px;
	margin-bottom: 20px;
	text-align: left;
	}
	
table.norm-8apx caption {
	text-align: center;
	padding: 10px;
	font-size: 1em;
	background-color: #CCC;
	}
	
table.norm-8apx td {
	/*border: solid #CCC 1px;*/
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-8apx td.align-r {
	text-align: right;
	/*border: solid #CCC 1px;*/
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-8apx td.align-c {
	text-align: center;
	/*border: solid #CCC 1px;*/
	border-collapse: collapse;
	padding: 10px;
	}

table.norm-8apx th {
	background-color: #F5F5F5;
	/*border: solid #CCC 1px;*/
	font-size: 1em;
	padding: 15px;
	}
	
table.norm-8apx th.normalize {
	text-align: left;
	font-weight: normal;
	background-color: #FFFFFF;
	padding: 15px;
	}
	
table.norm-8apx th.normalize2 {
	text-align: left;
	font-weight: bold;
	background-color: #FFFFFF;
	padding: 15px;
	}

table.norm-8apx th.align-left-bg {
	text-align: left;
	background-color: #F5F5F5;
	padding: 15px;
	}		

table.norm-8apx tr:hover td {
	background-color: #F5F5F5;
	}

table.norm-8apx tr:hover th {
	background-color: #F5F5F5;
	}

table.norm-8apx tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: none;
	font-size: .95em;
	color: #666;
	}

table.norm-8apx tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}

table.main {
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 10px;
	border-collapse: collapse;
	}
	
table.main th {
	font-size: 1em;
	font-weight: bold;
	padding: 10px 8px;
	border-bottom: 2px solid #6678b1;
	}
	
table.main td {
	border-bottom: 1px solid #ccc;
	padding: 6px 8px;
	}

table.main tbody tr:hover td {
	color: #009;
	background-color: #F5F5F5;
	}

table.main tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: 1px dashed #ccc;
	font-size: .95em;
	color: #666;
	}

table.main tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}
	
table.basic {
	border-collapse: collapse;
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 10px;
	}

table.basic td {
	padding: 5px;
	}
	
table.basic th {
	font-size: 1em;
	text-align: left;
	}

table.basic th.normalize {
	text-align: left;
	font-weight: normal;
	padding: 5px;
	}		

table.basic tfoot tr td	{
	border-left: none;
	border-right: none;
	border-bottom: 1px dashed #ccc;
	font-size: .95em;
	color: #666;
	}

table.basic tfoot tr:hover td {
	font-size: .95em;
	color: #000;
	}

/*------------------------------------------------------
	H E R O  B O X  W E L C O M E
------------------------------------------------------*/
.container-home {
  position: relative;
}

.text-block-photo {
  position: absolute;
  top: 30px;
  left: 900px;
  /*background-color: #03264B;*/
  background-color: #e26226;
  color: white;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.45em;
  line-height: 1.70;
  width: 42%;
}

.text-block-text {
  position: absolute;
  top: 30px;
  right: 100px;
  background-color: #081993;
  color: white;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.45em;
  line-height: 1.70;
  width: 50%;
}

@media screen and (max-width: 2560px)
{
	 	.text-block-photo {
  	  	position: absolute;
  		top: 30px;
  		right: 75px;
  		left: 1200px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 20px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1.45em;
  		line-height: 1.70;
  		width: 40%;
}

}

@media screen and (max-width: 2200px)
{
	 	.text-block-photo {
  	  	position: absolute;
  		top: 30px;
  		right: 75px;
  		left: 1050px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 20px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1.45em;
  		line-height: 1.70;
  		width: 40%;
}

}

@media screen and (max-width: 1600px)
{
	 	.text-block-photo {
  	  	position: absolute;
  		top: 30px;
  		right: 75px;
  		left: 800px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 20px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1.45em;
  		line-height: 1.70;
  		width: 45%;
}

}

@media screen and (max-width: 1480px)
{
	 	.text-block-photo {
  	  	position: absolute;
  		top: 30px;
  		right: 75px;
  		left: 650px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 20px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1.32em;
  		line-height: 1.70;
  		width: 50%;
}

}

@media screen and (max-width: 1280px)
{
	 	.text-block-photo {
  	  	position: absolute;
  		top: 30px;
  		right: 75px;
  		left: 590px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 20px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1.15em;
  		line-height: 1.70;
  		width: 50%;
}

}

@media screen and (max-width: 1080px)
{
	 	.text-block-photo {
  	  	position: absolute;
  		top: 30px;
  		right: 75px;
  		left: 480px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 10px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1em;
  		line-height: 1.30;
  		width: 50%;
}

}

@media screen and (max-width: 950px)
{
	 	.text-block-photo {
  	  	position: relative;
  		top: 0px;
  		left: 0px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 10px;
  		padding-left: 30px;
  		padding-right: 30px;
		padding-bottom: 5px;
  		font-size: 1em;
  		line-height: 1.30;
  		width: 100%;
}

}



@media screen and (max-width: 767px)	
 {	 
	 	.text-block-photo {
  		position: relative;
		top: 0px;
  		left: 0px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 0px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1.10em;
  		line-height: 1.70;
  		width: 100%;
}

} 

@media screen and (max-width: 428px)	
 {	 
	 	.text-block-photo {
  		position: relative;
		top: 0px;
  		left: 0px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 0px;
  		padding-left: 30px;
  		padding-right: 30px;
  		font-size: 1.10em;
  		line-height: 1.70;
  		width: 100%;
}

} 
	
@media only screen and (max-width: 767px)	
 {	 
	 	.text-block {
  		position: relative;
  		top: 0px;
  		background-color: #e26226;
  		color: white;
  		padding-top: 0px;
  		/*padding-left: 30px;
  		padding-right: 30px;*/
  		font-size: 1.15em;
  		line-height: 1.70;
		margin-left: 100px;
  		width: 100%;
}

}


/*------------------------------------------------------
	N O T I C E S
------------------------------------------------------*/

#holidaynotice {
	border: 1px solid #CCCCCC;
	text-align: left;
	padding: 6px;
	width: 60%;
	}

#required-software {
	text-align: left;
	border: 1px solid #CCC;
	margin-top: 10px;
	margin-left: 1px;
	padding: 6px;
	width: 60%;
	font-weight: normal;
	background-color: #F5F5F5;
	}

#sideenotice {
	height: auto;
	width: 75px;
	float: right;
	width: 150px;
	padding: 4px;
	background-color: #F5F5F5;
	border: thin solid #CCCCCC;
	text-align: left;
	background-position: right;
	}

#maintenancenotice {
	height: auto;
	width: 75%; /*  500px; */
	padding: 4px;
	background-color: #F5F5F5;
	border: thin solid #CCCCCC;
	text-align: left;
	}
	
#yellownotice {
	height: auto;
	/* width: 500px; */
	padding: 4px;
	background-color: #FFFFCC;
	border: thin solid #CCCCCC;
	text-align: left;
	font-size: .9em;
	}

p.notice {
	border: 1px solid #CCCCCC;
	width: 68%;
	border-width: 1px;
	padding: 0.5em 0.5em 0.5em 0.5em;
	background: #F5F5F5;
	/*line-height: 1em;*/
	line-height: 2em;
	}

#notice {
	height: auto;
	width: 68%;
	padding: 4px;
	margin-bottom: 40px;
	background-color: #F5F5F5;
	border: thin solid #CCCCCC;
	text-align: left;
	}

#notice5 {
	margin: auto;
	height: auto;
	border-radius: 5px;
	width: 50%;
	padding: 7px;
	margin-bottom: 40px;
	background-color: #03264B;
	text-align: center;
	color: white;
	font-size: 1.2em;
	font-weight: bold;
	}

#notice5 a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	}

#notice5 a:hover {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

#notice5b {
	height: auto;
	border-radius: 5px;
	width: 85%;
	padding: 7px;
	margin-bottom: 40px;
	background-color: #03264B;
	text-align: center;
	color: white;
	font-size: 1.2em;
	font-weight: bold;
	}

#notice5b a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	}

#notice5b a:hover {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

#notice8 {
	
	height: auto;
	border-radius: 5px;
	width: 62%;
	padding: 10px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: center;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	display: inline-block;
	}

#notice8 a {
	font-weight: bold;
	text-decoration: none;
	color: #03264B;
	background-color: #E2F0FC;
	}

#notice8 a:hover {
	border-radius: 5px;
	padding: 10px;
	background-color: #03264B;
	color: #E2F0FC;
	text-align: center;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	display: inline-block;
	}

#notice8a {
	height: auto;
	border-radius: 5px;
	width: 62%;
	padding: 10px 30px 15px 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

#notice8a a {
	font-weight: bold;
	text-decoration: underline;
	color: #03264B;
	background-color: #E2F0FC;
	}

#notice8a a:hover {
	
	border-radius: 5px;
	padding: 10px;

	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

@media only screen and (max-width: 450px){
	
#notice8a {
	height: auto;
	border-radius: 5px;
	width: 82%;
	padding: 10px 30px 15px 15px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}


}

#notice8b {
	height: auto;
	border-radius: 10px;
	border: thin solid #CCCCCC;
	width: 100%;
	padding: 10px 10px 0px 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #f5f5f5;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

#notice8b a {
	font-weight: bold;
	text-decoration: underline;
	color: #03264B;
	}

#notice8b a:hover {
	
	border-radius: 5px;
	padding: 10px;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

#notice8c {
	height: auto;
	border-radius: 10px;
	width: 55%;
	padding: 10px 10px 0px 30px;
	margin-bottom: 40px;
	color: #03264B;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

#notice8c a {
	font-weight: bold;
	text-decoration: underline;
	color: #03264B;
	}

#notice8c a:hover {
	
	border-radius: 5px;
	padding: 10px;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

#notice9 {
	height: auto;
	border-color: #F5F5F5;
	border-radius: 40px;
	width: 98%;
	padding: 30px 50px 10px 50px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

#notice9 a {
	font-weight: bold;
	text-decoration: underline;
	color: #03264B;
	/*background-color: #E2F0FC;*/
	}

#notice9 a:hover {
	
	border-radius: 5px;
	padding: 10px;

	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}

@media only screen and (max-width: 610px){
	
#notice9 {
	height: auto;
	border-color: #F5F5F5;
	border-radius: 40px;
	width: 98%;
	padding: 40px 20px 30px 20px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}


}

#notice9a {
	height: auto;
	border-radius: 5px;
	width: 70%;
	padding: 15px 30px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #F5F5F5;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}

#notice9a a {
	font-weight: bold;
	text-decoration: underline;
	color: #03264B;
	}

#notice9a a:hover {
	text-decoration: none;
	
	}

#notice9a ul {
	padding: 0;
	margin: 0;
	}
	
#notice9a li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	line-height: 2;
	margin: 0 0 0 25px;
	list-style-image: url(/images/home-pg/bullet.gif);
	}

@media only screen and (max-width: 1140px){
	
#notice9a {
	height: auto;
	border-radius: 5px;
	width: 59%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #F5F5F5;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 850px){
	
#notice9a {
	height: auto;
	border-radius: 5px;
	width: 55%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #F5F5F5;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 770px){
	
#notice9a {
	height: auto;
	border-radius: 5px;
	width: 50%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #F5F5F5;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 670px){
	
#notice9a {
	height: auto;
	border-radius: 5px;
	width: 45%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #F5F5F5;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 624px){
	
#notice9a {
	height: auto;
	border-radius: 5px;
	width: 95%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	color: #03264B;
	background-color: #F5F5F5;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}
	
#notice9a li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	line-height: 2;
	margin: 0 0 0 0;
	list-style-image: url(/images/home-pg/bullet.gif);
	}


}

#notice9b {
	height: auto;
	border-radius: 40px;
	width: 70%;
	padding: 15px 30px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}

#notice9b a {
	font-weight: bold;
	text-decoration: underline;
	color: #03264B;
	}

#notice9b a:hover {
	text-decoration: none;
	
	}

#notice9b ul {
	padding: 0;
	margin: 0;
	}
	
#notice9b li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	line-height: 2;
	margin: 0 0 0 25px;
	list-style-image: url(/images/home-pg/bullet.gif);
	}

@media only screen and (max-width: 1140px){
	
#notice9b {
	height: auto;
	border-radius: 30px;
	width: 59%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 850px){
	
#notice9b {
	height: auto;
	border-radius: 30px;
	width: 55%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 770px){
	
#notice9b {
	height: auto;
	border-radius: 30px;
	width: 50%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 670px){
	
#notice9b {
	height: auto;
	border-radius: 20px;
	width: 45%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	margin-bottom: 40px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	}


}

@media only screen and (max-width: 624px){
	
#notice9b {
	height: auto;
	border-radius: 20px;
	width: 95%;
	padding: 15px 20px 15px 40px;
	margin-right: 30px;
	color: #03264B;
	background-color: #E2F0FC;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
	display: inline-block;
	}
	
#notice9b li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	line-height: 2;
	margin: 0 0 0 0;
	list-style-image: url(/images/home-pg/bullet.gif);
	}


}

p.notice-white-2 {
	width: 70%;
	border-width: 1px;
	padding: 10px 10px 10px 10px;
	background: #F5F5F5;
	/*line-height: 1em;*/
	line-height: 2em;
	}

#notice-white-2 {
	border-radius: 10px;
	height: auto;
	width: 70%;
	padding: 20px 40px 20px 40px;
	margin-bottom: 40px;
	background-color: white;
	border: 2px solid #CCCCCC;
	text-align: left;
	}

@media only screen and (max-width: 1000px){
	
#notice-white-2 {
	border-radius: 10px;
	height: auto;
	width: 90%;
	padding: 20px 40px 20px 40px;
	margin-bottom: 40px;
	background-color: white;
	border: 2px solid #CCCCCC;
	text-align: left;
	}


}

@media only screen and (max-width: 400px){
	
#notice-white-2 {
	border-radius: 10px;
	height: auto;
	width: 95%;
	padding: 20px 40px 20px 40px;
	margin-bottom: 40px;
	background-color: white;
	border: 2px solid #CCCCCC;
	text-align: left;
	}


}

@media only screen and (max-width: 830px){
	
#notice5 {
	margin: auto;
	height: auto;
	border-radius: 5px;
	width: 70%;
	padding: 7px;
	margin-bottom: 40px;
	background-color: #03264B;
	text-align: center;
	color: white;
	font-size: 1.2em;
	font-weight: bold;
	}
	

}

@media only screen and (max-width: 489px){
	
#notice5 {
	margin: auto;
	height: auto;
	border-radius: 5px;
	width: 80%;
	padding: 7px;
	margin-bottom: 40px;
	background-color: #03264B;
	text-align: center;
	color: white;
	font-size: 1.2em;
	font-weight: bold;
	}
	

}

#electionsnotice {
	border: 1px solid #CCCCCC;
	width: 95%;
	padding: 7px;
	background: #F5F5F5;
	text-align: left;
	}

.attention_bold_yellowbg {
	font-weight: normal;
	color: #CC0000;
	background: #F9F9D7;
	border: 1px dashed #000;
	text-align: left;
	width: 90%;
	padding: 2px;
	}
	
#header-alerts-blue {
	/* background-color: #FFFF99; */
	background-color: #d4fcea; /* PEACH #ebdec0; /*ORANGE #fdcf98/ GREEN #d4fcea; */
	border-bottom: 1px #000 dashed;
	padding: 7px 5px 7px 5px;
	text-align: left;
	clear: left;
	}

#header-alerts-blue span {
	color: #CC0000;
	font-size: .85em;
	}
	
#header-alerts-blue span img {
	padding: 0 2px 2px 2px;
	border: 0;
	float: left;
	}	

#header-alerts-blue span a {
	color: #CC0000;
	text-decoration: underline;
	}

#header-alerts-blue span a:hover {
	color: #CC0000;
	text-decoration: none;
	}

p.notice {
	border-radius: 25px;
	align-content: center;
	border: 1px solid #CCCCCC;
	width: 80%;
	border-width: 1px;
	padding: 0.5em 0.5em 0.5em 0.5em;
	background: #F5F5F5;
	/*line-height: 1em;*/
	line-height: 2em;
	}

#notice-blue {
	border-radius: 25px;
	margin: auto;
	margin-right: auto;
	height: auto;
	width: 70%;
	padding: 0px 30px 30px 30px;
	margin-top: 40px;
	margin-bottom: 30px;
	background-color: #E2F0FC;
	border: thin solid #CCCCCC;
	text-align: left;
	}


#notice-gray {
	margin: 0 auto;
	min-width: 200px;
	/*height: 130px;*/ 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding: 15px 15px 15px 15px;
    border-radius: 15px;
	}

#notice-blue2 {
	border-radius: 25px;
	height: auto;
	width: 62%;
	padding: 0px 30px 30px 30px;
	margin-top: 40px;
	margin-bottom: 30px;
	background-color: #E2F0FC;
	border: thin solid #CCCCCC;
	text-align: left;
	float: left;
	}

#foo {
	background-color: #000000; /* #d4fcea; */
	border-bottom: 1px #000 dashed;
	clear: left;
	font-size: .95em;
	/*line-height: 1.45em;*/
	line-height: 1.55em;
	text-align: center;
	color: #F7EB90;
	padding: 7px 5px 7px 7px;
	/* padding: 3px 5px 3px 5px; */
	/* padding: 5px 0 5px 15px; */
	}

#foo a {
	color: #F7EB90;
	text-decoration: underline;
	}

#foo a:hover {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	}


#foo img {
	border: none;
	float: right;
	}


#foo2 {
	background-color: #000000; /* #d4fcea; */
	border-bottom: 1px #000 dashed;
	clear: left;
	font-size: .95em;
	/*line-height: 1.45em;*/
	line-height: 1.55em;
	text-align: center;
	color: #FFFFFF;
	padding: 7px 5px 7px 7px;
	/* padding: 3px 5px 3px 5px; */
	/* padding: 5px 0 5px 15px; */
	}

#foo2 a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	}

#foo2 a:hover {
	font-weight: bold;
	color: #F7EB90;
	text-decoration: none;
	}

#foo2 img {
	border: none;
	float: right;
	}

#foo3 {
	background-color: #000000; /* #d4fcea; */
	border-bottom: 1px #000 dashed;
	clear: left;
	font-size: .95em;
	/*line-height: 1.45em;*/
	line-height: 1.55em;
	text-align: center;
	color: #F7EB90;
	padding: 7px 5px 7px 7px;
	/* padding: 3px 5px 3px 5px; */
	/* padding: 5px 0 5px 15px; */
	}

#foo3 a {
	color: #F7EB90;
	text-decoration: none;
	font-weight: bold;
	}

#foo3 a:hover {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	}

#foo3 img {
	border: none;
	float: right;
	}

#header-alerts {
	background-color: #000000; /* #d4fcea; */
	border-bottom: 1px #000 dashed;
	clear: left;
	padding: 7px 5px 7px 7px;
	/* padding: 3px 5px 3px 5px; */
	/* padding: 5px 0 5px 15px; */
	}

#header-alerts span {
	color: #E2F0FC;
	font-size: .95em;
	/*line-height:  1.45em;*/
	line-height: 2em;
	}
	
#header-alerts span img {
	padding: 0 2px 2px 2px;
	border: 0;
	float: left;
	}	
	
#header-alerts span a {
	color: #E2F0FC;
	text-decoration: none;
	}


#header-alerts span a:hover {
	color: #FFFFFF;
	text-decoration: underline;
	}

#side-alert {
	float:right;
	text-align:center;
	margin-right: 5em; padding-right: 1em;
	color: #000000;
	font-size: .9em;
	}

/*------------------------------------------------------
	F O R M     E L E M E N T S 
------------------------------------------------------*/

input:focus {
	background: #F5F5F5;
	}

#search {
	padding-top: 5px;
	padding-right:  20px;
	}

#search a:link {
	color: #FFF;
	font-size: .80em;
	text-decoration: none;
	}

#search a:visited {
	color: #FFF;
	font-size: .80em;
	text-decoration: none;
	}

#search a:hover {
	color: #FFF;
	font-size: .80em;
	text-decoration: underline;
	}

#search a:active {
	color: #FFF;
	font-size: .80em;
	text-decoration: none;
	}

#search span {
	position: absolute;
	right: 2px;
	top: 40px;
	left: inherit
	}
	
#search span img {
	border: none;
	padding: 0 2px 0 0;
	}	
	
#search input {
	font-size: .85em;
	color: #03264B;
	border-radius: 3px;
	padding: 2px;
	/*width: 150px;*/
	background: #E2F0FC;
border-style: none;
	}

#search label {
	visibility: hidden;
	}

#sd-search form {
	margin:0;
	padding:0;
	}

#search form input.custom {
	background-color: #d9dce2;
	font-weight: bold;
	font-size: .85em;
	color: #3d54a9;
	border: 1px solid #CCC;
	border-radius: 3px;
	}


/*------------------------------------------------------
	T O P     N A V I G A T I O N
	(global links - icons)
------------------------------------------------------*/

#top-wrapper {
	background-color: #ab2d19;
	/* height: 110px; */
	/* border-top: 4px solid #8E200E; */
	/*border-bottom: 8px solid #142F97; */
	}

#top_navigation {
	background-color: #03264B;
	width: 100%;
	text-align: right;
	/* float: left; */
	/* border-top: 8px; */
	}

ul.top_navigation {
	list-style-type: none;
	color: #FFFFFF;
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 2.5em;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
	font-size: 1em;
	}

ul.top_navigation li {
	display: inline;
	}

ul.top_navigation li a:link {
	color: #FFF;
	text-decoration: none;
	}
	
ul.top_navigation li a:visited {
	color: #FFF;
	text-decoration: none;
	}

ul.top_navigation li a:hover {
	color: #CCC;
	text-decoration: underline;
	}

ul.top_navigation li a:active {
	color: #FFFFCC;
	text-decoration: none;
	}

#main-nav table {
	width: 620px;
	position: absolute;
	left: 153px;
	top: 75px;
	}

#main-nav table td {
	text-align: center;
	}


/*------------------------------------------------------
	R I G H T     N A V I G A T I O N
------------------------------------------------------*/

#right-nav {
	width: 360px;
	color: #54555B;
	background: #FFF;
	/*font-weight: bold; */
	font-size: 1em;
	padding: 75px 10px 0 40px;
	/*margin: 0; 040621 */
	margin-right: 5%;
	float: right;
	}
	
#right-nav ul {
	list-style: none;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
	}
		
#right-nav ul li {
	/*border-bottom: 1px dashed #4075a1; */
	margin: 0;
	line-height: 1.5em;
	padding: 2px 0 0 30px;
	}

#right-nav ul li form {
	height: 45px;
	margin: 0;
	line-height: 1.5em;
	padding: 0;
	}

#right-nav ul li.nolink {
	padding-left: 10px; /* aligns non href text with links */
	line-height: 1.5em;
	}
	
#right-nav ul li.last {
	border-bottom: none;
	margin: 0;
	padding-left: 5px;
	line-height: 1.5em;
	}
	
#right-nav ul li a {
	display: block;
	color: #54555B;
	text-decoration: none;
	width: 98%;
	background: #FFF;
	padding: 5px;
	line-height: 1.5em;
	}

#right-nav ul li a:hover {
	color: #043E7A;
	font-weight: bold;
	background: #FFF;
	text-decoration: none; 
	line-height: 1.5em;
	}

#right-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	}

#right-nav ul ul li {
	font-weight: normal;
	color: #54555B;
	border: none;
	line-height: 1.5em;
	}
	
#right-nav ul ul li a {
	display: block;
	color: #54555B;
	text-decoration: none;
	width: 99%;
	padding: 1px 1px 1px 4px;
	line-height: 1.5em;
	}

#right-nav ul ul li a:hover {
	color: #043E7A;
	font-weight: bold;
	text-decoration: none; 
	line-height: 1.5em;
	}



/*------------------------------------------------------
	C O N T A I N E R     E L E M E N T S 
------------------------------------------------------*/

#container {
	width: 100%;
	background-color: #FFFFFF;
	}

div#photo {float: right; padding: 0 5px 10px 25px;}


/*------------------------------------------------------
	L E F T     N A V I G A T I O N
------------------------------------------------------*/

#left-nav {
	width: 130px;
	color: #54555B;
	background: #FFF;
	/*font-weight: bold; */
	font-size: 1em;
	padding: 10px 15px 5px 0px;
	/*margin: 0; 040621 */
	float: left;
	position: relative;
	}

#left-nav-2 {
	width: 210px;
	color: #54555B;
	background: #FFF;
	/*font-weight: bold; */
	font-size: 1em;
	padding: 10px 15px 5px 0px;
	/*margin: 0; 040621 */
	float: left;
	position: relative;
	}

/*------------------------------------------------------
	C O N T E N T
------------------------------------------------------*/

#content {
	width: 85%;
	margin-left: 8%;
	margin-right: 8%;
	font-family: Arial, Helvetica, sans-serif;
	/*font-size: .95em;*/
	font-size: 97%;
	/*line-height: 1.45em;*/
	line-height: 1.7em;
	padding: 20px 70px 0 70px;
	color: #515257;
	}

@media screen and (max-width: 1366px)

{
#content {
	width: 90%;
	margin-left: 8%;
	margin-right: 8%;
	font-family: Arial, Helvetica, sans-serif;
	/*font-size: .95em;*/
	font-size: 97%;
	/*line-height: 1.45em;*/
	line-height: 1.7em;
	padding: 20px 0 0 0;
	color: #515257;
	}
}

@media only screen and (max-width: 767px)

{
	
#content h1 {
	font-size: 1.5em;
	/*padding-top: 20px;*/
	padding-bottom: 30px;
	line-height: 1.4em;
	line-space: 1em;
	}
}
	
	
	
#content h1 {
	font-size: 2em;
	padding-top: 55px;
	padding-bottom: 30px;
	line-space: 1em;
	}
	
#content h2 {
	font-size: 1.4em;
	/*padding-top: 40px;*/
	padding-top: 15px;
	padding-bottom: 10px;
	}
	
#content h2.h3 {  /* make h2 look like h3 */
	font-size: 1em;
	color: #000000;
	}

#content h2.handcursor {
	font-size: 1.2em;
	padding-top: 15px;
	}
	
#content h3 {
	font-size: 1em;
	color: #000000;
	}	

#content h4 {
	font-size: 1em;
	color: #000000;
	}

#content ul li.last {
	padding-bottom: 10px;
	}

#content ul {
	margin-left: 3em;
	padding-top: 0px;
	padding-bottom: 15px;
	}

#content ol {
	margin-left: 3em;
	padding-top: 15px;
	padding-bottom: 15px;
	}
	
#content ul.custom li {
	padding-bottom: 10px;
	padding-left: 10px;
	}

acronym {
	border-bottom: 1px dotted #999;
	cursor: help;
	}

.attention { font-family: Arial, Helvetica, sans-serif; font-size: .95em; font-weight: normal; color: #CC0000}
.attention a:link { font-family: Arial, Helvetica, sans-serif; font-size: .95em;  font-weight: normal; color : #CC0000; text-decoration: underline}
.attention a:visited { font-family: Arial, Helvetica, sans-serif; font-size: .95em;  font-weight: normal; color : #CC0000; text-decoration: underline}
.attention a:hover { font-family: Arial, Helvetica, sans-serif; font-size: .95em;  font-weight: normal; color : #CC0000; text-decoration: none}
.attention a:active { font-family: Arial, Helvetica, sans-serif; font-size: .95em;  font-weight: normal; color : #CC0000; text-decoration: underline}

.attention_bold { font-weight: bold; color: #CC0000}
.attention_bold a:link { font-weight: bold;  color : #CC0000; text-decoration: underline;}
.attention_bold a:visited { font-weight: bold;  color : #CC0000; text-decoration: underline;}
.attention_bold a:hover { font-weight: bold;  color : #CC0000; text-decoration: none;}
.attention_bold a:active { font-weight: bold;  color : #CC0000; text-decoration: underline;}

.attention_bold_graybg { font-weight: bold; color: #CC0000; background: #F5F5F5; border:1px solid #CCC; padding: 5px;}

.white { font-family: Arial, Helvetica, sans-serif; font-size: .90em; font-weight: normal; color: #FFFFFF}
.white a:link { font-family: Arial, Helvetica, sans-serif; font-size: .90em;  font-weight: normal; color : #FFFFFF; text-decoration: underline}
.white a:visited { font-family: Arial, Helvetica, sans-serif; font-size: .90em;  font-weight: normal; color : #08046B; text-decoration: underline}
.white a:hover { font-family: Arial, Helvetica, sans-serif; font-size: .90em;  font-weight: normal; color : #08046B; text-decoration: none}
.white a:active { font-family: Arial, Helvetica, sans-serif; font-size: .90em;  font-weight: normal; color : #08046B; text-decoration: underline}

.faq { font-family: Verdana; font-size: 10px; color: #FFFFFF; background-color: #FF9900; padding-right:3px;}
.new { font-family: Verdana; font-size: 10px; color: #000000; background-color: #FFFF66; padding-right:3px;}
.highlight { background-color: #FFFF66; }

.havaheading {  font-family: Arial, Helvetica, sans-serif; font-size: .95em; font-weight: bold; color: #08046B}

.lightblunav {  font-family: Arial, Helvetica, sans-serif; font-size: .95em; font-weight: bold; color: #08046B; background-color: #EEEDFE}
.lightblunav2 {  font-family: Arial, Helvetica, sans-serif; font-size: .95em; font-weight: bold; color: #08046B; background-color: #E2F0FC; padding: 10px;}
.bluenav2 {	font-family: Arial, Helvetica, sans-serif;	font-size: .95em; font-style: normal; font-weight: bold;	background-color: #10046B; color: #FFFFFF;}	
.graynav {	font-family: Arial, Helvetica, sans-serif;	font-size: 1em; font-style: normal; font-weight: bold;	background-color: #f5f5f5; color: #10046B;}
.prsubheading_bold { font-family: Arial, Helvetica, sans-serif; font-size: 1em; font-weight: bold; color: #999999}
.plainnavbold { font-family: Arial, Helvetica, sans-serif; font-size: .95em; font-weight: bold; color:#CC0000}
.plainnav { font-family: Arial, Helvetica, sans-serif; font-size: .95em; font-weight: normal; color: #CC0000}

#pr-release-date {
	float:left;
	}

#pr-contact-info {
	float:right;
	text-align:right;
	margin-right: 1em; 
	line-height: 1.5em;
	}

#release {
	clear:right;
	padding-top: 10px;
	}
	
.Offline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	background-color: #990000;
	color: #FFFFFF;
	border: thin solid #FFFFFF;}
.Online {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	background-color: #136F31;
	color: #FFFFFF;
	border: thin solid #FFFFFF;}
	
caption {text-align:left; font-family:Arial, Helvetica, sans-serif;
font-weight:bold; font-size: 12px;}

.img-caption {color: #666666; font-weight: normal; font-size: 12px; line-height: 18px; }

#list ul {
	padding: 0;
	margin: 0;
	}
	
#list li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	line-height: 2;
	margin: 0 0 0 25px;
	list-style-image: url(/images/home-pg/bullet.gif);
	}

#menu-bills ul li {
	list-style:none;
	display:inline;
	}

ul.hide-bullets li {
	list-style-type:none;
	}

ul.page-nav {
	list-style-type: none;
	color: #000;
	padding: 0;
	margin: 0;
	font-size: .95em;
	}

ul.page-nav li {
	display: inline;
	}

li.page-nav a:link {
	color: #330099;
	text-decoration: none;
	}
	
li.page-nav a:visited {
	color: #11066C;
	text-decoration: none;
	}

li.page-nav a:hover {
	color: #9B1E43;
	text-decoration: underline;
	}

li.page-nav a:active {
	color: #330099;
	text-decoration: none;
	}

/* --------------------------------------
	R I G H T  N A V
---------------------------------------*/

#right-nav-wrapper {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 100px;
	margin-right: 45px;
	float: right;
	clear: both;
	}

@media only screen and (max-width: 502px){
	
#right-nav-wrapper {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 30px;
	margin-right: 100px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 400px){
	
#right-nav-wrapper {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 30px;
	margin-right: 50px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 350px){
	
#right-nav-wrapper {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 30px;
	margin-right: 30px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 320px){
	
#right-nav-wrapper {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 30px;
	margin-right: 10px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 281px){
	
#right-nav-wrapper {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin: auto;
	float: right;
	clear: both;
	}


}

#right-nav-wrapper3 {
	width: 650px;
	/*margin: 10px 100x 10px 100px;*/
	margin-top: -70px;
	margin-bottom: 30px;
	margin-left: 100px;
	margin-right: 30px;
	float: right;
	clear: both;
	}

@media only screen and (max-width: 1600px){
	
#right-nav-wrapper3 {
	width: 450px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 100px;
	margin-right: 30px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 1070px){
	
#right-nav-wrapper3 {
	width: 370px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 100px;
	margin-right: 30px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 990px){
	
#right-nav-wrapper3 {
	width: 340px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 50px;
	margin-right: 30px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 955px){
	
#right-nav-wrapper3 {
	width: 290px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 50px;
	margin-right: 30px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 895px){
	
#right-nav-wrapper3 {
	width: 98%;
	/*margin: 10px 100x 10px 100px;*/
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 50px;
	margin-right: 30px;
	float: right;
	clear: both;
	}


}

@media only screen and (max-width: 390px){
	
#right-nav-wrapper3 {
	width: 100%;
	/*margin: 10px 100x 10px 100px;*/
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 50px;
	margin-right: 15px;
	float: right;
	clear: both;
	}


}

#right-nav {
	width: 250px;
	margin: 0;
	padding: 0;
	}
	
#right-nav .header {
	/*background-image: url(/images/global-sub-nav/right-nav-top-curve.gif);*/
	background-color: #03264B;
	background-position: top left;
	background-repeat: no-repeat;
	color: #FFFFFF; 
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	padding: 5px 5px 5px 10px;
	margin: 0;
	}

#right-nav .bottom {
	/*background: url(/images/global-sub-nav/right-nav-bottom-curve.gif) top left no-repeat;*/
	background-color: #03264B;
	height: 6px;
	}
	
#right-nav img {
	border: none;
	padding: 0;
	margin: 0;
	}

#right-nav ul#items {
	margin: 0px; 
	padding: 0px;
	color: #2c2e43;
	font-size: .95em;
	padding: 5px 5px 5px 10px;
	text-align: left;
	border-right: 1px solid #9299b0;
	border-left: 1px solid #9299b0;
	}

#right-nav ul#items li {
	padding: 2px 5px 2px 5px; 
	margin: 0px;
	border-top: 1px solid #9299b0;
	background-color: #FFFFFF;
	list-style: none;	
	}
	
#right-nav ul#items li.expand {
	height: 50px;
	}

#right-nav ul#items a:hover {
	font-weight:500;
	color: #2c2e43;
	}

#right-nav a:link {
	color: #040940;
	text-decoration: none;
	}
	
#right-nav a:visited {
	color: #040940;
	text-decoration: none;
	}
	
#right-nav a:hover {
	border-bottom: 1px dotted #000;
	color: #2c2e43;
	}
	
#right-nav a:active {
	color: #040940;
	text-decoration: none;
	}

#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 50px;
	margin-right: 0px;
	float: right;
	/*clear: both;*/
	}


@media only screen and (max-width: 1803px)

{
	
#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 40px;
	/*margin-right: 30px;*/
	float: right;
	/*clear: both;*/
	}
}

@media only screen and (max-width: 1750px)

{
	
#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 30px;
	/*margin-right: 30px;*/
	float: right;
	/*clear: both;*/
	}
}

@media only screen and (max-width: 1696px)

{
	
#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 10px;
	/*margin-right: 30px;*/
	float: right;
	/*clear: both;*/
	}
}

@media only screen and (max-width: 1594px)

{
	
#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 500px;
	/*margin-right: 30px;*/
	float: left;
	/*clear: both;*/
	}
}

@media only screen and (max-width: 1366px)

{
	
#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 655px;
	margin-right: 0px;
	float: left;
	/*clear: both;*/
	}
}

@media only screen and (max-width: 1240px)

{
	
#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 580px;
	margin-right: 0px;
	float: left;
	/*clear: both;*/
	}
}

@media only screen and (max-width: 1080px)

{
	
#right-nav-wrapper-2 {
	width: 250px;
	/*margin: 10px 100x 10px 100px;*/
	margin-bottom: 30px;
	margin-left: 0px;
	margin-right: 0px;
	float: left;
	/*clear: both;*/
	}
}


/* --------------------------------------
	R I G H T  N A V - S U B
---------------------------------------*/

#right-nav-sub {
	width: auto;
	margin-top: 10px;
	padding-top: 0px;
	clear: both;
		border-right: 1px solid #9299b0;
	border-left: 1px solid #9299b0;
	}



#right-nav-sub .header {
	/*background-image: url(/images/global-sub-nav/right-nav-top-curve.gif);*/
	/*background-position: top left;*/
	text-align: center;
	background-repeat: no-repeat;
	color: #FFFFFF; 
	background-color: #03264B;
	font-size: 1em;
	font-weight: bold;
	padding: 0 0 0 10px;
	margin: 0;
	}

#right-nav-sub .bottom {
	/*background: url(/images/global-sub-nav/right-nav-bottom-curve.gif) top left no-repeat;*/
	height: 6px;
	background-color: #03264B;
	}

#right-nav-sub ul#sub-items {
	margin: 0px; 
	padding: 0px;
	color: #2c2e43;
	font-size: .85em;
	}

#right-nav-sub ul#sub-items li {
	padding: 2px 0px 2px 5px;
	margin: 0px;
	background-color: #F5F5F5;
	list-style: none;
	}

#right-nav-sub a:link {
	color: #040940;
	text-decoration: none;
	}
	
#right-nav-sub a:visited {
	color: #040940;
	text-decoration: none;
	}
	
#right-nav-sub a:hover {
	border-bottom: 1px dotted #000;
	color: #2c2e43;
	}
	
#right-nav-sub a:active {
	color: #040940;
	text-decoration: none;
	}

/*-----------------------------------
  S E C T I O N A L  D I V  L I N K S
-----------------------------------*/

#sectional-container {
	position: relative;
    width: 100%;
    float: left;
	text-align: center;
	}

#sectional-div {
	margin: 0 auto;
	min-width: 200px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7; 
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	} 


#sectional-div-1 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7; 
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-1 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-1 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-1 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-1 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-1 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	} 



#sectional-div-2 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-2 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-2 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-2 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-2 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-2 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}


#sectional-div-3 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-3 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-3 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-3 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-3 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-3 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}


#sectional-div-4 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-4 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-4 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-4 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-4 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-4 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}


#sectional-div-5 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-5 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-5 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-5 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-5 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-5 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}


#sectional-div-6 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-6 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-6 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-6 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-6 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-6 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}


#sectional-div-7 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-7 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-7 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-7 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-7 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-7 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}


#sectional-div-8 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
	background-color: #E7E7E7;
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 10px;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional-div-8 img.logo {
	box-sizing: content-box;
	height: 40px
	padding-top: 7px;
	padding-bottom: 15px;
	}

#sectional-div-8 a:link {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div-8 a:visited {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-8 a:hover {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-8 a:active {
	font-weight: bold;
	font-size: 1.2em;

	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}



#sectional-div-a {
	margin: 0 auto;
	width: 100%;
	height: 120px; 
	display: inline-block;
	background-color: #C3DBF1;
    justify-content: center;
	margin-top: 20px;
	margin-bottom: 30px;
	padding-top: 10px;
    border-radius: 15px;
	}

#sectional{
	background-color: #C3DBF1;
	float:left; 
	display: inline-block;
	text-align: left;
	width: 18%;
	height: 120px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	/*clear: both;*/
	}

#image-div-1 {
	margin: 0 auto;
	min-width: 210px;
	height: 100px; 
	display: inline-block;
    justify-content: center;
	margin-left: 10px;
	/*margin-top: 30px;*/
	margin-bottom: 15px;
	/*padding-top: 10px;*/
    border-radius: 15px;
	}

#image-div-2 {
	margin: 0 auto;
	min-width: 210px;
	height: 130px; 
	display: inline-block;
    justify-content: center;
	margin-left: 10px;
	/*margin-top: 40px;*/
	margin-bottom: 15px;
	padding-top: 10px;
    border-radius: 15px;
	}


/*-----------------------------------
  S E C T I O N A L L I N K S A
-----------------------------------*/

#sectional-container-a {
	position: relative;
    width: 100%;
    float: left;
	text-align: center;
	}

#sectional-div-a {
	margin: 0 auto;
	width: 100%;
	height: 130px; 
	display: inline-block;
	background-color: #C3DBF1;
    justify-content: center;
	margin-top: 0px;
	margin-bottom: 30px;
    border-radius: 15px;
	}

#sectional-a{
	background-color: #C3DBF1;
	float:left; 
	display: inline-block;
	text-align: left;
	width: 18%;
	height: 120px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	} 

#sectional-div-a img.logo {
	border: none;
	padding-top: 5px;
	}

#sectional-div-a a:link {
	font-weight: bold;
	font-size: 1.2em;
	margin: 0 5px 0 5px;
	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	
	}
	
#sectional-div-a a:visited {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 85px;
	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div-a a:hover {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 85px;
	line-height: 1.2em;
	color: #406796;
	text-decoration: none;
	}

#sectional-div-a a:active {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 85px;
	line-height: 1.2em;
	color: #03264B;
	text-decoration: none;
	}


@media only screen and (max-width: 767px)	
 {
    #sectional-div
    {
        display: block; 
        float: none; 
        width: 100%;
        padding: 20px 0;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-1
    {
        display: block; 
        float: none; 
        width: 90%;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-2
    {
        display: block; 
        float: none; 
        width: 90%;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-3
    {
        display: block; 
        float: none; 
        width: 90%;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-4
    {
        display: block; 
        float: none; 
        width: 90%;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-5
    {
        display: block; 
        float: none; 
        width: 90%;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-6
    {
        display: block; 
        float: none; 
        width: 90%;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-7
    {
        display: block; 
        float: none; 
        width: 90%;
    }
} 

@media only screen and (max-width: 767px)	
 {
    #sectional-div-8
    {
        display: block; 
        float: none; 
        width: 90%;
        padding: 0px 0;
    }
} 

/*-----------------------------------
  S E C T I O N A L L I N K S 2
-----------------------------------*/

#sectional-container2 {
	position: relative;
    width: 100%;
    float: left;
	text-align: center;
	padding-top: 40px;
	}

#sectional-div2 {
	 margin: 0 auto;
	vertical-align: top;
	width: 24%;
	height: 450px; 
	 display: inline-block;
	/*background-color: #fff;*/
     justify-content: center;
	}

#sectional2{
	/*background-color: #fff;*/
	float:left; 
	display: inline-block;
    padding: 10px 0 0 0;
	text-align: left;
	width: 24%;
	height: 450px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	vertical-align: top;
	/*clear: both;*/
	}

#sectional-div2 img.logo {
	border: none;
	padding-top: 20px;
	}

#sectional-div2  a:link {
	color: #03264B;
	text-decoration: none;
	
	}
	
#sectional-div2  a:visited {
	color: #08046B;
	text-decoration: none;
	}

#sectional-div2  a:hover {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div2  a:active {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div2 h2 {
	padding: 0px 0 0 0;
	font-size: 1.3em;
	}

#sectional-div2 h2.first {
	padding: 2px 0 5px 0;
	margin: 10px 0 0 0;
	font-size: 1.2em;
	}

#sectional-div2 span {
	font-size: .85em;
/*line-height: 11px;*/
	line-height: 2em;
	}

#sectional-div2 ul {
	padding: 0;
	margin: 0;
	/*line-height: 1.75px;*/
	line-height: 2em;
	text-align: left;
	}
	
#sectional-div2 li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	/*line-height: 1.55;*/
	line-height: 2em;
	margin: 0 0 10px 25px;
	list-style-image: url(/images/home-pg/bullet.gif);
	}

#sectional-div2a {
	 margin: 0 auto;
	vertical-align: top;
	width: 24%;
	height: 225px; 
	 display: inline-block;
	/*background-color: #fff;*/
     justify-content: center;
	padding-top: 15px;
	line-height: 1.5em;
	}

#sectional-div2a img.logo {
	border: none;
	padding-top: 20px;
	}

#sectional-div2a  a:link {
	color: #03264B;
	text-decoration: none;
	}
	
#sectional-div2a  a:visited {
	color: #08046B;
	text-decoration: none;
	}

#sectional-div2a  a:hover {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div2a  a:active {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}
@media only screen and (max-width: 767px)	
 {
    #sectional-div2
    {
        display: block; 
        float: none; 
        width: 100%;
        padding: 20px 0;
    }
} 

/*-----------------------------------
  S E C T I O N A L L I N K S 3
-----------------------------------*/

#sectional-container3 {
	position: relative;
    width: 100%;
    float: left;
	text-align: center; 
	}

#sectional-div3 {
	margin: 0 auto;
	width: 18%;
	height: 85px; 
	display: inline-block;
	background-color: #C3DBF1;
    justify-content: center;
	margin-top: 40px;
	margin-bottom: 40px;
	padding-top: 20px;

	}

#sectional3{
	background-color: #C3DBF1;
	float:left; 
	display: inline-block;
	text-align: left;
	width: 18%;
	height: 85px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	/*clear: both;*/
	}

#sectional-div3 img.logo {
	border: none;
	padding-top: 20px;
	}

#sectional-div3  a:link {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 100px;
	/*line-height: 1.2em;*/
	line-height: 2em;
	color: #03264B;
	text-decoration: none;
	
	}
	
#sectional-div3  a:visited {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 100px;
	/*line-height: 1.2em;*/
	line-height: 2em;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div3  a:hover {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 100px;
	/*line-height: 1.2em;*/
	line-height: 2em;
	color: #FFF;
	text-decoration: none;
	}

#sectional-div3  a:active {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 100px;
	/*line-height: 1.2em;*/
	line-height: 2em;
	color: #03264B;
	text-decoration: none;
	}

/*-----------------------------------
  S E C T I O N A L L I N K S 4
-----------------------------------*/

#sectional-container4 {
	position: relative;
    width: 100%;
    float: left;
	text-align: center;
	margin-bottom: 40px;
	background-color: white;
	white-space: normal;
	}

#sectional-div4 {
	 margin: 0 5px 25px;
	position: relative;
	vertical-align: top;
	width: 23%; 
	min-height: 225px; 
	max-height: 575px;
	 display: inline-block;
	background-color: #fff;
     justify-content: center;
	white-space: normal;
	}

#sectional4{
	background-color: #fff;
	float:left; 
	display: inline-block;
	text-align: left;
	width: 23%;
	height: 500px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	vertical-align: top;
	/*clear: both;*/
	}

/*#sectional-div4 img.logo {
	border: none;
	margin-bottom: 5px;
	}*/

#sectional-div4  a:link {
	color: #03264B;
	text-decoration: none;
	
	}
	
#sectional-div4  a:visited {
	color: #08046B;
	text-decoration: none;
	}

#sectional-div4  a:hover {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div4  a:active {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div4 h2 {
	padding: 0 0 0 0;
	/*line-height: 1.4em;*/
	line-height: 2em;
	font-size: 1.4em;
	}

#sectional-div4 h2.first {
	padding: 0px 0 5px 0;
	margin: 10px 0 0 0;
	font-size: 1.2em;
	text-align: left;
	}

#sectional-div4 img.logo {
	border: none;
	padding-top: 15px;
	/*padding-bottom: 10px;*/
	}

#sectional-div4 span {
	font-size: .85em;
	/*line-height: 11px;*/
	line-height: 2em;
	}

#sectional-div4 ul {
	padding: 0;
	margin: 0;
	/*line-height: 1.75px;*/
	line-height: 2em;
	text-align: left;
	}
	
#sectional-div4 li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	/*line-height: 1.55;*/
	line-height: 2em;
	margin: 0 0 10px 25px;
	list-style-image: url(/images/home-pg/bullet.gif);
	}

#sectional-div4 a:hover {
	color: #043E7A;
	text-decoration: underline;
	}


@media only screen and (max-width: 767px)	
 {
    #sectional-div4
    {
        display: block; 
        float: none; 
        width: 100%;
        padding: 20px 0;
    }
} 


/* @media  screen and (max-width: 1920px) 
{
	 #sectional-div4
        {
        display: block; 
        float: none; 
        width: 100%;
        padding: 20px 0;
    }
} */

/*-----------------------------------
  S E C T I O N A L L I N K S 5
-----------------------------------*/

#sectional-container5 {
	position: relative;
    width: 100%;
    float: left;
	text-align: center;
	margin-bottom: 40px;
	}

#sectional-div5 {
	 margin: 0 5px 25px;
	vertical-align: top;
	width: 23%;
	height: 500px; 
	 display: inline-block;
	background-color: #fff;
     justify-content: center;
		color: #0f549c;
	}

#sectional5{
	background-color: #fff;
	float:left; 
	display: inline-block;
    padding: 10px 10px 0 0;
	text-align: left;
	width: 23%;
	height: 500px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	vertical-align: top;
	/*clear: both;*/
	}

#sectional-div5 img.logo {
	border: none;
	margin-bottom: 15px;
	}

#sectional-div5  a:link {
	color: #0f549c;
	text-decoration: none;
	
	}
	
#sectional-div5  a:visited {
	color: #0f549c;
	text-decoration: none;
	}

#sectional-div5  a:hover {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div5  a:active {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

#sectional-div5 h2 {
	padding: 0 0 0 0;
	/*line-height: 1.4em;*/
	line-height: 2em;
	font-size: 1.4em;
	color: #0f549c;
	}

#sectional-div5 h2.first {
	padding: 0px 0 5px 0;
	margin: 10px 0 0 0;
	font-size: 1.2em;
	}

#sectional-div5 img.logo {
	border: none;
	padding-bottom: 10px;
	}

#sectional-div5 span {
	font-size: .85em;
	/*line-height: 11px;*/
	line-height: 2em;
	}

#sectional-div5 ul {
	padding: 0;
	margin: 0;
	/*line-height: 1.75px;*/
	line-height: 2em;
	text-align: left;
	}
	
#sectional-div5 li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	/*line-height: 1.55;*/
	line-height: 2em;
	margin: 0 0 10px 25px;
	list-style-image: url(/images/home-pg/bullet.gif);
	}

#sectional-div5 a:hover {
	color: #043E7A;
	text-decoration: underline;
	}

#sectional-div5a {
	border-radius: 25px; 
	/*line-height: 1.85px;*/
	line-height: 2em;
	margin-left: 2em; 
	margin-top: 0px;
	margin-bottom: 50px;
	position: absolute;
    right: 0px;
	width: 20%;
	padding: 30px 10px 0 30px;
	height: 510px; 
	display: inline-block;
	background-color: #03264B;
	color: #fff;
	}

#sectional5a{
	display: inline-block;
    padding: 10px 10px 0 0; 
	height: 200px; 
	/*line-height: 1.85px;*/
	line-height: 2em;
	vertical-align: top;
	/*clear: both;*/
	}

#sectional-div5a h2 {
	padding: 0 0 0 0;
	/*line-height: 1.4em;*/
	line-height: 2em;
	font-size: 1.4em;
	color: #fff;
	}

#sectional-div5a ul {
	padding: 0;
	margin: 0;
	line-height: 30px;
	text-align: left;
	}
	
#sectional-div5a li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	line-height: 30px;
	margin: 0 0 10px 25px;
	list-style-image: url(/images/home-pg/bullet-white.png);
	}

#sectional-div5a  a:link {
	color: #fff;
	text-decoration: none;
	
	}
	
#sectional-div5a  a:visited {
	color: #fff;
	text-decoration: none;
	}

#sectional-div5a  a:hover {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	}

#sectional-div5a  a:active {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	}

@media only screen and (max-width: 767px)	
 {
    #sectional-div5a
    {
        display: block; 
        float: none; 
        width: 100%;
        padding: 20px 0;
    }
} 

#sectional-div5ab {
	border-radius: 25px;
	height: auto;
	width: 65%;
	margin-left: 5em;
	float: left; 
	padding: 0px 30px 30px 30px;
	margin-top: 0px;
	margin-bottom: 30px;
	background-color: #E2F0FC;
	border: thin solid #CCCCCC;
	text-align: left;
	}

#sectional5ab{
	display: inline-block;
    padding: 10px 10px 0 0;
	height: 500px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	vertical-align: top;
	/*clear: both;*/
	}

#sectional-div5ab h2 {
	padding: 0 0 0 0;
	/*line-height: 1.4em;*/
	line-height: 2em;
	font-size: 1.4em;
	color: #03264B;
	}

#sectional-div5ab ul {
	padding: 0;
	margin: 0;
	/*line-height: 1.75px;*/
	line-height: 2em;
	text-align: left;
	}
	
#sectional-div5ab li {
	/* padding: .35em 0 0 0; */
	padding: 4px 20px 0px 0;
	/*line-height: 1.55;*/
	line-height: 2em;
	margin: 0 0 10px 25px;
	list-style-image: url(/images/home-pg/bullet.gif);
	}

#sectional-div5ab  a:link {
	color: #03264B;
	text-decoration: none;
	
	}
	
#sectional-div5ab  a:visited {
	color: #03264B;
	text-decoration: none;
	}

#sectional-div5ab  a:hover {
	font-weight: bold;
	color: #0f549c;
	text-decoration: none;
	}

#sectional-div5ab  a:active {
	font-weight: bold;
	color: #03264B;
	text-decoration: none;
	}

@media only screen and (max-width: 767px)	
 {
    #sectional-div5ab
    {
        display: block; 
		margin-left: 0em;
        float: none; 
        width: 100%;
        padding: 20px 15px 0px 15px;
    }
} 



/*-----------------------------------
  S E C T I O N A L D I V C O L
-----------------------------------*/

#sectional-div-col {
	 margin: 0 auto;
	vertical-align: top;
	position: relative;
	width: 40%;
	min-width: 325px;
	/*height: 225px;*/ 
	 display: inline-block;
	/*background-color: #fff;*/
	/*padding-top: 15px;*/
	line-height: 1.5em;
	text-align: left;
	}

#sectional-div-col h2 {
	padding: 15px 0 5px 0;
	font-size: 1.3em;
	color: #03264B;
	line-height: 1.4em;
	}

#sectional-div-col img.logo {
	border: none;
	padding-top: 20px;
	}

#sectional-container-col {
	position: relative;
    width: 100%;
    float: left;
	/*padding-top: 40px;*/
	}

#sectional-div-col-2 {
	 margin: 0 auto;
	vertical-align: top;
	position: relative;
	width: 40%;
	min-width: 325px;
	/*height: 225px;*/ 
	 display: inline-block;
	/*background-color: #fff;*/
	/*padding-top: 15px;*/
	line-height: 1.5em;
	text-align: left;
	}

#sectional-div-col-2 h2 {
	padding: 15px 0 5px 0;
	font-size: 1.3em;
	color: #03264B;
	line-height: 1.4em;
	}

#sectional-div-col-2 img.logo {
	border: none;
	padding-top: 20px;
	}

#sectional-container-col-2 {
	position: relative;
    width: 100%;
    float: left;
	/*padding-top: 40px;*/
	}


/*------------------------------------------------------
	F O O T E R  L O W E R   N A V I G A T I O N   E L E M E N T S 
------------------------------------------------------*/

#lower-container {
	position: relative;
    width: 100%;
    float: left;
	text-align: center; 
	background-color: #03264B;
	margin-top: 55px;
	padding-top: 15px;
	}

#lower-div {
	 margin: 0 auto;
	 display: inline-block;
     justify-content: center;
	}

#lower-nav-col-1{
	background-color: #03264B;
	float:left; 
	display: inline-block;
    padding: 10px 0 0 0;
	text-align: left;
	color: #FFF;
	width: 332px;
	height: 175px; 
	/*line-height: 1.85em; */
	line-height: 2em;
	/*clear: both;*/
	}

#lower-nav-col-1 a:link {
	color: #FFF;
	text-decoration: none;
	}
	
#lower-nav-col-1 a:visited {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	}

#lower-nav-col-1 a:hover {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

#lower-nav-col-1 a:active {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

#lower-nav-col-2{
	background-color: #03264B;
	float:left; 
	display: inline-block;
    padding: 10px 0 0 0;
	text-align: left;
	color: #FFF;
	width: 332px;
	height: 175px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	/*clear: both;*/
	}

#lower-nav-col-2 a:link {
	color: #FFF;
	text-decoration: none;
	}
	
#lower-nav-col-2 a:visited {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	}

#lower-nav-col-2 a:hover {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

#lower-nav-col-2 a:active {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

#lower-nav-col-3{
	background-color: #03264B;
	float:left; 
	display: inline-block;
    padding: 10px 0 0 0;
	text-align: left;
	color: #FFF;
	width: 332px;
	height: 175px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	/*clear: both;*/
	}

#lower-nav-col-3 a:link {
	color: #FFF;
	text-decoration: none;
	}
	
#lower-nav-col-3 a:visited {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	}

#lower-nav-col-3 a:hover {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

#lower-nav-col-3 a:active {
	font-weight: bold;
	color: #E2F0FC;
	text-decoration: none;
	}

@media only screen and (max-width: 50em){
	
#lower-nav-col-1{
	background-color: #03264B;
	float:left; 
	display: inline-block;
    padding: 10px 0 0 30px;
	text-align: left;
	color: #FFF;
	width: 332px;
	height: 182px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	/*clear: both;*/
	}

#lower-nav-col-2{
	background-color: #03264B;
	float:left; 
	display: inline-block;
    padding: 10px 0 0 30px;
	text-align: left;
	color: #FFF;
	width: 332px;
	height: 182px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	/*clear: both;*/
	}

#lower-nav-col-3{
	background-color: #03264B;
	float:left; 
	display: inline-block;
    padding: 10px 0 0 30px;
	text-align: left;
	color: #FFF;
	width: 332px;
	height: 182px; 
	/*line-height: 1.85em;*/
	line-height: 2em;
	/*clear: both;*/
	}
}

/*------------------------------------------------------
	S U B  F O O T E R
------------------------------------------------------*/

#sub-footer {
	background-color: #03264B;
	text-align: center;
	color: #FFFFFF;
	font-size: .85em;
	clear: both;
    padding-top: 15px;
	padding-bottom: 10px;
	}

#sub-footer li {
	list-style-type: none;
	display: inline;
	margin-left: 0;
	line-height: 1.55em;
	padding: .05em;
	}
	
#sub-footer span {
	background-color: #03264B;
	}

#sub-footer a:link {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	}
	
#sub-footer a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	}
	
#sub-footer a:hover {
	font-weight: bold;
	color: #EFDFA5;
	text-decoration: none;
	}

#sub-footer a:active {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	}

.sr-only {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}

#blue-button a:link {
	width: 250px;
	height: 78px; 
	margin: 15px 5px 15px 5px;
	background-color: #03264B; 
	text-align:center;
	font-weight: bold;
	font-size: 1.2em;
	color: #E2F0FC;
	line-height: 1.5em;
	padding: 7px 5px 5px 5px;
	text-decoration: none;
	border-radius: 7px;
	display: inline-block;
	}

#blue-button a:visited {
	color: #E2F0FC;
	}

#blue-button a:hover {
	width: 250px;
	height: 78px; 
	font-weight: bold;
	font-size: 1.2em;
	background-color: #E2F0FC; 
	color: #03264B;
	border: solid #03264B 2px;
	}

#blue-button-2b a:link {
	width: 155px;
	height: 50px; 
	margin: 0px 5px 15px 5px;
	background-color: #043E7A; 
	text-align:center;
	font-weight: bold;
	font-size: 1.2em;
	color: #E2F0FC;
	line-height: 1.5em;
	padding: 8px 5px 5px 5px;
	text-decoration: none;
	border-radius: 25px;
	display: inline-block;
	}

#blue-button-2b a:visited {
	color: #E2F0FC;
	}

#blue-button-2b a:hover {
	width: 155px;
	height: 50px; 
	font-weight: bold;
	font-size: 1.2em;
	background-color: #E2F0FC; 
	color: #043E7A;
	border: solid #043E7A 2px;
	}

#blue-button-2c a:link {
	width: 190px;
	height: 50px; 
	margin: 0px 5px 15px 5px;
	background-color: #043E7A; 
	text-align:center;
	font-weight: bold;
	font-size: 1.2em;
	color: #E2F0FC;
	line-height: 1.5em;
	padding: 8px 5px 5px 5px;
	text-decoration: none;
	border-radius: 25px;
	display: inline-block;
	}

#blue-button-2c a:visited {
	color: #E2F0FC;
	}

#blue-button-2c a:hover {
	width: 190px;
	height: 50px; 
	font-weight: bold;
	font-size: 1.2em;
	background-color: #E2F0FC; 
	color: #043E7A;
	border: solid #043E7A 2px;
	}

#blue-button-2d a:link {
	width: 352px;
	height: 71px; 
	margin: 0px 5px 15px 5px;
	background-color: #03264B; 
	text-align:center;
	font-weight: bold;
	font-size: 1.2em;
	color: #E2F0FC;
	line-height: 1.5em;
	padding: 15px 5px 15px 5px;
	text-decoration: none;
	border-radius: 7px;
	display: inline-block;
	}

#blue-button-2d a:visited {
	color: #E2F0FC;
	}

#blue-button-2d a:hover {
	width: 352px;
	height: 71px; 
	font-weight: bold;
	font-size: 1.2em;
	background-color: #E2F0FC; 
	color: #03264B;
	border: solid #03264B 2px;
	}


#blue-button-small a:link {
	width: 200px;
	height: 50px; 
	margin: 0px 5px 0px 5px;
	background-color: #03264B; 
	text-align:center;
	font-weight: bold;
	font-size: 1.3em;
	color: #E2F0FC;
	line-height: 1.5em;
	padding: 7px 5px 5px 5px;
	text-decoration: none;
	border-radius: 30px;
	display: inline-block;
	}

#blue-button-small a:visited {
	color: #E2F0FC;
	}

#blue-button-small a:hover {
	width: 200px;
	height: 50px; 
	font-weight: bold;
	font-size: 1.3em;
	background-color: #E2F0FC; 
	color: #03264B;
	border: solid #03264B 2px;
	}

#light-blue-button a:link {
	width: 250px;
	height: 48px; 
	/*margin: 15px 5px 5px 5px;*/
	padding-top: 20px;
	background-color: #E2F0FC; 
	text-align:center;
	font-weight: bold;
	font-size: 1.2em;
	color: #03264B;
	line-height: 1.5em;
	padding: 7px 5px 5px 5px;
	text-decoration: none;
	border-radius: 7px;
	display: inline-block;
	}

#light-blue-button a:visited {
	color: #03264B;
	}

#light-blue-button a:hover {
	width: 250px;
	height: 48px; 
	font-weight: bold;
	font-size: 1.1em;
	background-color: #03264B; 
	color: #E2F0FC;
	border: solid #03264B 2px;
	}

@media only screen and (max-width: 400px)	
 {
    #light-blue-button
    {
	

	/*margin: 15px 5px 5px 5px;*/
	padding-top: 20px;

	text-align:center;
	font-weight: bold;
	font-size: 1em;
	color: #03264B;
	line-height: 1.5em;
	padding: 7px 5px 5px 5px;
	text-decoration: none;
	border-radius: 7px;
	display: inline-block;
    }
} 

#blue-button-2 a:link {
	width: 280px;
	height: 244px; 
	margin: 15px 5px 15px 5px;
	background-color: #03264B; 
	text-align:center;
	font-weight: bold;
	font-size: 1.5em;
	color: #E2F0FC;
	line-height: 1.5em;
	padding: 7px 5px 5px 5px;
	text-decoration: none;
	border-radius: 7px;
	display: inline-block;
	}

#blue-button-2 a:visited {
	color: #E2F0FC;
	}

#blue-button-2 a:hover {
	width: 280px;
	height: 244px; 
	font-weight: bold;
	font-size: 1.5em;
	background-color: #03264B; 
	color: #FBF059;
	/*border: solid #03264B 2px;*/
	}

#home-lower-container-2 {
	position: relative;
    float: left;
	/*text-align: center;*/ 
	background-color: #E2F0FC;
	margin-top: 55px;
	padding-top: 15px;
	padding-left: 12%;
	padding-right: 8%;
	width: 100%;
	white-space: normal;
	}

#modern-div {
	margin: 0 auto;
	min-width: 85%x; 
	display: inline-block;
	background-color: #E2F0FC; 
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 30px;
	margin-top: 5px;
	margin-bottom: 15px;
	padding-left: 10px;
    border-radius: 15px;
	}

#modern-div2 {
	margin: 0 auto;
	min-width: 50%; 
	display: inline-block;
	background-color: #F5F5F5; 
	/* background-color: #C3DBF1; */
    justify-content: center;
	margin-left: 30px;
	margin-top: 5px;
	margin-bottom: 15px;
	padding-left: 10px;
	padding-top: 10px; 
	border: 1px solid #CCCCCC;
    border-radius: 15px;
	}