/* Binarymission CSS file */
/* 

Format for CSS is like so:

<element that we want to set style for>
<{>

<attribute><:><attribute's style value>

if the attribute's value spans for more that one word, put the entire value in double quotes
If not, just leave it as-is.
<}>


*/

/* Body style */

/* Note this is for IE */
body
{
    width:800px;
    background-color: gray;
    margin-left:10px;
    margin-right:10px;
    text-align: center;    
}

/* this is for FF, Safari et al */


body
{
    width:800px;
    background-color: gray;
    /* text-align: -moz-center;*/
    margin: 0 auto 0 auto;
}

/* Note this is for IE */
table
{
    width:800px;    
    background-color:ghostwhite;
    border:1px;
    border-style: solid;
    border-color: black; 
}

/* this is for FF, Safari et al */
table
{
    text-align: -moz-center;
    margin: 0 auto 0 auto;
    width:800px;    
    background-color:ghostwhite;
    border:1px;
    border-style: solid;
    border-color: black;
}

h1
{
    font-size:12;
    font-family:Verdana;
    line-height:70%;
}


h2
{
    font-size:11;
    font-family:Verdana;
    line-height:70%;
}


/* Note this is for inner table */
.innerTable
{
    background-color:ghostwhite;
    border:0px;
    width:790px;
}

.innerTable1
{
    background-color:ghostwhite;
    border:0px;
    width:393px;
}

.innerTable2
{
    background-color:ghostwhite;
    border:0px;
    width:450px;
}

.compareTable
{
    background-color:ghostwhite;
    border:0px;
    border-style:solid;
    border-color: black;
    width:795;
    font-size:11;
    font-family:verdana;    
}

a
{
    font-color: blue;    
	
}

.avisited	
{	
    color: blue;
}

.td_toplevel
{
    background-color:ghostwhite;   
}

.td_menulevel
{
    padding:5px;
    background-color:gray; 
    text-align:right;
    font-size:12;
    font-family:verdana;        
}

.TopAndBottomGrayTDContent
{
    text-decoration:none; 
    color:white;
}

.td_bodytext1
{
    vertical-align:middle; 
    padding:5px;
    font-size:11;
    font-family:verdana;
    line-height:70%;
}


.td_bodytext
{
    vertical-align:top; 
    padding:5px;
    font-size:11;
    font-family:verdana;
    line-height:150%;         
}

.td_bodytextforimageandtext
{
    vertical-align:middle; 
    padding:5px;
    font-size:11;
    font-family:verdana;
    line-height:150%;         
}

.tr_bodytext
{
    vertical-align:top; 
    padding:5px;
    font-size:11;
    font-family:verdana;
    line-height:150%;  
     
}

/*.fontlineheight
{
    line-height:150%;
}*/

.productheadingpricingtext
{
    padding:5px;
    font-size:12;
    font-family:verdana; 
    line-height:150%;
}

.fontlevelwithSizing2
{
    font-size:12;
}

.fontlevelWithSizing1
{
    font-size:11;
}

.fontlevelWithSizing0
{
    font-size:10;
}

.td_bottomlevel
{
    text-align:center;
    background-color:gray;
    font-size:11;
    font-family:verdana; 
    line-height:150%;
   }




