@charset "utf-8";
/*
Dark blue: 0000B2 button and 0000FF table
Green: 00B200
Purple: FF4DFF
Light blue: 5696DC
Light brown: EBD8D8
Dark brown:  583d39 (733022)
*/
body {
	background-color: #F9F9F9;
	margin: 0;
	padding: 0;
	color: #000000;
	font-family: Helvetica, Arial, sans-serif;
	line-height: 1.4;
}
.optional {font-weight:normal; font-style:italic;}
.required {font-weight:bold;}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	color:#000000;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
body h1 {font-size: 115%;}
body h2,h3 {font-size:100%;}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	/*max-width: 1463px; a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 380px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	/*background-color: #F9F9F9;
	margin: 5% auto;  the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
.dlg {font-size: 0.8em;}
.dlg7 {font-size: 0.7em;}
.dlgred {border: red solid;}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #DDD; /*  #F9F9F9; */
	height: 105px;
	/*width: 980px;
	max-width: 1260px; 
	min-width: 840px;*/
	margin: 0 auto;
	/*border-bottom: #CCC thin solid;
	border-left: #CCC thin solid;*/
}
/*#menu {float:right;}*/
.header img {margin-left:10%;}
/*@media handheld, screen {
#menu {position:absolute;top:45px; }
}*/
@media only screen and (min-width: 769px) {
.header {height: 75px;}
}

/* ~~ The footer ~~ */
.footer {
	height:auto;
	padding-top: 10px;
	background-color: #666; /*#F9F9F9;*/
	border-top: #CCC thin solid;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
.addbutton, .addmsg, .enqmsg, .movemsg, .callmsg, .search, .dtbutton, .sendbutton, .delbutton {
	border:none; 
	cursor:pointer;
	width: 24px;
	background-color:transparent;
	vertical-align: middle;
}
.delbutton {
	border:none; 
	cursor:pointer;
	width: 16px;
	background-color:transparent;
	vertical-align: top;
}
.send-mail, .send-shot, .renew, .event {
	border:none; 
	cursor:pointer;
	background-color:transparent;
	vertical-align: middle;
	padding-right: 3px;
}
.help {
	cursor:pointer;
}

.noscriptmsg { display:none; background-color:#FFF;}
#pageNav{
	float: right;
	position:fixed;
	top:160px;
	right:0px;
	padding: 0px;
	background-color:#DDD;
	border-radius: 5px 0px 0px 5px;
	border-left: 2px solid #cccccc;
	border-top: 2px solid #cccccc;
	border-bottom: 2px solid #cccccc;
	font: .9em Verdana,sans-serif;
}
#pageNav img{
	padding:0.5em;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 20%;
	background-color: #93A5C4;
	padding-bottom: 10px;
}
.sidebar2 {
	float: right;
	width: 26%;
	padding: 30px 2%;
}
.sidebarmenu {
	float:left;
	width: 17%;
	position:fixed;
	top:0px;
	left:0px;
	padding: 0px;
	z-index:1;
}
#contentfull {
	width:95%; 
	padding: 20px 0 0 40px; 
	min-width:410px; 
	min-height: 400px; 
	float:left;	
	margin-top:20px;
 }
 .content {
	width: 70%;
	float: left;
	margin-top:20px;
}
.contentsys {
	width: 80%;
	float: left;
	margin-left:20%;
}

