﻿/* =SharePoint Experts, Inc. - CSS for spe-boilerplate.master file v3.  
-Copyright 2010-2012 SharePoint Experts, Inc. and Heather Solomon. Distributed to class students for reference and educational purposes. Code may be used as long as this copyright message stays intact. 
-sharepointexperience.com
*/



/* LAYOUT 
 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
	/* Layout the main content area as a center column with space for sidebars*/
		body #s4-bodyContainer {
			/*width: auto !important; /* Added important to override widths set inline when some SharePoint pages are generated */
			/*float: left; /* Convert to block box and allow other content to wrap */
			/*overflow: hidden;*/ /*Commenting out since it seemed to cut the web part dropdown menu off*/
			/*padding: 10px 270px 0 190px; /* Adjust according to left and right sidebar widths and add padding as needed */
			min-width: 0;
			padding:10px;
			background-color:#fff;
		}
	
	/* Convert the secondary nav area to a left sidebar */
		#nav-secondary {
			/*float: left; /* Convert to block box and allow other content to wrap */
			/*width: 160px; /* Set sidebar width here */
			/*margin-left: -100%;*/
			padding:10px;
			color:#39275B;
			font-size:14px;
		}
		
	/* Convert the section area to a right sidebar */
		#section {
			/*float: left; /* Convert to block box and allow other content to wrap */
			/*margin-right: -3px;*/
			/*width: 230px; /* Set sidebar width here */
			/*margin-left: -250px; /* Set this value to the same as sidebar width above */
			/*position: relative;*/
			padding:10px;
		}
		
		

/* HEADER  
 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */

	/* Header container formatting */
		#header {
			background: #CCC url('insertpath') no-repeat; /* Header background */
			height: 153px; /* Height of header */
		}

		
			
/* SEARCH  
 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */

	/* Placement of Search table */
		#header .s4-wpTopTable {
			float: right; /* Remove search container from the content flow and move to the far right */
			width: auto; /* Required for floats and stops 100% width table does by default */
			margin: 20px 20px 0 0; /* Top and right margin create space and placement */
		}

		
		
/* GLOBAL NAVIGATION 
 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
	/* Nav bar container */
		#nav {
			background: #ddd url('insertpath') repeat-x; /* Nav bar background */
			/* width: 960px; Width of nav bar */
			height: 30px; /* Height of nav bar background */ 
		}



/* FOOTER
 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */

	/* footer Container */
		#footer { 
			background-color: #CCC; 
			clear: both;
		}
		
	/* footer text */
		#footer p {
			color: black;	
		}
		
		
/* 
SharePoint Experts, Inc. 
sharepointexperience.com
*/