/*******************************************************************************
 * Developer CSS
 */

form {
    display: inline;
    margin: 0;
    padding: 0;
}

img.icon {
    vertical-align: middle;
}

input, select {
	vertical-align: middle;
}

.required {
	color: red;
	font-weight: bold;
	font-family: sans-serif;
}

/*******************************************************************************
 * Form
 */

fieldset {
	margin: 1.5em 0 0 0;
	padding: 0;
	border: 1px solid #FFE6C5;
	background-color: #FFF0DF;
	 border-radius: 5px; 
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;

}

legend {
	margin-left: 1em;
	color: #666;
	font-weight: bold;
}

fieldset ol {
	padding: 1em 1em 0 1em;
	list-style: none;
}

fieldset li {
	padding-bottom: 1em;
}

fieldset.submit {
	border-style: none;
	padding-left: 14em;
	background-color: transparent;
}

fieldset label {
	float: left;
	width: 12em;
	margin-right: 1em;
	text-align: right;
}

fieldset fieldset {
	margin-bottom: -2.5em;
	border-style: none;
	background-color: transparent;
	clear: left;
}

fieldset fieldset legend {
	margin-left: 0;
	font-weight: normal;
}

fieldset fieldset ol {
	position: relative;
	top: -1.5em;
	margin: 0 0 0 12.5em;
	padding: 0;
}

fieldset fieldset li {
	float: left;
	padding-right: 1em;
}

fieldset fieldset label {
	float: none;
	width: auto;
	margin-right: auto;
}

/*******************************************************************************
 * Notes
 */

div.error, div.warning, div.info, div.plain, div.success {
    border-width: 1px;
    border-style: solid;
    padding: 5px;
    margin-bottom: 10px;
	
	 border-radius: 5px; 
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
}

div.error h4, div.warning h4, div.info h4, div.success h4 {
    font-size: 12px;
    background-repeat: no-repeat;
    text-indent: 20px;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    margin-top: 0em;
    margin-bottom: 0.5em;
    text-transform: none;
}

div.error {
    background-color: #FDD;
    border-color: #ECC;
}

div.error h4 {
    background-image: url("../icon/exclamation.gif");
}

div.warning {
    background-color: #FFB;
    border-color: #EE9;
}

div.warning h4 {
    background-image: url("../icon/error.gif");
}

div.info {
    background-color: #DDF;
    border-color: #CCE;
}

div.info h4 {
    background-image: url("../icon/information.gif");
}


div.success {
    background-color: #CCFE80;
    border-color: #AFE580;
}

div.success h4 {
    background-image: url("../icon/tick.gif");
}

div.plain {
 /*   background-color: #FFF9F0;
    border-color: #FFE6C5;*/
	background-color: #FFF4C1;
	border: solid #F9CC00 1px;
	padding-left: 30px;
	background-image: url(../img/ico_fyi.gif);
	background-repeat: no-repeat;
	background-position: 7px center;
}

.paging {
	float:right;
	text-align:right;
}

.pagingInfo {
	text-align:right;
}

.pagingBottom {
	display:block;
	text-align:right;
	margin:5px;
}

div.help {
    font-size: 11px;
    color: #333;
    margin-bottom: 10px;
}

div.help h4 {
    font-size: 12px;
    color: #666;
    background-repeat: no-repeat;
    text-indent: 20px;
    font-family: sans-serif;
    margin-top: 0em;
    margin-bottom: 0.5em;
    background-image: url("../icon/help.gif");
}

div.helpmessage {
    background-color: #DDF;
    border-color: #CCE;
    border-width: 1px;
    border-style: solid;
    padding: 5px;
}

/*****************************************************************************
 * Table data
 */

tr.odd {
	background-color: #FFF9F0;
}

tr.even {
	background-color: #FFF0DF;
}

table.data {
    width: 100%;
    border: 1px solid #F98E00;
}

table.data tr {
    vertical-align: middle;
}

table.data td {
    padding: 4px;
}

table.data thead th {
    padding: 4px;
    background: #FFE6C5 url("../image/orange_bg.gif") repeat-x bottom;
	color:#603600;
    font-weight: bold;
    text-align: left;
}

table.details tbody th {
    text-align: right;
}

/*****************************************************************************
 * The Amazing CSS Tooltip
 * Usage: <a class="tooltip" href="javascript:;"> Link text <span>Tooltip text</span> </a>
 */

a:hover.tooltip {
    position: relative;
}

a.tooltip span {
    display: none;
}

a:hover.tooltip span {
    display: block;
    position: absolute;
    top: -5px;
    left: 20px;
    width: 300px;
    padding: 5px;
    z-index: 100;
    opacity: .90;
    font-weight: normal !important;
    text-decoration: none !important;
    color: black;
    background-color: #CCF;
    border: 1px solid #669;
}

a.tooltip img {
    border: 0px;
}

/* ----------------------------------------
	Styled used to show a Block Message tip.

*/
a:hover.blockedtip {
    position: relative;
}

a.blockedtip span {
    display: none;
}

a:hover.blockedtip span {
    display: block;
    position: absolute;
    top: -5px;
    left: 20px;
    width: auto;
	min-width:200px;
	padding: 5px;
    z-index: 100;
    opacity: .90;
    font-weight: normal !important;
    text-decoration: none !important;
    color: black;
    background-color: #CCF;
    border: 1px solid #669;
}

a.blockedtip img {
    border: 0px;
}


/* ----------------------------------------
	Styled used to show a toDo Message tip.

*/
a:hover.toDoTip {
    position: relative;
}

a.toDoTip span {
    display: none;
}

a:hover.toDoTip span {
    display: block;
    position: absolute;
    top: -5px;
    left: 20px;
    width: auto;
	min-width:200px;
	padding: 5px;
    z-index: 100;
    opacity: .90;
    font-weight: normal !important;
    text-decoration: none !important;
    color: black;
    background-color: #FDD;
    border-color: #ECC;
}

a.toDoTip img {
    border: 0px;
}


/* ----------------------------------------
	Styled used to show a done Message tip.

*/
a:hover.doneTip {
    position: relative;
}

a.doneTip span {
    display: none;
}

a:hover.doneTip span {
    display: block;
    position: absolute;
    top: -5px;
    left: 20px;
    width: auto;
	min-width:200px;
	padding: 5px;
    z-index: 100;
    opacity: .90;
    font-weight: normal !important;
    text-decoration: none !important;
    color: black;
    background-color: #CCFE80;
    border-color: #AFE580;
}

a.doneTip img {
    border: 0px;
}


/* ----------------------------------------
	Styled used to show a standby Message tip.

*/
a:hover.standByTip {
    position: relative;
}

a.standByTip span {
    display: none;
}

a:hover.standByTip span {
    display: block;
    position: absolute;
    top: -5px;
    left: 20px;
    width: auto;
	min-width:200px;
	padding: 5px;
    z-index: 100;
    opacity: .90;
    font-weight: normal !important;
    text-decoration: none !important;
    color: black;
    background-color: #DDF;
    border-color: #CCE;
}

a.standByTip img {
    border: 0px;
}


