@charset "utf-8";
body {
	font: 100%/1 Arial, Helvetica, sans-serif;
	background: #42413C;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ 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-top: 0;
	padding-right: 0;
	padding-left: 75px;
	padding-bottom: 0;
	margin: 0;
	line-height: 12px;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 26px;
	font-weight: bold;
	font-color: #FFF;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-top: 5px;
	padding-right: 20px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	color: #000;
}
h2 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	color: #000;
}
h3 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 25px;
	text-decoration: none;
}
h4 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
h5 {
	margin: 0px;
	padding: 0px 0px 0px 15px;
}
h6, p {
	margin-top: 20px;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px;
	line-height: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
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: #007930;
	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: #007930;
	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. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 1020px;
	background-image: url(style/container_bg.png);
	background-repeat: repeat-y;
	padding: 0 15px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0; /* the auto value on the sides, coupled with the width, centers the layout */
	position: relative;
	z-index: 3;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	height: 75px;
	background: none;
}
.container header h1 {
	color: #FFF;
	padding: 35px 20px 0px 20px;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

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

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

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar {
	float: right;
	height: 1265px;
	width: 300px;
	background-image: none;
	margin-top: 25px;
	margin-right: 15px;
	margin-left: 0;
	margin-bottom: 10px;
	padding: 0px 0px 0 0px;
}
.container .sidebar .latest_news .news table tr td h5 a {
	font-size: medium;
	color: #007930;
	text-decoration: none;
	padding: 0;
}
.container .sidebar .latest_news .news table tr td h5 a:hover {
	font-size: medium;
	color: #007930;
	text-decoration: underline;
}
.container .sidebar .latest_news p a {
	text-decoration: none;
}
.container .sidebar .latest_news p a:hover {
	text-decoration: underline;
}
.container .sidebar .latest_news .previous a {
	font-size: small;
}
.content {
	width: 690px;
	float: left;
	padding-top: 20px;
	padding-left: 15px;
}
.content_feature {
	width: 990px;
	float: left;
	padding-top: 25px;
	padding-left: 15px;
	padding-right: 15px;
}
.content_gallery {
	padding: 20px;
	width: 920px;
	float: left;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}






/* ---------- Begin TopBar & NavBar ---------- */

#topbar {
	height: 55px;
	width: 100%;
	background-image: url("style/navbar/nav_bg.jpg");
	background-repeat: repeat-x;
	border-bottom: #000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	position: fixed;
	z-index: 5;
}
#topbar_container {
	height: 56px;
	width: 1020px;
	padding:0 16px 0 16px;
	left: 0;
	right: 0;
	margin: auto;
	position: fixed;
	z-index: 10;
}
#nav_logo {
	float: left;
	margin-left: 10px;
}
nav ul {
	font-size: medium;
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}
nav ul li {
	display: block;
	position: relative;
	float: left;
	width: 135px;
}
nav li ul {
	display: none;
}
nav ul li a {
	display: block;
	text-decoration: none;
	padding: 22px 0px 0px 0px;
	background: none;
	color: #FFF;
	margin-left: 0;
	white-space: nowrap;
	height: 36px; /* Width and height of top-level nav items */
	width: 127px;
	text-align: center;
}
nav ul li a:hover {
	height:33px;
	background-image: url("style/navbar/nav_bg_on.jpg");
	font-color:#006;
}
nav li:hover ul {
	display: block;
	position: absolute;
}
nav li:hover li {
	float: none;
	font-size: small;
	color: #FFF;
}
#topbar #topbar_container nav ul li ul li a {
	height: 25px;
	padding: 11px 25px 0px 25px;
	background-color: #FFF;
}
#topbar #topbar_container nav ul li ul li a:hover {
	height: 25px;
	padding: 11px 25px 0px 25px;
	background-color: #007930;
}
#topbar #topbar_container nav ul .logo {
	padding: 0px;
}
nav li:hover a {
	background-image: url("style/navbar/nav_bg_dd.jpg");
	height:33px; /* Height of lower-level nav items is shorter than main level */
}
nav li:hover li a:hover {
	background-image: #007930;
}
nav ul li ul li a {
	text-align:left; /* Top-level items are centered, but nested list items are left-aligned */
}
#topbar #topbar_container  nav ul li a {
	color: #FFF;
	text-decoration: none;
	text-shadow: 1px 1px 3px #000;
}


