@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Tahoma, Arial, Helvetica, sans-serif;
	background: #001B37; /* color of 2 side columns, dark blue = #001B37*/
	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: #191919; /* color of text in the document, formerly navy blue: #000033*/
}
.twoColLiqRtHdr #bigContainer {
	width: 902px;
	background: #BBB;
	margin: 0 auto;
	border-bottom: 1px solid #BBB;
}
.twoColLiqRtHdr #container {
	width: 884px;  /* this contains the header, area for mainContent and the sidebar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 15px solid #3a4f86;
	border-right: 1px solid #6c79a6;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqRtHdr #header { 
	background: #FFFFFF; 
	padding: 0 0 30px 0;  /* this padding pushes the line below the navigation menu to below the menu buttons */
	_padding: 0; /* underscore in front of padding only read by IE; fixes IE problem of doubling the padding*/
	/*border-bottom: 1px dotted #BBB;
	_border-bottom: 1px solid #BBB; /* IE bug displays 'dotted' border as 'dashed' instead... annoying */
	_margin-right: -12px; /* fix IE bug that adds extra space to side of column */
	_margin-left: -12px; /* fix IE bug that adds extra space to side of header */
}
.twoColLiqRtHdr #menuBoxes {
	border-bottom: 1px dotted #BBB;
	_border-bottom: 1px solid #BBB;
}
.twoColLiqRtHdr #welcome_box {
	/*border-top: 1px solid #BBB;
	border-bottom: 5px solid #000033; */
	border: 2px solid #FFF;
	padding: 0 15px 0 15px;
	background-color: #Feffa9;
}	
.twoColLiqRtHdr #blue_boxes {
	border: 1px solid #BBB;
	padding: 0 15px 0 15px;
	margin: 15px 0 0 0;
	background-color: #f3f6f8;
}
.twoColLiqRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; 
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-top: 15px 0; /* top and bottom padding create visual space within this div  */
	_padding-top: 0;
	_padding-left: 0;
	_padding-right: 0;
	height: inherit;
	border-left: 1px dotted #BBB;
	_border-left:0px;
	_border-left:1px solid #BBB;
	_height:0px;
	_margin-left: -4px; /* fix for IE bug that adds space between mainContent and sidebar1 */
	_margin-right: 0px;
	
}
.twoColLiqRtHdr #sidebar1 h3, .twoColLiqRtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	/*_margin-bottom: -3px; */
}
.twoColLiqRtHdr #sidebar1 building {
	border-top: 1px solid #000033;
	border-bottom: 1px solid #000033;
	_padding-bottom: 0;
	_margin: 0 0 -3px 0;
}
.twoColLiqRtHdr #search {
	margin-top: 20px;
	_margin-top: 10px;
}
.twoColLiqRtHdr #quicklinks {
	/* margin-top: 15px; add this back again when internal search feature is installed and placed above */
	margin-top: -1px;
	background-color: #FFF;
	border-top: 1px solid #BBB;
	/* border-bottom: 1px solid #DDD; */
}
.twoColLiqRtHdr #quicklinksH {
	
	padding-top: 10px; 
	padding-bottom: 10px;
	background-color: #f3f6f8;
	color: #001B37;
	border-bottom: 1px solid #BBB;
}
.twoColLiqRtHdr #quicklinksL {
	padding-top: 6px;
	padding-bottom: 6px;
	margin-left: 6px;
	margin-right: 6px;
	color: #000033;
	vertical-align: middle;
	border-bottom: 1px solid #DDD;
}
.twoColLiqRtHdr #address {
	float: right;
	_padding: 0;
	_margin-bottom: 15px; /* IE spaces things differently; this accounts for that */
	color: #000033;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px 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.
*/
.twoColLiqRtHdr #mainContent { 
	margin: 0 170px 0 10px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	border-right: 1px dotted #BBB;
	_border-right:1px solid #BBB;
	padding: 15px 20px 15px 15px; /* Top-Right-Bottom-Left*/
	_padding: 25px 20px 20px 15px; /* IE inexplicably doubles the padding or has weird spaces in some places--I adjusted the padding until it looked 'right'  */
	_margin-right: 4px; /* fix for IE bug that adds space between mainContent and sidebar1 */
	/* position: relative; /* trick to get address in sidebar to be aligned at the bottom */
} 

.twoColLiqRtHdr #footer { 
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #EEEEEE;
	border-top: 1px dotted #3A4f86;
	_border-top: 1px solid #3A4f86;
} 
.twoColLiqRtHdr #footer p {
	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 a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.twoColLiqRtHdr #search {
	width: inherit;

}
.twoColLiqRtHdr #googleMap {
	/* insert stuff here if you decide to change div box for google map on 'contact' page */
}
.twoColLiqRtHdr #cse-search-results {
	font-size: 10px;
}

.twoColLiqRtHdr #table {
	border-top: 1px solid #949BBE;
	border-left: 1px solid #949BBE;
	
}
.twoColLiqRtHdr #td {
	border-right: 1px solid #949BBE;
	border-bottom: 1px solid #949BBE;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 3px;
	padding-right: 4px;
	_padding: 3px;
}
.twoColLiqRtHdr #td.odd{
	background-color: #d4d7e6;
}
.twoColLiqRtHdr #td.even{
	background-color: #f3f6f8;
}
.twoColLiqRtHdr #th {
	background-color: #001B37;
	color: #EEEEEE;
}
.twoColLiqRtHdr #th3 {
	background-color: #3A4f86;
	color: #EEEEEE;
}
.twoColLiqRtHdr #th2 {
	background-color: #ECF2FF;
	color: #000033;
	border: 1px solid #949BBE;
	height: 24px;
}
.twoColLiqRtHdr #th4 { /* immigration updates and necessary documents headers */
	background-color: #f3f6f8;
	color: #000033;
	border: 1px solid #BBB; /* formerly grayish blue: #949BBE*/
	/* height: 20px; */
	padding-left: 6px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.twoColLiqRtHdr #immUpdates {
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding-top: 7px;
	padding-bottom: 7px;
}
.twoColLiqRtHdr #immUpdatesLinks {
	border: 1px solid #CCC;
}