/**
 * Active Navigation List
 * Please see:
 * docs/highlights-step1.jpg
 * docs/highlights-step2.jpg
 * docs/highlights-step3.jpg
 */
body#main-main a#nav-main-main,
body#admin-add a#nav-admin-add,
body#admin-edit a#nav-admin-edit,
body#contract-add a#nav-contract-add,
body#contract-edit a#nav-contract-edit
{
	color: #FFFFFF !important;      /* Active menu item text color */
	background: #F86C05 !important; /* Active menu item background color */
}
/* End Active Navigation List */





/**
 * General Page Styles
 * To change MENU background color, simply run docs/bg-maker.php
 * Never delete the "!important" tags
 */
body {
	font: 14px/23.5px arial, helvetica, verdana;
	background: #2e2e2e url('../images/cp-menu-bg.png') top center repeat-y;
	/**
	 * Leave background url() in at all times, but feel free to
	 * change the hex color
	 */
}

.sectionsColor {
	background: #EAEAEA; /* Header & footer colors */
}

.barColor {
	background: #F86C05; /* Top & bottom bar colors */
	height: 5px;         /* Top & bottom bar height */
	border-bottom: 1px solid #FFFFFF;
	clear: both;
}

.gapColor {
	color: #FFFFFF;      /* "Admin Management" text color */
	background: #A4A4A4; /* "Admin Management" background color */
	height: 38px;
	line-height: 33px;
	clear: both;
}

#cpNavigation ul.main li.top a {
	color: #FFFFFF;      /* Menu titles text color */
	background: #434343; /* Menu titles background color */
	font-weight: bold;
}

#cpNavigation ul.sub a {
	color: #000000 !important;      /* Sub-menu text color */
	background: #E5E5E5 !important; /* Sub-menu background color */
	border-bottom: 1px solid #FFFFFF;
	font-weight: bold;
}

#cpNavigation ul.sub a:hover {
	color: #FFFFFF !important;      /* Sub-menu hover text color */
	background: #F86C05 !important; /* Sub-menu hover background color */
}

p {
	margin: 0;
	padding: 5px 0;
}
/* End General Page Styles */





/* Header Styles */
#cpLogo p {
	margin: 0;
	padding: 0 0 0 20px;
}

#cpLogo a {
	float: left;
	color: #88201B;
	font-size: 18px;
	height: 120px;
	line-height: 120px;
	text-decoration: none;
}

#cpLogo img {
	display: block;
	border: 0;
}

#cpTitleMenu {
	display: inline;
	float: right;
	margin: 65px 20px 0 0;
}

#cpTitleMenu a {
	color: #000000; /* Title menu text color */
	font-size: 14px;
	text-decoration: none;
}

#cpTitleMenu a:hover {
	text-decoration: underline;
}

.gapColor p {
	margin: 0 auto;
	padding: 0;
	font-size: 17px;
	font-style: italic;
	font-weight: bold;
	display: block;
	width: 935px;
	text-align: right;
}
/* End Header Styles */





/* Navigation Styles */
#cpNavigation li {
	line-height: 35px;
}

#cpNavigation ul.main {
	border-top:1px solid #FFF;
}

#cpNavigation ul.main, #cpNavigation ul.sub {
	float:right;
	width:199px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

#cpNavigation ul.main li a {
	display: block;
	padding-left: 5px;
	text-decoration: none;
	cursor: default;
}

#cpNavigation ul.main li a:hover {
	text-decoration: none;
}

#cpNavigation ul.sub a {
	display:block;
	padding-left: 15px !important;
	cursor: pointer !important;
}

#cpNavigation ul.sub a:hover {
	text-decoration: none;
}
/* End Navigation Styles */





/* Section Styles */
#cpContent h1,h2 {
	margin: 0 0 10px 0;
	padding: 3px;
	color: #2E2E2E;
	background: #FFFFFF;
	border-bottom: 1px solid #DDD;
	font-size: 14px;
	font-weight: bold;
}

/**
 * Un-Comment to make <h1> BOXED.
 * Change settings as desired.
#cpContent h1 {
	float: left;
	width:725px;
	padding: 2px 5px 0;
	margin: 10px 0;
	background: #DDDDDD;
	line-height: 30px;
	border: 0;
}*/
/**
#cpContent h2 {
	background-color: #CCCCCC;
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 11px;
	padding: 0 0 0 5px;
	font-family: Tahoma;
	text-transform: uppercase;
}*/

#cpContent h3 {
	background-color: #e8e8e8;
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 11px;
	padding: 0 0 0 5px;
	font-family: Tahoma;
	text-transform: uppercase;
}
/* End Section Styles */





/* Form Styles */
.formRow {
	margin: 5px 0px 5px 5px;
}

.formRow label {
	width: 160px;
	float: left;
	font-size: 14px;
    color: #000000
}

.formRow label.required {
    font-weight: bold;
}

.formRow textarea {
    margin: 2px;
    width: 225px;
    height: 90px;
}

.formRow input[type="text"], .formRow input[type="password"] {
	background: #FFFFFF;
	font-size: 14px;
	width: 225px;
/*
	padding: 5px;
	border: 2px solid grey;
	height: 18px;
 */
}

