/*NOTES ----------------------------------------------------------------------------------------

The core style sheet for all sella powered websites

UPDATE INFO ------------------------------------------------------------------------------------

Last major update: 15 December 2009
Last update made by: Daron Robinson (daron.robinson@sella.co.nz)


INTENDED PURPOSE -------------------------------------------------------------------------------

Styles in this sheet are intended to address generic aspects of all sella websites.

A macro based approach is taken where possible to provide a better match between our CSS and
the reusable TAL html macros from which the site is built.



KEY --------------------------------------------------------------------------------------------------

Colours
@colordef #EAF5F9 Palest Grey Blue Background - used behind forms, filters, popups
@colordef #DDE9ED Pale Grey Blue Background - used behind list forms, tabs
@colordef #8EB6BD Register & Listing Sidenotes

@colordef #E5F8FD Pale Bluer Feature Background - used in adserver / promotional locations
@colordef #D6E6EB Pale Blue Border

@colordef #E3E6E2 Grey Lines/Borders
@colordef #B4B5B4 Darker Grey Lines/Borders

@colordef #214181 Dark Blue Link
@colordef #5893CF Visited Blue Link

@colordef #9D121D Dark Red Heading & Price
@colordef #244C83 Dark Blue Subheading


@colordef #778888 Pale Grey Text - Breadcrumb/Notes
@colordef #1B5468 Medium Green Text - Tabs
@colordef #0E363D Dark Green Text - Body text, SubHeading & Buy Now Price
@colordef Error/Highlight Red

@colordef Error Background
@colordef Error Border

@colordef Note Background
@colordef Note Border


CONTENTS ----------------------------------------------------------------------------------------

@group Reset all elements
@group Progessive Enhancement
@group Utility Classes
@group Accessibilty
@group Default Tag Styles
@group Sprites and icons
@group Colours

@group Header and Top Nav
@group Content wrapper
@group Breadcrumbs, Warnings & Feedback
@group Titlebars & Headings
@group Gallery & List Views
@group Tabs
@group Common Links & Widgets
@group Rounded Corner Box
@group Forms
@group Buttons
@group Footer


*/

/* ERROR MESSAGE PRE ELEMENT */
.debug{border: 1px solid red;}
pre {font-size: 12px;}


/* @group Reset all elements
---------------------------------------------------------------------------------------- */
body {
	color: #000;
	background: #FFF;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset,img {border: 0;}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}
li {list-style: none;}
caption,th {text-align: left;}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
q:before,q:after {content: "'";}
abbr,acronym {
	border: 0;
	font-variant: normal;
}
sup,sub {
	line-height: -1px;
	vertical-align: text-top;
}
sub {vertical-align: text-bottom;}
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.pointer {
	cursor: pointer;
}

/* @group Browser based Resets
-------------------------------------------------------------------------------------- */

/* remove ugly orange outline in chrome */
*:focus {outline: none;}

/* firefox ugliness -  remove focus border of buttons */
/* propriety mozilla pseudo-class ::-moz-focus-inner */
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
}


/* @group Progressive Enhancement
---------------------------------------------------------------------------------------- */
/* the element will be set display:block by javascript after DomLoaded */
.progressive-to-show {display: none;}

/* will be set display:inline */
.progressive-to-show-inline {display: none;}

.progressive-to-show-row {display: none;}

.progressive-row {display: table-row;}

/* the element will be hidden by javascript after DomLoaded */
.progressive-to-hide {
}


/* @group Utility Classes (Purge)
---------------------------------------------------------------------------------------- */
.center {text-align: center;}
.centerBlock {
	text-align: center;
	clear:both;
	background-color: #fff;
}

.fullWidth {
	width:960px !important;
}
.right {text-align: right !important;}
.left {text-align: left !important;}
.small {
	font-size: 0.9em;
}
.smaller {
	font-size: 0.8em !important;
}
.bold {
	font-weight: bold !important;
}
.floatRight {
	float: right;
}

.floatLeft {
	float: left;display: inline;
}

.floatNone {
	float: none !important;
}

.rightSpace {
        margin-right:20px;
}

.blockLeft {
	display:inline-block;
	vertical-align:middle;
}
.blockLeft li {
	list-style-type:disc;
	margin-left:15px;
}
.leftSpace {
        margin-left:20px;
}
.clear {
	clear: both;
}

.uppercase {
	text-transform: uppercase;
}

.no_forced_caps{
	text-transform:none !important;
}

.spaceAboveSmall{
	margin-top:10px !important;
}

.spaceAbove{
	margin-top:20px !important;
}

.spaceBelowSmall{
	margin-bottom:10px !important;
}

.spaceBelow{
	margin-bottom:20px !important;
}

.spaceBelowLarge{
	margin-bottom:30px !important;
}

.spaceLeft{
	margin-left:20px !important;
}

.spaceRight{
	margin-right:20px !important;
}

.spaceRightLarge{
	margin-right:35px !important;
}

.spaceRightSmall{
	margin-right:10px !important;
}

.green{
	color:#007700;
}

.red{
	color:#990000;
}

.nowrap{
	white-space: nowrap;
}

/* @group Accessibilty
---------------------------------------------------------------------------------------- */
.aural {
	position: absolute;
	left: -9999px;
	font-size: small;
}

.hide {
	display: none;
}
.show_block {
	display: block;
}
.show_inline {
	display: inline;
}


/* @group Default Tag Styles
---------------------------------------------------------------------------------------- */
body {
	font: 12px/1.4 Arial,FreeSans,sans-serif; /* set font size to 10px (a nice round number) - 1.4 line height */
	color: #0e363d;
	background: #F6F6F6;
	min-width:980px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.4em 0;
	font-family: Arial,FreeSans,sans-serif;
	font-weight: normal;
}

h1 {
	font-size: 30px;
	color: #9d121d;
}

h1 q {
	text-transform: none;
	color: #0b2a2f;
	font-style: italic;
	letter-spacing: 1px;
}

h1 a {
	color: #14407b;
	text-decoration: none;
}

h2 {
	font-size: 23px;
	color:#257992;
}

h2.sub-heading {
	margin: 0;
}

h3 {
	font-size: 17px;
}

h4 {
	font-size: 15px;
}

h6 {
	font-weight: bold;
}

p, blockquote, table, dd, dt {
	margin: 0 0 1.2em 0;
}

p.bold{
	font-weight:bold;
}

p.bold_subheading{
	font-weight:bold;
	margin:12px 0px 8px;
}

a:link {
	color: #214181;
	outline: none;
}
/* unvisited link */
a:visited {
	color: #5893cf
}
/* visited link */
a:hover {
	color: #9d121d
}
/* mouse over link */
a:active {
	color: #248326
}
/* selected link */
button {
	outline: none;
}
strong {
	font-weight: bold;
}

th, td {
	padding: 3px;
	border: 1px solid #e3e6e2;
	vertical-align: top;
}

th {
	font-weight: bold;
}

thead th, th.thead {
	background: #f3f5f2;
}

#content-main ol.alpha li, #content-main ol.roman li {
	list-style-type:decimal;
	margin-left:3em;
	padding-bottom:0.5em;
	padding-left:0.5em;
}

ol.alpha li {
	list-style-type: lower-alpha !important;
}
ol.roman li {
	list-style-type: lower-roman !important;
}

.bullets li{
	padding:2px 0px !important;
	margin:0 0 0 45px !important;
	list-style:disc;
}

/* @group Sprites
---------------------------------------------------------------------------------------- */
/* @TODO: All sprite usages need to be updated using a cachebreaker based on date ?20091105 etc */

.icon16 {
	background-image: url(/images/sprite-16x16-24.png);
	background-repeat: no-repeat;
}

a.icon16 {
	padding-left:21px;
}

.icon24 {
	background-image: url(/images/sprite-24x24-24.png);
	background-repeat: no-repeat;
}

a.icon24 {
	padding-left:30px;
}

/* @group Icons
---------------------------------------------------------------------------------------- */

/* legend in footer */
.icon-reservemet {background-position: 0 -3400px;}
.icon-reservenotmet {background-position: 0 -3450px;}
.icon-no-reserve {background-position: 0 -2850px;}
.icon-new {background-position: 0 0;}
.icon-quickpay-sm {background-position: 0 -3250px;}
.icon-free-delivery {background-position: 0 -2150px;}
/* homepage categories */
.icon-motoring {background-position: 0 -2800px;}
.icon-property {background-position: 0 -3150px;}
.icon-travel {
	background-position: 0 -1698px;
	padding:0 0 0 20px;
}
.icon-travel-sm {
	background:url(/images/icon-travel-16.png) 0px 1px no-repeat;
	padding:0 0 0 20px;
}
/* homepage featured */
.icon-cart {background-position: 0 -48px;} /*check position in sprite*/
.icon-closingsoon {background-position: 0 -98px;} /*check position in sprite*/
/* email and rss feeds of listings */
.feed_add {background-position: 0 -4500px;}
/*dashboard */
.icon-cred-lg {background-position: 0 -150px;}
.icon-address-md {background-position: 0 -200px;}
.icon-user {background-position: 0 -250px;}
.icon-positive-md {background-position: 0 -296px;}
.icon-placebid {background-position: 0 -350px;}
.icon-payment {background-position: 0 -400px;}
.icon-right-now {background-position: 0 -450px;}
.icon-cred-sm {background-position: 0 -1550px;}
/* special travel */
/*.icon-travel {background-position: 0 -1698px;}*/
/* listing */
.icon-edit {background-position: 0 -4750px;}
.icon-copy {background-position: 0 -2700px;}
.icon-user {background-position: 0 -1200px;}
/* listing */
.icon-edit {background-position: 0 -4750px;}
.icon-copy {background-position: 0 -2700px;}
.icon-user {background-position: 0 -1200px;}

a.icon-anchor { padding-left: 23px; line-height: 1.9em; }
.background-white {background: #fff;}


/* @group Colours (move to skin.css)
-------------------------------------------------------------------------------------- */
.feature {color: #9D121D;}

/* @group Header & Top Nav
-------------------------------------------------------------------------------------- */

.altprint, #drop-browse, #login-top, .search-label{
  display: none;
}

#header {
	height: 144px;
	background: url(/images/header/main-bg-repeat.png) left top repeat-x #005774;
}

#header-inner {
	background: url(/images/header/main-bg.png) center top no-repeat;
	padding: 30px 0 0;
	height: 114px;
}

#logo{
  float: left;
  display: inline;
  margin: 5px 0 0;
}

#top-links-logged-out{
  float: right;
  display: inline;
  margin: 43px 0 0;
  height: 33px;
  width: 198px;
  padding: 0;
  background: url(/images/header/logged-out-box.png) left top no-repeat;
}

#top-links-logged-out ul{
  float: left;
  width: 198px;
}

