﻿/*----------------------------------------------------------
PLMVC.css
----------------------------------------------------------*/
/* Styles from PTL that supplement ours */
/* Eric Meyer's CSS Reset */
/* Removes automatic browser treatments of elements
   so we can safely apply our own. Promotes consistency. */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.25;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0px;
}
/* End of Eric Meyer's CSS Reset */

/* Penske's Internal Common CSS*/

  /* Primary headlines */
h1, .ui-dialog-title{
	color: #828282;
	font-size: 21px;
	font-weight: normal;
}

h1.pageTitle{
	color: #2D73CF;
	font-size: 21px;
	font-weight: normal;
}
	
  /* Secondary headlines*/
h2{
	color: #828282;
	font-size: 16px;
	font-weight: normal;
}

fieldset > h2{
	margin: 0px;
}

fieldset label{
	font-weight: normal;
}
	
  /* Form field labels, table column headers */
h3{
	color: #454545;
	font-size: 13px;
	font-weight: bold;
}
  
.fine  {
	color: #666666;
	font-size: 11px;
	font-weight: normal;
}

.evenRow .fine, .even .fine, .oddRow .fine, .odd .fine{
	color: #454545;
}

p{
	color: #454545;
	font-size: 13px;
	font-weight: normal;
}

p, li {
  line-height: 130%;
}

	/* Line */
hr{
	color: #E7E7E7;
	background-color: #E7E7E7;
	height: 1px;
	border: none;
}

fieldset{
	border: 1px solid #E7E7E7;
	padding-left:5px;
	padding-top: 5px;
}

legend{
	color: #454545;
	font-size: 13px;
	font-weight: bold;
}

/* Used for one column display */
.oneColumn{
	border: 1px solid black;
	height: 95%;
	width: 95%;
}

.twoColumnContainer{
	display: inline-block;
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	width: 49.5%;
	padding-left:5px;
}

.threeColumnContainer{
	display: inline-block;
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	width: 33%;
	padding-left:5px;
}

.fourColumnContainer{
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	width: 24.5%;
	padding-left:5px;
}

body, dd {
	font-size: 13px;
	padding: 0px;
	margin: 4px;
	border: 0px 0px 0px 5px;
	font-family: Arial,Verdana;
	color: #454545;
	font-weight: normal;
}

table{
	border-collapse: collapse;
	empty-cells: show;
}

.handCursor{
	cursor: pointer;
	cursor: hand;
}

.notification{
	color: #FF6319;
	font-weight: bold;
	background: transparent url(/Shared/Images/Standard/email.png) center left no-repeat;
	padding-left: 14px;
}
.notification.alert {
	background-image: url(/Shared/Images/Standard/email_new.png);
}

a {
	color: #2D73CF;
	text-decoration: underline;
	font-size: inherit;
}

a:visited {
	color: #5B46A1;
}

a:hover {
	color: #4159AF;
}

.lastSpacer{
	width: 40%;
}

.evenRow, .even{
	background-color: #EBEBEB;
	height: 35px;
}

.oddRow, .odd, .oddRowNoBorder, .oddNoBorder{
	height: 35px;
}

.secondaryRow{
	margin-top: -10px !important;
}

.secondaryRowWindow{
	margin-top: -2px !important;
}

td, th {
  padding: 1px;
}

.tableLeftBorder{
	border-left: 1px solid white;
}
.tableRightBorder{
	border-right: 1px solid white;
}
.tableBottomBorder{
	border-bottom: 1px solid white;
}
.tableTopBorder{
	border-top: 1px solid white;
}
.tableBorder{
	border: 1px solid white;
}

.evenRow td,.oddRow td, .even td, .odd td{
	text-align: left;
	font-size: 13px;
	color: #454545;
	height: 35px;
}

.oddRowNoBorder td, .oddRowNoBorder td{
	text-align: left;
	font-size: 13px;
	color: #333333;
}

/* For use when we have an editable field in the first column, we want a right border*/
td.editable{
	border-right: 1px solid #CECECE;
	padding: 0px !important;
	white-space: nowrap;
}

