/* $Id: layout-fixed.css,v 1.5.2.3 2009/02/13 19:20:19 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 layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */



/* BODY
------------------------------------------------------------*/
body {
	padding: 20px;
	padding-top: 0px;
}

#page,
#closure-blocks {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}

#page-inner {
}



/* HEADER
------------------------------------------------------------*/
#header {
       height: 240px;
}

#header-inner {
}


#headtop {
}


#headbottom {
}


#logo-title {
}

#logo {
}

#site-name {
}

#site-slogan {
}

#header-blocks {
}



/* MAIN
------------------------------------------------------------*/
#main {
	position: relative;
	clear: both;
}
#main-inner {
}



/* CONTENT
------------------------------------------------------------*/
#content {
	min-height: 720px;
}

body.front #content {
	min-height: 500px;
	height: 620px;
}
#content,
.no-sidebars #content {
	float: left;
	width: 960px;
	margin-left: 0;
	margin-right: -960px; /* Negative value of #content's width + left margin. */
	padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
}


.sidebar-right #content {
	width: 680px;
	margin-left: 0;
	margin-right: -680px; /* Negative value of #content's width + left margin. */
}

#content-inner {
    padding: 4px 20px 20px 20px;
}



/* NAV BAR
------------------------------------------------------------*/



/* SEARCH BOX
------------------------------------------------------------*/



/* PRIMARY & SECONDARY LINKS
------------------------------------------------------------*/ 
#primary { 
}



/* SIDEBAR-LEFT
------------------------------------------------------------*/



/* SIDEBAR-RIGHT
------------------------------------------------------------*/
#sidebar-right {
	float: left;
	width: 280px;
	margin-left: 680px; /* Width of content + sidebar-left. */
	margin-right: -960px; /* Negative value of #sidebar-right's width + left margin. */
	padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
}

#sidebar-right-inner {
}



/* FOOTER
------------------------------------------------------------*/
#footer {
	clear: both;
}

#footer-inner {
}




/* CLOSURE
------------------------------------------------------------*/
/* See also the #page declaration above that this div shares. */
#closure-blocks {
}



/** Prevent overflowing content **/
#header,
#content,
#navbar,
#sidebar-left,
#sidebar-right,
#footer,
#closure-blocks {
	overflow: visible;
	word-wrap: break-word; /* A very nice CSS3 property */
}

#navbar {
	overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

/* If a div.clear-block doesn't have any content after it and its bottom edge
	 touches the bottom of the viewport, Firefox and Safari will mistakenly
	 place several pixels worth of space between the bottom of the div and the
	 bottom of the viewport. Uncomment this CSS property to fix this.
	 Note: with some over-large content, this property might cause scrollbars
	 to appear on the #page div.
*/
/*
#page {
	overflow-y: hidden;
}
*/
