/* default css styles */
html{
  height: 100%;
}
/* dynamic width */
/*
body {
 margin: 0px;
 padding: 0px;
 height: 100%;
 font-family: Tahoma;
 font-size: 11px;
 color: #666;
 background-color: #FFFFFF;
}
#body_div_full_width{
    height: auto !important;
    min-height: 100%;
    _height: 100%;
    padding-bottom: -1px;
    width: 100%;
    min-width: 997px;
    _width: expression(((document.body.clientWidth)) < 1000? "997px": ((document.body.clientWidth)) > 1000? "100%": "997px" );
}
#footer_div_full_width{
    height: 77px;
    margin-top: -78px;
    width: 100%;
    min-width: 997px;
    _width: expression(((document.body.clientWidth)) < 1000? "997px": ((document.body.clientWidth)) > 1000? "100%": "997px" );
}
*/
/* static width centered */
body {
 margin: 0px;
 padding: 0px;
 height: 100%;
 font-family: Tahoma;
 font-size: 11px;
 color: #666;
 background-color: #FFFFFF;
 text-align:center;
}
#body_div_static_width{
    height: auto !important;
    min-height: 100%;
    _height: 100%;
    padding-bottom: -1px;
    width: 1022px;
	margin: 0 auto;
	text-align:left;
}
#footer_div_static_width{
    height: 122px;
    margin-top: -123px;
    width: 1022px;
	margin: 0 auto;
	text-align:left;
}
/* usefull css styles */
.bordered{
  border: #ccc 1px solid;
}
.rel{
  position: relative;
}
.hidden{
  display: none;
}
.img_in_td{
  display:block;
}
.empty_space{
	margin:0;
	padding:0;
}
.text_align_right{
	text-align:right;
}
.text_align_center{
	text-align:center;
}
/* main link styles */
A{
  color: #0E57A1;
}
A:visited{
  color: #0e57a1;
}
A:hover{
  text-decoration: none;
}
