/* $Id: layout-garland.css,v 1.2 2008/01/06 15:50:31 johnalbin Exp $ */
/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This is the same layout method used by Garland.
 *
 * However, there is a KNOWN BUG with this layout method that has no known fix:
 *   oversize content will causes IE to display the sidebars underneath the main
 *   content.
 */
body {
	margin: 0;
	padding: 0;
	background: #dddddd;
}

#wrapper {
	margin: 0 auto;
	width: 1000px;
}

#wrapper2 {
	margin: 0 auto;
	background: url(../images/background.gif) repeat-y top center;
}

#page {
	color: #333;
	padding: 0px;
	width: 1000px;
	margin-left: 120px;
}

#navigation {
	margin: 0 auto;
	background: url(../images/menu_utility.gif) no-repeat top;
	width: 1000px;
	height: 38px;
	font-size: 1px;
}

div.menu {
	margin-top: 0px;
}

#container {
	width: 830px;
	border: #CECECE 1px solid;
	background: #EEEEEE;
	padding-bottom: 5px;
}

#logo {
	float: left;
	position: relative;
	display: inline;
	margin-top: 8px;
}

#changeText {
	float: right;
	position: relative;
	display: inline;
	text-align: right;
	color: #999;
}

#changeText a:hover {
	border-bottom: none;
}

#content-top {
	margin: 0 0 10px 0;
}

#header-region,#closure-blocks {
	margin: 0 10px;
}

#subpageHeader {
	margin: 0 auto;
}

/*
 * Header Graphics
 */
#docDetailsTop {
	background: #fff url(../images/doc_top_bg.png) top center no-repeat;
	color: #666;
	vertical-align: top;
}

.pageTitle {
	float: left;
	position: relative;
	font-family: "Trebuchet MS", sans-serif;
	font-size: 230%;
	margin-top: -37px;
	color: #FF6600;
	vertical-align: top;
}

.pageTitle {
	margin-left: 290px;
}

/*
 * Search Results Page Specific Styles
 */
#searchTop {
	background: #fff url(../images/search_top_bg.png) top center no-repeat;
	color: #666;
	vertical-align: top;
}

#newSearchBox {
	font-size: 1em;
	margin-top: 0px;
	margin-left: 14px;
	width: 90%;
	clear: both;
}

#searchContent {
	font-size: 1em;
	width: 790px;
	margin-left: 18px;
	margin-top: 0px;
	padding-bottom: 1px;
}
#topTabs {
	font-size: 1.1em;
	margin-top: 15px;
	width: 650px;
	text-align: right;
}

/*
 * FOOTER STYLES
 */
#footer-wrapper {
	margin: 0;
	margin-top: 8px;
	padding-bottom: 8px;
}

#footer {
	float: none;
	clear: both;
	margin: 0 auto;
	height: 20px;
	width: 830px;
	color: #999;
	font-family: "Trebuchet MS", sans-serif;
	text-align: center;
	margin-left: 120px;
}

#footer_image {
	background: url(../images/footer_bg.gif) top no-repeat;
	height: 15px;
}

.footer_left {
	float: left;
	display: inline;
	position: relative;
	vertical-align: top;
}

.footer_left2 {
	float: left;
	display: inline;
	position: relative;
	margin-left: 220px;
	text-align: center;
}

.footer_right {
	float: right;
	display: inline;
	position: relative;
}

/* Ensure long text or wide images don't break IE6 layout. */
#page,#header,#footer,#squeeze,#container .sidebar {
	_overflow: hidden;
	_overflow-y: visible;
	word-wrap: break-word; /* A very nice CSS3 property */
}