/* ---------- End TopBar & NavBar ---------- */


/* --- Slideshow --- */


.cd-hero-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
}
.cd-hero-slider li.selected {
  /* this is the visible slide */
  position: relative;
  transform: translateX(0);
}
.cd-hero-slider li.move-left {
  /* slide hidden on the left */
  transform: translateX(-100%);
}
.cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
  /* the is-moving class is assigned to the slide which is moving outside the viewport */
  transition: transform 0.5s;
}
#investment_riskalyze {
	padding-top: 130px;
	padding-left: 130px;
}
.contact_left   {
	margin: 30px 25px 50px 30px;
	float: left;
}
.highlight {
	margin-left: 10px;
	margin-right: 10px;
}
.sidebar #questions #questions {
	margin-left: 05px;
}
.sidebar #previous_news {
	font-size: 14px;
	margin-top: 10px;
}
.content_feature section #highlight_table {
}
.community_news {
	padding-left: 90px;
	padding-right: 90px;
}
.article_title em {
	font-size: 14px;
}
.school_right {
	margin-left: 30px;
	margin-right: 30px;
}
.school_left {
	margin-left: 30px;
	margin-right: 30px;
}
.brew_pic {
	margin: 20px 60px 60px 60px;
	float: right;
}
.brew_pic2 {
	float: left;
	margin-left: 50px;
	margin-right: 50px;
	margin-top: 25px;
	margin-bottom: 30px;
}
.disney_right {
	margin: 20px 45px 45px 45px;
	float: right;
}
.disney_left {
	margin: 30px 25px 25px 75px;
	float: left;
}
section p .vertical_inline {
	margin: 20px 45px 45px 50px;
	float: left;
}
section p .small_inline {
	margin-top: 60px;
	float: right;
}
section p .agereally_left {
	margin: 50px 30px 75px 30px;
	float: left;
}
section ul li {
	line-height: 20px;
}
.biography_picture1 {
	margin: 80px 30px 80px 30px;
	float: left;
}
.index_picture {
	margin: -15px 30px 0px 30px;
	float: left;
}
.index_box{
	margin: -10px 10px -10px 10px;
}
.linked_logo {
	padding: 0px 0px 0px 0px;
	vertical-align: middle;
}
.logo_adjust1{
	margin: 0px 25px
}
.logo_adjust2 {
	margin: 0px 50px
}
.contact_picture {
	margin: 5px 30px 0px 30px;
	float: left;
}
.contact_picture1 {
	margin: 8px 30px 20px 30px;
	float: left;
}
.contact_picture2 {
	margin: 26px 30px 20px 30px;
	float: left;
}
.contact_picture3 {
	margin: 26px 30px 20px 30px;
	float: left;
}
.insurance_button_marquee {
	margin-left: 160px;
	margin-top: 165px;
	position: absolute;
}
.insurance_button_marquee2 {
	margin-left: 140px;
	margin-top: 165px;
	position: absolute;
}
.insurance_button_main {
	float: right;
	margin-right: 30px;
	margin-top: 10px;
}
.insurance_button_main2 {
	float: right;
	margin-right: 50px;
	margin-top: 10px;
}
.insurance_button_main3 {
	float: right;
	margin-right: 160px;
	margin-top: 25px;
}
.insurance_button_main4 {
	float: right;
	margin-right: 180px;
	margin-top: -35px;
}
.insurance_button_main5 {
	float: right;
	margin-right: 10px;
	margin-left: 30px;
	margin-top: 10px;
	margin-bottom: 25px;
}
.insurance_button_main6 {
	float: right;
	margin-right: 30px;
	margin-top: 10px;
	margin-bottom: 25px;
}
.insurance_button_main7 {
	float: right;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.insurance_button_main8 {
	float: right;
	margin-right: 105px;
	margin-left: 80px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.insurance_button_main9 {
	float: right;
	margin-right: 0px;
	margin-top: -70px;
	margin-bottom: 0px;
}
.insurance_button_marquee1 {
	position: absolute;
	margin-left: 140px;
	margin-top: 165px;
}
.content section .indented_list {
	margin-left: 50px;
}
.active_news_article {
	position: relative;
	width: 300px;
	height: 260px;
	float: left;
}
.active_news_title {
	margin: 2px 0px 5px 10px;
	font-size: 20px;
	line-height: normal;
}
.active_news_title a {
	font-style: normal;
}
.active_news_article .news_bounds_lower {
	position: absolute;
	bottom: 0;
	left: 5px;
}
.content_feature section img {
}
section .travel_picture_left2 {
	margin-left: 30px;
	margin-right: 30px;
}




@media only screen and (min-width: 768px) {
  .cd-hero-slider .cd-half-width {
    opacity: 0;
    transform: translateX(40px);
  }
  .cd-hero-slider .move-left .cd-half-width {
    transform: translateX(-40px);
  }
  .cd-hero-slider .selected .cd-half-width {
    /* this is the visible slide */
    opacity: 1;
    transform: translateX(0);
  }
  .cd-hero-slider .is-moving .cd-half-width {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    transition: opacity 0s 0.5s, transform 0s 0.5s;
  }
  .cd-hero-slider li.selected.from-left .cd-half-width:nth-of-type(2),
  .cd-hero-slider li.selected.from-right .cd-half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
  }
  .cd-hero-slider li.selected.from-left .cd-half-width:first-of-type,
  .cd-hero-slider li.selected.from-right .cd-half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
  }
}

