/* master page css document */

body, form
{ 
    margin: 0; padding: 0;
}
body{
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
}

a, a:link, a:visited, a:active { color:#0156a7; text-decoration: underline; }
a:hover { color:#ffd700; text-decoration: underline; }

/**************Login Panel**********************/
#derong
{
    background: #100905 url(Images/main_bg.jpg) top left repeat-x;
    height:100%;
}

#wrapper
{
    margin: 0 auto;
    width: 1000px;
}

#loginBanner
{
    background:url(Images/login_header.png) 0 0 no-repeat;
    height:348px;
    width:100%;  
}



#loginPanel
{
	 background:url(Images/login_pnl_bg.png) center center no-repeat;
     width: 501px; 
     height: 241px;
     margin:20px auto;     
     border:0 none;     
}

#loginTable
{
    margin:0; padding:0; width:100%; border:0 none; text-align:center;    
    margin-top:80px;
}
#loginTable td.cell1
{
	text-align:right; 
    padding:5px 10px 10px 60px;
    *padding:5px 10px 7px 60px;
}
#loginTable td.cell2
{
    vertical-align: inherit;
    text-align:left;    
}

.inputTextField
{
    height:26px;
    width:194px;
    font:20px bold;
    background-color:Transparent;
    border:0 none;
}

#loginBtnImg
{
	height:40px;
    width:115px;
    border:0 none;
}


/**************Login Panel**********************/

#container { 
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0 none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	background:url(images/main_header_bg.jpg) 0 0 repeat-x;
	height: 174px;
	margin: 0;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

#header img 
{
	width:464px;
	height:80px;
    border:0 none;
    margin:40px 40px auto;
}


#header a, #header a:link, #header a:visited, #header a:active { color:#5a0000; font-weight:bold; text-decoration: none; }
#header a:hover { color:#f54c51; font-weight:bold; text-decoration: none; }

#header #leftModule
{
     position:absolute;
     top:148px;
     left:10px;
     font: 14px bold;
     color: #fff;
}

#header #rightModule
{
     position:absolute;
     top:148px;
     right:10px;
     font: 14px bold;
     color: #fff;
}

#header a, #header a:link, #header a:visited, #header a:active { color:#fff; text-decoration: none; }
#header a:hover { color:#ffd700; text-decoration: underline; }



/* Tips for leftsidebar:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #leftsidebar p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#leftsidebar {
	float: left; 
	width: 18%; /* since this element is floated, a width must be given */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
	*padding-top: 15px;
}

/* Tips for mainContent:
1. the space between the mainContent and leftsidebar is created with the left margin on the mainContent div.  No matter how much content the leftsidebar div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #leftsidebar space when the content in #leftsidebar ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent { 
	margin: 0 20px 0 20%; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
    *zoom: 1; 
    *padding-top: 15px;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/*******************Tree Style*************************************/
.mainTree
{
    font: 14px normal;
    color:#3366FF;
    padding:4px;
    overflow:hidden;
	height:auto;
    margin:0px;
    
}
.selectedNode {
	color: #ffd700;
	margin:0;
}

.hoverNode 
{
    color: #ffd700;
    cursor:hand;
}
/*******************Tree Style*************************************/
/*******************Grid Table Style*************************************/
table.grid 
{
    font: 13px normal;
    margin:0;
    padding: 0;
    text-align:center;
}
table.grid th
{
    background-color : #5a0000;
    border: 1px solid #fff;
    font-weight:bold;
    padding: 4px;
    color:#fff;
}
table.grid td
{
    border: 1px solid #ccc;
    padding: 2px 4px 2px 4px;
    margin:0;
}
/*******************Grid Table Style*************************************/