.borderLeft{
	border-left: 20px solid #E7E7E7;
}

.borderRight{
	border-right: 20px solid #E7E7E7;
}

.borderTop{
	border-top: 20px solid #E7E7E7;
}

.borderBottom{
	border-bottom: 20px solid #E7E7E7;
}

.fullBorder{
	border: 20px solid #E7E7E7;
}

.marginLeft{
	margin-left:10px;
}

.hint{
	color: #454545;
	font-style: italic;
	font-size: 11px;
	padding-left: 5px;
}

.popupContent{
	padding-left: 10px;
	margin-right: 10px;
}	

textarea{
	background-color: #FFFFFF;
	font-style: normal;
	font-size: 13px;
	color: #454545;
	font-family: Arial,Verdana;
}

th{
	text-align: left;
	font-size: 13px;
	font-weight: bold;
	background-color: #CDCDCD;
	vertical-align: bottom !important;
	padding-top: 7px !important;
	padding-bottom: 7px !important;
}

td{
	font-size: 13px;
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
}

.textAreaLabel{
	font-size: 13px;
	font-weight: bold;
	color: #454545;
}

textarea,select,input[type="text"]{
	border: 1px solid #ABABAB;
}

input[type="text"]{
	font-size: 13px;
	font-style: normal;
	color: #454545;
	background-color: #FFFFFF;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0;
  vertical-align: middle;
}

input[type="radio"]{
	margin-right: 10px;
}

input[type="checkbox"] {
  margin-right: 4px;
}

input[type="text"], select{
	margin-bottom:10px;
}
input[type="file"],input[type="file"]:focus{
	outline-width: 0px;
}

.textLabel{
	font-size: 13px;
	color: #454545;
	font-family: arial,verdana;
	font-weight: normal;
}

label{
	font-weight: bold;
	font-size: 13px;
	color: #454545;
	margin-right: 10px;
}

dt{
	font-weight: bold;
	font-size: 13px;
	color: #454545;
	margin-right: 10px;
	white-space: nowrap;
	float: left; 
	clear: left; 
	text-align: right; 
}

.supportingTextLabel{
	font-size: 12px;
	font-style: italic;
	color: #454545;
}

input[type="text"][disabled] {
	font-style: italic;
	font-size: 13px;
	color: #454545;
	background-color: #FFFFFF;
}

	/* Used for Text Inputs which have validation errors */
.textFieldError{
	font-style: normal;
	font-size: 13px;
	color: #454545;
	background-color: #F7D9D9;
}

.errorMsgInput{
	font-size: 13px;
	color: #454545;
	background-color: #F7D9D9 !important;
}

.requiredField{	
	font-weight: bold;
	font-size: 13px;
	color: #CC0000;
	padding-right: 2px;
}

.buttonPrimary, input[type="submit"]{
	font-size: 13px !important; 
	font-weight: bold;
	color: #FFFFFF !important;
	text-decoration: none !important;
	background-color: #69BC28;
	padding: 5px;
	display: -moz-inline-box; /* Needed to use the min-width */
	display: inline-block; /* Needed to use the min-width */
	min-width: 100px;
	text-align: center;
}

.buttonPrimary:hover, input[type="submit"]:hover{
	text-decoration: underline !important;
}

.buttonSecondary, input[type="reset"], input[type="button"], button{
	font-size: 13px !important; 
	font-weight: bold;
	color: #FFFFFF !important;
	text-decoration: none !important;
	background-color: #2D73CF;
	padding: 5px;
	display: -moz-inline-box; /* Needed to use the min-width */
	display: inline-block; /* Needed to use the min-width */
	min-width: 100px;
	text-align: center;
}

button.ui-button-icon-only 
{
    min-width: 0;
}

.buttonSecondary:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover{
	text-decoration: underline !important;
}

