
/*  NOTE: This style sheet fixes the SharePoint Ribbon to the top of the web page for the sample layout in the Boilerplate master pages. This is not needed unless the fixed Ribbon is being used.
Copyright 2011 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.  */



/* FIXED RIBBON  
 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */


/* Body adjustments needed for undocking the Ribbon */	
	body #s4-workspace { 
		overflow-y: visible; 
		height: 100% !important; 
		padding-bottom: 20px;
	} 
	.ms-dlgOverlay { /* For IE – removes scrollbars when modal dialog window is open*/ 
		height: 100% !important; 
		width: 100% !important; 
	}
	
/* Fixes Ribbon at the top of the browser window */	
	body #s4-ribbonrow {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
	}

/* Hides Ribbon when not in use */
	.s4-ribbonrowhidetitle {
		display: none;
	}



/* 
SharePoint Experts, Inc. 
sharepointexperience.com
*/