/* ---------- Begin Header ---------- */

#header_spacer {
	height: 56px;
	width: 100%;
}
#header {
	background-color: #FFF;
	height: 125px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
#header_container {
	height: 125px;
	width: 1020px;
	padding:0 15px;
	left: 0;
	right: 0;
	margin: auto;
	z-index:1;
}
#header_container_login {
	height: 250px;
	width: 1020px;
	padding:0 15px;
	left: 0;
	right: 0;
	margin: auto;
	z-index:1;
}
#header_logo {
	float: left;
	margin-left: 15px;
}
#header_contact {
	float: right;
	margin: 28px 7px 0px 0px;
}

.marquee {
	height: 125px;
	background-image:url(style/marquee_bg.fw.png);
}

.marquee a .slogan {
	float: right;
	margin-top: 25px;
	margin-right: 30px;
}
.marquee a .logo_main {
	margin-left: 15px;
}
#marquee_index {
	height: auto;
	width: 100%;
	min-width: 1050px;
	background-color: #006600;
}
#marquee_login {
	height: 250px;
	width: 100%;
	min-width: 1050px;
	background-image: url(style/marquee/marquee_index_bg.png);
	background-position:center;
	background-repeat: repeat-x;
	background-size: 100%;
}
#marquee_index_container {
	height: 450px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
}
#marquee_content {
	height: 300px;
	width: 100%;
	min-width: 1050px;
	background-image: url("style/marquee/marquee_bg.jpg");
}
#marquee_content_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(style/marquee_content.png);
}
#marquee_payroll_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(style/marquee/payroll.jpg);
}
#marquee_investment_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(style/marquee/investments.jpg);
}
#marquee_insurance_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(style/marquee/insurance.jpg);
}
#marquee_community_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(style/marquee/community.jpg);
}
#marquee_community_container a #Facebook {
	margin-top: 172px;
	margin-left: 125px;
}
#marquee_connectivity_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url("style/marquee/connectivity.jpg");
}
#marquee_metal_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url("style/marquee/metal2.jpg");
}
#marquee_special_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url("style/marquee/special.jpg");
}
#marquee_lines_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url("style/marquee/lines2.jpg");
}
#marquee_contact_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url("style/marquee/contact2.jpg");
	background-repeat: no-repeat;
}
#marquee_about_container {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url("style/marquee/about2.jpg");
}
#header_container_logintemp {
	height: 300px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(style/marquee/marquee_loginnewstemp.png);
}
#marquee_article {
	height: 80px;
	width: 100%;
	min-width: 1050px;
	background-image: url(style/marquee_article_bg.png);
}
#marquee_article_container {
	height: 80px;
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-image: url(style/marquee_article.png);
}
#shadow_nav {
	background-image: url(style/shadow.png);
	width: 100%;
	height: 20px;
	position: fixed;
	z-index: 4;
	left: 0px;
	top: 56px;
	border: 0;
	margin-top: 0px;
}
#shadow_marquee {
	background-image: url(style/shadow.png);
	width: 100%;
	min-width: 1050px;
	height: 20px;
	position: absolute;
	z-index: 4;
}