.buttonDisabled{
	font-size: 13px !important; 
	font-weight: bold;
	color: #454545 !important;
	text-decoration: none !important;
	background-color: #CECECE;
	padding: 5px;
	display: -moz-inline-box; /* Needed to use the min-width */
	display: inline-block; /* Needed to use the min-width */
	min-width: 100px;
	text-align: center;
	cursor: default;
}

.buttonDisabled:hover{
	font-size: 13px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #CECECE;
	text-decoration: none !important;
	cursor: default;
}

.secondaryLink {
	color: #2D73CF !important;
}

	/* Used for Error Text below invalid text input */
.errorMsg{
	color: #CC0000;
	font-size: 11px;
	font-weight: bold;
}

.centerAlign,.centerAlign td{
	text-align: center !important;	
}

.rightAlign,.rightAlign td{
	text-align: right !important;	
}

.topAlign{
	vertical-align: top;	
}

.leftAlign{
	text-align: left !important;	
}

.inline{
	display: inline;
}

.displayNone, .hidden{
	display: none;
}

.displayBlock{
	display: block;
}

/* For accordion control, underline link when hovered */
h3.ui-state-default:not(.ui-state-active)  > a:hover{
	text-decoration: underline;
	font-weight: bold;
}

.ui-datepicker-trigger {
	margin-left: 3px;
	position: relative;
	top: 6px;
	cursor: pointer;
	cursor: hand;
	width: 22px;
	height: 24px;
}

.ui-timepicker-trigger {
	margin-left: 3px;
	position: relative;
	top: 6px;
	cursor: pointer;
	cursor: hand;
}              

option:hover
{
	background: #0073CF;
	color: #FFFFFF;
}

option,select{
	background-color: #FFFFFF;
	color: #454545;
}

.leftMargin{
	margin-left: 10px;
}

.rightMargin{
	margin-right: 10px;
}

.leftPad{
	padding-left: 10px;
}

.rightPad{
	padding-right: 10px;
}

.floatRight{
	float: right;
}

.floatLeft{
	float: left;
}

.bold{
	font-weight: bold;
}

pre{
	font-family:Arial,Verdana;
}

#wizardContainer{
	border: 2px solid black;
	padding: 5px;
	width: 50%;
	height: 350px;
}

span.addRow{
	margin-bottom: 5px;
}

.expandedImage{
	background: url('/Shared/Images/Standard/expanded.png') no-repeat center left;
	padding-left: 12px;
}
			
.collapsedImage{
	background: url('/Shared/Images/Standard/collapsed.png') no-repeat center left;
	padding-left: 12px;
}

/* gets rid of funky border in IE when images are wrapped in anchors*/
a img {
	border: none;
}

/* jQuery tablesorter/tablescroll modifications to show our sort images */
table.tablescroll_head > thead > tr > th, table.tablesorter > thead > tr > th{
	height: 35px;
	
}

table.tablescroll_body > tbody > tr > td, table.tablesorter > tbody > tr > td  {
	height: 35px;
	
}

th.headerSortUp,th.headerSortDown{
	padding-right: 6px;
}

div.tablescroll_wrapper > table.tablescroll_body > tbody > tr > td{
	
	
}

