/* colors_text.css */

/* Classes defining colors and text attributes are here. See "layout.css" for IDs and some classes defining layout. */

/* green_text styles paragraphs in right_column_inner */
.green_text {
	color:#216B62; 
	font-weight:bold; 
	text-align:left;
} 

/* green_text_small styles paragraphs in right_column_inner */
.green_text_small {
	color:#216B62; 
	font-weight:bold; 
	text-align:left;
    font-size: .73em;
}
     
/* Links for menu used in the top_nav_inner.  */
.menu a:link {
	text-decoration: none;
	color: #216B62;
    font-size: .90em;
}

.menu a:visited {
	text-decoration: none;
	color: #216B62;
    font-size: .90em;
}

.menu a:hover {
	text-decoration: none;
	color: #216B62;
    background-color:#C0C7C4;
    font-size: .90em;
}
    
.menu a:active {
	text-decoration: none;
	color: #216B62;
    font-size: .90em;
}

/* Links for menu_small used in footer_inner */
.menu_small a:link {
	text-decoration: none;
	color: #216B62;
    font-size: .73em;
}

.menu_small a:visited {
	text-decoration: none;
	color: #216B62;
    font-size: .73em;
}

.menu_small a:hover {
	text-decoration: none;
	color: #216B62;
    background-color:#C0C7C4;
    font-size: .73em;
}
    
.menu_small a:active {
	text-decoration: none;
	color: #216B62;
    font-size: .73em;
}

/* used in top_nav_inner */
.menucurrent {
	color:#000000; 
	font-weight:bold; 
	text-align:center;
    font-size: .90em;
} 

/* used in footer_inner */
.menucurrent_small {
	color:#000000; 
	font-weight:bold; 
	text-align:center;
    font-size: .73em;
} 

/* Colored text box ID used in main_content_inner. Span with a class won't work because it colors only lines of text, not a whole box. */ 
#textbox_blue_main {
	background-color:#DEEDEF;
    padding:1em;
} 

#textbox_tan_main {
	background-color:#F7F5F1;
    padding:1em;
} 


/* Colored text box classes used in right_column_inner. ID ruins layout here.*/    
.textbox_blue_right  {
	text-align: left;
    padding:0.4em;
	background-color:#D5E4F1;
} 
    
.textbox_bluegreen_right {
	text-align: left;
    padding:0.4em;
	background-color:#D5EFEF;
} 
.textbox_tan_right {
	text-align: left;
    padding:0.4em;
	background-color:#EFE6D7;
} 

.textbox_lightyellow_right {
	text-align: left;
    padding:0.4em;
	background-color:#F4F4E6;
} 

.textbox_coral_right {
	text-align: left;
    padding:0.4em;
	background-color:#EFD5D7;
} 

.textbox_bluepurple_right {
	text-align: left;
    padding:0.4em;
    background-color:#D5D7EF;
}
         
/* Links used in main_content_inner. Since these usually are within paragraphs, the font-size takes that defined in p, in layout.css */ 
a:link {
    color:#002B25;
    font-weight:bold;
    text-decoration:none;
}

a:visited {
    /* color:#7F004F; */
    color:#002B25;
    font-weight:bold;
    text-decoration:none;
}   

a:hover {
    background-color:#D7E0DD;
    color:#002B25;
    font-weight:bold;
    text-decoration:none;
}

a:active {
    color:#002B25;
    font-weight:bold;
    text-decoration:none;
}












