@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	background-color: #42413C;
	background-image: url(../images/bodyBG.jpg);
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
}
#noScirpt {
	color: #FAE4B3;
	background-color: #863808;
}
#hulkTable {
	background-color: #F7E3C4;
	padding: 4px;
	width: 600px;
	margin-right: auto;
	margin-left: auto;
	border: 4px groove #963;
}
#hulkTable thead tr {
	background-color: #764F27;
	color: #EFE6AF;
}

.tableHover {
	background-color: #FBF0DF;
}

.rowHover {
	color: #FF0;
	background-color: #482E06;
}


.rowClick {
	color: #483017;
	background-color: #CBAE63;
}


.sidebar1 h2 {
	background-color: #633503;
	color: #F0DBA6;
	text-align:center;
	
	border-radius: 15px 15px 5px 5px; 
	-moz-border-radius: 15px 15px 5px 5px; 
	-webkit-border-radius: 15px 15px 5px 5px; 
	border: 0px solid #800000;
}



/* ~~ 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, p {
	margin-top: 0; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
.sidebar1 h3    {
	margin-top: 12px;
	margin-bottom: 0px;
}
.sidebar1 hr {
	margin-top: 4px;
	margin-bottom: 4px;
}
.sidebar1 form #getRateSubmitBtn {
	display: block;
	font-size:.9em;
	margin-top: 10px;
	background-color: #F4D5A7;
}

.sidebar1 form #getEmailBtn {
	font-size:.9em;
	margin-top: 10px;
	background-color: #F4D5A7;
}

.topPage {
	font-style: italic;
	font-weight: bold;
	font-size: 0.8em;
	color: #003;
	text-align: right;
	margin-left: 10px;
	margin-bottom:20px;
}

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: #42413C;
	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: #6E6C64;
	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 fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	margin-top: 15px;
	margin-bottom: 10px;
		
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks 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 block 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 block element and place a second block element 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 block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element'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 blocks 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 left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: right;
	width: 288px;
	background-color: #FDE7B3;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border: 4px groove #B55228;
	box-shadow:4px 4px 4px #A8881D;
	font-size: .9em;
	padding-bottom: 10px;
	padding-right: 6px;
	padding-left: 6px;
	padding-top: 10px;
	margin-bottom: 10px;
}
.sidebar1 img {
	margin-right: 0px;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
	padding: 2px;
}

.content {
	width: 620px;
	float: right;
	background-color: #FFF;
	margin-right: 10px;
	padding-top: 10px;
	padding-right: 7px;
	padding-bottom: 10px;
	padding-left: 7px;
	margin-bottom: 10px;
	background-image: url(../images/contentBG.jpg);
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border: 4px groove #B55228;
	box-shadow:4px 4px 4px #A8881D;
}

#register{
	width: 900px;
	background-color: #FDE7B3;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border: 4px groove #B55228;
	box-shadow:4px 4px 4px #A8881D;
	font-size: .9em;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
}



/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* 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. */
}

nav {
	margin-bottom: 15px;
	background-color: #F3D9A0;
	text-align: center;
	width: 960px;
	border-radius: 10px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: 4px groove #B55228;
	height: 38px;
	box-shadow:4px 4px 4px #A8881D;
}
header img {
	border: 4px groove #B55228;
	box-shadow:4px 4px 4px #A8881D;
}


/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666;
	font-size: 1.2em;
	margin-left: 20px;
}
nav ul li {
	display: inline;
	float: left;
	font-weight: bold;
	font-size: 0.9em;
	margin-right: 25px;
	margin-top: 1.2px;
}
nav ul a, nav ul 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. */
	width: 190px;
	text-decoration: none;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FF0;
	background-color: #9C3816;
}

/* ~~ The footer ~~ */
footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	background-image: url(../images/orange1.jpg);
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border: 4px groove #B55228;
	font-size: 1em;
	font-style: italic;
	font-weight: bold;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	box-shadow:4px 4px 4px #A8881D;
	margin-top: 10px;
}