table.tablescroll_head thead tr .headerSortUp {
	background-image: url(../images/ascending.png);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablescroll_head thead tr .headerSortDown {
	background-image: url(../images/descending.png);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}

table.tablesorter thead tr .headerSortUp {
	background-image: url(../images/ascending.png);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter thead tr .headerSortDown {
	background-image: url(../images/descending.png);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}

/* END jQuery tablesorter/tablescroll modifications to show our sort images */

/* START data tables css mods*/

.sorting_asc {background-image: none !important;}
.sorting_asc:after {
	background: url('../images/ascending.png') no-repeat center left !important; 
	content: " " !important;
	height: 17px !important;
	width: 30px !important;
	position:absolute !important;
}
.sorting_desc {background-image: none !important; }
.sorting_desc:after {
	background: url('../images/descending.png') no-repeat center left !important; 
	content: "" !important;
	height: 17px !important;
	width: 30px !important;
	position:absolute !important;
}

div.dataTables_scrollBody > table > thead > tr > th.sorting_desc:after, div.dataTables_scrollBody > table > thead > tr > th.sorting_asc:after {
	background:none !important; 
}

/* END data tables css mods*/

/* The below are modifications to the jQuery UI themeroller CSS for the calendar control */

td > a.ui-state-default{
	background: none !important;
	color: #666666 !important;
	border: none !important;
}

td > a.ui-state-hover{
	color: #ffffff !important;
	border: none !important;
	background-color: #2d73cf !important;
}

.ui-datepicker-calendar th{
	background-color: white !important;
	color: #666666 !important;
}

.ui-datepicker-prev > span.ui-icon-circle-triangle-w{
	background-position: 0px !important;
	background-image: url(../images/previous.png) !important;
}

.ui-datepicker-next > span.ui-icon-circle-triangle-e{
	background-position: 0px !important;
	background-image: url(../images/next.png) !important;
}

.ui-datepicker-prev-hover {
	background-position: 0px;
	background-image: url(../images/previous.png);
	background-color: #ffffff !important;
	border: 1px solid #ffffff !important; 
	background: none !important;
}

.ui-datepicker-next-hover {
	background-position: 0px;
	background-image: url(../images/next.png);
	background-color:#ffffff !important;
	border: 1px solid #ffffff !important; 
	background: none !important;
}

.ui-datepicker-month, .ui-datepicker-year{
	color: #666666;
}

a.ui-state-hover > span.ui-icon-circle-triangle-w{
	background-color: #ffffff !important;
	background-image: none;
}

a.ui-state-hover > span.ui-icon-circle-triangle-e{
	background-color: #ffffff !important;
	background-image: none;
}

button.ui-datepicker-close {
	display: none;
}

button.ui-datepicker-current {
	position: relative;
    top: 50%; 
    left: 35%;
	background: none !important;
	color: #2D73CF !important;
	border: none !important;
	text-decoration: underline;
}

div.ui-datepicker-buttonpane{
	border: none;
	text-align: center;
}

div.ui-datepicker-buttonpane > button{
	position: relative;
	left: 60px;
}

td.ui-datepicker-unselectable  > span{
	background: none !important;
	border: none !important;
	color: #666666 !important;
}

div#ui-datepicker-div {
  -moz-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
  -webkit-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
  -ms-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
  -o-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
  box-shadow: 0px 5px 5px rgba(0,0,0,.3);
  border-radius:0;
  margin-top:3px;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    width: auto !important;
}

/* END jQuery UI calendar control modifications */

/* Used to vertically center images in BOTH IE/FF */
.centerImage{
	position: relative;
	top: 2px;
}

/* CSS to override menu bar, i.e. "Select Language" */
div.menu > ul > li > a{
	text-decoration: underline;
	font-size: 11px;
}

div.menu > ul > li.active > a{
	text-decoration: none !important;
}

.active ul a{
	text-decoration: none;
	font-size: inherit;
	font-size: 11px;
	background-color: #F3F3F3;
	color: #666666;
}

.active a {
	background-color: #F3F3F3 !important;
}

.active ul a:hover{
	text-decoration: underline !important;
}

/* Decreases the space between items in a menu */
li.active > ul > li > a{
	margin-top: -8px !important;
}

.collapsed {
	background-image: url(/Shared/Images/Standard/collapsed.png);
	background-repeat: no-repeat;
	background-position: 93px 5px;
	cursor: pointer;
	padding-right: 11px !important;
}

.collapsed:hover {
	background-color: white !important; 
}

/* Menu is clicked on and currently expanded */
li.active a.collapsed {
	background-color: #F3F3F3 !important; 
	background-image: url(/Shared/Images/Standard/expanded.png);
	background-repeat: no-repeat;
	background-position: 89px 10px !important;
	padding-right: 13px !important;
}

li.active a.collapsed:hover {
	background-color: #F3F3F3 !important; 
}

li.active a.collapsed{
	background-position: 93px 8px;
	position: relative;
}

div.menu{
	position: relative;
	top: -4px;
}

/* END menu bar CSS */

/* Start custom css for jQuery UI tabs*/

div.ui-tabs-panel{
	background-color: white !important;
}

li.ui-state-default{
	background: none !important;
	background-color: #F3F3F3 !important;
	color: #2D73CF !important;
	border: 0px !important;
}

li.ui-state-default a{
	color: #2D73CF !important;
}

li.ui-tabs-selected{
	background: none !important;
	background-color: #2D73CF !important;
	border: 0px !important;
}

li.ui-tabs-selected a{
	color: #FFFFFF !important;
}

div.ui-tabs > div.ui-tabs-panel{
	border-top: 5px solid #2D73CF;
	margin-left: 3px ;
	position: relative;
	top: -1px;
}

/* End custom css for jQuery UI tabs*/

/* Class for info/error style modal window */
.infoModal .ui-dialog-titlebar,
.errorModal .ui-dialog-titlebar {
  background-image: none;
  height: 16px;
  padding: 0;
}
.infoModal .ui-dialog-title,
.errorModal .ui-dialog-title {
  margin: 0;
}
.infoModal .ui-dialog-titlebar {
  background-color: #2D73CF;
}
.errorModal .ui-dialog-titlebar {
	background-color: #C8050A;
}
.errorModal .ui-widget-header .ui-icon,
.infoModal .ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}
.errorModal .ui-dialog-titlebar-close,
.infoModal .ui-dialog-titlebar-close {
  margin-top: -10px;
}
.infoModal.ui-corner-all, .infoModal .ui-corner-all,
.errorModal.ui-corner-all, .errorModal .ui-corner-all {
  -moz-border-radius: 0; -webkit-border-radius: 0; -khtml-border-radius: 0; border-radius: 0;
}
.infoModal p, .errorModal p {
  margin-left: 30px;
}
.infoModal .ui-dialog-content,
.errorModal .ui-dialog-content {
  background-repeat: no-repeat;
  background-position: 1em 1em;
}
.infoModal .ui-dialog-content {
  background-image: url(/Shared/Images/Standard/information.png);
}
.errorModal .ui-dialog-content {
  background-image: url(/Shared/Images/Standard/warning.png);
}
.ui-dialog {
	margin-top: 10%;
	-moz-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
	-webkit-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
	-ms-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
	-o-box-shadow: 0px 5px 5px rgba(0,0,0,.3);
	box-shadow: 0px 5px 5px rgba(0,0,0,.3);
	padding: 0;
}
.ui-dialog .ui-dialog-titlebar-close
{
    margin-right: 6px;
}
.errorModal .ui-widget-header,
.infoModal .ui-widget-header,
.errorModal.ui-widget-content,
.infoModal.ui-widget-content {
  border: none;
}
.errorModal .ui-dialog-content,
.infoModal .ui-dialog-content {
  padding: 1em;
}