#top-links-logged-out ul li{
  float: right;
  height: 30px;
  padding: 1px;
}

#top-links-logged-out ul li.nav-logout{
  padding: 0 10px;
  float: left;
  line-height: 30px;
  width: 58px;
  text-align: center;
}

#top-links-logged-out ul li.nav-logout a{
  font-size: 14px;
  color: #FFFFFF;
}

#top-links{
  float: right;
  display: inline;
  margin: 15px 0 0;
  height: 50px;
  width: 178px;
  padding: 9px 10px 10px;
  background: url(/images/header/logged-in-box.png) left top no-repeat;
}

.avatar{
  float: left;
  position: relative;

}

.avatar .overlay{
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(/images/header/avatar-mask.png) left top no-repeat;
}

#enhancements-social .avatar .overlay {
	background: url(/images/header/avatar-mask-white.png) left top no-repeat;
}

.avatar a {	
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

div.avatar-facebook {
	height: 16px;
	width: 16px;
	background-image: url('/images/facebook-icon-16.png');
	position: absolute;
	right: 1px;
	bottom: 1px;
} 

#navlist-logged-in{
  float: left;
  display: inline;
  margin: 5px 0 0 10px;
  padding: 0 !important;
  width: 118px;
}

#navlist-logged-in li{
  float: left;
  color: #FFF;
  width: 118px;
  word-wrap: break-word;
  max-height: 30px;
  overflow: hidden;
}

#navlist-logged-in li a{
  color: #FFF;
}

#navlist-logged-in li.nav-logout a{
  font-size: 14px;
  font-weight: bold;
}

#top-links-logged-out{
  float: right;
}

/* ############### GLOBAL BAR ############### */

#global{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 26px;
  z-index: 50;
}

#global-container, #global-container.small-width{
  width: 960px;
  margin: 0 auto;
}

#global-container ul{
  color: #FFF;
  line-height: 26px;
}

#global-container ul.floatLeft li{
  float: left;
  margin: 0 10px 0 0;
}

#global-container ul.floatLeft li a{
  color: #FFF;
}

#partner-sites {
    background: url(/images/header/grabone-network.png) no-repeat scroll left top #03455E;
    display: inline;
    float: right;
    height: 20px;
    margin: 3px 10px 0 0;
    position: relative;
    width: 145px;
}

#partner-sites a.partner-title {
    background: url(/images/header/grabone-network.png) no-repeat scroll left top #03455E;
    color: #FFF;
    float: left;
    height: 20px;
    line-height: 20px;
    padding: 0 0 0 7px;
    text-decoration: none;
    width: 137px;
}

#partner-sites a.partner-title span.grabone-logo{
  float: left;
  display: inline;
  height: 15px;
  width: 63px;
  margin: 3px 6px 0 0;
  text-indent: -9999px;
  background: aqua;
  background: url(/images/header/logo-grabone.png) left top no-repeat;
}

#partner-sites ul {
    -moz-border-radius: 0 0 3px 3px; -webkit-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px;
    -moz-box-shadow: 0 1px 2px #000000; -webkit-box-shadow: 0 1px 2px #000000; box-shadow: 0 1px 2px #000000;
    background: #03455E;
    border-color: #006A8B;
    border-right: 1px solid #006A8B;
    border-style: none solid solid;
    border-width: medium 1px 1px;
    display: none;
    left: 0;
    padding-top: 0px;
    position: absolute;
    top: 19px;
    width: 143px;
    z-index: 9999;
}

#partner-sites:hover ul{
  display: block;
}

#partner-sites ul li {
    border-top: 1px solid #006A8B;
    display: block;
    float: none;
    height: 20px;
}

#partner-sites ul li a {
    color: #FFFFFF;
    display: block;
    float: none;
    height: 16px;
    line-height: 16px;
    padding: 2px 6px;
}

#partner-sites ul li a:hover {
  background: #006A8B;
}

/* ############### ACCOUNT BAR ############### */

#account-links{
  height: 53px;
  background: url(/images/bg-container.png) left top repeat-x;
}

#account-content, #account-content.small-width{
  width: 100%;
  background: url(/images/account-links-repeat.png) left top repeat-x #CEEBF2;
  height: 53px;
  margin: 0 auto;
}

#account-bar-wrapper{
	text-align: right;
	width: 960px;
	margin: 0 auto;
	padding: 0 10px;
	height: 53px;
}

#account-bar .username {
  float: right;
  height: 14px;
  padding: 19px 0 0;
  font-size: 14px;
  line-height: 14px;
  margin: 0 0 0 5px;
}

#account-content.full-width{
  width: 1010px;
  background: url(/images/account-links.png) left top no-repeat #CEEBF2;
}

#account-bar-content{
  display: block;
  margin: 0 5px 0 0;
  padding: 0 10px 0 0;
}

#account-bar-content.right{
  float: right;
  text-align: right;
  padding: 0px;
}

#account-bar-content li{
  float: left;
  display: inline;
  margin: 19px 7px 0 0;
  padding: 0 7px 0 0;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
  border-right: solid 1px #85B9D3;
}
#account-bar-content li span.count {
	font-size: 12px;
}

#account-bar-content.right li{
  float: right;
  text-align: right;
  display: inline;
  border: none !important;
}

#account-bar-content li a, #account-bar-content li a:visited{
  color: #214181;
}

#account-bar-content li.items-title a {
  color: #9D121D !important;
  font-weight: bold;
  border: none;
}

#account-bar-content li.items-last, 
#account-bar-content li.items-title {
  border: none;
}

#account-bar-content li.items-title{
  padding-right: 0;
}

#account-bar-content li#items-selling-heading{
  padding-left: 7px;
}

#account-bar-content li#account-balance a{
  padding: 0;
}

#account-bar-content li#account-balance span{
  border-right: solid 1px #85B9D3;
  padding: 0 10px 0 0;
}

#account-bar-content li.items-title{
  color: #9D121D;
  font-weight: bold;
}

/* recently viewed */

#account-bar-content li#recently-viewed {
	position: relative;
	float: right;
	border: 0;
	margin: 19px -10px 0 0;
	z-index: 100;
}

#account-bar-content li#recently-viewed:hover a#recently-viewed-link {
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  z-index: 100;
  position: relative;
}

#account-bar-view-history{
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
	display: none;
}

#account-bar-view-history-drop-tab {
	position: absolute;
	height: 50px;
	padding: 16px 50px 0;
	overflow: visible;
	top: 0px;
	left: 0px;
}
#account-bar-view-history-drop-tab-text {
	left: 0px;
	top: 0px;
	cursor: pointer;
}

#account-bar-view-history #view-list{
	position: absolute;
	top: 34px;
	right: -43px;
	width: 270px;
	padding: 0px 32px 30px;
	background: url(/images/header/drop-recent-repeat.png) left top repeat-y;
}

#view-list-top-title {
	position: absolute;
	top: 25px;
	left: 210px;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}

#view-list-content {
	width: 100%;
	float: left;
	text-align: left;
	margin: 0 0 -15px;
}

#view-list-content li{
	width: 100%;
	display: block;
	margin: 10px 0;
	text-align: left;
	border: 0;
	position: relative;
}

#view-list-content li a{
  font-size: 14px;
  padding: 7px 12px;
  margin: 0 -6px;
  display: block;
}

#view-list-content li a:hover{
  text-decoration: underline;
}

#view-list-content li img.pointer{
  position: absolute;
  top: 6px;
  right: 10px;
}

#view-list-more {
	top: 10px;
	font-size: 11px !important;
}

#view-list-more a {
	font-size: 11px !important;
}

#view-list a, #view-list a:visited {
	color: #FFF !important;
	text-decoration: none;
}
#view-list a:hover {
	color: #FFF !important;
	text-decoration: underline;
}

#account-bar-view-history #view-list #view-list-bottom{
	position: absolute;
	bottom: -20px;
	right: 0px;
	width: 100%;
	height: 20px;
	background: url(/images/header/drop-recent-bottom.png) left top no-repeat;
}

#account-bar-view-history #view-list #view-list-top{
	position: absolute;
	top: -59px;
	right: 0px;
	width: 100%;
	height: 59px;
	background: url(/images/header/drop-recent-top.png) left top no-repeat;
}

/* ############### SEARCH ############### */

#search-container, #search-container.small-width{
 float: left;
 padding: 35px 0 0;
 margin: 10px 15px 0;
}

#search-container.full-width{
 margin: 10px 35px 0;
}

#select-wrapper{
  float: left;
  display: inline;
  margin: 0 18px 0 0;
  height: 28px;
  width: 218px;
  padding: 2px;
  background: #FFFFFF url(/images/select-bg.png) left top no-repeat;
}

#drop-hider{
  float: left;
  margin: 2px 0 0;
  height: 20px;
  overflow: hidden;
  position: relative;
  width: 216px;
}

select.search-category-dropdown {
  position: relative;
  top: -1px;
  left: -1px;
  font-size: 14px;
  width: 218px;
  padding: 4px;
  height: 24px;
  margin: 0;
  background: #FFFFFF;
  border: solid #FFFFFF 0px;
}

.search-category-dropdown option {
  font-size: 14px;
  color: #666666;
  font-weight: normal;
  padding: 2px;
}

#product-search{
  border: 0 none;
  float: left;
  font-size: 14px;
  line-height: 26px;
  color: #000000;
  height: 26px;
  margin: 0px;
  padding: 0px 3px;
  width: 242px;
}

#search-wrapper{
  float: left;
  display: inline;
  margin: 0 10px 0 0;
  height: 28px;
  width: 248px;
  padding: 2px;
  background: #FFFFFF url(/images/search-bg.png) left top no-repeat;
}

#button-search{
  float: left;
  margin: -1px 0;
}

/* ############### LOGIN BOX ############### */

#navlist{
  float: left;
  position: relative;
  z-index: 4;
}

#login-top{
  position: absolute;
  top: -0px;
  left: -40px;
  z-index: 5;
  background: url(/images/header/drop-login-repeat.png?new) left top repeat-y;
  padding: 0 30px;
  width: 200px;
  caption-side: #FFF;
  text-align: left;
  color: #D9D9D9;
  overflow: visible;
}

#login-top-corners{
  background: url(/images/header/drop-login-top.png?new) left top no-repeat;
  position: absolute;
  height: 20px;
  width: 260px;
  top: -20px;
  left: 0px;
}

#login-bottom-corners{
  background: url(/images/header/drop-login-bottom.png?new) left top no-repeat;
  position: absolute;
  height: 20px;
  width: 260px;
  bottom: -20px;
  left: 0px;
}

#login-top span.login-top-links{
  display: block;
  margin: 7px 0 15px;
  font-size: 14px;
  line-height: 14px;
}

#login-close{
  position: absolute;
  top: 5px;
  right: 30px;
  height: 16px;
  width: 16px;
  cursor: pointer;
  background: url(/images/header/drop-login-close.png) left top no-repeat;
}

