/****
* Website design and CSS style by Artis . design studio (www.goartis.com)
****/
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #2e3083;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.oneColFixCtr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(../img/mainbk_totalinsuranceservices.gif);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}


.text {
	color: black;
	text-align: left;
	font: 13px/17px "Times New Roman", Times, Georgia, serif;
}

.text a:link, .text a:active {
	color: #344abd;
	text-decoration: underline;
	padding: 1px;
}

.text a:visited {
	color: #749da9;
	text-decoration: underline;
}

.text a:hover {
	color: #00b200;
	text-decoration: underline;
}

.footer {
	color: #2052a0;
	font: 9px/15px "Lucida Grande", Lucida, Verdana, sans-serif;
}

.footer a:link, .footer a:visited {
	color: #2052a0;
	text-decoration: none;
}

.footer a:hover {
	color: #00ec3a;
	text-decoration: underline;
}

.rolls {
	padding: 1px;
}

.rolls a:link, .rolls a:active, .rolls a:visited, .rolls a:hover {
	text-decoration: none;
}

.mainbox {
	height: 100%;
	top: 0;
	width: 100%;
	right: 0;
	vertical-align: middle;
	position: absolute;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}