/* ---------- End Header ---------- */




/* ---------- Begin Footer ---------- */

#footer_spacer {
	height: 20px;
	width: 1020px;
	padding: 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
}
#bottombar {
	height: 150px;
	background-image: url("style/footer/footer_bg.jpg");
	background-color: #000;
	position: relative;
	z-index: 2;
}
#bottombar #bottombar_container {
	height: 150px;
	width: 1020px;
	background-image: url("style/footer/footer_bg.jpg");
	padding: 0 15px;
	margin: 0 auto;
}
#bottombar #bottombar_container .f1 {
	margin-top: 0px;
	margin-bottom: 0px;
}
#bottombar #bottombar_container .f1 {
	font-size: small;
	font-weight: bold;
	color: #FFF;
}
#bottombar #bottombar_container .f1 table tr .first p {
	font-size: x-small;
	font-weight: normal;
	line-height: 12px;
	color: #FFF;
	text-decoration: none;
	padding-left: 75px;
}
#bottombar #bottombar_container .f1 table tr td p a {
	color: #FFF;
	text-decoration: none;
	line-height: 17px;
}
#bottombar #bottombar_container .f1 table tr td p a:hover {
	color: #0F0;
	text-decoration: underline;
	line-height: 17px;
}
#bottombar #bottombar_container .f1 table tr td p .heading {
	font-size: medium;
	font-weight: bold;
	line-height: 26px;
	color: #0F0;
	text-decoration: none;
}
#bottombar #bottombar_container .f1 table tr td p .heading:hover {
	font-size: medium;
	font-weight: bold;
	line-height: 26px;
	color: #0F0;
	text-decoration: underline;
}
#bottombar #bottombar_container .f1 table tr td h4 a {
	font-size: medium;
	font-weight: bold;
	padding-bottom: 0;
	margin: 0;
	color: #0F0;
	text-decoration: none;
}
#bottombar #bottombar_container .f1 table tr td h4 a:hover {
	font-size: medium;
	font-weight: bold;
	padding-bottom: 0;
	margin: 0;
	color: #0F0;
	text-decoration: underline;
}
#bottombar #bottombar_container .f2 {
	font-size: medium;
	color: #FFF;
	font-weight: bold;
	line-height: 10px;
	height: 40px;
}
#bottombar #bottombar_container .f2 p a {
	color: #FFF;
	text-decoration: none;
}
#bottombar #bottombar_container .f2 p a:hover {
	color: #009900;
	text-decoration: underline;
}
#bottombar #bottombar_container .f2 p {
	margin: 0;
	line-height: 10px;
	font-size: small;
}
#bottombar #bottombar_container .f2 p span {
	font-size: x-small;
	line-height: 8px;
}
td a .footer_logo {
	margin-right: 10px;
}
.footer_box {
	float: left;
	margin-right: 40px;
	margin-top: 4px;
}
.footer_box_last {
	float: left;
	margin-top: 4px;
	margin-left: 0px;
}



/* ---------- Eng Footer ---------- */




/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
.insurance_right {
	float: right;
	margin-right: 30px;
	margin-left: 30px;
}

.table_buttons_right {
	float: right;
	margin-top: 10px;
}
.table_cignabutton_right {
	float: right;
	margin-top: 10px;
}