#login-top ol{
  width: 200px;
}

#login-top ol li{
  width: 200px;
  height: auto;
  padding: 0 0 10px;
}

#login-top ol li.bottom-login{
  padding: 0;
}

#login-top ol li span.forgot{
  display: block;
  clear: both;
}

#login-top ol li label{
  display: block;
  color: #D9D9D9;
  font-size: 14px;
  line-height: 14px;
  padding: 0 0 5px;
}

#login-top ol li input#top-email, #login-top ol li input#top-password{
  padding: 3px;
  font-size: 14px;
  font-weight: bold;
  height: 20px;
  width: 192px;
  border: solid 1px #D9D9D9;
}

#login-top ol li div.button-standard{
  margin: 2px 20px 0 0;
}

/* ############### NAVIGATION ############### */

#nav-contain{
  background: url(/images/header/nav-bg.png) left top repeat-x;
  height: 51px;
  position: relative;
  z-index: 3;
}

#nav-content, #nav-content.small-width{
  margin: 0 auto;
  width: 960px;
  height: 51px;
}

#nav-content.full-width{
  width: 1000px;
}

#nav-content ul{
  float: left;
  width: 100%;
  height: 49px;
  border-left: solid 1px #47ADC2;
  margin: 1px 0;
}

#nav-content ul li{
  float: left;
  line-height: 50px;
}

#nav-content ul li.nav-help{
  border-right: solid 1px #0D7694;
}

#nav-content ul li a{
  display: block;
  height: 49px;
  line-height: 49px;
  border-right: solid 1px #47ADC2;
  border-left: solid 1px #0D7694;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  padding: 0 13px;
  text-shadow: 0 1px 1px #0E4250;
}

#nav-content ul li a:hover{
  background: #3DA7C6;
}

#nav-content ul li.right-nav-links{
  float: right;
  display: inline;
}

#nav-content ul li.right-nav-links ul{
  border: none;
}

#nav-content ul li.right-nav-links a{
  float: left;
  height: 49px;
  line-height: 49px;
  border-right: none;
  border-left: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  color: #FFF;
  padding: 0 0 0 15px;
  text-shadow: 0 1px 1px #0E4250;
}

#nav-content ul li.right-nav-links a:hover{
  background: none;
  line-height: 47px;
  text-shadow: 0 3px 2px #0E4250;
}

#nav-content ul li.nav-browse{
  position: relative;
  z-index: 999;
}

#nav-content ul li.nav-browse a{
  padding-right: 35px;
}

.drop-toggle{
  position: absolute;
  top: 0;
  right: 12px;
  height: 18px;
  margin: 17px 0 0 10px;
  width: 18px;
  background: url(/images/header/drop-browse-sprite.png?new) 0px 0px no-repeat;
  cursor: pointer;
}

.drop-toggle:hover{
  background-position: 0px -20px;
}

#drop-browse{
  display: none;
  position: absolute;
  top: -10px;
  left: -30px;
  background: url(/images/header/drop-browse-tab.png?new) left top no-repeat;
  height: 50px;
  padding: 10px 30px 0;
  z-index: 99;
  overflow: visible;
}

#close-button{
  position: absolute;
  top: 10px;
  right: 42px;
  height: 18px;
  margin: 17px 0 0 10px;
  width: 18px;
  background: url(/images/header/drop-browse-sprite.png?new) 0px -40px no-repeat;
  cursor: pointer;
  z-index: 50;
}

#close-button:hover{
  background-position: 0px -60px;
}

#nav-content ul li span#browse-pressed a{
  border-color: transparent;
}

#nav-content ul li span#browse-pressed a:hover{
  background-color: transparent;
}

#drop-browse #category-list-top{
  position: absolute;
  top: 49px;
  left: 0px;
  width: 810px;
  height: 20px;
  background: url(/images/header/drop-browse-top.png?new) left top no-repeat;
}

#drop-browse #category-list{
  position: absolute;
  top: 69px;
  left: 0px;
  width: 800px;
  padding: 5px 30px 0;
  background: url(/images/header/drop-browse-repeat.png?new) left top repeat-y;
}

#drop-browse #category-list #category-list-bottom{
  position: absolute;
  bottom: -20px;
  left: 0px;
  width: 810px;
  height: 20px;
  background: url(/images/header/drop-browse-bottom.png?new) left top no-repeat;
}

#nav-content #drop-browse #category-list ul {
    border: none;
    float: left;
    height: auto;
    width: 246px;
	margin-right: 20px;
}

#nav-content #drop-browse #category-list ul li {
    float: none;
    line-height: 20px;
	margin-right: 20px;
}

#nav-content #drop-browse #category-list ul li small {
  color: #D9D9D9;
}

#nav-content #drop-browse #category-list ul li a {
    border: none;
    display: inline;
    color: #FFFFFF;
    float: none;
    font-size: 14px;
    font-weight: normal;
    height: 20px;
    line-height: 20px;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
}

#nav-content #drop-browse #category-list ul li a:hover {
  background: none;
  text-decoration: underline;
}

#main-sections{
  margin: 20px 0 0;
  float: left;
  width: 100%;
}

#nav-content #drop-browse #category-list ul.section{
  width: 810px;
}

#nav-content #drop-browse #category-list ul.section li{
  width: 246px;
  float: left;
}

#nav-content #drop-browse #category-list ul.section li small{
  font-size: 12px;
}

#nav-content #drop-browse #category-list ul.section li a{
  font-size: 16px;
  font-weight: bold;
}
		
/*==================================
remove default focus style
====================================*/
:focus {outline:none;}


.stylish-select ul.newList {
	left:-9999px;
	/*display:none;*/
}




/* @group Content Wrapper
-------------------------------------------------------------------------------------- */
/*  @TODO: needs cleanup and rationalisation - some are redundant
	also we need to be able to make these variable width easily
	by getting more things set to 100% instead of pixel values */
/* main containers */

#container{
	position:relative;
	padding:20px 0 0 0;
	width:100%;
	float:left;
	z-index: 2;
}

#container.grabaseat {
	background: url(/images/ad-farmers.png) no-repeat top center;
}

	#content-top{
		position:relative;
		margin:0 auto;
		width:100%;
		background:#FFF;
		overflow:visible;
		z-index:3;
	}
	
	#content-top-corners, #content-top-corners.small-width{
	  height: 15px;
	  width: 100%;
	  background: url(/images/corners-top-repeat.png) left top repeat-x;
	}
	
	  #wings{
			position:absolute;
			height:566px;
			width:100%;
			top:0px;
			left:0px;
			z-index:2;			
		}
		
		#wings a{
			position:absolute;
			height:100%;
			width:100%;
			top:0px;
			left:0px;	
		}
	
		#content{
			margin:0 auto;
			width:100%;
			position:relative;			
		}
		
	div#content.small-width, div#content-top.small-width{
		width:100%;
		background:#FFF;
	}

	div#content.full-width{
		width:1010px;
	}

	div#content-top.full-width{
		width:1010px;
		background: url(/images/content-repeat.png) left top repeat-y;
	}
	
	div#content-top-corners.full-width{
	  background: url(/images/content-top-2.png) left top no-repeat;
	}

#content .bg {
	padding:10px 10px 100px;
	width:960px;
	margin:0 auto;
	background:#FFF;
	overflow:hidden;
}

#content-main {
	width: 100%;
	display:inline;
	float:left;
}

#content-main.with-sub{
	width: 740px;
}

#content-sub {
    margin-left: 20px;
    width: 190px;
    float: right !important;
    clear: right;
}

#content-sub li {
	line-height: 1.3;
	margin-bottom: 0.6em;
}

.contain {
	margin: auto;
	width: 960px;
}

#contain {
	margin:auto;
	width:960px;
 	padding:6px 10px 0 10px;
	z-index:59;
}

div#contain.small-width{
	margin:auto;
	width:960px;
}

div#contain.full-width{
	margin:0 auto;
 	width:1000px;
}


/* @group Breadcrumbs, Warnings & Feedback
---------------------------------------------------------------------------------------- */


#breadcrumbs{ margin: 0px 0px 10px 0px;}

.breadcrumb,
.breadcrumb a {
	color: #778888;
	font-size: 0.95em;
}

.breadcrumb {
	background-color: #fff;
}


/* feedback panel */

.feedback_panel .global-note, #grabaseat_text, .global-note, #feedback-alert-element {
	float: left;
	display: inline;
	background: #ffffd1 url(/images/icon-info-lg.png) no-repeat 10px 13px;
	border-top: 3px solid #eedfa5;
	border-bottom: 3px solid #eedfa5;
	margin: 0 0 20px 0;
	width: 908px;
	height: auto;
	padding: 20px 0px 20px 52px;
	position: relative;
	clear: both;
}

.feedback_tande {
	background: #ffffd1 url(/images/trade_and_exchange.png) no-repeat 15px 9px !important;
	padding: 20px 0px 20px 115px !important;
}

.feedback_panel .error,
.feedback_panel #feedback-alert-element.error ,
#feedback-alert-element.error {
	float: left;
	width: 880px;
	border-top: 2px solid #a04e25;
	border-bottom: 2px solid #a04e25;
	background: #fbeddb url(/images/icon-error-lg.gif) no-repeat 15px 13px;
	padding: 20px 20px 20px 60px;
	margin-bottom: 15px;
}

.feedback_panel .global-note p {margin: 0;}

.feedback_panel .global-note .close {
	position: absolute;
	top: 2px;
	right: 10px;
	color: #666;
	font-family: Helvetica, Arial, 'Liberation Sans',FreeSans,sans-serif;
	text-decoration: none;
	font-size: 0.9em;
	text-transform: lowercase;
}

.feedback_panel h3 {
	margin: 0 0 5px 0;
	color: #3e262c;
}

.feedback_panel ol {
	margin: 0;
}

.feedback_panel li {
	list-style: decimal;
	margin-left: 20px;
}

.feedback_panel .error li a {
	color: #960225;
}



/* Feedback  Icon styles */
.feedback_panel .feedback_bid_html {
	background-image: url(/images/icon-bid-placed-lg.png) !important;
}

.feedback_panel .feedback_success {
	background-image: url(/images/icon-bid-placed-lg.png) !important;
}

/* Special Mssage */
.special-message {
	float: left;
	display: inline;
	background: #ffffd1 url(/images/icon-megaphone-24.png) no-repeat 10px 9px;
	border: none;
	margin: 5px 0 -2px 0;
	width: 915px;
	height: auto;
	padding: 10px 0px 10px 45px;
	position: relative;
	clear: both;
	font-size:14px;
	font-weight:bold;
}

/* Alert Panels */
.admin_alert {
	margin: 0 0 20px 0;
	width: 960px;
	padding: 0px 0px 15px 0px;
	position: relative;
	clear: both;
}

