@charset "UTF-8";
html {
/*	height: 100%*/
}

body {
	font: normal normal normal 16px/1.5em Verdana,Geneva,'DejaVu Sans',sans-serif;
	background-color: black;
	color: white;
	margin: 0;
	padding: 0;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	font: normal normal normal 16px/1.5em Verdana,Geneva,'DejaVu Sans',sans-serif;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	/* [disabled]padding-right: 15px; */
	/* [disabled]padding-left: 15px; */ /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #3490DF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #3490DF;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #3490DF;
	background: #DDD;
	text-decoration: none;
}

/*******************************************************************************
 * Container
 *******************************************************************************/
.container {
	position: absolute;
	top: 0; left: 0;
	z-index: 1;
	min-width: 600px;
}
/*******************************************************************************/

/*******************************************************************************
 * Company logo colors
 * Light: #2677AC (38,119,172)
 * Medium: #0B5385, #145F92
 * Dark: #014778
 *******************************************************************************/
.logo_color1 {
	color: #3490DF;
}
/*******************************************************************************/

/*******************************************************************************
 * Header
 *******************************************************************************/
.hdr {
	background-image: url(../images/gradient.png);
	background-size: 100% 100%;

	height: 140px;
	width: 100%;
/*	min-width: 800px;*/

	position: relative;
}
.hdr #logo {
	float: left;
}
.hdr .phone {
	white-space: nowrap;
	padding: 10px 13px 0 0;
}
.hdr .phone.pos1 {
	float: right;
}
.hdr .phone.pos2 {	/* to be used when resized moves to bad location */
	position: absolute;
	top: 71px; right: 0;
}
.hdr .links {
	position: absolute;
	bottom: 0; right: 0;
	font-size: 80%;

	padding: 5px;
	white-space: nowrap;
}
/*******************************************************************************/

/*******************************************************************************
 * Background Image
 *******************************************************************************/
 div.bg {
	position: relative;
}

img.bg {
	width: 100%;
	position: relative;
}

#bg_overlay {
	width: 100%;
/*	display: none;*/
	position: absolute;
	top: 0; left: 0;
}
/*******************************************************************************/

/*******************************************************************************
 * Footer
 *******************************************************************************/
div.ftr {
	background-image: url(../images/gradient.png);
	background-size: 100% 100%;
	position: relative;
}

.ftr table {
	width: 100%;
	font-size: 80%;

	border-collapse:collapse;
}

.ftr table.ftr td {
	padding: 0 10px;
}

.ftr td.phone {
	white-space: nowrap;
	text-align: left;
	width: 1%;
}

.ftr td.slogan {
	text-align: center;
}

.ftr .MenuBar {
	white-space: nowrap;
}
.ftr table.MenuBar td {
	padding: 0;
}
.ftr td.MenuBar2 {
	width: 1%;
}

.ftr .MenuBar2 td {
	white-space: nowrap;
}
/*******************************************************************************/

/*******************************************************************************
 * Sidebar
 *******************************************************************************/
div.sidebar {
	background-image: url('../images/transpBlack50.png');
/*	width: 600px;*/
	max-width: 600px;

	position: absolute;
	top: 150px; left: 0;		/* 10px: vertical pad height, 140px hdr height */
	z-index: 10;
}
.sidebar .content {
	margin: 20px 20px 0 20px;
}
.sidebar .content h1,
.sidebar .content h2,
.sidebar .content h3,
.sidebar .content p,
.sidebar .content ul,
.sidebar .content ol {
	margin: 0;
	padding: 0 0 15px 0;
}
.sidebar .content h1 {
	font-size: 120%;
	text-align: center;
}
.sidebar .content h2 {
	font-size: 120%;
	font-weight: bold;
}
.sidebar .content h3 { /* used for list header */
	font-weight: bold;
	padding-bottom: 5px;
}
.sidebar .content ul, .sidebar .content ol {
	list-style-position: outside;
	margin-left: 25px;
	padding-left: 2em;
}
.sidebar .content p#address {
	margin-left: 25px;
}
.sidebar .content p.small {
	font-size: 80%;
}
/*******************************************************************************/

/*******************************************************************************
 * reCaptcha
 *******************************************************************************/
div.grecaptcha-badge {
	z-index: 1;
}
/*******************************************************************************/

/*******************************************************************************
 * Webshare
 *******************************************************************************/
/*******************************************************************************/

/* ~~ debug ~~ */
/*.container {width: 966px; border-collapse:collapse;}*
.container {width: 966px; border-collapse:collapse;}
/*.header {border: 1px dotted red;}*/
/*.header .col1, .header .col2, .header .col3 {border: 1px dashed red;}
*/
.hide {
	display: none;
}

div.hdr {
	z-index: 20;	/* allow dropdown menu to overlap sidebar */
}