.container .sidebar #socmed p a {
	font-size: 14px;
	font-weight: normal;
}
.container .sidebar #socmed h3 {
	margin-bottom: 8px;
}
.container .sidebar .latest_news h3 {
	margin-bottom: 6px;
	padding: 0px;
}
.container .sidebar .latest_news .news table tr td h5 a {
	margin-bottom: 0px;
}
.container .sidebar .latest_news .news table tr td h5 a {
	margin-bottom: 0px;
}
.container .sidebar .latest_news .news table tr td p {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.container .sidebar #questions h3 {
	margin-bottom: 8px;
}.shadow {
	background-image: url(style/shadow.png);
	width: 100%;
	height: 20px;
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 56px;
	border:0;
}
.container .sidebar .latest_news .news table tr td h5 a {
	margin: 0px;
	padding: 0px;
}
.container .sidebar .latest_news .news_last {
	margin: 0px;
}
.container .sidebar .latest_news .previous a {
	margin: 0px;
	padding: 0px;
}
.container .sidebar .latest_news a {
	font-size: small;
	text-decoration: none;
	margin-right: 3px;
}
.container .sidebar .latest_news a:hover {
	font-size: medium;
	text-decoration: underline;
	text-align: right;
}
.container .sidebar .latest_news {
	margin-bottom: 15px;
}
.container .sidebar .latest_news .news {

}
.container .sidebar #socmed p a {
	text-decoration: none;
}
.container .sidebar #socmed p a:hover {
	text-decoration: underline;
}
.container .sidebar .latest_news .news {
	margin-bottom: 15px;
}
.container .sidebar .latest_news .news_last table tr td h5 a {
	font-size: medium;
}
.container .sidebar .latest_news span a {
	text-align: right;
}
.container .sidebar .latest_news span a:hover {
	font-size: small;
	text-align: right;
}.container .sidebar .latest_news {
	text-align: left;
}
.container .sidebar .latest_news table tr td a {
	text-align: right;
}
.container .sidebar .latest_news table tr td a:hover {
	text-decoration: underline;
	font-size: small;
}
.container .sidebar aside h3 {
	padding: 0px;
}
.container .sidebar .latest_news .news table tr td p {
	font-size: 14px;
}
.container .sidebar .latest_news .news_last table tr td p {
	font-size: 14px;
}
.container .sidebar aside form p input {
	background-color: #F0F0F0;
}
#3_boxes {
	height: 225px;
	width: 1000px;
	background-image:url(style/home_boxes_bg.png);
	padding: 0;
	margin: 0 auto;
}
#3_boxes p {
	color: #FFF;
	padding-top: 0px;
	margin: 0px;
	padding-bottom: 0px;
}
#3_boxes p a {
	text-decoration: none;
	margin: 0px;
	padding-bottom: 0px;
}
#3_boxes p span {
	color: #FFF;
}
.container .content section h2 em {
	font-size: small;
}
.container .content section h3 em {
	font-size: x-small;
}
.container header h1 em {
	font-size: small;
}
.container .content section table tr td ul {
	line-height: 30px;
}
.container .content section ul {
	line-height: 20px;
}

#services_line {
	position: absolute;
	z-index: 6;
	height: 58px;
	width: 1px;
	background-image: url(style/services_line.jpg);
	top: 0px;
	left: 50%;
	margin: 0 0 0 39px;
}

.container header .marquee #box2 {
	float: left;
	margin-bottom: 10px;
}
.container header .marquee table {
	float: left;
	margin-left: 10px;
}
.container header .marquee img {
	float: left;
}
.container .content section #home {
	margin-left: 15px;
}
#contact-area2 form table tr td .send    {
	background-color: #EBEBEB;
}


/* --- Contact Form in SideBar --- */


#contact-area3 {
	width: 250px;
	margin-left: 35px;
	margin-top: 15px;
}

#contact-area3 input, #contact-area3 textarea {
	padding: 5px;
	width: 246px;
	font-family: Helvetica, sans-serif;
	font-size: 1em;
	margin: 0px 0px 10px 0px;
	border: 2px solid #ccc;
}