.popupModalMargin{
	padding-top: 4px;
}
.dataTables_filter{
	padding-bottom: 5px;
}
.dataTables_info{
	padding-top: 5px;
}

/* Scrolling portion of DataTable, we do not want to have padding on our "invisibile" th */
div.dataTables_scrollBody > table.dataTable > thead > tr > th{
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

/* File upload*/
.fileInputTextbox{
	float: left
}
.fileInputSpan{
  position: relative; 
  min-width: 100px; 
  height: 23px; 
  overflow: hidden;
}
.fileInputHidden{
  font-size: 23px; 
  position: absolute; 
  right: 5px; 
  top: -6px; 
  opacity: 0; 
  
  filter: alpha(opacity=0); 
  -ms-filter: "alpha(opacity=0)"; 
  -khtml-opacity: 0; 
  -moz-opacity: 0;
}
.fileInputButton{
	position: relative; 
	top: -2px;
	margin-left:3px;
}
/* End File upload */

/* fix the timepicker to display on top of modal dialogs */
#CP_hourcont {
  z-index: 999999;
}
/* End of styles from PTL 
-------------------------------------------------------------------------*/

/* Defaults */
body
{
    background-color: #808080;
    font-size: 13px;
    font-family: Arial, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    border: 0 none;
    color: #454545;
}