.formRow input[type="button"],
.formRow input[type="submit"] {
    -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
    box-shadow:inset 0px 1px 0px 0px #ffffff;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
    background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
    background-color:#ededed;
    -webkit-border-top-left-radius:6px;
    -moz-border-radius-topleft:6px;
    border-top-left-radius:6px;
    -webkit-border-top-right-radius:6px;
    -moz-border-radius-topright:6px;
    border-top-right-radius:6px;
    -webkit-border-bottom-right-radius:6px;
    -moz-border-radius-bottomright:6px;
    border-bottom-right-radius:6px;
    -webkit-border-bottom-left-radius:6px;
    -moz-border-radius-bottomleft:6px;
    border-bottom-left-radius:6px;
    text-indent:0;
    border:1px solid #dcdcdc;
    display:inline-block;
    font-family:arial;
    font-size:14px;
    font-style:normal;
	height: 32px;
	width: 97px;
    text-decoration:none;
    text-align:center;
    text-shadow:1px 1px 0px #ffffff;
	margin: 30px 0px 5px 5px;
	cursor: pointer;
}
.formRow input[type="button"] {
    margin-top: 0px !important;
}

.formRow input[type="button"]:hover,
.formRow input[type="submit"]:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
    background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
    background-color:#dfdfdf;
}

.formRow input[type="button"]:active,
.formRow input[type="submit"]:active {
    position:relative;
    top:1px;
}

/* End Form Styles */


/* Table Styles */
table.index {
    width: 98%;
}
table.index tr {
    height: 34px;
}
table.index th,
table.index tr,
table.index td {
    text-align: left;
    font-size: 14px;
}
table.index td {
    font-size: 14px;
}
table.index tr.even {
    background-color: #E5E5E5;
}

table.index th,
table.index td {
    text-align: left;
    padding: 5px 0px 5px 15px;
}
table.index td.actions {
    text-align: right;
    padding-right: 5px;
}
table.index td.actions span {
    margin: 5px 5px 0px 6px;
}

img.icon {
    border: 0px;
}
/* End Table Styles */


/* List Styles */
ul, ol {
	margin: 0 0 12px 30px;
	padding: 0;
}

ul ul, ol ol, ol ul {
	margin: 0 0 0 30px;
}

ul ul, ol ul {
	list-style: disc;
}
/* End List Styles */





/* Footer Styles */
#cpFooter {
	text-align: center;
	font-family: arial, helvetica, verdana;
	font-size: 12px;
}

#cpFooter .gapColor {
	border-top: 1px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
}

#cpFooter a {
	color: #000000;
	text-decoration: none;
}

#cpFooter a:hover {
	text-decoration: underline;
}

#cpFooter p {
	padding: 10px 0 0;
}

#cpFooter .copyright {
	font-size: 12px;
}
/* End Footer Styles */





/* Login Form Styles */
#cpLoginLogo {
	display: block;
	margin: 50px auto 0;
}
#cpLogin {
	width: 250px;
	margin: 30px auto;
	padding: 10px;
	background: #EBEBEB url('../images/cp-login-gradient.png') repeat-x;
	border: 1px solid #DDD;
}

#cpLogin form {
	margin: 0;
}

#cpLogin fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

#cpLogin legend {
	display: none;
}

#cpLogin label {
	display: block;
	width: 230px;
	padding: 10px 0 0;
	font-size: 14px;
	color: #777;
}

#cpLogin input[type="text"], #cpLogin input[type="password"] {
	background: #FFFFFF url('../images/cp-login-input-bg.png') repeat-x;
	border: 1px solid #DADADA;
	font-size: 14px;
	padding: 5px;
	width: 238px;
}

#cpLogin input[type="submit"] {
	line-height: 200px;
	overflow: hidden;
	font-size: 0;
	border: 0;
	width: 106px;
	height: 46px;
	background: url('../images/cp-login-button.png') top left;
	cursor: pointer;
	margin: 12px 72px -5px;
}

#cpLogin a {
	float: left;
	margin: 23px 0 0 10px;
	font-size: 14px;
	color: #555;
	text-decoration: none;
}

#cpLogin a:hover {
	color: #000;
	text-decoration: underline;
}
/* End Login Form Styles */


/* Paginator Styles */
.pagination {
    clear: both;
    padding-bottom: 10px;
    padding-top: 10px;
}
.pagination a {
    border: 1px solid #D5D5D5;
    color: #666666;
    font-size: 11px;
    font-weight: bold;
    height: 25px;
    padding: 4px 8px;
    text-decoration: none;
  margin:2px;
}
.pagination a:hover, .pagination a:active {
    background:#efefef;
}
.pagination span.current {
    background-color: #687282;
    border: 1px solid #D5D5D5;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    height: 25px;
    padding: 4px 8px;
    text-decoration: none;
    margin:2px;
}
.pagination span.disabled {
    border: 1px solid #EEEEEE;
    color: #DDDDDD;
    margin: 2px;
    padding: 2px 5px;
}
/* End Paginator Styles */

/* Do Not Modify */
html, body {
	height: 100%;
	margin: 0;
}

#cpHeader {
	width: 975px;
	margin: 0 auto;
}

#cpFooter {
	clear: both;
	width:975px;
	margin: 0 auto;
}

#cpHeaderContent, #cpContainer, #cpFooterContent {
	width: 975px;
	margin: 0 auto;
}

#cpNavigation {
	display: inline;
	float: left;
	width: 199px;
	margin-left: 1px;
}

#cpContent {
	display: inline;
	float: right;
	width: 735px;
	margin: 10px 20px 20px 0;
}

#cpWrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -80px;
	width: 975px;
}

#cpFooter, #cpPush {
	height: 80px;
}
/* End Do Not Modify */
