/* 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 
*/

/* TITLE SETTINGS */
	#ttl {
		position          : relative; 
		/* postion:relative needed to set the z-index */
		z-index           : 2;  
		/* the title is rendered above elements with z-index 1 */
		margin            : 4px 0px; /* top & bottom 4px, others 0 */
		padding           : 2px;
		background-color  : #527A6D; /* MC 40 */
		color             : #F0DB75; /* CC 70 */
		/*The next item applies rounded corners (CSS3) but only in FF since it's not fully supported in all browsers*/
		/*Once supported "-khtml-" can be removed*/
		-khtml-border-radius: 9px;
		-moz-border-radius: 9px;
	}
	.ttltext {
		font-family       : Arial, sans-serif;
		font-weight       : bold;
		text-align        : left;
		font-size         : 1.4em;
	}
/* END TITLE SETTINGS */