#contact-area3 textarea {
	height: 100px;
}

#contact-area3 textarea:focus, #contact-area3 input:focus {
	border: 2px solid #090;
}

#contact-area3 input.submit-button {
	width: 150px;
	margin-right: 71px;
	float: right;
}

label {
	float: left;
	text-align: right;
	margin-right: 15px;
	width: 100px;
	padding-top: 5px;
	font-size: 1em;
}.container .content table tr td #contact-area form table tr td .send {
	width: 100px;
}
.container .content #contact-area3 form table tr td .send {
	width: 100px;
}
.container .sidebar #questions #contact-area3 form table tr td .send {
	float: right;
	width: 100px;
	background-color: #EBEBEB;
}.container .sidebar aside #contact-area3 form table tr td .send {
	background-color: #EBEBEB;
	float: right;
	width: 100px;
}
.container header h1 span {
	font-size: medium;
}
.content section .vertical_inline {
	margin: 0 20px 20px 20px;
	float: left;
}
section p .small_inline {
	margin: 35px 20px 20px 20px;
	float: right;
}

.container header .content_title p {
}

.container .content section .slogan_title {
}
.container .content section .slogan_title {
	margin-left: 20px;
}
.container .content section .slogan_title span {
	font-style: italic;
}
section p .disney_right {
	float: right;
	margin-left: 20px;
	margin-right: 20px;
}
section p .disney_left {
	float: left;
	margin-left: 30px;
	margin-right: 30px;
}
.school_right {
	float: right;
	margin-right: 40px;
	margin-left: 70px;
}
.school_large {
	margin-top: 25px;
}
.school_left {
	float: left;
	margin-left: 80px;
	margin-right: 80px;
	margin-top: 20px;
	margin-bottom: 40px;
}
.container .content section table tr .worldseries {
	line-height: 20px;
}

#slideshow_temp_spacer {
	height: 140px;
	width: 640px;
	margin-left: 95px;
}
.service_box {
	height: 150px;
	width: 240px;
	margin-left: 74px;
	margin-right: 0px;
}
#service_box_table {
	height: 325px;
	margin-top: 15px;
}

