* /*Set's border, padding and margin to 0 for all values*/
{
	padding: 0;
	margin: 0;
	border: 0;
	text-decoration: none;
}
body, html
{
	color: #000;
	font-family: Tahoma, sans-serif;
	height: 100%;
	background: url(/images/stylesheet/left-bg.gif) repeat-y #fff; /*** This is the left column background "faked" with an image. You can also position the image using left top repeat-y also. The background color #fff (white) will be the background color for our content ***/
}
body
{
	font-size: 80%;
	min-width: 760px;
}
p
{
	padding: 7px 0 7px 0;
}
a
{
	color: #000099;
}
a:hover
{
	text-decoration: none;
}
h1, h2, h3, h4
{
	font-weight: bold;
	padding-bottom: 5px;
}
h1
{
	font-size: 2em;
}
h2
{
	font-size: 1.4em;
}
h3
{
	font-size: 1.3em;
}
h4
{
	font-size: 1em;
}
h1 a, #header h2
{
	color: #fff;
}
.clear
{
	clear: both;
}
#mainContainer
{
	min-height: 100%;
	background: url(/images/stylesheet/right-bg2.gif) 100% 0 repeat-y; /*** This is the right column background "faked" with an image. You can also position the image using right top repeat-y also. ***/
}
* html #mainContainer
{
	height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header
{
	background: #000099;
	padding: 10px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer
{
	padding-left: 165px; /*** Same width as margin-left for the float-wrap div ***/
	padding-right: 150px; /*** Our right column width ***/
}
.inner
{
	width: 100%;
	padding-bottom: 45px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap
{
	float: left;
	width: 100%;
	margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}

#content
{
	float: right;
	margin-right: -165px; /*** Same length as .outer padding-left but with negative value ***/
	width: 100%;
	background: url(/images/stylesheet/t-2.gif) 100% 0 no-repeat; /*** Our upper right rounded image to create the rounded content look ***/
	border-top: 10px solid #cccccc; /*** We have used border top here to push the content down, but other solutions can also be used ***/
	position: relative; /*** IE needs this  ***/
	text-align: justify;
}

.contentWrap
{
	padding: 5px 10px 10px 0px;
}
.contentWrap ol, .contentWrap ul
{
	margin: 3px 0 5px 35px;
}
.contentWrap li
{
	padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left
{
	float: left;
	width: 155px;
	padding: 5px;
	border-top: 10px solid #cccccc; /*** We have used border top here to push the left column content down, but other solutions can also be used ***/
	background: url(/images/stylesheet/t-1.gif) 100% 0 no-repeat; /*** Our upper left rounded image to create the rounded content look ***/
	position: relative; /*** IE needs this  ***/
}
#leftTop
{
	height: 200px;
}

#left ul
{
	list-style: none;
	padding-bottom: 4px;
}
#left li
{
	padding-bottom: 2px;
}
#leftBottom
{
	margin: 0 10px 5px 0px;
}
/*************************
RIGHT COLUMN
**************************/
#right
{
	float: right;
	width: 150px;
	padding: 5px 0 0 10px;
	position: relative; /*** IE needs this  ***/
	margin-right: -150px; /** This negative margin-right value is in this example the same as the right column width. ***/
	border-top: 10px solid #cccccc;
	position: relative; /*** IE needs this  ***/
}
#rightTop
{
	height: 250px;
	margin-left: 5px;
}
#right ul
{
	list-style: none;
	padding-bottom: 4px;
}
#right li
{
	padding-bottom: 2px;
}
#rightBottom
{
	margin-left: 20px;
	margin-bottom: 10px;
}
/**************************
FOOTER
**************************/
#footer
{
	height: 45px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin-top: -45px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: center;
	background: url(/images/stylesheet/b-bg.gif) repeat-x #cccccc; /*** The lower part of the rounded content look ***/
}
#footerLeft, #footerRight
{
	height: 15px;
	background: #F1F1F1;
}
#footerLeft
{
	float: left;
	width: 165px; /*** Same length as .outer padding-left ***/
	background: url(/images/stylesheet/b-1.gif) 100% 0 no-repeat #cccccc; /*** Our left bottom part of the rounded content look ***/
}
#footerRight
{
	float: right;
	width: 165px; /*** Same length as right plus some padding. If you get a horisontal scrollbar try to adjust this value. ***/
	background: url(/images/stylesheet/b-2.gif) no-repeat #cccccc; /*** Our right bottom part of the rounded content look ***/
}
#footer p
{
	clear: both;
	color: #666666;
}

#menu a
{
	width: 135px;
	display: block !important;
}
#menu .menuNormal
{
	color: #666666;
}
#menu .menuHover
{
	color: #000000;
	background-repeat: no-repeat;
}
#menu .menuSelected
{
	color: #000000;
}
#menu .subMenu table
{
	border: 1px solid #cccccc;
	background-color: #eeeeee;
}
#menu .subMenuNormal
{
	color: #666666;
}
#menu .subMenuHover a
{
	background-color: #000099;
	color: #ffffff;
}

#carsList
{
	border-collapse:collapse;
	text-align:left;
	padding: 0;
}
#cars th, #cars input, #cars a, .cars th
{
	background-color: #000099;
	font-weight: bold;
	color: White;
}
.carsListAlternate
{
	color: #333333;
}
.carsListNormal
{
	background-color: #EFF3FB;
	color: #333333;
}


/* Ajax loading indicator ------------------------------------------------- */
.progress
{
	padding: 0;
	margin: 20px 0;
	height: 50px;
	background: url(../images/ajax-loader.gif) no-repeat center;
}

/* YUI Data table custom pagination UI */
#dt-pag-nav
{
	margin:1em;
} 

.DataTable_HeaderFooter
{
	background-color:#000099;
	background: url(/yui/assets/skins/sam/tableheader.png) repeat-x scroll 0pt;
	font-weight: bold;
	color: White;
}

.carsGrid
{
}

.carsGrid td, .carsGrid th
{
	padding:2px 10px;
	border-right:1px solid #CBCBCB;
	border-left:1px solid #CBCBCB;
}

.carsGridPager
{
	border-top:1px solid #CBCBCB;
}
.carsGridPager td
{
	border-right: none;
	border-left: none;
}


.pictureShadow
{
  float:left;
  background: url(/images/photo_bkgnd.png) no-repeat bottom right !important;
  background: url(/images/photo_bkgnd.png) no-repeat bottom right;
  margin: 8px 5px 3px 7px !important;
  margin: 10px 0 0 5px;
}

.pictureShadow img
{
  display: block;
  position: relative;
  background-color: #fff;
  margin: -8px 6px 6px -8px;
  padding: 0px;
  width: 150px;
}
