﻿/* for creating a white container with no border */
.contact_white_bg_no_border
{
background-color: white; 
display: block; 
padding: 10px; 
spacing: 10px;
}


/* for creating a white container with border */
.contact_white_bg_border
{
background-color: white; 
display: block; 
padding: 10px; 
spacing: 10px; 
border: 1px solid #CCCCCC;
}




/* for creating a grey container with border */
.contact_grey_bg_border
{
background-color: #dddedf; 
display: block; 
padding: 10px; 
spacing: 10px; 
border: 1px solid #CCCCCC;
}



/*this class may not be required */
.contact_white_bg_no_border_no_padding
{
background-color: white; display: block;
}



/* set the h1 text to blue */
.h1_contact
{
color: #003366;
}


/* set the h2 text to blue, size to 14px and removes extra spacing */
.h2_contact
{
font-size: 14px;
padding-top: 8px; 
padding-bottom: 0px; 
margin: 0px 0px 0px 0px; 
color: #003366;
}


/* set the h2 text to blue and removes extra spacing */
.h2_poster, .h2_news, 
{
padding-bottom: 0; 
margin: 0;
color: #003366;
}





/* set the chevron for news as blue */
.symbol_news
{
color: #82a5bb;
}


/* remove the bullets and indent for list for the "task" */
.ul_icon
{
list-style: none; 
padding: 0; 
margin: 0;
}


/* verticaly aligns the icons with the text or the "task" */
.img_align_icon
{
vertical-align: middle; 
padding-right: 10px;
}


/* removes the underline for links */
.link_no_underline
{
text-decoration: none;
}

a.index:link { color: #003366;} /* unvisted link */

a.index:visited { color: #003366;} /* visited link */

a.index:hover { text-decoration:underline; color: #003366;}   /* mouse over link underline the links */

a.index:active { color: #003366;}  /* selected link */

/*Fixes bg color issue from 7.3, fixed in 7.3.1*/
.atom h1, .atom h2, .atom h3, .atom h4, .atom h5, .atom h6 {
    background-color: #666666;
}