/* JSO scrolling body */

html {
	height:100%;																			 /* fix height to 100% for IE */
	max-height:100%; 																	/* fix height for other browsers */
	padding:0;																			 /*remove padding */
	margin:0; 																				  /* remove margins */
	border:0;                                                                             /* remove borders */
	background:#fff;                                                                   /*color background - only works in IE */
	font-size:76%;                                                                      /*set default font size */
	/*font-family:georgia, "palatino linotype", "times new roman", serif;*/           /* set default font */
	/* hide overflow:hidden from IE5/Mac */ 
	/* \*/ 
	overflow:hidden; /*get rid of scroll bars in IE */
	/* */ 
	}

body {
	height:100%;                            /* fix height to 100% for IE */
	max-height:100%;                     /* fix height for other browsers */
	overflow:hidden;                        /*get rid of scroll bars in IE */
	padding:0;                                /*remove padding */
	margin:0;                                    /* remove margins */
	border:0; 
    font-family: Verdana;   
                                   /* remove borders */
	}
	
	
#staticleft {
  position:absolute;
  top:15px; 
  left:0; 
  width:250px; 
  bottom:16px; 
  overflow:auto;
  background:#fff;
  color:black;
  z-index:4;
  }
  
 #dividingLine {
 position:absolute;
 top:24px;
 left:250px;
 width:2px;
 background:#0080FF;
 height:100%;
 z-index:5;
 }
 
#header {
	overflow:auto; 							
	position:absolute; 						
	z-index:3;									 
	top:0; 								
	bottom:16px; 							
	left:252px;									 
	right:0;										 
	background:#fff;
	
}

#left  {
       overflow:auto;
       float: left;
       width: 50%}

#right  {
        overflow:auto;
        float: right;
        width: 50%}
        
* html #header {
	height:100%;                                
	width:100%;                                    
	top:0;                                              
	left:0;
	border-bottom:16px solid #fff; /*add a bottom border to miss the footer 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-left:250px solid #fff; /*add a left border to miss any navigation div 
				(this is SUBTRACTED from the 100% width on quirks mode) */
	}
	
#footer {
        margin:0;
        bottom:0;
         left:0; 
          text-align: center;
          display:block; 
           width:100%;
       z-index:5; 
	overflow:hidden;
	 background:#fff;
}

#title  {
        width:95%;
        background:#FFFFCA;
        text-align:center;
        top:15px;
        bottom:15px;
        font-family:Cooper Black;
        font-size:20px;
        color:#800080 }
