/* Monochromatic Color Scheme
Reference http://december.com/html/spec/colorhslhex10.html
Hue 160, saturation 20%
Light
90%      #E0EBE7		
80%      #C2D6CF		  
70%      #A3C2B8		
60%      #85ADA0
50%      #669988
40%      #527A6D	
30%      #3D5C52
20%      #293D36
*/

/* Contrast Color Scheme
Hue 50%, saturation 70%
Light
90%      #F7F1D4
70%      #F0DB75  
50%      #E6C419 
*/

/* MAIN MENU SETTINGS */
  #main_menu_div {
		position             : relative; 
		/* postion:relative needed to set the z-index */
		z-index              : 2;  
		/* the title is rendered above elements with z-index 1 */
		float                : left;
		width                : 100%;
		line-height          : normal;
		font-size            : 1.0em;
	}
	#main_menu_div ul {
	  margin               : 0px;
	  padding              : 0px;
	  /* display              : inline; */ /* horizontal alignment of tabs */
		list-style-type      : none; /* no bullets */
	}
	#main_menu_div li {
		white-space          : nowrap;
		float                : left;
		border-bottom        : 1px solid #000000;
		padding              : 0px 0.1em;
	}
	#main_menu_div a {
		display              : block;
		margin-top           : 4px;
		border               : 1px solid #000000;
		border-bottom        : 0px;
		padding              : 2px 6px;

		font-weight          : bold;
		text-decoration      : none;
		font-family          : "Arial", sans-serif;
		font-size            : 0.9em;
		
	/*The next two items apply rounded corners (CSS3) but only in 
		Safari and FF since it's not fully supported in all browsers*/
	/*Once supported "-khtml-" or "-moz-" can be removed*/
	-khtml-border-radius-topleft: 9px;
	-khtml-border-radius-topright: 9px;
	-moz-border-radius-topleft: 9px;
	-moz-border-radius-topright: 9px;
	}

	#main_menu_div a:link {
		color					       : #3D5C52; /* MC 30 */
		background-color		 : #F7F1D4; /* CC 90 */
	}
	#main_menu_div  a:visited {
		color					       : #3D5C52; /* MC 30 */
		background-color		 : #F7F1D4; /* CC 90 */
	}
	#main_menu_div a:hover {
		color					       : #F7F1D4; /* CC 90 */
		background-color		 : #3D5C52; /* MC 30 */
	}
	#main_menu_div a:active {
		color					       : #000000; /* MC 00 */
		background-color		 : #E6C419; /* CC 50 */
	}
	#base a:link, #base a:visited, #base a:hover, #base a:active {
		color                : #000000;
		background-color     : #FFFFFF;
		border               : 1px solid #FFFFFF;
	}

/* END MAIN MENU SETTINGS */

