/* CSS for very commonly used classes throughout the website */
	/* Style Class for Error Containers */
.Error {
	border: 1px solid red;
	font-size: 14px;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 2px;
	text-align: center;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: rgb(248, 260, 140);
}

/* Style Class for Error Code */
.ErrorCode {
	font-size: 10px;
	color: red;
}

/* Style Class for Error Message */
.ErrorMessage {
	font-size: 10px;
	color: red;
}

/* Style Class for Success */
.Success {
	margin: 0px auto;
	border: 2px dashed green;
	font-size: 14px;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 2px;
	text-align: center;
	width: 950px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: rgb(248, 260, 140);
}

/* Style Class for Titles / Headlines */
.Title {
	font-size: 18px;
	color: black;
	font-weight: bold;
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
}

/* Style Class for all the  buttons on the page */
.Button {
	padding: 3px 10px;
	border: none;
	font-size: 13px;
	cursor: pointer;
	text-decoration: none;
	margin-top: -4px;
	text-shadow: rgba(0, 0, 0, 0.3) 0 -1px 0;
	background-color: rgb(0, 133, 217);
	color: white;
}

/* Style Class for all the text fields on the page */
.Textbox {
	border: 1px solid gray;
	font-size: 13px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	padding-right: 2px;
}

/* Style Class for all the Select on the page */
.Select {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	padding-right: 2px;
	border: 1px solid gray;
	font-size: 13px;
	text-decoration: none;
	width: 166px;
}

/* Style for the menu options h1 tag which get displayed once the option is selected */
.SelectedMenuOption {
	font-size: 18px;
	color: #FFFFFF;
	background: rgb(168, 71, 0);
	text-decoration: none;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 10px;
	padding-right: 10px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-family:'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
}

/* Style class for the table that shows some kind of report or information */
.InfoReportTable {
	font-size: 14px;
	padding: 2px;
	border: 1px solid #DCDCDC;
}

/* Style class for the title row of the table */
.TableTitleRow td {
	color: #FFFFFF;
	background: rgb(168, 71, 0);
	font-weight: bold;
	padding: 3px;
	font-size: 12px;
	padding-left: 5px;
}

/* Style class for the even info row of the table */
.TableInfoRowEven td {
	color: #000000;
	background: #E6E6E6;
	font-weight: normal;
	padding: 3px;
	padding-left: 3px;
	font-size: 12px;
	overflow: hidden;
}

/* Style class for the odd info row of the table */
.TableInfoRowOdd td {
	color: #000000;
	background: #FFFFFF;
	font-weight: normal;
	padding: 2px;
	padding-left: 3px;
	font-size: 12px;
	overflow: hidden;
}

/* File Upload Related */
#progressBar {
	text-align: left;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	float:left;	
    
	
}

#progressBarText {
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	color: #000000;
	font-size: 14px;
}

#progressBarBox {
	width: 540px;
	height: 20px;
	border: 1px;
	border-style: solid;
	border-color: #0079ce;
	background-color: white;
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;	
    margin-left:35px;
}

#progressBarBoxContent {
	background-color: #0079ce;
	height: 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;	
}

#progressBarSuccesfull {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	color: rgb(0, 133, 217);
	padding-left: 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;		
}

.watermark { color: gray; }


.info, .success, .warning, .error, .validation {
border: 1px solid;
margin: 10px 0px;
padding:15px 10px 15px 50px;
background-repeat: no-repeat;
background-position: 10px center;
display:none;
text-align : left;
font-size:16px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
width:892px;
}
.info {
color: #00529B;
background-color: #BDE5F8;
background-image: url('../images/info.png');

}
.success {
color: #4F8A10;
background-color: #DFF2BF;
background-image:url('../images/success.png');
}
.warning {
color: #9F6000;
background-color: #FEEFB3;
background-image: url('../images/warning.png');
}
.error {
color: #D8000C;
background-color: #FFBABA;
background-image: url('../images/error.png');
}


.messageCss{
	width : 890px;
	margin : auto;
	float:left;
	}

