/* ---------------------------------------------------------------------------
   Colour Pallette
   
   Brown		#2f2520
   Grey -Med	#b1b1b1	
   Grey -Light	#d4d4d4
   Blue -Med	#00529b
   Blue -Light	#3094ec
   Green -Med	#336600
   Green -Light	#7ac142   
   
*/


/* ---------------------------------------------------------------------------
   Reset
*/

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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	line-height: 1.5;
	}

/* remember to define focus styles! */
:focus {
	outline: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ---------------------------------------------------------------------------
   Basic HTML
*/

hr {
	border: 0 #b1b1b1 solid;
	border-top-width: 1px;
	clear: both;
	height: 0;
}

/* ---------------------------------------------------------------------------
   Clear Floated Elements
*/

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* ---------------------------------------------------------------------------
   Text
*/

body, td
{
  font-family: "Lucida Grande", Calibri, Arial, Helvetica, sans-serif;
  font-size: 12pt;
  color: #2f2520;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #00529b;
}
a:visited {
  color: #3094ec;
}


a:hover {
  text-decoration: underline;
  color: #336600;
}

div.updating {
    margin: 4px;    
}

div.updating span {
    font-size: 16pt;
    padding: 2px;
    background-color: transparent;
    color: #336600;
    font-weight: bold;
}

.button-lrg { 
	font-size: 20pt;
	font-weight: bold;
	letter-spacing: -1pt;
	text-transform: capitalize;
	}

.private, 
#copyright {
	color: #666;	
}
button.button,
input.button,
.button-lrg { color: #00529b; }

	input.button[value*="Cancel"] { color: #666; }

#menu ul.menu,
#profile ul.menu,
#footer ul.menu,
#copyright,
#display_username {
	font-size: 11pt;
}



.note {
	font-size: 10pt;
	color: #00529b;
	font-style: italic;
	}
.signup_or {
	color: #336600;
	font-weight: bold;
	font-size: 18pt;
}

/* ---------------------------------------------------------------------------
   Headings
*/

h1, h2, h3, h4, h5, h6 { 
	text-transform: capitalize;
	text-shadow: #c9c9c9 1px 1px 3px;
}

h1 {
	font-size: 23pt;
}

h2 {
	font-size: 20pt;
	color: #00529b;
	letter-spacing: -1pt;
}
	h2.or {
		text-transform: none;
	}

h3 {
	font-size: 18pt;
	color: #3094ec;
	letter-spacing: -1pt;
}

h4 {
	font-size: 17pt;
}

h5 {
	font-size: 16pt;
}

h6 {
	font-size: 15pt;
}

/* ---------------------------------------------------------------------------
   Spacing
*/

ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

li {
	margin-left: 30px;
	padding-bottom: 10px;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
/*table,*/
address,
fieldset {
	margin-bottom: 20px;
}

/* ---------------------------------------------------------------------------
   Layout
*/

#home #content { text-align: center; }

.container {
	width: 95%;
	margin: 0 auto;
	padding: 0 10px;
	/*text-align: left;*/
	clear: both;
	position: relative;
}

/* Top */

#top {
	background: #d4d4d4 url(../images/bg_ext_header.png) no-repeat center top;
	margin-top: 10px;
}
	#top .container {
		height: 56px;
		width: 95%;	
		margin: 0 auto;
		}
	#top .logo {
		position: absolute;
		left: 0;
		top: 0;
		float: none;
	}

#menu {
	position: absolute;
	left: 160px;
	top: 0;
	float: none;
}
	#home #menu { left: 0; }

#profile {
	position: absolute;
	right: 10px;
	top: 10px;
	float: none;
	}

/* Bottom */

#bottom {
	background: #d4d4d4 url(../images/bg_ext_footer.png) no-repeat center top;	
}
	#bottom .container {
		/*background: #d4d4d4 url(../images/bg_footer.png) repeat-x left top;*/
		height: 118px;
		width: 95%;	
		margin: 0 auto;
		}

