/*******************************************************************************
*** general
*******************************************************************************/

/*

How to size text using ems: http://clagnut.com/blog/348/

.  --> class
#  --> ID

ID: unique per page
class: multiple per page OK.

Margin: add spaces outside border
Padding: uses spaces inside border

DIV: block of content
SPAN: inline content

text-align only applied to block level tag.  DIV is a block-level tag. SPAN is not.

*/

html 
{
	font-size: 100%
}

body
{
	font-family: Verdana, Helvetica, Arial, sans-serif;
    padding: 0px;
    margin: 0px;
    color: #505050;
    background-color: gray;
	font-size: 62.5%
}



#menu
{
  font-size: 1.2em;
}

#contents
{
  font-size: 1.2em;
}

#rightbar
{
  font-size: 1.2em;
}
#footer
{
  font-size: 1em;
}

#table_content
{
    text-align: left;
}

ul
{
	list-style-type: square;
}

li
{
	margin-bottom: 4px;
}

a
{
}


ul a
{
}

p 
{
    padding: 0px;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 6px;
    text-align: justify;
}

p a
{
}


h1
{
    margin: 0px; 
    padding: 0px; 
    font-family: verdana ; 
    font-size:2em; /* displayed at 20px */
    color: #004064;
}

h2
{
    margin: 0px; 
    padding: 0px; 
    font-family: verdana ; 
    font-size:1.8em; /* displayed at 18px */
    color: #004064;
}
h3
{
    margin: 0px; 
    padding: 0px; 
    font-family: verdana ; 
    font-size: 1.5 em; /* displayed at 15px */
    color: #004064;
}


h4
{
    margin: 0px; 
    padding: 0px; 
    font-family: verdana; 
    font-size: 1.2 em; /* displayed at 15px */
    color: #004064;
}

ul
{
    margin: 0px; 
    padding: 0px; 
}

img 
{
	border-width: 0px;
}

hr {
	border: 0px none #FFFFFF;
	border-top: 1px solid #CCCCCC;
	height: 1px;
	margin: 5px 0;
	display: block;
	clear: both;
}


table.auto_center
{
	margin-left:auto; margin-right:auto;
	text-align: center;
}


td
{
    vertical-align: top;
}



a
{
}

a:link {
    font-weight: normal; color: #505050; text-decoration: underline;
}
a:visited {
    font-weight: normal; color: #505050; text-decoration: underline;
}
a:hover {
    font-weight: normal; color: red; text-decoration: underline;
}
a:active {
    font-weight: normal; color: #505050; text-decoration: underline;
}


/*******************************************************************************
*** menu
*******************************************************************************/


a.menu
{
}
a.menu:link 
{
	
    font-weight: normal; color: white; text-decoration: none;
}
a.menu:visited {
    font-weight: normal; color: white; text-decoration: none;
}
a.menu:hover {
    color: red; text-decoration: underline;
}
a.menu:active {
    color: white; text-decoration: none;
}


td.menu
{  
    color: white;   
    text-align:left;
    font-weight: normal;
    padding-left: 0;
    padding-top: 0;
    padding-right: 10px;
    padding-bottom: 0;
    vertical-align: middle;
}
/******************************************************/


.quote
{
	font-style: italic;
}


.text_gray
{
	color: gray;
}

.text_white
{
	color: white;
}

.text_blue
{
	color: blue;
}

.text_navy
{
	color: navy;
}
.text_black
{
	color: black;
}

.text_red
{
	color: red;
}

.text_title
{
	color: red;
}

.text_align_center
{
	text-align: center;
}

.text_align_left
{
	text-align: left;
}
.text_align_right
{
	text-align: right;
}


.margin_bottom_1
{
	margin-bottom: 5px;      
}
.margin_bottom_2
{
	margin-bottom: 10px;      
}

.margin_bottom_3
{
	margin-bottom: 15px;      
}



.indent_h1
{
    padding-left: 0px;      
}
.indent_h2
{
    padding-left: 0px;      
}
.indent_h3
{
    padding-left: 0px;      
}
.indent_h4
{
    padding-left: 0px;      
}
.indent_h5
{
    padding-left: 0px;      
}
.indent_h6
{
    padding-left: 0px;      
}
.indent_h7
{
    padding-left: 0px;      
}
.indent_h8
{
    padding-left: 0px;      
}
.indent_h9
{
    padding-left: 0px;      
}

.indent_1
{
    padding-left: 13px;      
}
.indent_2
{
    padding-left: 26px;      
}
.indent_3
{
    padding-left: 39px;      
}
.indent_4
{
    padding-left: 52px;      
}
.indent_5
{
    padding-left: 65px;      
}
.indent_6
{
    padding-left: 78px;      
}
.indent_7
{
    padding-left: 91px;      
}
.indent_8
{
    padding-left: 104px;      
}
.indent_9
{
    padding-left: 117px;      
}

.box_indent_1
{
    padding: 13px; 
}
.box_indent_2
{
    padding: 26px; 
}
.box_indent_3
{
    padding: 39px; 
}
.box_indent_4
{
    padding: 52px; 
}
.box_indent_5
{
    padding: 65px; 
}
.box_indent_6
{
    padding: 78px; 
}
.box_indent_7
{
    padding: 91px; 
}
.box_indent_8
{
    padding: 104px; 
}
.box_indent_9
{
    padding: 117px; 
}


/*******************************************************************************
*** box
*******************************************************************************/

caption.box
{
    border-left: 1px solid gray;
    border-top: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom: none;
    /*background-color: #004064;*/
    background-color: RGB(84,109,142);
    color: white;
    font-weight: bold;
    padding: 3px;
}

table.box
{
    border: 1px solid gray;
    padding-left: 5px;
    padding-right: 5px;
    background-color: RGB(242,242,242);
    
}

td.box
{ 
    border: none;
}

tr.box
{ 
    border: none;
    padding-top: 2px;
    padding-bottom: 3px;
}

form.box
{
    padding: 0px;
    margin: 0px;
}

input.box
{
    padding: 0px;
    margin: 0px;
}

a.box
{
}
a.box:link 
{
   font-weight: normal; color: navy; text-decoration: underline;
}
a.box:visited {
    font-weight: normal; color: navy; text-decoration: underline;
}
a.box:hover {
    color: red; text-decoration: underline;
}
a.box:active {
    color: navy; text-decoration: underline;
}


.site_switch_nav
{
	text-align: left;
	margin-top: 4px;
	margin-bottom: 4px;
}

a.site_switch_nav:link
{
	color: white; text-decoration: underline;
}

a.site_switch_nav:visited
{
	color: white; text-decoration: underline;
}

a.site_switch_nav:hover
{
	color: red; text-decoration: underline;
}a.site_switch_nav:active
{
	color: white; text-decoration: underline;
}

.bold
{
 font-weight: bold;
}

.cbold
{
 font-weight: bold;
 line-height: 160%;
 letter-spacing:4px;
}

/*******************************************************************************
*** new html by yilinc
*******************************************************************************/
.web_table
{
width:100%;
}
