/*****************************************************
Modify this stylesheet to change the style and appearance
*****************************************************/


/*****************************************************
Common Tags Predefinition
*****************************************************/
BODY
{
    font-family: Verdana, Arial, Helvetica, sans-serif,Tahoma;
    font-size: 10px;
    color: #5A5B5D;
    background: #7C7C7C; 
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align:center;
	scrollbar-face-color: #8B92A5;
	scrollbar-shadow-color: #E0E4EF;
	scrollbar-highlight-color: #7C7C7C;
	scrollbar-3dlight-color: #FFFFFF;
	scrollbar-darkshadow-color: #94ABB5;
	scrollbar-track-color: #E0E4EF;
	scrollbar-arrow-color: #FFFFFF;
}

TD
{
	/* Original CSS commneted
	font-family: Verdana,Tahoma,Arial;
	font-size: 10px;
	color:#000000;*/
	font-family: Tahoma;
	font-size: 13px;
	color: #626161;
	
}

A
{
    color: #627A94;
    text-decoration: underline;
}

A:hover
{
	color: #000033;
    text-decoration: underline;
}


/*****************************************************
Form Inputs
*****************************************************/
.formInputText /* <INPUT type=text /> */
{
	font-family: Verdana,Tahoma,Arial;
	font-size:11px;
	height:18px;
	background: #FFFFFF;
	color:#000000;
	border: solid 1px #ACAFB2;
}

.formInputTextDisabled /* <INPUT type=text readonly /> */
{
	background-color:#F5F5F5;
	font-family: Verdana,Tahoma,Arial;
	font-size:11px;
	height:18px;
	color:#555555;
	border: solid 1px #E5ECE2;
}

.formInputTextArea /* <TextArea/> */
{
	font-family: Verdana,Tahoma,Arial;
	font-size: 11px;
	background: #FFFFFF;
	color: #000000;
	border: solid 1px #ACAFB2;
	border-bottom-color: #CFD2D5;
	border-right-color: #CFD2D5;
}

.formInputTextAreaDisabled /* <TextArea readonly/> */
{
	background-color:#F5F5F5;
	font-family: Verdana,Tahoma,Arial;
	font-size:11px;
	color:#000000;
	border: solid 1px #A5ACB2;
}

.formInputTextCaption /* The caption of form input */
{
	font-family: Verdana,Tahoma,Arial;
	font-size:10px;
	color:#666666;
	padding:3px;
	padding-right:1px;
	font-weight:bold;
}

.formInputDescription /* The description of form input */
{
	/* !Note: there are descriptions right and bottom of the input */
	font-family: Verdana,Tahoma,Arial;
	font-size: 10px;
	color: #777777;
	padding: 2px;
	padding-left: 10px;
	vertical-align:middle;
	display:block;
}

.formInputButton /* <INPUT type=submit /> */
{
	background: #E6EFF6 url(../images/SideControlButton.gif);
	text-align:center;
	border-top: solid 1px #BDC2C8;
	border-left: solid 1px #BDC2C8;
	border-bottom: solid 1px #959FA9;
	border-right: solid 1px #959FA9;
	font-family: Verdana,Tahoma,Arial;
	font-size: 11px;
	font-weight: normal;
	color: Black;
	height:21px;
	cursor:hand;
}

.formInputButtonSmall /* Small <INPUT type=sumbit /> */
{
	background: #E6EFF6 url(../images/SideControlButton.gif);
	text-align:center;
	border-top: solid 1px #BDC2C8;
	border-left: solid 1px #BDC2C8;
	border-bottom: solid 1px #959FA9;
	border-right: solid 1px #959FA9;
	font-family: Verdana,Tahoma,Arial;
	font-size: 10px;
	font-weight: normal;
	color: Black;
	cursor:hand;
}