.marquee_feature {
	margin-top: 24px;
	margin-left: 35px;
	float: left;
}
.index_slideshow {
	margin-left: 0px;
	margin-top: 0px;
}
.first_news {
	margin-top: 40px;
	margin-left: 5px;
	margin-bottom: 2px;
}
.second_news {
	margin-bottom: 2px;
	margin-left: 5px;
}
.third_news {
	margin-left: 5px;
}
.newsletter_temp {
	margin-top: 0px;
}
.marquee_title1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	float: right;
	padding: 122px 68px 0px 0px;
}
.marquee_title_temp {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	float: right;
	padding: 122px 120px 0px 0px;
}
.testtextimage {
	float: left;
}
.biography_picture {
	float: left;
	margin-right: 30px;
	margin-bottom: 15px;
	margin-left: 30px;
	margin-top: 8px;
}
.biography_picture3 {
	float: left;
	margin-right: 30px;
	margin-bottom: 15px;
	margin-left: 30px;
	margin-top: 0px;
}
.lines_picture1 {
	margin: 18px 30px 20px 30px;
	float: left;
}
.lines_picture2 {
	margin: 32px 30px 20px 30px;
	float: left;
}
.lines_picture3 {
	margin: 15px 30px 250px 30px;
	float: left;
}
.connectivity_logo_spread {
	float: left;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 20px;
	margin-top: -20px;
}
.connectivity_logo {
	float: left;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 40px;
	margin-top: 20px;
}
.connectivity_logo1 {
	float: left;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 30px;
	margin-top: 10px;
}
.connectivity_logo2 {
	float: left;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 30px;
	margin-top: 0px;
}
.metal_logo1 {
	float: left;
	margin-right: 10px;
	margin-bottom: 00px;
	margin-left: 40px;
	margin-top: 0px;
}
.metal_logo2 {
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 00px;
	margin-top: 0px;
}
.metal_logo3 {
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 00px;
	margin-top: 0px;
}
.special_logo1 {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 50px;
	margin-top: 0px;
}
.special_logo2 {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 30px;
	margin-top: 0px;
}
.special_logo_level2 {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-top: 0px;
}
.special_logo3 {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 30px;
	margin-top: 0px;
}
.special_logo4 {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 55px;
	margin-top: 0px;
}
.special_logo5 {
	float: left;
	margin-right: 40px;
	margin-bottom: 20px;
	margin-left: -160px;
	margin-top: 0px;
}
.special_logo6 {
	float: left;
	margin-right: 70px;
	margin-bottom: 20px;
	margin-left: 30px;
	margin-top: 0px;
}
.service_region {
	font-size: small;
	font-weight: bold;
	font-style: italic;
}
.line_video {
	line-height: 30px;
}
.line_video_link {
	margin-left: 20px; 
}
.newspage_temp {
	margin-left: 5px;
}
#vision_picture {
	float: left;
	margin: 10px 25px 15px 25px;
}
.biography_full {
	float: left;
	margin-top: 15px;
	margin-right: 25px;
	margin-bottom: 120px;
	margin-left: 35px;
}
.biography_full_josh {
	float: left;
	margin-top: 15px;
	margin-right: 25px;
	margin-bottom: 300px;
	margin-left: 35px;
}
.biography_full_marcia {
	float: left;
	margin-top: 15px;
	margin-right: 25px;
	margin-bottom: 250px;
	margin-left: 35px;
}
.biography_full_eric {
	float: left;
	margin-top: 15px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-left: 35px;
}
.investment_left {
	float: left;
	margin-top: 5px;
	margin-right: 25px;
	margin-bottom: 50px;
	margin-left: 25px;
}
.investment_right {
	float: right;
	margin-top: 20px;
	margin-right: 25px;
	margin-bottom: 80px;
	margin-left: 25px;
}
.payroll_left {
	float: left;
	margin-top: 50px;
	margin-right: 25px;
	margin-bottom: 80px;
	margin-left: 25px;
}
.ins_box {
	float: left;
	margin-top: 0px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-left: 50px;
}
.tax_left {
	float: left;
	margin-top: 10px;
	margin-right: 25px;
	margin-bottom: 80px;
	margin-left: 25px;
}
.tax_right {
	float: right;
	margin-top: 10px;
	margin-right: 25px;
	margin-bottom: 100px;
	margin-left: 25px;
}
.tax_table {
	margin-top: 5px;
	margin-right: 25px;
	margin-bottom: 30px;
	margin-left: 25px;
	float: left;
}
.tax_table_text {
	font-size: small;
}
.index_video {
	float: left;
	margin: 10px 10px 10px 0px;
}
.index_list {
	float: left;
	margin: 22px 0px;
}
.horizontal_news {
	margin-left: 15px;
}
.forms_picture {
	margin-left: 30px;
	margin-bottom: 50px;
	margin-right: 30px;
	float: left;
}
.medi-table {
	margin-left: 50px;
}
.contactinfo_table {
	font-size: 18px;
}
#latest_news_bar {
	margin-top: 20px;
}
.sidebar_bounds_upper {
	margin-left: 5px;
}
.sidebar_bounds_lower {
	margin-left: 5px;
}
.sidebar_thumb {
	margin-left: 20px;
}
.sidebar_news_title {
	margin: 2px 0px 5px 10px;
	font-size: 20px;
}
.sidebar_news_title a {
	font-style: normal;
}
.sidebar_news_text {
	margin: 2px 0px 0px 10px;
	font-size: 14px;
}
#slide1_content {
	float: right;
}
.community_thumb {
	float: left;
	margin-bottom: 25px;
	margin-right: 25px;
	margin-left: 30px;
}
#highlight_table {
	margin-left: 15px;
}
#index_slide_text {
	float: right;
	margin-right: 50px;
}
.horizontal_news_feature {
	margin-left: 45px;
}
.travel_picture_left1 {
	margin-left: 50px;
	margin-right: 30px;
	float: left;
}
