/* 
	This is the "[iFrames-4-PCs].css" file: for MOST MainMenu Root files";
	 This style-sheet applies to the file that calls for a separate CONTENT FILE. 
	It provides the "frame for the picture" so to speak, i.e. a Gold (#FFE97A;) background-color
	for both the SideMenu and the Main page  Iframes.
 */
 /*
	The "Body" section sets the default settings for everything governed by this style sheet,
	but can be over-ridden either in specific sections below, or in the files which are governed
	by this style sheet.
 */

 /*	_RCA_GRY-framework.css :  background-color: Gold      =	background-color: #FFE97A;  	-------   
	Needed ONLY in the SideMenu, because the Main Page color is  governed by its own file. 
	+ GRY-html-framework.css   background-color:Silver      =	background-color: #D3D3D3; 	-------   
 	In order to locate the sidemenu properly, I had to remove the Align=center from that menu file 

	How the WIDTH works :   
	For any element, if the WIDTH is not spelled out, 
	there appears to be a "Default" of about "333px",
	and a "Maximum" of about "700px". And so, a box's 
	width will be determined by the width of the content
	together with the "Padding", up to the  "Maximum".
*/


Body  	{
	margin-left: 11%; margin-right:11%;
	overflow-x: hidden;		 /*	 Hide horizontal scrollbar		 */    
}
#SideMenu 	 /* The attributes in this section only affect this particular frame  				  */
{
	position: fixed;  /* 	 is supposed to keep this frame in place, 
	while other frames can scroll   (?)  */

	background-color:lightyellow;
	left:7%;    width:16%;
	top:15%; height: 55%; 
	 padding: 2%;
	 padding-right:0;

	text-align:center; scroll-behavior: auto;   
 } 
#Main  
{	position: fixed; font-size: 1em;
 	top:4%; height: 90%;
	left:31%;  width:59%; 
	padding-left:3%; padding-right:0%; 
	background-color:lightyellow;
}
/*	   	this "Top" setting determines 
		the  OUTSIDE margin-TOP of THIS frame  		*/

/*   		the OUTSIDE margin-Bottom of THIS frame is  
		determined by the "Height" setting of THIS frame 	*/

/*		the OUTSIDE margin-left of THIS frame is 
		determined by the "LEFT" setting of THIS frame  	*/


/*		the OUTSIDE margin-right of THIS frame is 
		determined by the "WIDTH" setting of THIS frame  	*/