.admin_alert_title{
	margin: 0 0 13px 0;
	padding: 1px 10px 4px 10px;
	color: #333;
	font-weight:bold;
	font-size:12px;
}

.admin_alert_content {
	padding-left: 52px;
	color:#333;
}

.admin_alert .close-alert{
	float: right;
	display: inline;
	font-weight:bold;
	font-size:11px;
}

.alert-green {
	background: #eaffea url(/images/icon-info-green-lg.png) no-repeat 10px 30px;
	border-top: 3px solid #cceebb;
	border-bottom: 3px solid #cceebb;
}
.alert-green .admin_alert_title {
	background-color: #cceebb;
}

.alert-orange {
	background: #fff9e9 url(/images/icon-info-orange-lg.png) no-repeat 10px 30px;
	border-top: 3px solid #ffbb33;
	border-bottom: 3px solid #ffbb33;
}
.alert-orange .admin_alert_title {
	background-color: #ffbb33;
}

#alert-logged-in, #alert-news{
	float:left;
	width:80%;
}
.admin_alert ul li {
	list-style-type: disc;
	margin-left: 2.5em;
	padding-left: 0.5em;
}



/* What are these for?*/
li div.error {
	background: none;
	border: 0;
	padding: 0;
}

.feedback_panel .global-note .feedback_actions {
	margin-top:16px;
}


/* --  Error Styles - TIDY */

#http-error  {
	font-size: 1.8em;
	color: #9d121d;
	margin: 0 0 0 0px !important;
	padding: 0;
}

h2.error-message  {
	font-size: 1.3em;
}

#error-search {
	float: left;
	display: inline;
	margin: 0 0 10px 0 !important;
	border-top: 1px solid #D6E6EB;
	border-bottom: 1px solid #D6E6EB;
	background-color:#EAF5F9;
	padding: 20px 10px;
	overflow: hidden;
	width: 940px;
	text-align: center;
}

#error-search #product-search {
	background: white url(/images/bg-search-20090602.png) no-repeat;
	padding: 4px 0 0 30px;
	width: 437px;
	float: left;
	display: inline;
	border: 0;
	margin:0 20px 0 5px;
	height: 22px;
	line-height: 25px;
}


ul#questions .unanswered {
	font-size:12px;
	font-weight:bold;
	margin:0 0 10px;
	width:100%;
}

.mc-maintenance{
	float: left;
	width: 815px;
	border: 2px solid #a04e25;
	background: #fbeddb url(/images/maintenance.png) no-repeat 15px 15px;
	padding: 20px 20px 20px 80px;
	margin: 15px 0px 15px 0px;
}

.mc-maintenance h2{
	font-size:1.3em;
	font-weight:bold;
	color:#bb2200;
}

.error-text{
	font-weight:bold;
	color:#bb2200;
}

.error-text-light{
	color:#bb2200;
}

.error-icon{
	background: url(/images/icon-small-exclamation.png) no-repeat 0px 0px;
	padding: 0px 0px 0px 20px;
}

/* @group Titlebars & Headings
---------------------------------------------------------------------------------------- */

.heading {
	float: left;display: inline;
	width: 100%;
	margin: 0 0 15px 0;
	padding: 2px 0 3px 0;
	border-bottom: 1px solid #e3e6e2;
	background: #fff;
}

.heading h2{
	margin: 0;
	float: left;
	display: inline;
	background-color: #fff;
	padding: 0 5px 0 30px;
    line-height:30px;
}

.heading span.popular{
	font-family: Arial,FreeSans,sans-serif;
	font-size:12px;
	font-weight:bold;
	letter-spacing:0;
	text-transform:none;
	vertical-align:top;
	float:right;
	margin:8px 0 0;
	display:inline;
}

.heading a {/* small links */
 	display: inline;
	background: #fff;
	padding: 11px 10px 0 4px;
	font-weight: bold;
}

.heading a.link_heading {/* link headings */
	text-decoration:none;
	color:inherit;
	background: none;
	padding:0px;
	font-weight:inherit;
}

.heading a.link_heading:hover {/* link headings */
	text-decoration:underline;
}


/* used in expired listing */
.heading-yellow, .heading-blue {
	float: left;display: inline;
	width: 100%;
	padding: 2px 0 3px 0;
	margin:40px 0 20px;
}

.heading-yellow {
	background: #FFFFD1;
}
.heading-blue {
	background: #eaf5f9;
}
.heading-yellow h2, .heading-blue h2 {
	background-color: transparent !important;
	margin:2px 7px 0;
	padding-left:32px;
}


.item_caption {
	display:inline;
	font-size:16px;
	height:auto;
	overflow: hidden;
	line-height:20px;
	text-transform:capitalize;
}

.item_caption a {-ms-word-wrap: break-word;}

.item_caption a:link{
	text-decoration:none;
	border-bottom:1px #88aacc solid;
	line-height:20px;
}

.item_caption a:hover{
	text-decoration:none;
	border-bottom:1px #9D121D solid;
}

.item_caption a:visited{
	text-decoration:none;
	border-bottom:1px #88aacc solid;
}

.item_caption a:active{
	text-decoration:none;
	border-bottom:1px #248326 solid;
}

/* @group Parcel Tracking
---------------------------------------------------------------------------------------- */
.parcel-tracking-table-container {
	float: left;
	width: 350px;
}
.parcel-tracking-date-header,
.parcel-tracking-time-header,
.parcel-tracking-desc-header{
	width: 100px;
	float: left;
	font-weight: bold;
}

.parcel-tracking-date,
.parcel-tracking-time,
.parcel-tracking-desc{
	width: 100px;
	float: left;
}

.widget-parcel-tracking-form {
	padding-right: 5px;
}

.widget-parcel-tracking-form li{
	padding: 5px 0;
}

.widget-parcel-tracking-form label {
	display: inline;
	float: left;
	margin: 0 15px 0 !important;
	text-align: right;
	width: 120px !important;
}

.widget-parcel-tracking-right-cell {
	float: left;
	width: 350px;
	margin-bottom: 7px;
}

.tracking-widget-logo-bar {
	width: 100%;
}
.tracking-widget-carrier-logo-small {
	float: right;
	margin-top: 30px;
	margin-right: 15px;
}

.tracking-widget-sella-logo {
	float: left;
	margin-top: 1px;
	margin-left: 15px;
}
.tracking-page-carrier-logo-small {
	margin-top: 5px;
	float: right;
}

/* @group Gallery & List Views
---------------------------------------------------------------------------------------- */

/**
* GALLERY VIEW 
*/
.gallery {
	float: left;
	display: inline;
	width: 970px;/* extra for the right margin on the li */
	background:#FFF;
}


.gallery li {
	float: left;
	display: inline;
	width: 210px;
	height: 438px;
	margin: 0 10px 10px 0;
	padding: 10px 10px 0 10px;
	border: 1px solid #E3E6E2;
	overflow:hidden;
	background:#FFF url(/images/photo-pop.png) -9999px -9999px no-repeat;
}

.gallery li .group{
	float:left;
}

.gallery li .img {
	width: 210px;
	height:158px;
	background:#E3E6E2;
	float:left;
}

.gallery li .img img {
	width: 210px;
	height: 158px;
	display: block;
}

.gallery li .store-details {
	float:left;
	height:30px;
	width:210px;
}

.gallery li .title {
	float:left;
	margin:5px 0 0;
	display:inline;
	text-align:center;
	height:95px;
	width:210px;
	overflow:hidden;
}

.gallery li .subtitle {
    width: 210px;
	float:left;
	display:inline;
	margin:5px 0 0;
}

.gallery li .subtitle p {
    text-transform: lowercase;
    overflow: hidden;
	line-height:14px;
}

.gallery li .prices {
    width: 210px;
    text-align: center;
	float:left;
	height:35px;
}

.gallery li .icons {
    width: 210px;
    text-align: center;
	float: left;
	height:16px;
}

.gallery li .icons .icons-wrapper {display: inline-block;}

.gallery li .icons img {
    float: left;
	width: 16px;
	height: 16px;
    display: inline;
    clear: none;
	padding:0 3px;
}

.gallery li .gallery_info {
    width: 210px;
	text-align: center;
	float:left;
	display:inline;
	margin:5px 0;
	height:76px;
}

.gallery li .gallery_info p {
	padding:0px 5px;
	margin:0 0 5px 0;
}

.gallery li form{
	float:left;
	display:inline;
	width:148px;
	margin:10px 0 0 62px;
	text-align:center;
}


/**
* LIST VIEW 
*/
.listview-photo {
	float: left;
}

.list-view {
	float: left;display: inline;
    width: 960px;
}


.list-view li {
	float: left;
	display: inline;
	width:100%;
	margin:0 !important;
	padding: 15px 0;
	position: relative;
	border-bottom: 1px solid #E3E6E2;
	list-style: none !important;
	margin-bottom: 2px !important;
}

ul.list-details li {
	padding: 0px;
	border: none;
}

.list-view li div.group{
  
}

.list-view li .list-view-contents{
  width: 585px;
  float: left;
}

.list-view li .img {
	padding: 5px;
	border: 1px solid #E3E6E2;
	float: left;
	display: inline;
	margin: 0 15px 0;
	width: 140px;
	height: auto;
	background: #fff;
}

.list-view li .img img {
	display: block;
	width: 140px;
}

.list-view .info {
	float: left;
	display: inline;
	width: 560px; /* was 610px allow for 'you lead' right hand box */
}

.list-view .info p{/* all postsale section */
	margin:0 0 4px 0;
}

.list-view li .subtitle {
	width: 100%;
	margin: 3px 4px 0 0;
	/*color:#257992;*/
}

.list-view li .info .title {
	margin: 0px 0px 4px 0;
}

.list-view li .listing_info {width: 100%;}


.list-view li .closes {
	width: 100%;
	text-align: left;
    margin: 0 0 4px;
}

.list-view li .closing-soon {
	width: 100%;
	text-align: left;
	margin:0 0 4px;
	color: #9d121d;
}

.list-view li .prices,
.list-view li .user .prices{
    margin: 4px auto 4px auto;
    float: right;
    width: 160px;
    clear: none;
}

.list-view li .prices .no-price{
    text-align: left;
	color: #9d121d;
}

.list-view li .watch_buttons{
	margin-top:15px;
	float:left;
}

.list-view li .job-details{
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 10px;
}

.list-view li .job-details span{
  font-weight: normal;
  color: #CCC;
}

.list-view li .job-desc{
  margin: 0 0 10px;
}

.list-view li .list-view-buy-now-col {
	text-align: center;
	width: 80px;
	float: left;
}

.list-view li .list-view-price-col {
	float: right;
	text-align: center;
	width: 80px;
}

