/* ================================
    CSS STYLES FOR DotNetNuke
   ================================
*/   

/* GENERAL */
/* style for module titles */
.Head
{
	font-weight: bold;
	font-size: 12px;
	color: black;
	font-family: Arial, Helvetica, sans-serif;
}

/* background color for the content part of the pages */
Body
{

}

.LeftPane {
}

.ContentPane {
}

.RightPane {
}

/* text style for the selected tab */
.SelectedTab
{
	font-weight: bold;
	font-size: 11px;
	color: black;
	font-family: Arial, Helvetica, sans-serif;
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
    text-decoration:    none;
    color: black;
}

A.SelectedTab:visited  {
    text-decoration:    none;
    color: black;
}

A.SelectedTab:active   {
    text-decoration:    none;
    color: black;
}

A.SelectedTab:hover    {
    text-decoration:    none;
    color: black;
}

/* text style for the unselected tabs */
.OtherTabs {
    font-weight: bold;
    font-size: 11px;
    color:black;
    font-family:  Arial, Helvetica, sans-serif;;
    text-decoration: none;
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
    text-decoration:    none;
    color:black;
}

A.OtherTabs:visited  {
    text-decoration:    none;
    color:black;
}

A.OtherTabs:active   {
    text-decoration:    none;
    color:black;
}

A.OtherTabs:hover    {
    text-decoration:    underline;
    color:black;
}