.formInputButtonSideColumn
{
	background:  #E6EFF6 url(../images/SideControlButton.gif);
	text-align:center;
	border-left:solid 1px #A6B8D8;
	border-top:solid 1px #A6B8D8;
	border-right:solid 1px #7884A4;
	border-bottom:solid 1px #7884A4;
	/*Original CSS commented
	border-left:solid 1px #A6B8D8;
	border-top:solid 1px #A6B8D8;
	border-right:solid 1px #7884A4;
	border-bottom:solid 1px #7884A4;*/
	font-family: Verdana,Tahoma,Arial;
	font-size: 9px;
	font-weight: normal;
	/*Original CSS commented
	color:Black;*/
	color: #757575;
	height:18px;
	cursor:hand;
	padding-bottom:2px;
}

.formTextValue /* Simple value label */
{
	font-size:11px;
}

.formInputRow /* A row of the form table where the input is placed*/
{
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: Verdana,Tahoma,Arial;
	font-size: 11px;
	border-bottom: dashed 1px #E5E5E5;
}

.formInputButtonsRow /* The row of the form table where the buttons are placed */
{
	padding: 0px;
	padding-top: 9px;
	padding-bottom: 2px;
	font-family: Verdana,Tahoma,Arial;
	font-size: 11px;
	border-top: solid 1px #E5E5E5;
}

.formRequiredSign /* The symbol tha indicate the input as required */
{
	font-size: 9px;
	color: #808080;
}


/*****************************************************
Message Blocks
*****************************************************/
.errorMessage /* Error message */
{
	font-family: Verdana,Tahoma,Arial;
	font-size: 10px;
	color :#B35757;
	font-weight: normal;
	line-height: 16px;
	padding-bottom:8px;
}

.notifyMessage /* Notification message */
{
	font-family: Verdana,Tahoma,Arial;
	font-size: 11px;
	color: #656EAD;
	font-weight: normal;
	line-height: 16px;
	display:block;
	padding-bottom:5px;
}

.notifyMessageXL /* Big notification message */
{
	font-family: Verdana,Tahoma,Arial;
	font-size: 11px;
	color: #656EAD;
	font-weight: bold;
	line-height: 16px;
	display:block;
	padding-top:25px;
	padding-bottom:25px;
	text-align:center;
}


/*****************************************************
Master Page
*****************************************************/

.LeftBkg
{
	
	background-image: url(../images/SideUpperRepeat.gif) ;
	background-repeat:repeat-x;
	background-position:top;
	background-color:White;
	
	
	}
.RightBkg
{
	
	background-image: url(../images/SideUpperRepeat.gif);
	background-repeat:repeat-x;
	background-position:top;
	background-color:White;
	
	}