.contentusp {
	position: relative;
	width: 930px;
	padding: 20px 0px 20px 50px;
	margin-top: 20px;
	color: #000000;
	border-top: #CCC thin solid;
	border-bottom: #CCC thin solid;
	/*border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-box-shadow: 5px 5px 10px gray;
	-webkit-box-shadow: 5px 5px 10px gray;
	box-shadow: 5px 5px 10px gray;*/
	font-weight: normal;
	font-size: 16px;
}
.contentusp li {
	margin:0px 0px 5px 5px;;
}
.contentbottom {
	position: relative;
	float:left;
	width: 100%;
	min-height:200px;
	background-color:#FFF;	
}
.projbox {
	margin: 0 5%;
}
.projectpanel {
	width: 400px;
	height: 180px;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 20px;
	margin: 20px;
	position:relative;
	float:left;
	background-color:#fff;
}
.projectpanel img {
	height:150px;
	width: 200px;
	float:left;
	padding-right:15px;
}
.projectpanel th, .projectpanel td {padding:0px;}
.intropanel {
	width:880px;
	height:300px;
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 20px;
	margin: 20px;
	position:relative;
	float:left;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content p {padding: 0px 15px 0px 15px;}
.content ul { 
	padding: 0px 15px 15px 0px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
.content ol {
	padding:0px 5px 15px 40px;
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	background-color: #8090AB;
	color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #6F7D94;
	color: #FFF;
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/* Form layouts */
input, textarea, select {
	border:#ccc thin solid;
	border-radius: 3px;
	padding-left: 3px;
}
input, select {height:28px; }
.chk {
	/*width:20px;*/
	height:20px; 
	vertical-align:middle; 
	-moz-transform: scale(1.5);
}
.freginput {
	border:#ccc thin solid;
	border-radius: 3px;
	padding-left: 3px;
	background-color: #FFF;
	vertical-align: middle;
	font-size: .9em;
}
.dbl {background-color: #ccfd72; }
.inputfile {
	border:#ccc thin solid;
	border-radius: 3px;
	padding-left: 3px;
	height:20px;
}
.fcolhdr { 
	text-align:left;
	font-weight:normal;
	color: #666; 
	width:15%;
}
.fcolmiddle {
	color:red; 
	width:30px; 
	text-align:right;
	vertical-align:middle;
}
.fcolmiddle img, .fcolmiddle a img {float:left;padding-left:3px;}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number] {
    -moz-appearance:textfield;
	width: 5em;
}
.nr {text-align:right; width:90px;}
.sp {width: 30px;display: inline-block;padding:0 10px;}

/* Table layouts */

#datasys, .datasys, #data, .data  {
	width:95%; 
	border:none; 
	margin:auto; 
	padding:0;
	float:left;
	/*display:contents;*/
	/*font-size:90%;*/
}
.datalist {
	width:100%; 
	border:none; 
	margin:auto; 
	padding:0;
}
.block { display:inline-block; }
th, td {padding:3px;}
td p {padding:0px;}
.thl {text-align:left;}
.thr, .tdr {text-align:right;}
.tdc {text-align:center;}
.tdm {vertical-align:middle;}
.tdt {vertical-align:top;}


/* Buttons */
ul.pledgebutton, ul.backbutton, ul.formbutton {
	padding:0px;
	text-align:center;
}
ul.pledgebutton li, ul.pledgebutton button, ul.backbutton li, ul.backbutton button {
	list-style:none;
	float:right;
}
ul.formbutton li, ul.formbutton button {
	list-style:none;
	float:left;	
	margin: 0px 10px;
}
ul.pledgebutton a, ul.pledgebutton button, ul.backbutton a, ul.backbutton button, ul.formbutton li a, 
ul.formbutton button, ul.formbutton a, .formbutton {
	display: block;
	cursor: pointer;
	padding: 0.3em 0.75em;
	width: 140px;
	color: #FFF;
	font-weight:bold;
	font-size:14px;
	text-decoration: none;
	background-color: #00B200; /* GREEN */
	background-image: url(/SpryAssets/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position:95% 50%;
	/*box-shadow: 5px 5px 5px #888888;*/
	border-radius: 5px;
}
ul.formbutton li button {
	border: none;
	padding: 10px;
	margin: 0px 10px;
	width: 160px;
	text-align: left;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.pledgebutton a:hover, ul.pledgebutton a:focus, ul.pledgebutton button:hover, ul.pledgebutton button.focus,
 ul.formbutton a:hover, ul.formbutton a:focus, ul.formbutton button:hover, ul.formbutton button:focus,
 .formbutton:hover
{
	color: #FFF;
	background-color: #0000B2; /* BLUE */
	background-image: url(/SpryAssets/SpryMenuBarRightWhite.gif);
	-webkit-transition: background-color 400ms ease 200ms;
	-moz-transition: background-color 400ms ease 200ms;
	-ms-transition: background-color 400ms ease 200ms;
	-o-transition: background-color 400ms ease 200ms;
	transition: background-color 400ms ease 200ms;
}
.formbutton {display:inline;}
ul.backbutton a, ul.backbutton button {
	width: 200px;
	color: #FFF;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.backbutton a:hover, ul.backbutton a:focus, ul.backbutton button:hover, ul.backbutton button.focus
{
	color: #FFF;
	background-color: #0000B2; /*#6F9;*/
	background-image: url(/SpryAssets/SpryMenuBarRightWhite.gif);
	-webkit-transition: background-color 400ms ease 200ms;
	-moz-transition: background-color 400ms ease 200ms;
	-ms-transition: background-color 400ms ease 200ms;
	-o-transition: background-color 400ms ease 200ms;
	transition: background-color 400ms ease 200ms;
}

/* End buttons */
/* ---- sidepanels ---*/
.tdtop {
	border:#333 2px solid;
	border-radius:10px; 
	background-color:#EEE;
	font-size:18px; 
	padding-left: 20px;
	font-size: 100%;
}
.tdtop h2 {
	font-size:125%;
}

.tdtot {border-top: #000 solid 1px}
.tdtotr {text-align:right; border-top:#000 solid 1px;}
.tdmain {
	border:#ddd 1px solid;
	border-radius:5px;
    background-color: #DDD;
    color: #000; /*#583d39;*/
    padding: 2px 2px 2px 2px;
    text-align:left;
    font-size: 16px;
	font-weight:bold;
}
.tdmain p {
	padding: 0px 10px 0px 15px;
	font-size:14px;
	font-weight:normal;
}
.tdmain h1,.tdmain h2, .tdmain h3 {padding-left:15px;}
.tdmast {
    background-color: #B1CBE4;
    color: #000000;
    padding: 2px 2px 2px 2px;
    text-align:center;
    font-size: 14px;
	font-weight:bold;
    border-bottom: 1px solid #0000FF;
}
.tdhead {height:22px;}
.tdhead a {
    background-color:#99FFFF;
    border-bottom: #003366 1px solid;
    color: #00008B;
    font-weight: normal;
    font-size:11px;
    padding: 2px ;
    text-align: center;
	text-decoration: none;
	display:inline-block;
	width:110px;
}

.tdhead a:hover {
	background-color: #FFFF99;
	color:#330099;
	font-size:12px;
	font-weight: bold;
	text-decoration: none;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  visibility: hidden;
  /*width: 120px;*/
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 5px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 12px;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}
label { display:block;  }
textarea { margin-bottom:12px; width:95%; padding: .4em; }
fieldset { padding:0; border:0; margin-top:10px; }
div#reply-form,div#add-form,div#enq-form,div#move-form,div#add-svc,div#search-form,div#date-form,div#prior-form,div#renew-form {font-size:12px;}
div#users-contain { width: 350px; margin: 20px 0; }
div#users-contain table { margin: 1em 0; border-collapse: collapse; width: 100%; }
div#users-contain table td, div#users-contain table th { border: 1px solid #eee; padding: .6em 10px; text-align: left; }
.ui-dialog .ui-state-error { padding: .3em; }
.ui-button {width: auto;}
.validateTips { border: 1px solid transparent; padding: 0.3em; color:red; }
