/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #666;
  background-image: url("../images/bg_page.jpg");
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
* html body {
	font-size: x-small; /* for IE5/Win */
	font-family: Arial, Helvetica, sans-serif;  /* for IE5/Win */
	f\ont-size: small; /* for other IE versions */
	f\ont-family: Arial, Helvetica, sans-serif; /* for other IE versions */
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #29687f;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #ccc;
  border: solid 3px #000000; /* Sets the border properties for an element using shorthand notation */
  margin: 20px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 800px;
}
#outerWrapper #navHeader {
  background-color: #ddd;
  background-image: url(../images/bg_navhead.jpg);
  background-repeat: no-repeat;
  height: 30px;
}
#outerWrapper #header {
  background-color: #000;
}
#outerWrapper #subHeader {
  background-color: #eead00;
  padding: 3px 10px 3px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  height: 24px;
  text-align: right;
}
#outerWrapper #contentWrapper {
	background-image: url(../images/bg_content.gif);
	background-repeat: repeat-y;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #fff;
  border-right: solid 1px #666; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 250px;
}
#outerWrapper #contentWrapper #leftColumn1 #colText {
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 h1 {
  color: #29687f;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 125%;
  font-weight: bold;
}
#outerWrapper #contentWrapper #leftColumn1 a, #outerWrapper #contentWrapper #leftColumn1 a:link {
  color: #b84e5a;
}
#outerWrapper #contentWrapper #leftColumn1 a:visited {
  color: #b84e5a;
  text-decoration: none;
}
#outerWrapper #contentWrapper #leftColumn1 a:hover {
  color: #000;
}
#outerWrapper #contentWrapper #leftColumn1 a, #outerWrapper #contentWrapper #leftColumn1 a:link.yellow {
  color: #000;
}
#outerWrapper #contentWrapper #leftColumn1 a:hover.yellow {
  color: #29687f;
}
#outerWrapper #contentWrapper #leftColumn1 ul {
  list-style: url(../images/bullet.gif);
}
/*----------------------------------HOME PAGE-----------------------------------------------*/

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #homeContent {
  margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 40px 10px 50px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size: 105%;
  line-height: 18px;
}
#outerWrapper #contentWrapper #homeContent h1 {
  color: #29687f;
  font-family: "Times New Roman", Times, serif;
  font-size: 150%;
  font-variant: small-caps;
}
#outerWrapper #contentWrapper #homeContent h2 {
  color: #29687f;
  font-family: "Times New Roman", Times, serif;
  font-size: 120%;
  font-style: italic;
}
#outerWrapper #contentWrapper #homeContent h3 {
  color: #29687f;
  font-family: "Times New Roman", Times, serif;
  font-size: 120%;
  font-style: italic;
}
#outerWrapper #contentWrapper #homeContent a, #outerWrapper #contentWrapper #homeContent a:link {
  color: #b84e5a;
}
#outerWrapper #contentWrapper #homeContent a:visited {
  color: #b84e5a;
}
#outerWrapper #contentWrapper #homeContent a:hover {
  color: #000;
  text-decoration: none;
}

/*---------------------------------NEW HOME PAGE------------------------------------------------*/

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 0 0 270px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #contentLine {
  border-top: #000000 1px solid;
}
#outerWrapper #contentWrapper #content h1 {
  color: #29687f;
  font-family: "Times New Roman", Times, serif;
  font-size: 150%;
  font-variant: small-caps;
}
#outerWrapper #contentWrapper #content h2 {
  color: #29687f;
  font-family: "Times New Roman", Times, serif;
  font-size: 130%;
  font-style: italic;
}
#outerWrapper #contentWrapper #content h3 {
  color: #29687f;
  font-family: "Times New Roman", Times, serif;
  font-size: 120%;
  font-style: italic;
}
#outerWrapper #contentWrapper #content a, #outerWrapper #contentWrapper #content a:link {
  color: #b84e5a;
}
#outerWrapper #contentWrapper #content a:visited {
  color: #b84e5a;
}
#outerWrapper #contentWrapper #content a:hover {
  color: #000;
  text-decoration: none;
}
#outerWrapper #contentWrapper #content ul {
  list-style: url(../images/bullet.gif);
}
#outerWrapper #contentWrapper #content li {
  padding: 5px 0 5px 0;
}
#outerWrapper #contentWrapper #content img {
  border: 1px #000000 solid;
}
#outerWrapper #contentWrapper #content img.noborder {
  border: none;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#footer {
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Redefines the text alignment defined by the body element. */
  width: 800px;
	font-size: 85%;
}

/*--------------------------------- SIDEBAR MEMBERS SEARCH STYLES -------------------------------------*/

#formMbrsearch {
	background-color: #eead00;
	padding: 10px 5px 10px 5px;
}
#userLoggedin{
	padding-top: 5px;
}
/*--------------------------------- USER LOGIN STYLES -------------------------------------*/

input.formButton{
	background: #ccc;
	border: 1px solid #000;
	color: #000;
	font-weight: bold;
	padding: 0;
}

#outerWrapper #subHeader #form1 {
	margin: 2px 5px 0 0;
}

/*--------------------------------- BID BOARD STYLES -------------------------------------*/

.bidlistOdd {
	background-color: #eee;
}

.bidlistEven {
	background-color: #ddd;
}

.bidlistHover {
	background-color: #dbecf6;
}

.bidlistSelect {
	background-color: #dbecf6;
}


/*--------------------------------- Mootool popup tip -------------------------------------*/
#mootools_transitions {
			height: 102px;
			width: 832px;
			padding: 10px 10px 10px 10px;
			background-color: #00f;
			margin: 20px;
			margin-left: auto;
			margin-right: auto;
			overflow: hidden;
		}
		#mootools_transitions p {
			color: #000;
		}
		#mootools_transitions div {
			border: 1px solid #fff;
		}
		#mootools_transitions  {
			border: 1px solid #fff;
		}
		.changeTrans {
			position:relative;
			width: 200px;
			height: 100px;
			text-align:center;
		}
		#transition {}
		#duration {
			top: -102px;
			left: 210px;
		}
		.tip {
			color: #fff;
			width: 139px;
			z-index: 13000;
		}
		.tip-title {
			font-weight: bold;
			font-size: 11px;
			margin: 0;
			color: #9FD4FF;
			padding: 8px 8px 4px;
			background: url(../images/bubble.png) top left;
			
		}
		.tip-text {
			font-size: 11px;
			padding: 4px 8px 8px;
			background: url(../images/bubble.png) bottom right;
		
		}	