.footerBkg
{
	/* Comment to makes felles look*/
	background: #969DAE url(../images/FooterBkg.gif);
	font-family: Tahoma;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.Left_Footer_Bkg
{
	background-image: url(../images/SideFooterRepeat.gif) ;
	background-repeat:repeat-x;
	background-position:top;
	background-color:White;
}
.Right_Footer_Bkg
{
	background: #969DAE url(../images/SideFooterRepeat.gif);
	background-repeat:repeat-x;
	background-position:top;
	background-color:White;

}
#container
 {
	width:100%;
	bottom:0px;
	height: 100%;
	margin: 0px auto;
	
}
#header
{
	background-image: url(../images/header.gif);
	background-repeat: no-repeat;
	width:100%;
	border:0px solid black;
	height: 60px; /*margin-top:13px;*/
	position: relative;
}
#logo
{
	position:absolute;
	left:6px;
	top:17px;
	width:100%;
	height:184px;
	z-index:1;
}
#search
{
	position:absolute;
	background-image:url(../images/search_box.gif);
	right:11px;
	top:27px;
	width:127px;
	height:23px;
	padding-left:5px;
	padding-top:1px;
	z-index:1;
}

.contentBody
{
	background: #FFFFFF;
	padding-bottom: 5px;
}

.leftColumnBkg
{
	background: #FFFFFF;
	/*border-top: solid 4px #7490E0;*/
	/*padding: 2px;*/
	width: 155px;
}

.centerColumnBkg
{
	background: #FFFFFF;
	/*border-top: solid 4px #F79311;*/
	padding-top:5px;
	padding-left:0px;
	padding-right:0px;
}

.rightColumnBkg
{
	background: #FFFFFF;
	/*border-top: solid 4px #7490E0; */
	padding: 2px;
	width: 155px;
}

.copyrightText
{
	color: #EEEEEE;
	font-size: 10px;
	padding: 4px;
}


/*****************************************************
Center Control
*****************************************************/
.csControl
{
	margin-bottom: 9px;
	margin-top:2px;
	border:solid 1px #e5e5e5;
	vertical-align:top;
	
}

.csControlTitle
{
	height: 22px;
}

.csControlTitleLeft
{
	/*background: #EA8808;*/
	background:#A8B2B3;
	width: 7px;
	height: 100%;
}

.csControlTitleCenter
{
	/*background: #B5BAC6;*/
	background:#A8B2B3;
	border-top: solid 1px #A2A7B3;
	font-family: Verdana, Tahoma, Arial;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	padding-left: 5px;
	vertical-align:middle;
}

.csControlTitleRight
{
	/*background: #B5BAC6;*/
	background:#A8B2B3;
	border-top: solid 1px #A2A7B3;
	width: 1px;
	height: 100%;
}

.csControlBodyLeft
{
	width: 1px;
}

.csControlBodyCenter
{
}

.csControlTabBar
{
	border-bottom:solid 1px #DCDCDC;
	font-size: 10px;
	padding:3px;
	margin-top:1px;
}

.csControlTabBar_Item
{
    display:inline;
    margin-right:3px;
}

.csControlTabBar_Item A
{
	font-family: Verdana, Tahoma, Arial;
	font-size: 10px;
	color: #627A94;
	font-weight:normal;
	text-decoration:none;
	padding-left:2px;
	padding-right:2px;
	white-space:nowrap;
	border: solid 1px #FFFFFF;
	border-bottom: solid 0 #FFFFFF;
	
}

.csControlTabBar_Item A:hover
{

}

.csControlTabBar_Item IMG
{
	border:0;
	margin:0;
	padding:0;
}

.csControlTabBar_SelectedItem
{
    display:inline;
    margin-right:3px;
    border: solid 1px #DCDCDC;
	border-left: solid 1px #DCDCDC;
	border-right: solid 1px #DCDCDC;
	border-bottom: solid 0 #DCDCDC;
}

.csControlTabBar_SelectedItem A
{
	font-family: Verdana, Tahoma, Arial;
	font-size: 10px;
	color: #627A94;
	font-weight:normal;
	text-decoration:none;
	padding-left:2px;
	padding-right:2px;
	white-space:nowrap;
}

.csControlTabBar_SelectedItem A:hover
{
	text-decoration:underline;
}

.csControlTabBar_SelectedItem IMG
{
	border:0;
	margin:0;
	padding:0;
}

.csToolbar
{
	height:25px;
}

.csToolbar A
{
	border: solid 1px #E0E0E0;
	margin-right: 3px;
	margin-bottom: 4px;
	padding:3px;
	padding-left:20px;
	background-color:#F9FCFF;
	text-decoration:none;
	background-repeat:no-repeat;
	float:left;
}

.csToolbar A:hover
{
	border: solid 1px #C0C0C0;
	background-color:#E7F0F8;
	text-decoration:none;
}

.csControlBodyMain /*The cell where the control real data in placed*/
{
	padding: 4px;
	padding-left: 6px;
	padding-bottom: 0;
}

.csControlBodyRight
{
	width: 1px;
}

.csControlFooter
{
	height: 18px;
}

.csControlFooterLeft
{
	width: 6px;
	height: 18px;
	border-bottom: solid 1px #E7E7E7;
}

.csControlFooterCenter
{
	height: 18px;
	border-bottom: solid 1px #E7E7E7;
}

.csControlFooterRight
{
	background: #FFFFFF url(../images/csFooterRightBkg.gif);
	width: 22px;
	height: 18px;
	background-repeat:no-repeat;
	background-position:right;
}

/*****************************************************
Side Control
*****************************************************/
.csSideControl
{
	margin-bottom:9px;
	border-right: solid 1px #E5e5e5;
	border-left: solid 1px #E5e5e5;
}

.csSideControl_Title
{
	/* original Css Commented
	background: #F4F4F4 url(../Images/csSideControlTitleBkg.gif);
    */
	
	background-color: #F4F4F4;
	background-repeat: repeat;
	background-attachment: scroll;
	/*color:#586A97;*/
	font-size:11px;
	font-weight:bold;
	padding-left:12px;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-left:1px; 
	display:block;
	/*Add This to set top Margin of NewsLetter */
	margin-top :8px;
	
}

.csSideControl_Body
{
	/*New chamges--> 
	border-left:solid 1px #E5E5E5; 	
        /*<--New chamges*/
	padding: 3px;
	padding-left: 5px;
	
}

.csSideControl_Footer
{
	background: url(../Images/csSideControlFooterBkg.gif);
	height: 18px;
}

/*****************************************************
GridView
*****************************************************/
.csGridView
{
	border-width: 0;
	border-collapse:collapse;	
	font-family: Verdana, Tahoma, Arial;
	font-size: 10px;
	color: #112211;
	margin-bottom:1px;
}

.csGridView_Item TD
{
	height: 22px;
	padding-top:3px;
	padding-bottom:3px;
	border-bottom: solid 1px #F6F6F6;
}

.csGridView_AltItem TD
{
	height: 22px;
	padding-top:3px;
	padding-bottom:3px;
	background:#F7F7F7;
	border-bottom: solid 1px #F6F6F6;
}

.csGridView_EditItem TD
{
	background:#F9F8F3;
	border-bottom: solid 1px #D6D6D6;
}

.csGridView_Header TD
{
	background: #f0f2f5;
	/*border-bottom: solid 1px #f6c78b;*/
	border-bottom: solid 1px #c0c0c0;
	font-size: 10px;
	color: #7C7C7C;
	height: 20px;
	padding: 2px;
	font-weight: bold;
}

.csGridView_Header TH
{
	background: #f0f2f5;
/*border-bottom: solid 1px #f6c78b;*/
	border-bottom: solid 1px #c0c0c0;
	font-size: 10px;
	color: #7C7C7C;
	height: 20px;
	padding: 2px;
	font-weight: bold;
}

.csGridView_SortOrderASC
{
	width: 12px;
	height:12px;
	background:url(../images/imgSortASC.gif);
	display:inline;
	margin-right:2px;
}

.csGridView_SortOrderDESC
{
	width: 12px;
	height:12px;
	background:url(../images/imgSortDESC.gif);
	display:inline;
	margin-right:2px;
}

.csGridView_pnlResultInfo
{
	border-top: solid 1px #C0C0C0;
	border-bottom: solid 1px #C0C0C0;
	padding: 3px;
	color: #000000;
	font-size:11px;
}

/*****************************************************
Context Menu Popup
*****************************************************/
.csContextMenuItem
{
	padding-left: 3px;
	white-space:nowrap;
}

.csContextMenuItem A
{
	font-size: 10px;
}

.csContextMenuItem A:hover
{
	font-size: 10px;
}

.csContextMenuItem IMG
{
	margin: 2px;
	background-color: #F0F0F0;
}


/*****************************************************
Other common style classes
*****************************************************/

/* Usualy separates categories from the list items */
.csSeparatorH1
{
	margin-top:5px;
	margin-bottom:5px;
	border-top:solid 1px #E0E0E0;
	border:solid 1px #E0E0E0;
	font-size:1px;
}

/* Not translated item */
strong.notTranslated
{
	font-weight:normal;
	color: #A2BAC4;
}


/*To be Removed:*/
.csControlHBorder
{
	background: #FFFFFF url(../images/CtrlHBorders.gif);
}

.csControlVBorder
{
	background: #FFFFFF url(../images/CtrlVBorders.gif);
}


/*****************************************************
Control Rights Manager
*****************************************************/
.rmMain table
{
	font-family: Verdana;
	color: #444444;
	border: solid 1px #C6C6C6;
	border-collapse:collapse;
}

.rbRightTitle
{
	height: 28px;
	border-top: solid 1px #FFFFFF;
	background: #DAE3EC;
	text-align:right;
	padding: 2px;
	font-size: 9px;
	font-family: Verdana;
	color: #444444;
	font-weight:bold;
	white-space:nowrap;
}

.rmGroupTitle
{
	width: 33px;
	background: #F7F7F7;
	border: solid 1px #C6C6C6;
	vertical-align:bottom;
	text-align: center;
	padding-bottom: 2px;
	font-size: 9px;
	line-height: 9px;
	font-family: Verdana;
	color: #444444;
}

.rmCellBox
{
	border: solid 1px #C6C6C6;
	text-align:center;
	height:28px;
}


/*****************************************************
Control Panel Items 
*****************************************************/
.frmControlPanel_Item
{ 
	text-align:center;
	vertical-align:middle;
	padding: 4px; 
	width:116px;
	display:block;
	float:left;
}

.frmControlPanel_Item A
{
	margin-top: 0px;
	color: #444444;
	padding: 1px;
	padding-top: 0px;
	padding-bottom: 1px;
	border-top: solid 1px #999999;
	text-decoration: none;
	display:block;
	height:37px;
	overflow:hidden;
}

.frmControlPanel_Item A:hover
{
	color:#000000;
	text-decoration: none;
}


/*****************************************************
Shortcuts
*****************************************************/
.ctrlShortCuts_link
{
	margin-top: 0px;
	margin-bottom:2px;
	color: #444444;
	padding: 2px;
	padding-top: 0px;
	padding-bottom: 1px;
	border-top: solid 1px #DEDEDE;
	background: #FFFFFF;
	text-decoration: none;
	display:block;
}

.ctrlShortCuts_link:hover
{
	color:#000000;
	text-decoration: none;
}


/*****************************************************
Word Dictionary
*****************************************************/
.ctrlWordDictionary_Panel
{
	position:absolute;
	display:none;
	padding:2px;
	border:solid 1px #C0C0C0;
	background:#FFFFEF;
	width:180px;
}

.ctrlWordDictionary_panelTitle
{
	background: #F6EECA;
	color: #222222;
	padding:2px;
	font-weight:bold;
}

.ctrlWordDictionary_panelBody
{
	padding:2px;
}

.ctrlWordDitionary_Word
{
	text-decoration:none;
	border-bottom:solid 1px #EAA002;
	cursor:hand;
}


/*****************************************************
Paging Control
*****************************************************/
.ctrlPagingControl
{
	display:block;
	background: #F6F6F6;
	/*width: 100%;*/
	padding:4px;
	right:5px;
	/*margin-bottom: 1px;
	margin-right:50px;*/

}

.ctrlPagingControl_pagesInfo
{
	float:right;
}

.ctrlPagingControl_recordsInfo
{
	float:left;
}

.ctrlPagingControl_nextPage
{
	margin-left:7px;
	border-left:solid 1px #C0C0C0;
	padding-left:3px;
}

.ctrlPagingControl_prevPage
{
	margin-right:7px;
	border-right:solid 1px #C0C0C0;
	padding-right:3px;
}

.ctrlPagingControl_selectedPage
{
	text-decoration:none;
	font-weight:bold;
	color:#444444;
}

.ctrlPagingControl_pageItems
{
	display:inline;
	padding:0px;
}

.ctrlPagingControl_pageItems A
{
	padding:2px;
}

.ctrlPagingControl_pageItems A:hover
{
	padding:2px;
	background: #FFFFFF;
}


/*****************************************************
Web Site Navigator
*****************************************************/
.ctrlWebSiteNavigator
{
	color:#6D6D6D;
	font-size:9px;
	font-weight:bold;
	padding-top:2px;
}

.ctrlWebSiteNavigator A
{
	color: #6D6D6D;
	font-size: 10px;
	font-weight: normal;
	padding: 2px;
	text-decoration: none;
}

.ctrlWebSiteNavigator A:hover
{
	color: #6D6D6D;
	font-weight: normal;
}

/*****************************************************
Online Backup
*****************************************************/
.online-backup-block
{
	overflow: hidden;
	margin: 10px 0;
	width: 100%;        
}

.online-backup-block p
{
	overflow: hidden;
}

.online-backup-block img
{
	float: left;
	margin: 10px 10px 0 0;
}