#copyright {
	position: absolute;
	left: 0;	
	top: 41px;
	float: none;
}

#footer {
	position: absolute;
	right: 0;
	top: 26px;
	float: none;
}

/* Body */
#body .container {
	padding: 30px 0 10px;
}


/* ---------------------------------------------------------------------------
   Menus
*/


/* Main Menu, Profile Menu, Footer Menu */
ul.menu {
    list-style-type: none;
}

ul.menu li.menu_item {
    display: inline;
    border-left: none;
	margin: 0;
	padding: 0 4px 0 10px;
	background: url(../images/bg_menu-item.gif) no-repeat left center;
}
	ul.menu li.menu_item a { 
		margin: 0;
		padding: 0;
	}

ul.menu li.first {
    
	background: none;
}

/* ---------------------------------------------------------------------------
   Forms
*/

form { /* fixes issue w/ Sell button disappearing in IE7 */
	border: 1px solid #fff;
}
button {
    font-size: 14pt;  
	margin: 5px 0;
	padding: 0;  
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input.button {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	}

button.button,
input.button {
	background: #f9f9f9 url(../images/bg_btn.png) repeat-x left bottom;
    height: 32px;
    text-decoration: none;
	border: 1px solid #b1b1b1;
	padding: 0 10px;	
	}
	button.button:active,
	input.button:active {
		border: 1px solid #00529b;
		}
button.button-lrg {
	background: #f9f9f9 url(../images/bg_btn_lrg.png) repeat-x left bottom;
	height: 44px;
    text-decoration: none;
	border: 1px solid #b1b1b1;
	padding: 0 15px;	
	}
input#q {
    font-size: 24px;
	font-weight: bold;
	/*color: #b1b1b1;*/
	height: 26px;
	border: 1px solid #b1b1b1;
}
	#home input#q {
		text-align: center;
		height: 32px;
	}


/* ---------------------------------------------------------------------------
   Tables
*/

td { vertical-align: top; }
	table.form td { vertical-align: middle; }

table.list,
table.form {
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
}
table.profile {
	border-collapse: collapse;
	border-spacing: 0;
}

table.list tr td,
table.form tr td,
table.profile tr td {
    padding: 6px 4px 2px;
    background-color: #fff;
}
	table.list tr td strong { /* cuz we don't want item names to wrap */
		white-space:nowrap
	}
	table.list table.actions td {
		padding: 0;
	}
table.list tr th {
	padding: 4px;
	color: #00529b;
	background: #fff url(../images/bg_th_list.png) repeat-x left bottom;
	border-bottom: 2px solid #00529b;
}

table.list tr.alt td {
	background-color: #eee;
}
	table.list tr:hover td {
		background-color: #d6eafb;
	}
	
/* ---------------------------------------------------------------------------
   Dialog Boxes
*/

.dialog {
	display: block;
	background: #fff; 
	border: 1px solid #b1b1b1;
	border-radius: 5px;
	-moz-border-radius: 5px; /* rounded border for FF */
	-webkit-border-radius: 5px; /* rounded border for Safari */
	box-shadow: 5px 5px 5px #b1b1b1;
	-webkit-box-shadow: 5px 5px 5px #b1b1b1; /* drop shadow for Safair */
	padding: 10px;
}


/* ---------------------------------------------------------------------------
   Misc
*/

.highlight {
	color: #00529b;
	background: #d6eafb;
	border: 1px solid #00529b;
	margin: 10px 10px 20px;
	padding: 10px;
	width: 300px;
}

.signup_or {
	background: url(../images/bg_signup_or.png) no-repeat center center;
	vertical-align: middle;
	padding: 0 10px;
	}

.center { text-align: center; }
	table.center {
		margin-left: auto;
		margin-right: auto;
	}
.right { text-align: right; }
.left { text-align: left; }
.inline { display: inline; }

/* ---------------------------------------------------------------------------
   Temp - To Be Deleted
*/

.dialog {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	z-index: 72;
	display: none;
}