.list-view li .list-view-reserve-flag-col {
	text-align: right;
	vertical-align: top;
	padding: 4px 3px 0 5px;
	float: right;
	text-align: left;
	vertical-align: top;
	width: 22px;
}

.list-view .prices .item-price, 
.list-view .prices .buy-now,
.list-view .prices .no-price {
	float: right;
	border: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.list-view .list-view-reserve-flag-col .reserve{
	float: left;
	margin: 0;
	display: inline;
	clear: none;
	width: 16px;
	height: 16px;
}

.list-view-subcaption {
	font-style: italic;
	padding-top: 3px;
	margin-bottom: 3px;
	font-size: 13px;
}

ul.list-details li {
	padding-left: 15px;
	background: url(/images/icon-bullet-link.png) left no-repeat;
}


/**
*  JOBS LIST VIEW 
*/

.jobs-list-view {
	float: left;display: inline;
    width: 960px;
}


.jobs-list-view li {
	float: left;
	display: inline;
	width:100%;
	margin:0 !important;
	padding: 15px 0;
	position: relative;
	border-bottom: 1px solid #E3E6E2;
	list-style: none !important;
}

.jobs-list-view-photo {
	float: right;
}

.jobs-list-view li {
	margin-bottom: 10px !important;
}

.jobs-list-view li.gallery-photo{
	background:url(/images/photo-pop-job.png) right top no-repeat;
}

.jobs-list-view li.gallery-photo:hover{
	background:url(/images/photo-pop-job.png) right -400px no-repeat;
}

.jobs-list-view li.gallery-highlight, .jobs-list-view li.gallery-highlight-photo {
  background:#eef8fa;
}

.jobs-list-view li.gallery-highlight{
	background:#eef8fa;
}

.jobs-list-view li.gallery-featured-photo, .jobs-list-view li.gallery-highlight-photo{
	background:url(/images/photo-pop-job.png) right -800px no-repeat #eef8fa;
}

.jobs-list-view li.gallery-featured-photo:hover, .jobs-list-view li.gallery-highlight-photo:hover{
	background:url(/images/photo-pop-job.png) right -1200px no-repeat #eef8fa;
}

.jobs-list-view li div.group{
  padding: 0 0 0 15px;
}

.jobs-list-view li .jobs-list-view-contents{
  width: 775px;
  float: left;
}

.jobs-list-view li .img {
	padding: 5px;
	border: 1px solid #E3E6E2;
	float: left;
	display: inline;
	margin: 0 15px 0;
	width: 128px;
	height: auto;
	background: #fff;
}

.jobs-list-view li .img img {
	display: block;
	height: 94px;
	width: 128px;
}

.jobs-list-view .info {
	float: left;
	display: inline;
	width: 560px; /* was 610px allow for 'you lead' right hand box */
}

.jobs-list-view .info p{/* all postsale section */
	margin:0 0 4px 0;
}

.jobs-list-view li .subtitle {
	width: 100%;
	margin: 3px 4px 0 0;
	/*color:#257992;*/
}

.jobs-list-view li .info .title {
	margin: 0px 0px 4px 0;
}

.jobs-list-view li .listing_info {width: 100%;}


.jobs-list-view li .closes {
	width: 100%;
	text-align: left;
    margin: 0 0 4px;
}

.jobs-list-view li .closing-soon {
	width: 100%;
	text-align: left;
	margin:0 0 4px;
	color: #9d121d;
}

.jobs-list-view li .prices {
    margin: 4px auto 4px auto;
    float: left;
    width: 100%;
    clear: both;
}

.jobs-list-view li .prices .no-price{
    text-align: left;
	color: #9d121d;
}

.jobs-list-view li .watch_buttons{
	margin-top:4px;
	float:left;
}

.jobs-list-view li .job-details{
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 10px;
}

.jobs-list-view li .job-details span{
  font-weight: normal;
  color: #CCC;
}

.jobs-list-view li .job-desc{
  margin: 0 0 10px;
}


/* price block */
.prices .prices-wrapper {
	display: inline-block;
}

.prices .reserve {
    float: left;
    margin-top: 6px;
    margin-right: 4px;
    display: inline;
    clear: none;
    width: 16px;
    height: 16px;
}

.prices .item-price,
.prices .buy-now{
    float: left;
    text-align: left;
	margin-right:10px;
    line-height: 1;
    display: inline;
    clear: none;
	color: #9d121d;
}

.prices .item-price-centred,
.prices .no-price{
    text-align: center;
	color: #9d121d;
}

.prices .buy-now {
    border-left: 1px solid #E3E6E2;
    padding-left: 10px;
	color: #0E363D;
}

.prices .buy-now-placeholder {
    width: 80px;
    float: right;
}

.prices  p, .prices  span.p-style{
    display: inline;
	font-weight: bold;
	font-size: 16px;
	font-family: Arial,FreeSans,sans-serif;
}

.prices span.buy-now-text,
.prices span.bid-count,
.prices span.bid-count,
.prices p.buy-now-text,
.prices p.bid-count,
.prices p.bid-count{
	font-weight: normal;
	font-size: 11px;
	letter-spacing: 0;
}



/* @group Tabs
---------------------------------------------------------------------------------------- */

#tabs {
	float: left;
	display: inline;
	width: 100%;
	position: relative;
}

#tabs .tl, #tabs .tr, #tabs .bl, #tabs .br {
	position: absolute;
	width: 5px;
	height: 5px;
	background: url(/images/tab-corners.png) no-repeat;
}

#tabs .bl {
	bottom: 0;
	left: 0;
	background-position: 0 0;
}

#tabs .br {
	bottom: 0;
	right: 0;
	background-position: -5px 0;
}

#tabs .nav-items {
	background: url(/images/tab-sprite.png) repeat-x left bottom;
	width:100%;
	float: left;
	display: inline;
	height:36px;
}

#tabs ol {
	margin-bottom: 1em;
	float:left;
	width: 100%;
}


#tabs .tab-nav {
	margin: 0;
	list-style: none;
	padding: 5px 0 0 0;
}

#tabs .tab-nav li {
	float: left;
	display: inline;
	display: block;
	background: url(/images/tab-sprite-2.png) no-repeat 0px -41px;
	margin: 0 1px 0 0;
	padding: 0 0 0 10px;
}

#tabs .tab-nav a {
	float: left;display: inline;
	font-family: Arial,FreeSans,sans-serif;
	font-size:12px;
	line-height:1.3em;
	text-transform:none;
	color: #1b5468 !important;
	outline: 0;
	padding: 7px 17px 2px 7px;
	height:20px;
	background: url(/images/tab-sprite-2.png) no-repeat 100% -41px;
	text-decoration: none;
}

#tabs .tab-nav li.alt {background: url(/images/tab-sprite-2.png) no-repeat 0 0px;}

#tabs .tab-nav li.alt a {
	font-weight:bold;
	background: url(/images/tab-sprite-2.png) no-repeat 100% 0px;
	padding: 7px 20px 4px 11px;
	color: #0E363D;
}

#tabs .tab-nav li.selected {background: url(/images/tab-sprite-2.png) no-repeat 0 -82px;}

#tabs .tab-nav li.selected a {
	font-weight:bold;
	background: url(/images/tab-sprite-2.png) no-repeat 100% -82px;
	padding: 7px 20px 4px 11px;
	color: #0E363D;
}

/* shrink the font-size a little so the tabs all fit on one line properly */
.account #tabs .tab-nav a {
	/* font-size:11px; This was only affect tabs for the account page only? No consistency */
}
.account #tabs .tab-nav li.selected a, .account #tabs .tab-nav li.recycle_bin a {
	font-size: 12px;
}

/* secondary nav */
#tabs .pipe-nav{
	list-style: none;
	border-bottom:1px solid #E3E6E2;
	float:left;
	width:100%;
	margin-bottom:10px;
}

#tabs .pipe-nav li {
	float: left;
	display: inline;
	display: block;
	margin: 0 1px 0 0;
	padding:12px 0 12px 0;

}

#tabs .pipe-nav a {
	float: left;display: inline;
	font-weight:bold;
	font-family: Arial,FreeSans,sans-serif;
	font-size:12px;
	line-height:1.3em;
	text-transform:capitalize;
	color:#214181;
	outline: 0;
	padding: 0px 18px 0px 18px;
	border-right:1px solid #E3E6E2;
}

#tabs .pipe-nav a.last {
	border-right:none;
}


#tabs .pipe-nav li.selected a {
	color: #9D121D;
	text-decoration: none;
}

/* content */
#tabs .tab-content {
	padding: 10px 0 10px 0;
	float: left;
	display: inline;
	width: 960px;
}

.tab-content-body form {
	float: left;
	display: inline;
	width: 100%;
	margin-bottom: 10px;
}

.tab-content-body form.filters {
	padding: 6px 10px 0 10px;
	font-size: 0.9em;
	margin-bottom: 1em;
	width:940px;
}

.tab-content-body form.filters .selected {
	text-decoration: none;
	color: #0e363d;
}

.tab-content-body fieldset.filters {
	float: left;
	display: inline;
	margin: 1px 2em 0 0;
}

.tab-content-body fieldset.find {
	float: left;
	display: inline;
	margin: 1px 2em 0 0;
}

.tab-content-body fieldset.sort {
	float: right;
	padding: 5px 0 0px 0 !important;
	width:230px;
}

.tab-content-body fieldset.bulk-actions{
	float: left;
	display: inline;
	margin: 1px 2em 0 0;
}

.tab-content-body fieldset.filters .label,
.tab-content-body fieldset.filter .label,
.tab-content-body fieldset.find .label,
.tab-content-body fieldset.sort .label,
.tab-content-body fieldset.bulk-actions .label{
	float: left;
	display: inline;
	font-weight: bold;
	margin-right: 0.7em;
}

.tab-content-body fieldset.bulk-actions .label{
	font-size: 0.9em;
}

.tab-content-body fieldset.filters label,
.tab-content-body fieldset.sort select,
.tab-content-body fieldset.find input#find {
	float: left;
	display: inline;
	margin-right: 1em;
}

.tab-content-body fieldset.find input#find {
	width: 100px;
}
.tab-content-body fieldset.find input.find_field {
	color: #B4B5B4;
}


.tab-content-body fieldset.sort .label{
	margin-top:5px;
}

.tab-content-body fieldset.sort select{
	border:1px solid #B4B5B4;
	margin-top:1px;
	padding:2px;
}

.tab-content-body .number_results {
    float: right;
    margin: 5px 10px 0;
    padding:0;
    font: normal .9em Helvetica, Arial, 'Liberation Sans',FreeSans,sans-serif;
    color:#778888;
}

