﻿/* ******* Helper Styles Section ********* */

.SingleBorder
{
    border: 1px solid black;
}

/* Anchor class when you don't want to display the underline or link colors */

a.HideLink 
{ 
    color: inherit;
    text-decoration:none;
}
a:link.HideLink    
{ 
	color: inherit; 
}

a:active.HideLink  
{ 
	color: inherit; 
}

a:visited.HideLink 
{ 
	color: inherit; 
}

/* Set of table styles for vertically aligning objects in their container */

table.VertCenter
{
    border: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

tr.VertCenter
{
    padding: 0;
    margin: 0;
    border: 0;
}

td.VertCenter
{
    vertical-align: middle;    
    padding: 0;
    margin: 0;
    border: 0;
}

#translucent 
{
    position: absolute;
    left: 80px;
    top: 30px;
    text-align: center;
    border: 1px solid #666;
    background-color: #f0f0ff;
    /* the filter attribute is recognized in Internet Explorer and should be a percentage */
    filter: Alpha(opacity=50);
    /* the -moz-opacity attribute is recognized by Gecko browsers and should be a decimal */
    -moz-opacity: .5;
    /* opacity is the proposed CSS3 method, not currently supported by any browser, but possibly
    standard in the future */
    opacity: .5;
}

#translucent h2 
{
    color: #000099;
    background-color: #f5f5f5;
}