body.qa
{
    background-color: #634f80;
}

body.development
{
    background-color: #64804e;
}

body.production
{
    background-color: #808080;
}

a img
{
    border: 0 none;
    text-decoration: none;
}

p
{
    margin-top: 1em;
}

/* Primary headlines, application name inside content area */
h1
{
    margin-top: 0.67em;
}

/* Secondary headlines*/
h2
{
    margin-top: 0.83em;
}

fieldset > h2
{
    margin: 0px;
}

/* Form field labels, table column headers */
h3
{
    margin-top: 1em;
}

/* Header Text, Footer Text */
h4, h5, h6
{
    color: #666666;
    font-size: 11px;
    font-weight: normal;
    margin-top: 1em;
}

/* Line */
hr
{
    color: #E7E7E7;
    background-color: #E7E7E7;
    height: 1px;
    border: none;
}

fieldset
{
    font-weight: bold;
    font-size: 13px;
    color: #454545;
    border: 1px solid #E7E7E7;
    padding-left: 5px;
    padding-top: 5px;
}

header, footer, nav, section
{
    display: block;
    clear: both;
}

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page
{
    width: 94%;
    min-width: 1024px;
    margin: 0px auto 0px auto;
    padding-top: 0px;
    border-top: 0px none;
    background-color: #fff;
}

header, #header
{
    width: 100%;
    position: relative;
    margin: 0px;
    font-size: 11px;
    color: #666666;
    padding: 0;
}

#main
{
    padding: 0;
    width: 100%;
}

table#content
{
    border-style: solid;
    border-color: #E7E7E7;
    border-width: 20px;
    width: 100%;
}

td#main-content
{
    padding: 0;
    vertical-align: top;
    width: 100%;
}

td#main-content ul, td#main-content ol, td#main-content dl 
{
    margin-top: 1em;
}

.psk-content
{
    padding: 0 20px;
}

.psk-row-separator
{
    width: 100%;
    height: 20px;
    background-color: #E7E7E7;
    clear: both;
    margin: 15px 0;
}

footer, #footer
{
    background-color: #fff;
    color: #666666;
    padding: 2px 10px 0px 10px;
    text-align: left;
    line-height: normal;
    margin: 0px 0px 0px 0px;
    font-size: 11px;
    height: 25px;
}

/* Header and footer
----------------------------------------------------------*/

/* Default for NON co-branded application names*/
.applicationNameBig
{
    color: #2D73CF;
    font-size: 37px;
    font-style: normal;
    padding: 0 0 5px 0;
    margin: 0;
}
/* Use for co-branded application name or if application name is too large to fit with 37px*/
.applicationNameMedium
{
    color: #2D73CF;
    font-size: 28px;
    font-style: normal;
    padding: 5px 0 5px 0;
    margin: 0;
}
/* Use for application name when 37px/28px are too large*/
.applicationNameSmall
{
    color: #2D73CF;
    font-size: 24px;
    font-style: normal;
    padding: 7px 0 5px 0;
    margin: 0;
}

div.qa
{
    color: #522398;
}

div.development
{
    color: #69BC28;
}

div.production
{
    color: #2D73CF;
}

#penskeLogo
{
    float: left;
    height: 57px;
    width: 100px;
    margin-left: 20px;
    padding-top: 18px;
    padding-right: 0px;
    clear: left;
}

#penskeLogoBar
{
    float: left;
    height: 61px;
    margin-left: 20px;
    padding-top: 14px;
    width: 100px;
    clear: left;
}

#customerLogo
{
    float: left;
    clear: none;
    line-height: 75px;
    padding-right: 0px;
}

#customerLogo img
{
    vertical-align: middle;
}

#headerMid
{
    float: left;
    clear: none;
    height: 55px;
    padding: 10px 20px 10px 20px;
}