.tab-content-body a.recycle_bin {
	margin: 0;
	background: url(/images/icon-recycle.png) no-repeat 0px;
	padding: 5px 0px 5px 20px;
	text-decoration: underline;
}
.tab-content-body a.recycle_bin.selected {
	font-weight: bold;
	color: #9D121D;
}
.tab-content-body .recycle_bin_wrapper {
	padding-top: 10px;
	display: block;
	width: 90px;
	float: left;
}







/* @group Common Links and Widgets
---------------------------------------------------------------------------------------- */
/* TODO: rationalise these two */
.loading-indicator {
	background: #fff url(/images/widget/indicator.gif) no-repeat center center !important;
}
a.loading {
	background:transparent url(/images/widget/indicator.gif) no-repeat scroll 0 0;
    padding: 0 0 0 24px;
}

a.open-panel{
  background: url(/images/bullet_arrow_down.png) 0 0 no-repeat;
  padding-left:18px;
}

a.close-panel{
  background: url(/images/bullet_arrow_up.png) 0 0 no-repeat;
  padding-left:18px;
}

a.receive-email-listings {
    background: url(/images/sprite-16x16-24.png) no-repeat 0 -4596px;
	padding: 5px 0 2px 24px;
}

a.request-email-listings {
    background: #fff url(/images/sprite-16x16-24.png) no-repeat 0 -4596px;
	_background: #fff url(/images/sprite-16x16-8.png) no-repeat 0 -4596px;
    padding: 5px 0 2px 24px;
}

a.edit-link {padding: 0 0 0 10px;}

a.edit-link-small {
	padding: 0 0 0 10px;
	font-size:11px;
}

.cancel_link{
	float:left;
	margin-top:3px;
}

.cancel_link .spaced_pipe{
	padding:0 10px;
}

/* used in standard instructions and listing form */
.shipping_custom_fieldgroup{
	float:left;
	width:auto;
}

.shipping_custom_label {
	width: 10px;
	display:inline;
	float:left;
}
.shipping_custom_cost_wrapper {
	width: 55px;
	display:inline;
	float:left;
}

.shipping_custom_cost {
	width: 40px !important;
	display:inline;
}

.shipping_custom_cost_head {
	float: left;
	padding: 0 0 0 .9em;
	width:55px;
}

.shipping_custom_details_wrapper {
	width: 240px;
	display:inline;
	float:left;
}

.shipping_custom_details {
	width: 240px !important;
	display:inline;
}

.shipping_custom_details_head {}


/* @group Rounded Corner Box
---------------------------------------------------------------------------------------- */
.box {
	float: left;
	display: inline;
	position: relative;
}

.box .tl, .box .tr, .box .bl, .box .br {
	position: absolute;
	width: 8px;
	height: 8px;
	background: url(/images/round-corners.png) no-repeat;
}

.box .tl {
	top: 0;
	left: 0;
	background-position: 0 0;
}

.box .tr {
	top: 0;
	right: 0;
	background-position: -16px 0;
}

.box .bl {
	bottom: 0;
	left: 0;
	background-position: 0 -16px;
}

.box .br {
	bottom: 0;
	right: 0;
	background-position: -16px -16px;
}

.box .body {
	background:#EAF5F9;
	padding: 10px;
}


/* @group Forms
---------------------------------------------------------------------------------------- */

/* Basic new full width form style - replaces fForm */
.full-form{
	width: 960px;
}

.full-form form {
	float: left;
	width:100%;
	display: inline;
	margin:10px 0px;
}

.full-form fieldset {
	float: left;
	width: 100%;
    display: inline;
	margin-bottom:30px;
}

.full-form fieldset.closer {
	margin-bottom:15px;
}

.full-form .legend {
	float:left;
	border-top: 1px solid #e3e6e2;
	border-bottom: 1px solid #e3e6e2;
	width: 100%;
	margin:0px;
    display: inline;
	text-transform: none;
}

.full-form .no-top {
	border-top: 0px;
}

.full-form .legend em {
	font-size: 1.1em;
	padding: 1px 10px 3px 2px;
	float: left;
	color: #244c83;
	background: #fff;
}

.full-form .legend a {
	font-size: 0.75em;
	text-transform: none;
	color: #214181;
	font-weight: bold;
	letter-spacing: 0;
	font-family: "Lucida Grande", "Lucida Sans", sans-serif;
}

.full-form ol{
	float: left;
	width: 100%;
	display: inline;
	list-style: none;	
}

.full-form ol li{
	margin:0 0 1px !important;
	padding:5px 0 !important;
	width: 100%;
	background: #f1f8fa;/* was #f4faf9*/
	float:left;
}

.full-form ol li:first-child{
	padding-top:13px!important;
}

.full-form ol li:last-child{
	padding-bottom:13px!important;
}

.full-form ol li ol li:first-child{/* but not for inner lists */
	padding:0px!important;
}

.full-form ol li ol li:last-child{
	padding:0px!important;
}

.full-form ol.more-space li{
	padding:15px 0 !important;
}

.full-form label{
	float:left;
	display:inline;
	padding:2px 10px 0px 0px;
	text-align:right;
	margin:0 15px 0px !important;
	width:250px !important;
}

.full-form label.reset {
	margin: inherit !important;
	width: inherit !important;
}

.full-form li.required label,
label.required, strong.required {
	font-weight: bold;
	background: url(/images/required.gif) no-repeat top right;
}

.full-form label.required_empty{/* when a * is needed but the label isn't */
	background: url(/images/required.gif) no-repeat top right;
	height:20px;
}

.full-form .clear_required {
	font-weight:normal !important;
	background:none !important;
}

.full-form .field-row{
	float:left;
	width:100%;
	padding:3px 0px 5px 0px;
}

.full-form .nolabel{
	float:left;
	display:inline;
	margin:0 0 0 290px  !important;
	width:660px !important;
	padding-left:0px;
	text-align:left;
}

.full-form .label {/* divs pretending to be labels */
	width: 250px;
	padding:2px 10px 0px 0px;
	text-align:right;
	margin:0 15px 0px !important;
	float:left;
	display:inline;
}

.full-form .left-label {/* divs pretending to be left labels */
	width: 110px;
	padding:2px 0px 0px 0px;
	text-align:left;
	margin:0 15px 0px 0px!important;
	float:left;
	display:inline;
}

.full-form .fields_two_column{
	float:left;
	margin-bottom:4px;
}

.full-form .fields_block{
	float:left;
	width:400px;
	padding:0px;
}
	/* extend fields_block */
	.full-form .spaced{
		float:left;
		width:380px;
		height:34px;
	}

	.full-form .wide{
		float:left;
		width:660px;
		margin-bottom:4px;
	}

	.full-form .medium_wide{
		float:left;
		width:500px;
		margin-bottom:4px;
	}


.full-form .fields_block .bullets{
	width:300px;
	float:left;
}

.full-form .fields_block .bullets li{
	padding:2px 0px !important;
	margin:0 0 0 15px !important;
	list-style:disc;
}

.full-form .fields_block label{
	background:transparent none repeat scroll 0 0;
	float:left;
	font-weight:normal;
	margin:0 0 3px 0 !important;
	text-align:left;
	width:350px !important;
	/*width:620px !important;*/
}

.full-form .fields_block label.long{
	float:left;
	width:660px !important;
}

.full-form .fields_block label.auto{
	float:left;
	width:auto !important;
}

.full-form .fields_block label.fields_left{
	float:left;
	width:155px !important;
}

.full-form .fields_block label.fields_right{
	float:left;
}

.full-form .fields_block label.fields_left_short{
	float:left;
	width:130px !important;
}

.full-form .fields_block label.fields_left_shorter{
	float:left;
	width:110px !important;
}

.full-form .fields_block label.inline{
	margin:0 0 0 15px !important;
	text-align:left;
	width:200px !important;
}

.full-form .fields_block .indented{
	margin:0 0 0px 25px !important;
	width:575px !important;
	float:left;
}

.full-form .buttons input{
	margin-left:290px;
}

.full-form .buttons_left input{
	margin-left:0px;
}

.full-form .button {
	margin-left:290px;
}

form input.checkradio {/* to remove unwanted sizing & backgrounds  - integrate this*/
	background: none !important;
	width: auto !important;
	border:none !important;
}

.full-form ol li input,
.full-form ol li textarea,
.full-form ol li select{
	padding: 3px;
	margin-right:5px;
}

.full-form ol li div.button-standard input{
	padding:0 17px 3px 20px;
}

.full-form ol li input[type="text"],
.full-form ol li input[type="password"],
.full-form ol li textarea,
.full-form ol li select{
	border: 1px solid #A7AFA4;
	background: url(/images/input-search.png) top right;
}

.full-form ol li textarea{
	margin-top: 0px; 
	width: 500px;
	height: 160px;
	padding:4px;
	background: #fff;
}



.full-form ol li textarea.short{
	height: 60px;
}

.full-form ol li textarea.medium{
	height: 90px;
}

.full-form ol li textarea.medium_tall{
	height: 300px;
}

.full-form ol li textarea.tall{
	height: 400px;
}


