/* CSS Document */

body
{
	font: 100%/1.4 Verdana, 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: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. 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 divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
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: #42413C;
	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: #6E6C64;
	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;
}

#container
{
	width:1098px;
	height:100%;
	margin:0px auto;
	background-color:#fff;
	border:1px solid #000;
	
}

#headBlock
{
	width:1098px;
	height:171px;
	background-color:#127522;
	background-image:url(/cityofHonolulu/images/topbanner.gif);
	border-bottom:1px solid #000;
	display:block;
}

#mainBlock
{
	width:100%;
	height:100%;
	margin:0 auto;
}

#leftSideBar
{
	width:200px;
	height:460px;
	float:left;
	background-color:#063d0c;
	/* background-image:url(/cityofHonolulu/images/sideBarBkgd.png); */
	background-position:bottom;
	background-repeat:repeat-x;	
	padding:20px 0 20px 0;
	border-right:1px solid #000;
}

.nav-header
{
	font-size:14px;
	font-family:Palatino Linotype;
	font-weight:700;
	color:#FFF;
	padding-left:5px;
	padding-bottom:5px;
}
.nav-header a
{
	display:block;
	color:#FFF;
	text-decoration:none;
	padding: 5px 5px 5px 5px;
	width: 198px;
}

.nav-header a:hover
{
	background: #91c43e;
	color: #FFF;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	/* border-top: 1px solid #666;  this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	font-size:12px;
	font-family:Palatino Linotype;
}
ul.nav li {
	/* border-bottom: 1px solid #666;  this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 198px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	color:#FFF;
	font-weight:700;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #91c43e;
	color: #FFF;
}

#content
{
	width:897px;
	height:460px;
	float:left;
	background-color:#efefef;
	padding: 20px 0;
}

.coin
{
	position:relative;
	bottom:-40px;
	background-image:url(/cityofHonolulu/images/coin.png);
	background-repeat:none;
	background-position:center;	
	width:194px;
	height:195px;
	float:left;
	left:20px;
}

.moneyman
{
	width:194px;
	height:235px;
	position:relative;
	right:20px;
	float:right;
	background-image:url(/cityofHonolulu/images/moneyman.png);
	background-repeat:none;
	background-color:transparent;
	
}

#footerBlock
{
	background-color:#063d0c;
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