#headerRight
{
    float: right;
    clear: right;
    height: 68px;
    padding: 5px 10px 2px 20px;
}

#headerRight span, #headerRight a
{
    font-size: 11px;
}

#headerRight input[type="text"]
{
    font-size: 11px;
    margin-bottom: 0px;
}

#headerRight td
{
    text-align: right;
}

.nowrap
{
    white-space: nowrap;
}

.sepChar
{
    padding-left: 10px;
    padding-right: 10px;
}

.applicationMessage
{
    border: 1px solid #FF6319;
    clear: both;
    font-size: 11px;
    color: #FF6319;
    margin: 0 auto 5px auto;
    padding: 3px;
    text-align: center;
    width: 96%;
}

.padTop
{
    padding-top: 4px;
}

#leftFooter
{
    float: left;
    clear: left;
    padding-top: 4px;
}

#rightFooter
{
    float: right;
    clear: right;
}

#quickSearch
{
    float: right;
    text-align: left;
}

#quickSearch input[type="text"]
{
    width: 100px;
}

.notification
{
    color: #FF6319;
    font-weight: bold;
}

.customerMenu
{
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    position: relative;
    left: -10px;
    float: left;
    clear: left;
}

.languageMenu
{
    float: right;
    clear: right;
}

/* Used to vertically center images in BOTH IE/FF */
.centerImage
{
    position: relative;
    top: 2px;
}

table.penske-header
{
    border: 0 none;
    padding: 0;
    margin: 0;
    width: 100%;
}

table.penske-header tr
{
    max-height: 30px;
}

table.penske-header tr td
{
    border: 0 none;
    margin: 0;
    padding: 0;
    width: 100%;
    vertical-align: middle;
}

table.penske-header tr td.underlined
{
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 3px;
}

/* ClearChain Footer */
#ccFooter {
    height: 45px;
}

#ccLeftFooter {
    float: left;
    clear: left;
    padding-top: 4px;
    display: inline-block;
    vertical-align: middle;
}

#ccLogo {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

#ccRightFooter {
    float: right;
    clear: right;
    margin-top: 17px;
}

/* Navigation   
----------------------------------------------------------*/
ul.psk-nav
{
    white-space: nowrap;
}

ul#primaryNav
{
    border: 0 none;
    padding: 8px 0 6px 20px;
    position: relative;
    margin: 0;
    text-align: left;
}

ul#primaryNav li, ul#secondaryNav li
{
    display: inline;
    list-style: none;
}

ul#primaryNav li a
{
    padding: 6px 20px 7px;
    font-weight: bold;
    font-size: 13px;
    line-height: 17px;
    text-decoration: none;
    height: 30px;
    background-color: #F3F3F3;
    color: #666666;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
}

ul.psk-nav li a:hover
{
    text-decoration: underline !important;
}

ul#primaryNav li.selected a, ul#secondaryNav li.selected a
{
    background-color: #E7E7E7;
    color: #2D73CF;
}

ul#secondaryNav
{
    width: 100%;
    height: 17px;
    background-color: #E7E7E7;
    border: 0 none;
    padding: 10px 0 0 0;
    position: relative;
    margin: 0;
}

ul#secondaryNav li a
{
    padding: 0 0 0 40px;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    color: #666666;
}

td.tertiaryLinks
{
    vertical-align: top;
    width: 150px;
    background-color: #F3F3F3;
    overflow: visible;
    white-space: nowrap;
}

ul#tertiaryNav
{
    border: 0 none;
    padding: 15px 0px;
    position: relative;
    margin: 0;
    text-align: left;
}

ul#tertiaryNav hr
{
    width: 100%;
}

ul#tertiaryNav li
{
    list-style: none;
    height: 24px;
}

ul#tertiaryNav li a
{
    font-weight: normal;
    font-size: 13px;
    color: #666666;
    padding-left: 25px;
    text-decoration: none;
}

ul#tertiaryNav li a:hover
{
    text-decoration: underline;
}

ul#tertiaryNav li.selected a
{
    font-weight: bold;
    color: #2D73CF;
}