.full-form ol li select { background: #fff !important; }

.full-form ol li input[disabled="disabled"] { background: #eee !important;}

.full-form ol li input.disabled,
.full-form ol li select.disabled,
.full-form ol li .disabled input,
.full-form ol li .disabled select{
	background: #e9e9e9 !important;
	border-color:#ccc;
}

.full-form ol li .disabled{
	color:#999;
}

.full-form ol li input[type="checkbox"]{
	margin-top: -4px;
}
.full-form ol li input:focus,
.full-form ol li textarea:focus,
.full-form ol li select:focus {
	border-color: #797F77;
}

.full-form .indented_field{
	margin:0 100px 0 25px !important;
}

.full-form .indent{
	margin:0 0 0px 25px !important;
	float:left;
}

.full-form li .wider {
	width: 500px !important;
}

.full-form .long{
	width: 360px !important;
}

.full-form .medium{
	width:335px;
}

.full-form .medium_small{
	width:283px;
}

.full-form .width230{
	width:230px;
}

.full-form .width-extra-long{
	width:260px;
}

.full-form .small_medium{
	width:200px;
}

.full-form .width160{
	width:160px;
}

.full-form .smaller_medium{
	width:155px;
}

.full-form .small_select{
	width:130px;
}

.full-form .small{
	width:120px;
}

.full-form .smaller{
	width:90px;
}

.full-form .smallest{
	width:75px;
}

.full-form .tiny{
	width:60px;
}

.full-form .select-year{
	width:111px;
}

.full-form select#area-level-1,
.full-form select#area-level-2,
.full-form select#area-level-3{
	width:240px;
}

.full-form ol li .error input,
.full-form ol li .error input[type="checkbox"],
.full-form ol li .error textarea,
.full-form ol li .error select,
input.error, select.error, textarea.error{
	border: 2px solid #960225 !important;
}


input.example, textarea.example {
	color: #aaa;
}

.full-form ol li .error input:focus {
	border-color: #960225;
}

.full-form ol li label.error,
.full-form ol li .error label{
	color:#960225 !important;
	font-weight:bold;
}

/* deprecated - remove */
.checkboxes.error label {
	font-weight: bold !important;
	color: #960225;
}

.full-form .dollarsign{
	float:left;
	padding:2px 0px 0px 3px;
	width:22px;
}

.full-form .formatted {
    font-size:12px;
    line-height:14px;
    margin-bottom:10px;
	padding:15px;
	background-color:#fff;
}

.full-form .hint{
	font-weight:normal;
	font-size:11px;
	width:450px;
	/*float:left; Not in IE7 or ff3.5*/
	color:#778888;
}

.full-form .hint_wide{
	font-weight:normal;
	font-size:11px;
	width:620px;
	/*float:left; Not in IE7 or ff3.5*/
	color:#778888;
}

.full-form .label-hint{
	font-weight:normal;
	font-size:11px;
	color:#778888;
	float:right;
	width:180px;
}


.full-form .attention {
	color:#0E363D;
	background: url(/images/icon-arrow-left.png) 0 4px no-repeat;
}

.full-form .suggested {
	color:#0E363D;
	background: url(/images/icon-error.gif) 0 3px no-repeat;
}

.full-form .valid {
	color:#0E363D;
	background: url(/images/icon-done.png) 0 3px no-repeat;
}

.full-form .invalid {
	color:#990000;
	background: url(/images/icon-del-sm.gif) 0 3px no-repeat;
}


.full-form ol li .note {
	font-weight:normal;
	font-size:12px;
	color:#778888;
}

.full-form ol li .note-dark {
	font-weight:normal;
	font-size:12px;
	color:#0E363D;
}

.full-form ol li .note-right,
.full-form ol li .note-left,
.full-form ol li .note-active{
	padding: 4px 0 0 20px;
	font-size:11px;
	font-weight:normal;
	text-align:left;
	min-height:24px;
	width:280px;
	color:#8Eb6bD;
	overflow:hidden;
	clear:none;
	display:inline;
}

.full-form ol li span#user-name-message{
	float:right;
	width:403px;
}

.full-form ol li .note-left{
	color:#0E363D;
	/* float:left; */
	width:auto 	!important;
	min-height:24px;
	padding:4px 0 0 20px;
	margin: 0px !important;
}

.full-form ol li .select_note_left {
	float: left;
	font-size: 0.9em;
	padding:6px 5px 0px 0px;
	width:150px;
	text-align:right;
}

.full-form ol li .select_note_right {
	font-weight:normal;
	font-size:11px;
	width:620px;
	float:left;
	/*float:left; Not in IE7 or ff3.5*/
	color:#778888;
}

.full-form .sidenote{
	width:235px;
	text-align:left;
	/* position:absolute; */
	float:right;
	right:0px;/*absolute to the relative positioned container li*/
	top:6px;
}

.full-form a.sidenote_text{
	background: transparent url(/images/icon-sidenote.png) no-repeat;
	font-weight:normal;
	font-size:11px;
	padding-left:20px;
	margin-top:3px;
	text-decoration:none;
	color:#8Eb6bD;
	float:left;
	width:210px;
	cursor: pointer;
}

.full-form .sidenote_tip{
	display:none;
}

.full-form .time_range_remove{
    background: transparent url(/images/icon-del-sm.gif) no-repeat;
	padding-left:20px;
	margin-left:6px;
	cursor: pointer;
}


.full-form .time_range_remove_disabled{
    background: transparent url(/images/icon-del-grey-sm.png) no-repeat;
	padding-left:20px;
	margin-left:6px;
}

.full-form .time_range_add{
    background: transparent url(/images/icon-add-sm.gif) no-repeat;
	padding-left:20px;
	cursor: pointer;
}

.full-form .time_range_separator{
    margin-right:5px;
}


/* variants for different situations */

/* basic small form  - ie. login box */
.small_form{
	float:left;
}

.small_form ol {
	float: left;
	width: 100%;
	display: inline;
	list-style: none;
	margin-bottom: 0 !important;
}


.small_form ol li {
	float: left;
	margin: 0 0 0 0 !important;
	list-style: none !important;
	width: 100%;
	padding: 6px 0 6px 0 !important;
}

.small_form ol li label{
	display:block;
}

.small_form .required {
	font-weight: bold;
	background: url(/images/required.gif) no-repeat top right;
}

.small_form ol li input{
	float: left;
}

.small_form ol .wide{
	/*width:315px;*/
	width:310px;
	padding:2px 0px;
}

.small_form ol li .checkbox{
	margin-right:5px;
	vertical-align:middle;
}

.small_form ol li .buttons {
	float:left;
	padding: 6px 0;
	margin-bottom: 2em;
}

.small_form .buttons input {
	border: 0;
	float: left;
	text-indent: -9999em;
	font-size: 1px;
	color: #1e6c86;
	cursor: pointer;
}


/* with a sidebar - help section */
.sidebar{
	width: 740px;
}
.sidebar .buttons{
	float:left;
	margin:15px 0px 40px;
}

.sidebar fieldset{
	margin-bottom:0px;
}

/* with wider fields - report a listing */

.wide_fields label, .wide_fields .label{
	width:180px !important;
}

.wide_fields .nolabel{
	margin:0 0 0 220px  !important;
	width:660px !important;
}

.wide_fields .buttons input,
.wide_fields .button{
	margin:0 0 0 220px;
}

/* Simple white form, left justified */
.simple_form fieldset{
	margin:15px 0px 20px 0px;
}
.simple_form label{
	margin:0px 10px 0px 0px;
}

/*################# NEW CSS FOR BUTTONS	#####################*/

/* 2011 Reskin new buttons */

div.button-orange{
	position:relative;
	float:left;
	display:inline;
	height:32px;
	overflow:hidden;
	width:auto;
	white-space:nowrap;
}

div.button-orange input, div.button-orange a{
	font-family: Arial, Helvetica, sans-serif;
	display:inline;
	font-size:18px;
	font-weight:bold;
	line-height:32px;
	padding:0 4px 0 12px;
	color:#FFF;
	text-shadow:#000000 0 1px 1px;
	float:left;
	height:32px;
	background: url(/images/button-orange.png) left top no-repeat;
	border:0;
	cursor:pointer;
	width:auto;
	overflow:visible;
	text-decoration:none;
	white-space:nowrap;
}

div.button-orange span{
	float:left;
	width:8px;
	height:32px;
	background:url(/images/button-orange.png) right top no-repeat;
}

/* End 2011 Reskin new buttons */

div.button-standard{
	position:relative;
	float:left;
	display:inline;
	height:24px;
	overflow:hidden;
	width:auto;
	white-space:nowrap;
}

div.button-center{
	position:relative;
	display:inline-block;
	float:none;
	overflow:visible;
	width:117px; /*IE Specific, may need moving*/
}

div.button-standard input, div.button-standard a{
	font-family: Arial,FreeSans,sans-serif;
	display:inline;
	font-size:13px;
	font-weight:bold;
	line-height:22px;
	padding:0 13px 3px 20px;
	color:#FFF;
	text-shadow:0px 1px 1px #07303B;
	float:left;
	height:24px;
	background:url(/images/buttons/blue-button.png) left top no-repeat;
	border:0;
	cursor:pointer;
	width:auto;
	overflow:visible;
	text-decoration:none;
	white-space:nowrap;
}

div.button-standard input::-moz-focus-inner, div.button-standard a::-moz-focus-inner{
	border: 1px solid transparent;
}

div.button-standard input:focus, div.button-standard a:focus{
	outline:0;
}

div.button-standard span{
	float:left;
	width:7px;
	height:24px;
	background:url(/images/buttons/blue-button.png) right top no-repeat;
}

