/* 
 * 	contentOrganization.css specifies 
 *  positions and properties for 
 *  divs, navigation bar, and buttons 
 *  in the Piecemakers website
 * 
 * 			 Piecemakers Quilt Guild
 *			 Created April 2009 by Linda Cline
 */


/* ---------------------------------------------------
 *     Header
 * ---------------------------------------------------
 */
div#header {
  height: 116px;
	background-color: #77aaee;
	border-bottom: 5px solid #5566ff;
}

div#header img{
	padding: 12px; 
}

/* ---------------------------------------------------
 *     Main Wrap
 * ---------------------------------------------------
 */
div#mainWrap {
     border-top: 1px solid #5566ff;  
     border-bottom: 1px solid #5566ff;  
	background-image: url('../images/background.jpg');
	background-repeat: repeat-y;
}

/* -------------------------
 *  Navigation bar & buttons
 * ------------------------- 
 */
div#navigationBar {
  width: 250px; 
  float: left;					
	overflow: hidden; 
}
 						/* navigation buttons */
div#navigationBar a {	 
  font-size: 16px;
	color: white;
	font-weight: bold;
	text-decoration: none;
	display: block;
	width: 200px;   
	height: 32px; 
	margin: 12px;
	padding-top:8px;
	padding-bottom:0px;
	text-align:center;
  background-color: #5544aa; 
	background-image: url('../images/buttonLargePurple.gif');
}

div#navigationBar a:hover {
  background-color: #dd33bb; 
	background-image:url('../images/buttonLargePink.gif');
}

div#navigationBar a.activePage {
  background-color: #dd33bb; 
	background-image:url('../images/buttonLargeBlue.gif');
}

 						/* submenu buttons */
div#navigationBar a.submenu {	 
	width: 170px;   
	height: 32px; 
	margin-left: 42px;
	margin-top: 6px;
	margin-bottom: 6px;
	padding-top:8px;
	padding-bottom:0px;
  background-color: #5544aa; 
	background-image: url('../images/buttonSmallPurple.gif');
}

div#navigationBar a.submenu:hover{
  background-color: #dd33bb; 
	background-image:url('../images/buttonSmallPink.gif');
}

div#navigationBar a.activeSubPage {
	width: 170px;   
	height: 32px; 
	margin-left: 42px;
	margin-top: 6px;
	margin-bottom: 6px;
	padding-top:8px;
	padding-bottom:0px;
  background-color: #5544aa; 
	background-image:url('../images/buttonSmallBlue.gif');
}

/* -------------------------
 *       Main Content
 * ------------------------- 
 */
div#mainContent {
 	margin-left: 275px;
 	margin-right: 20px;
}

.clearfloats {
  clear: both;
	line-height: 0;
}

/* ---------------------------------------------------
 *         Footer
 * ---------------------------------------------------
 */
div#footer {
	border-top: 1px solid #5566dd;
}