ul#tertiaryNav li.separator
{
    font-weight: bold;
    text-decoration: none;
    color: #454545;
    padding-left: 10px;
}

/* FORM LAYOUT ELEMENTS   
----------------------------------------------------------*/

fieldset
{
    padding: 0 1.4em 1.4em 1.4em;
    margin: 1.5em 0 1.5em 0;
}

textarea
{
    min-height: 75px;
    font-size: 13px;
    color: #454545;
    line-height: 17px;
}

select
{
    border: 1px solid #ccc;
    padding: 2px;
    font-size: 1.2em;
    color: #444;
}

/* MISC  
----------------------------------------------------------*/
.clear
{
    clear: both;
}

.error
{
    color: Red;
}

.email-count
{
    font-weight: bold;
    font-size: 12px;
    color: #FF6319;
}

.helper-disabled
{
    font-weight: normal;
    font-style: italic;
    font-size: 12px;
    line-height: 15px;
    color: #454545;
}

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error, label.error
{
    background-image: url('/Shared/Images/Standard/warning.png');
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 20px;
    color: #CC0000;
    font-weight: normal;
    font-style: italic;
    font-size: 11px;
    line-height: 13px;
}

.field-validation-valid
{
    display: none;
}

.input-validation-error, input.input-validation-error, input.error
{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors
{
    font-weight: bold;
    color: #CC0000;
}

.validation-summary-valid
{
    display: none;
}

/* Styles for editor and display helpers
----------------------------------------------------------*/
.display-label, .editor-label
{
    margin: 1em 0 0 0;
}

.display-field, .editor-field
{
    margin: 0.5em 0 0 0;
}

.text-box
{
    width: 30em;
}

.text-box.multi-line
{
    height: 6.5em;
}

.tri-state
{
    width: 6em;
}

/* Overrides for Timepicker
-----------------------------------------------------------*/
.ui_tpicker_time_label, .ui_tpicker_hour_label, .ui_tpicker_minute_label, .ui_tpicker_second_label, .ui_tpicker_millisec_label
{
    font-weight: bold;
    color: #454545;
}

/* Penske click menu styles */
.psk-menuItems
{
    min-width: 60px;
    max-width: 300px;
    font: 11px/17px Arial,sans-serif;
    display: none;
    z-index: 9999;
}
.psk-menuItems .ui-menu
{
    max-width: 300px;
}
.psk-menu
{
    padding: 4px 0px 0px;
    color: #2D73CF;
    height: 20px;
    text-align: left;
}
.psk-menu a:hover
{
    background-color: #fff;
}
.psk-menu a
{
    text-decoration: none;
    color: #2D73CF;
    outline: none;
    cursor: pointer;
}
.psk-menu ul
{
    list-style: none;
    margin: 0;
    padding: 0 0 0 10px;
}
.psk-menu ul li
{
    padding: 0;
    float: left;
}
.psk-menu ul li ul li
{
    padding: 0 20px 0 0;
    float: none;
    margin: 0 0 0 0px;
    width: 100%;
}
.psk-menu ul li ul
{
    position: absolute;
    border: 1px solid #C3D1EC;
    box-shadow: 0 1px 5px #CCCCCC;
    margin-top: -1px;
    padding: 0;
}
.trailingIcon
{
    margin-left: 5px;
    position: relative;
    top: 3px;
}
ul.psk-menubar > li > a
{
    background: url("/Shared/Images/Standard/collapsed.png") no-repeat right;
    padding-right: 10px;
    text-decoration: underline;
    font-size: 11px;
}
ul.psk-menubar > li.psk-menu-open > a
{
    background: url("/Shared/Images/Standard/expanded.png") no-repeat right;
    padding-right: 15px;
    text-decoration: none !important;
}
/* END Penske click menu styles */

/* Change customer */
div.psk-change-cust-link
{
    padding: 4px 0 0 5px; 
    float: left; 
    clear: none;
}

#cust-change-text
{
    width: 98%;
}