div.button-standard.disabled input, div.button-standard.disabled a, div.button-standard.disabled span{
	filter: alpha(opacity=50);
	opacity: .5;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

div.button-standard:hover input, div.button-standard:hover a{
	background-position:left -24px;
}

div.button-standard:hover span{
	background-position:right -24px;
}

div.button-standard.click input, div.button-standard.click a{
	background-position:left -48px;
	padding:0 13px 2px 20px;
	line-height:26px;
}

div.button-standard.click span{
	background-position:right -48px;
}

div.button-standard input.button-go {padding:0 3px 3px 10px;}

/*----- 30PX BUTTON -------*/

div.thirty-pix{
	height:30px;
}

div.thirty-pix input, div.thirty-pix a{
	font-size:16px;
	line-height: 28px;
	height:30px;
	background:url(/images/buttons/blue-button-30.png) left top no-repeat;
}

div.thirty-pix span{
	float:left;
	width:7px;
	height:30px;
	background:url(/images/buttons/blue-button-30.png) right top no-repeat;
}

div.thirty-pix:hover input, div.thirty-pix:hover a{
	background-position:left -30px;
}

div.thirty-pix:hover span{
	background-position:right -30px;
}

div.thirty-pix.click input, div.thirty-pix.click a{
	background-position:left -60px;
}

div.thirty-pix.click span{
	background-position:right -60px;
}


/*----- DISABLED BUTTON -------*/

div.button-disabled{
	opacity:0.5;
	filter: alpha(opacity = 50);
	background-position:0px 0px;
}

div.button-disabled input, div.button-disabled:hover input, div.button-disabled a, div.button-disabled:hover a{
	text-shadow:#999 0 1px 0;
	cursor:default;
}

div.button-disabled span, div.button-disabled:hover span{
	text-shadow:#999 0 1px 0;
	cursor:default;
}



/*------- GRAY BUTTONS ---------*/

div.button-neutral{
	position:relative;
	float:left;
	display:inline;
	height:20px;
	overflow:hidden;
}

div.button-neutral input, div.button-neutral a{
	font-family: Arial,FreeSans,sans-serif;
	display:inline;
	font-size:12px;
	font-weight:bold;
	line-height:20px;
	padding:0 13px 0px 20px;
	color:#666;
	text-shadow:#FFF 0 1px 0;
	float:left;
	height:20px;
	background:url(/images/buttons/button-neutral-sprite.png) left top no-repeat;
	border:0;
	cursor:pointer;
	width:auto;
	overflow:visible;
	text-decoration:none;
}

div.button-neutral input::-moz-focus-inner, div.button-neutral a::-moz-focus-inner{
	border: 1px solid transparent;
}

div.button-neutral input:focus, div.button-neutral a:focus{
	outline:0;
}

div.button-neutral span{
	float:left;
	width:7px;
	height:20px;
	background:url(/images/buttons/button-neutral-sprite.png) right top no-repeat;
}

div.button-neutral:hover input, div.button-neutral:hover a{
	background-position:left -20px;
}

div.button-neutral:hover span{
	background-position:right -20px;
}

div.button-neutral.click input, div.button-neutral.click a{
	background-position:left -40px;
	padding:0 13px 0px 20px;
	line-height:26px;
}

div.button-neutral.click span{
	background-position:right -40px;
}



/*----- ICON BUTTONS -----*/

div.button-icon input, div.button-icon a, div.button-icon.click input, div.button-icon.click a{
	padding:0 13px 3px 36px;
}

div.button-icon span.icon-container{
	position:absolute;
	top:4px;
	left:12px;
	float:none;
	width:16px;
	height:16px;
	background:none;
}


div.button-neutral span.icon-container{
	position:absolute;
	top:2px;
	left:12px;
	float:none;
	width:16px;
	height:16px;
	background:none;
}

div.button-icon span.delete, div.button-icon:hover span.delete{
	background:url(/images/sprite-16x16-24.png) no-repeat scroll 0 -1600px transparent;
}

div.button-icon span.add, div.button-icon:hover span.add{
	background:url(/images/sprite-16x16-24.png) no-repeat scroll 0 -950px transparent;
}

div.button-icon span.blacklist, div.button-icon:hover span.blacklist{
	background:url(/images/icon-blacklist-16.png) no-repeat scroll 0 0px transparent;
}

div.button-icon span.delete-small, div.button-icon:hover span.delete-small{
	background:url(/images/icon-delete-small-16.png) no-repeat scroll 0 0px transparent;
	top:2px;
}

div.button-icon span.add-small, div.button-icon:hover span.add-small{
	background:url(/images/icon-add-small-16.png) no-repeat scroll 0 0px transparent;
	top:2px;
}

div.button-icon span.add-facebook, div.button-icon:hover span.add-facebook {
	background:url(/images/icon-facebook.gif) no-repeat scroll 0 0px transparent;
	top:2px;
}

div.button-icon span.hide-facebook, div.button-icon:hover span.hide-facebook {
	background:url(/images/icon-facebook-grey.gif) no-repeat scroll 0 0px transparent;
	top:2px;
}
div.button-icon span.blacklist-small, div.button-icon:hover span.blacklist-small{
	background:url(/images/icon-small-blacklist.png) no-repeat scroll 0 0px transparent;
	top:2px;
}

div.button-icon span.publish-small, div.button-icon:hover span.publish-small{
	background:url(/images/action_completed.png) no-repeat scroll 0 0px transparent;
	top:2px;
}

/*----- WATCHLIST BUTTONS -----*/

div.button-grey-small{
	float:left;
	height:18px;
	overflow:hidden;
	width:auto;
	margin:0 auto;
}

div.button-grey-small input, div.button-grey-small a{
	font-family: Arial,FreeSans,sans-serif;
	display:inline;
	font-size:11px;
	font-weight:bold;
	line-height:19px;/* for ie */
	padding:0 1px 0px 23px;/* for ffox */
	color:#666;
	text-shadow:#FFF 0 1px 0;
	float:left;
	height:18px;
	background:url(/images/buttons/watch-button-sprite.png) left top no-repeat;
	border:0;
	cursor:pointer;
	width:auto;
	overflow:visible;
	text-decoration:none;
}

div.button-grey-small input::-moz-focus-inner, div.button-grey-small a::-moz-focus-inner{
	border: 1px solid transparent;
}

div.button-grey-small input:focus, div.button-grey-small a:focus{
	outline:0;
}

div.button-grey-small span{
	float:left;
	width:7px;
	height:18px;
	background:url(/images/buttons/watch-button-sprite.png) right top no-repeat;
}

div.button-grey-small:hover input, div.button-grey-small:hover a{
	background-position:left -18px;
}

div.button-grey-small:hover span{
	background-position:right -18px;
}

div.button-grey-small.click input, div.button-grey-small.click a{
	background-position:left -36px;
	padding:0 4px 0px 23px;
	line-height:20px;
}

div.button-grey-small.click span{
	background-position:right -36px;
}

/*----- DROP BUTTONS -----*/

div.drop input, div.drop a{
	background:url(/images/buttons/button-grey-drop-sprite.png) left top no-repeat;
}

/*----- WATCHLIST BUTTONS SAVED STATE -----*/

div.button-grey-small input.watch-saved, div.button-grey-small a.watch-saved{
	background:url(/images/buttons/watch-button-sprite.png) left -54px no-repeat;
	display:inline;
	margin:0 0 0 10px;
}

.list-view div.button-grey-small input.watch-saved, .list-view div.button-grey-small a.watch-saved{
	margin:0;
}

div.button-grey-small:hover input.watch-saved, div.button-grey-small.hover input.watch-saved, div.button-grey-small:hover a.watch-saved, div.button-grey-small.hover a.watch-saved{
	background-position:left -72px;
}

div.button-grey-small.click input.watch-saved, div.button-grey-small.click a.watch-saved{
	background-position:left -90px;
	padding:0 8px 0px 23px;
	line-height:20px;
}


/*----- WATCHLIST BUTTONS LARGE TEXT -----*/

div.large-text input, div.large-text a{
	font-size:16px;
}


/* @group Footer
---------------------------------------------------------------------------------------- */
#footer-container{
	width:100%;
	float:left;
	display:inline;
	position:relative;
	font-size:12px;
}

#footer, div#footer.small-width {
	width: 100%;
    padding: 20px 0 0 0;
	background:url(/images/bottom-tile-2.png) left top repeat-x;
}

div#footer.full-width {
	position:relative;
	margin:0 auto;
	width: 960px;
  padding: 20px 25px 0;
	background:url(/images/body-bottom-2.png) center top no-repeat;
}

#legend, div#legend.small-width {
	width:100%;
  margin: auto;
  padding: 5px 0px 10px 0px;
	text-align: center;
	background: #fff;
}

div#legend.full-width {
	position:relative;
	margin:0 auto;
	width: 1010px;
  padding: 5px 0 10px 0;
	background:url(/images/content-repeat.png) left top repeat-y;
}


	#legend .bg {
		position:relative;
		padding:10px;
		width:960px;
		margin:0 auto;
		overflow:hidden;
		background:#FFF;
	}

/* move from inline image to sprite */
#legend li {
	display: inline;
	list-style-type: none;
	padding: 2px 8px 2px 20px;
}

#legend .legend_heading {
	font-weight:bold;
}


#legend li.icon24 {padding: 1px 15px 2px 27px;}

div#footer .links {
	position:relative;
	margin:0 auto;
	width:960px;
	padding:0px;
}

ul.sub{
	float:left;
	width:630px;
}

#footer .main {margin-bottom: 0.6em;}

#footer .links li {
	display: inline;
	margin-right: 2em;
}

#footer li a {color: #666;}

#footer li a:hover {
	color: #CCC;
	text-decoration:none;
}

#footer .main li a {font-weight: normal;}

#footer .copyright {
	padding:0 0 30px 0;
	float:left;
	width:330px;
	text-align:right;
	color:#666;
}

#footer .copyright li {
	display: inline;
	padding-left: 0.2em;
}

#footer .copyright li.rss {
	font-weight: bold;
	color: #df6f0e;
	padding-left: 16px;
	background: url(/images/sprite-16x16-24.png) no-repeat 0 -700px;
	_background: url(/images/sprite-16x16-8.png) no-repeat 0 -700px;
}

/* herald ad blocks */
.heraldad {
	background-color: #fff;
	text-indent:-9999px;
	text-align: center;
}
.heraldad a {
	color: white;
	float:left;
	height:80px;
	width:100%;
}
#heraldcars300 {
	width: 300px;
	height: 80px;
	float: right;
	display:inline;
	margin:15px 0 0 0;
	background:url(/images/sellaheralddriven300x80.gif) left top no-repeat;
}

#heraldcars180 {
	width: 180px;
	height: 75px;
	float: left;
	background:url(/images/sellacars180x75.jpg) left top no-repeat #EAF5F9;
	padding:0 0 8px;
	border-bottom:1px solid #D6E6EB;
}
#heraldcars180 a{
	height:75px;
}

#heraldhomes300 {
	width: 300px;
	height: 80px;
	float: right;
	display:inline;
	margin:15px 0 0 0;
	background:url(/images/sellahomes300x80.gif) left top no-repeat;
}

#heraldhomes180 {
	width: 180px;
	height: 75px;
	float: left;
	background:url(/images/sellahomes180x75.jpg) left top no-repeat #EAF5F9;
	padding:0 0 8px;
	border-bottom:1px solid #D6E6EB;
}
#heraldhomes180 a{
	height:75px;
}
.feed-log-success, .feed-active {
	background-color: #efe;
}
.feed-log-error, .feed-inactive {
	background-color: #fee;
}
.feed-log-notice {
	background-color: #ffe;
}
.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(/images/widget/ui-bg_flat_white.png) 50% 50% repeat-x; color: #222222; }
.feed-nav { float: right; }
.feed-nav li {
	float: left;
	
}
.feed-nav li a {
	display: block;
	padding: 0px 10px;
	border-right: solid 1px #85B9D3;
}
.feed-nav li a.last { border: none; }
.mapping-toggle {
	background: #EAF5F9 url('/images/icon-down-arrow.gif') 99% center no-repeat;
	background-color: #EAF5F9;
	margin-bottom: 0;
	border: 1px solid #E3E6E2;
	border-bottom: none;
	padding-left: 10px;
}
.mapping-toggle:hover {
	cursor: pointer;
	background-color: #effAfE;
}
.feed_system_help_link_box {
	height: 20px;
	float: right;
	font-size: 14px;
}

.feed_system_help_link_box img {
	vertical-align: middle;
}
textarea#payment_template {
	float: left;
}
#template-inject-list {
	float: left;
	width: 140px;
	margin-bottom: 5px;
}
#template-inject-list li {
	padding: 0 !important;
	width: auto;
	float: none;
}

/* Special styles for the Facebook Social Selling help pages */
.facebook-install-button {
	border-top: 1px solid #96d1f8;
	background: #65a9d7;
	background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
	background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
	background: -moz-linear-gradient(top, #3e779d, #65a9d7);
	background: -ms-linear-gradient(top, #3e779d, #65a9d7);
	background: -o-linear-gradient(top, #3e779d, #65a9d7);
	padding: 20px 40px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	border-radius: 11px;
	-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
	-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
	box-shadow: rgba(0,0,0,1) 0 1px 0;
	text-shadow: rgba(0,0,0,.4) 0 1px 0;
	color: white;
	font-size: 24px;
	font-family: Helvetica, Arial, Sans-Serif;
	text-decoration: none;
	vertical-align: middle;
	margin-bottom: 10px;
}
.facebook-install-button:hover {
	border-top-color: #28597a;
	background: #28597a;
	color: #ccc;
}
.facebook-install-button:active {
	border-top-color: #1b435e;
	background: #1b435e;
}
.facebook-install-button:visited {
	color: white;
}