#bottomNav li {
	margin: 4px;
	list-style: none;
	float: none;
	color: #666;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
nav a:link {
	text-decoration: none;
}

/* styling the banner images gallery --------------------------------------------------*/
.photos img, .photos2 img {
  display: none;
}

.photos .show, .photos2 .show {
  display: inline;
}
/* End styling the banner images gallery --------------------------------------------------*/


/* styling pick date --------------------------------------------------*/
.ui-datepicker-trigger {
  margin-top: 3px;
}
/* End styling pick date --------------------------------------------------*/

/* styling pick up form --------------------------------------------------*/
label {
  display: block;
}
label.valid {
	width: 24px;
	display: inline-block;
	text-indent: -9999px;
	background-image: url(../images/valid.png);
	background-repeat: no-repeat;
	background-position: center center;
}

label.error {
  padding-left: 5px;
  font-size:.8em;
  display: inline-block;
  background:#630;
  color:#FF0;
  font-style:italic;
  font-weight:bold;
}

input {
  display: inline-block;
}

button {
  margin-top: 10px;
}
/* End styling pick up form --------------------------------------------------*/



/* the part of styling the bio truck selection in about us page */
#bio {
  margin-bottom: 10px;
}

#bio h3 {
  margin:0;
  padding:5px 0 5px 10px;
}

#bio>div {
  height:200px;
  position: relative;
}

#bio img {
  margin-top: 2px;
  margin-left:5px;
  margin-right:30px;
  float: left;
  display: block;
}

#bio p {
  left: 120px;
  top: 10px;
  margin: 0 10px 25px 0;
  padding: 0;
}

#bio .ui-state-error {
  position: absolute;
  bottom: 10px;
  left: 120px;
  height: 20px;
}

#bio .ui-icon {
  float: left;
  margin-left: 5px;
}
/* the part of styling the bio truck selection in about us page */


/* the part of styling the log in window in services page */
#login {
	top: 0;
	right: 10px;
	padding: 5px;
	-moz-border-radius: 4px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
	background-color: #F0DBA6;
	color: #482E0B;
}

#signup  {
	top: 0;
	right: 10px;
	padding: 5px;
	-moz-border-radius: 4px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
	background-color: #F0DBA6;
	color: #482E0B;
}

#login form {
  margin-top: 10px;
}

#login form label, #login form input {
  display: block;
}

#login form button {
  float: right;
  margin-top: 4px;
}

#login a {
  display: block;
  text-decoration: none;
  font-size: 130%;
  font-weight: bold;
  height: 20px;
  margin-top: 0;
  padding: 0 0px 0 5px;
  background: url(../images/links.jpg);
  background-position: right -20px;
  background-repeat: no-repeat;
}

#signupBox a {
	display: block;
	text-decoration: none;
	font-size: 130%;
	font-weight: bold;
	height: 20px;
	margin-top: 0;
	padding: 0 0px 0 5px;
	background-position: right;
	background-repeat: no-repeat;
	background-image: url(../images/pen.jpg);
}

#login a.active {
  background-position: right 0;
}
/* the part of styling the log in window in services page */

#signupBox, #loginBox, #truckRental {
	background-color: #FDE7B3;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border: 4px groove #B55228;
	box-shadow:4px 4px 4px #A8881D;
	font-size: .9em;
	padding-bottom: 10px;
	padding-right: 6px;
	padding-left: 6px;
	padding-top: 10px;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
}

#signUpForm, #contactUsForm {
	background-color: #F8E7C5;
	padding: 8px;
	font-style: italic;
	font-weight: bold;
	font-size: 0.9em;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border: 2px inset #800000;
}

.signupBtn {
	font-size:.95em;
	margin-top: 10px;
	background-color: #F4D5A7;
}
    
#bio .ui-widget-content img {
	border: 3px ridge #F6AE37;
}
#bio .ui-widget-content p {
	font-style: italic;
	font-weight: bold;
	font-size: .8em;
}
