@charset "utf-8";
body {
	font: 100%  Calibri, Geneva, sans-serif;
	font-size: 14px;
	background: #fff url(../img/shadow.png) center repeat-y;
	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;
}

.thrColLiqHdr #headercontainer { 
	width: 100%;
	background: #20376B;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this overrides the text-align: center on the body element. */
} 

.thrColLiqHdr #divider { 
	width: 100%;
	background: #92756B;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this overrides the text-align: center on the body element. */
	height:10px;
} 


.thrColLiqHdr .searchform input {
	font-size:10px;
} 

.thrColLiqHdr .searchform input[type$='text'] {
	font-size:10px;
	background: url(../img/menu-background2.png) repeat-y;
	color: #fff;
	border: 1px solid #fff;
	margin-left: 10px;
}

.thrColLiqHdr .searchform input[type$='text']:hover{
	font-size:10px;
	background:#fff;
	color: #309;
	border: 1px solid #309;
}
.thrColLiqHdr #piccontainer { 
	width: 100%;  
	background: #B69B86;
	margin: 0px 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. */
/*	border-top: 20px solid #92756B;
	border-bottom: 20px solid #92756B;*/
} 

.thrColLiqHdr #container {
	width: 940px;
	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. */
} 
.thrColLiqHdr #header {
	background: url(../img/header-background.png);
	width: 940px;
	margin: 0px auto;
	height: 122px;
	color: #fff;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.thrColLiqHdr #header h1 {
	font:100% Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
	font-style:italic;
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0;
}
.thrColLiqHdr #header a {
	color: #fff;
	text-decoration:none;
}
.thrColLiqHdr #header a:hover{
	text-decoration:underline;
	text-align: right;
}

.thrColLiqHdr #picturebar { 
	background: url(../img/home-4x4.jpg) center no-repeat;
	height: 320px;
	width: 940px;
	margin: 0 auto;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

.thrColLiqHdr #picturebar .pictitle{
	position:absolute;
	top:200px;
	padding-top: 80%;
	font-size:30px;
	padding: 15px;
	vertical-align:bottom;
	background-color:#000;
	color:#fff;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiqHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.thrColLiqHdr #sidebar1 {
	clear: both;
  	float: left; /*this element must precede in the source order any element you would like it be positioned next to */
	width: 202px; /* since this element is floated, a width must be given */
	padding-top: 0px;
	padding-bottom: 10px;
}

.thrColLiqHdr #sidebar1 img{
	margin: 10px 10px 0px 10px;
	-moz-border-radius:7px; 
	-webkit-border-radius:7px; 
	-khtml-border-radius:7px; 
	border-radius:7px;
	
}

.thrColLiqHdr #sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 219px; /* since this element is floated, a width must be given */
	padding: 0px ; /* top and bottom padding create visual space within this div */
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	background: #9FB7E8;
	-moz-border-radius:7px; 
	-webkit-border-radius:7px; 
	-khtml-border-radius:7px; 
	border-radius:7px;
	color: #20376B;
}

.thrColLiqHdr #sidebar2 .specialoffer{
	padding-top: 10px;
	background: url(../img/car-background.png) left bottom no-repeat;
	padding-bottom: 200px;
	clear:both;
}

.thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 p, .thrColLiqHdr #sidebar2 h3 {
	margin: 10px 10px;
	text-align: center;
}

.thrColLiqHdr #sidebar2 a{
	text-align: center;
	display:block;
	padding: 2px 0px;
	background: url(../img/button.png) center no-repeat;
	color: #fff; 
	text-decoration: none;
}

.thrColLiqHdr #sidebar2 a:hover{
	background: url(../img/button-over.png) center no-repeat;
	text-decoration:underline;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.thrColLiqHdr #mainColumn {
	padding: 10px 0px;
	float:left;
	width: 500px;
}

.thrColLiqHdr #mainContent {
	background-color: #B69B86; /*#6483C5;*/
	margin-top: 10px;
	color:#fff;
	padding: 20px;
	text-align:justify;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	-khtml-border-radius:7px;
	border-radius:7px;
}

.thrColLiqHdr #mainContent a{
	font-weight: bold;
}

.thrColLiqHdr #mainColumn2 {
	padding: 10px 0px;
	float:left;
	width: 700px;
}

.thrColLiqHdr #mainContent2 {
	background-color: #B69B86; /*#6483C5;*/
	color:#fff;
	margin-left: 10px;
	padding: 20px;
	text-align:justify;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	-khtml-border-radius:7px;
	border-radius:7px;
}

.thrColLiqHdr #mainContent2 a{
	font-weight: bold;
}

.thrColLiqHdr #mainContent2 h2,h3{
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.thrColLiqHdr #mainContent h2,h3{
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.thrColLiqHdr #newsContent { 
	margin:10px;
	text-align:justify;
}

.thrColLiqHdr #footer { 
	width: 940px;
	clear:both;
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
	color: #20376B;
	margin: 0 auto;
	margin-top: 10px;
} 
.thrColLiqHdr #footer p {
	font-size: 12px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

h2 {
	margin: 0px;
}


a {
	text-decoration: none;
	color: #fff;
}

a:hover {
	text-decoration: underline;
}

a img {
	border: 0px;
}

.thrColLiqHdr #enquiry {
	font-family: "Comic Sans MS", cursive;
	font-size: 16px;
	text-align:right;
	vertical-align:middle;
}

.thrColLiqHdr #enquiry a{
	background: url(../img/message.png) right center no-repeat;
	padding-right: 30px;
	color: #20376B;
	font-weight:normal;
}

.thrColLiqHdr #enquiry  a:hover{
	background: url(../img/message-over.png) right center no-repeat;
}

.thrColLiqHdr #pdf {
	font-family: "Comic Sans MS", cursive;
	font-size: 16px;
	text-align:right;
	vertical-align:middle;
}

.thrColLiqHdr #pdf a{
	background: url(../img/pdf.png) right center no-repeat;
	padding-right: 30px;
	color: #20376B;
	font-weight:normal;
}

.thrColLiqHdr #pdf  a:hover{
	background: url(../img/pdf-over.png) right center no-repeat;
}

.thrColLiqHdr #wideColumn {
	padding: 10px 0px;
	margin: 0 auto;
	width: 920px;
}

.thrColLiqHdr #wideContent {
	background-color: #B69B86; /*#6483C5;*/
	color:#fff;
	padding: 20px;
	text-align:justify;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	-khtml-border-radius:7px;
	border-radius:7px;
}

.gold_background { background-color: #9FB7E8; height: 20px; }

.titlebar_3_nu { height: 20px; font-size: 14px; color: #20376B; font-style: normal; font-weight: normal; }
.titlebar_3_nu	A:link  {font-size:14px; color:#20376B; text-decoration:none; }
.titlebar_3_nu	A:visited  {font-size:14px; color:#20376B; text-decoration:none; }
.titlebar_3_nu	A:hover  {font-size:14px; color:#20376B; text-decoration:underline; }

/*tooltip*/
 
.custom_tip .tip {
	background-color: #333
	padding: 5px
}
 
.custom_tip .tip-title {
	color: #fff
	background-color: #666
	font-size: 20px
	padding: 5px
}
 
.custom_tip .tip-text {
	color: #fff
	padding: 5px
}
