/* 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: #FFFFFF;
  color: #2c2d2e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  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: left; /* AF was centre...Centers the page content container in IE 5 browsers. */
}

/* Commonly used to style page titles. */
h1 {
  color:#333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
h1 span {font-weight:normal}
/* Commonly used to style section titles. */
h2 {
  color: #777890;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #333333;
  font-weight: normal;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #333333;
  font-weight: normal;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #999999;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #999999;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color:#333333 !important;
}

	a.current{
		color: #333 !important;
		font-weight:600 !important;
	}


.listing {margin-left:2.6em !important}
#spanner li, #spanners li {list-style-type:none;margin-left:0em !important; padding-left:none; text-align:left}
#spanner li span, #spanners li span {margin-left:2em}
li.spanner {position:relative;list-style-type:none;margin-left:0em !important; padding-left:none; text-align:left}
li.spanner span {position:absolute;left:4em}


/* 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: #fff;
  margin: 0 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: 984px;
}
#outerWrapper #header {
	position:relative;
	background-color: #FFFFFF;
	background-image: url("/images/logo_frankhinder.jpg");
	background-position: center left;
	background-repeat: no-repeat;
	border-bottom: none 1px #767a7f; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 60px;
	line-height: 15px;
	padding: 30px 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #topNavigation {
	background-color:#FFFFFF;
	border-bottom: none 1px #9ea3aa; /* Sets the bottom border properties for an element using shorthand notation */
	border-top: solid 4px #999999; /* Sets the top border properties for an element using shorthand notation */
	height: 15px;
	*overflow:hidden; /* IE6 suckage */
	padding: 10px 0px 20px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#contentWrapper {font-size:11px;} /*declared this here so text size script can change it here to change just the content div*/

#outerWrapper #contentWrapper #leftColumn1 {
  background-color: none;
  border-bottom: none 1px #999999; /* Sets the bottom border properties for an element using shorthand notation */
  border-left: none 1px #999999; /* Sets the left border properties for an element using shorthand notation */
  border-right: none 1px #999999; /* Sets the right border properties for an element using shorthand notation */
  border-top: none 1px #999999; /* Sets the top border properties for an element using shorthand notation */
  float: left;
  margin-right: 30px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 26em;
}
#outerWrapper #contentWrapper #leftColumn2 {
  background-color: #FFFFFF;
  border:none;
  float: left;
  margin-right: 0px;
  padding: 0px 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 510px;
}

#outerWrapper #contentWrapper #leftColumn3 {
  background-color: #FFFFFF;
  border:none;
  float: left;
  margin-right: 30px;
  padding: 0px 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 420px;
}

/* 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 {
	position:relative; /* because I need to absolutely position display bar elements and pagination */
	min-height:600px;
	border: solid 1px #999999; /* Sets the border properties for an element using shorthand notation */
	margin: 0 0 0 300px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 0px 10px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content2 {
	position:relative; /* because I need to absolutely position display bar elements and pagination */
	border: none; /* Sets the border properties for an element using shorthand notation */
	margin: 0 0 20px 560px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper .content3 {
	position:relative; /* because I need to absolutely position display bar elements and pagination */
	border: none; /* Sets the border properties for an element using shorthand notation */
	margin: 0 0 10px 470px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#leftColumn2 .borderless {border:none !important}
.toppad {padding-top:2em !important}

/* THUMBS used on artworks AND artwork in non ajax mode */
#content .figure {
	position:relative;
	float: left;
	height:220px;
	width: 150px;
	margin: 0 4em 1em 1em;
	}
#content.figure a, #content.figure a:link #content.figure a:visited, #content.figure a:hover, #content.figure a:active{background-color:#FFF !important;}

.deep {height:1em;width:150px}
	
#content.photo {
	position:absolute; 
	bottom:0px;
	width: 150px;
	background:none;
	}
	
table.tum {vertical-align:bottom; height:200px;}

.photo img {
	border: 1px solid #FFF;
	background-color: #FFF;
	padding:1px;
	}
	
.photo img:hover {
	border: 1px solid #990040;
	}
		
/* LIST used on artworks */
#content .listrow {
	float: left;
	min-height:150px;
	width: 95%;
	margin: 0 1em 0 1em;
	padding: 20px 10px 10px 0;
	border-bottom:1px solid #666666;
	}
.listrow .photo {
	float: left;
	}
	
.listrow .details {
	margin-left: 200px;
	}
	
#artworkcontent p, #artworkcontent h4 {margin-left:3em}
#artworkcontent img {margin-bottom:2em}

/* 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;
}
#outerWrapper #footer {
  background-color: #FFFFFF;
  border-top: none; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer p{
text-align:left;
}
#outerWrapper #footer span{
float:right;
}
#nav
{position:absolute;
right:0px;
bottom:24%;
text-align:right;

}
#nav h2 {font-family:"Swis721 Md BT",Arial, Helvetica, sans-serif}

/* display bar, sort by, displaytype, text size includes display mozilla 2.0 fix */

#displaybar{}

a.pagecontrol:link, a.pagecontrol:visited {float:right;display: inline-block; margin-left:.3em; padding:3px 6px; text-decoration:none; border:solid 1px #666666}
a.pagecontrol:hover, a.pagecontrol:focus, a.pagecontrol.activate { color:#FFF; text-decoration:none; background-color:#666666}
a.pagecontrol:active { color:#FFF; text-decoration:none; background-color:#990000}
a.pagecontrol .current { color:#CCFF00; text-decoration:none; background-color:#990000}
.toggleh a.pagecontrol {width:9em !important; text-align:center}

a.sortcontrol:link, a.sortcontrol:visited {float:right;display:-moz-inline-stack;display:inline-block;zoom:1; text-decoration:none; border:solid 1px #999;margin-right:.3em;padding:3px 6px}
a.sortcontrol:hover, a.sortcontrol:focus { color:#FFF; text-decoration:none; background-color:#666666}
a.sortcontrol:active { color:#FFF; text-decoration:none; background-color:#990000}
a.sortcontrol .current { color:#CCFF00; text-decoration:none; background-color:#990000}
.ie a.sortcontrol:link {display:inline}

a.textsizebig:link,  a.textsizebig:visited {
float:right;background: transparent url("/images/sprites_displaybar.gif") no-repeat 1px -600px;display: -moz-inline-block;display:inline-block;height:21px;width:24px; margin-left:.4em} 
a.textsizebig:hover {background: transparent url("/images/sprites_displaybar.gif") 1px -641px}
a.textsizebig:active {background: transparent url("/images/sprites_displaybar.gif") 1px -681px}

a.textsizemed:link,  a.textsizemed:visited {
float:right;background: transparent url("/images/sprites_displaybar.gif") no-repeat 1px -480px;display: -moz-inline-block;display:inline-block;height:21px;width:24px; margin-left:.4em}
a.textsizemed:hover {background: transparent url("/images/sprites_displaybar.gif") 1px -521px}
a.textsizemed:active {background: transparent url("/images/sprites_displaybar.gif") 1px -561px}

a.textsizesmall:link,  a.textsizesmall:visited {
float:right;background: transparent url("/images/sprites_displaybar.gif") no-repeat 1px -360px;display: -moz-inline-block;display:inline-block;height:21px;width:24px; margin-left:2em}
a.textsizesmall:hover {background: transparent url("/images/sprites_displaybar.gif") 1px -397px}
a.textsizesmall:active {background: transparent url("/images/sprites_displaybar.gif") 1px -441px}

a.displayicon:link,  a.displayicon:visited {
float:right;background: transparent url("/images/sprites_displaybar.gif") no-repeat 1px 0px;display: -moz-inline-block;display:inline-block;height:21px;width:24px; margin-left:2em}
a.displayicon:hover {background: transparent url("/images/sprites_displaybar.gif") 1px -41px}
a.displayicon:active {background: transparent url("/images/sprites_displaybar.gif") 1px -81px}

a.displaylist:link,  a.displaylist:visited {
float:right;background: transparent url("/images/sprites_displaybar.gif") no-repeat 1px -120px;display: -moz-inline-block;display:inline-block;height:21px;width:24px; margin-left:.4em}
a.displaylist:hover {background: transparent url("/images/sprites_displaybar.gif") 1px -161px}
a.displaylist:active, a.displaylist.current {background: transparent url("/images/sprites_displaybar.gif") 1px -201px}

a.displayslides:link,  a.displayslides:visited {
float:right;background: transparent url("/images/sprites_displaybar.gif") no-repeat 1px -240px;display: -moz-inline-block;display:inline-block;height:21px;width:24px; margin-left:.4em}
a.displayslides:hover {background: transparent url("/images/sprites_displaybar.gif") 1px -281px}
a.displayslides:active {background: transparent url("/images/sprites_displaybar.gif") 1px -321px}

a.displayslides:link,  a.displayslides:visited {
float:right;background: transparent url("/images/sprites_displaybar.gif") no-repeat 1px -240px;display: -moz-inline-block;display:inline-block;height:21px;width:24px; margin-left:.4em}
a.displayslides:hover {background: transparent url("/images/sprites_displaybar.gif") 1px -281px}
a.displayslides:active {background: transparent url("/images/sprites_displaybar.gif") 1px -321px}

/* sidebar search forms, sliders etc */

form.ss { margin-bottom:50px}
form.ss label {color:#666666}
form.ss h4{ font-size:11px}
form.ss input {
width:246px; 
color:#FFFFFF; 
font-weight:normal;
font-family:Arial, Helvetica, sans-serif; 
font-size:1.1em; 
text-align:right; 
padding-right:10px; 
border:none; 
outline:none; 
border-style:none;
}
form.ss input.resetter, form.ss input.submit { 
display:inline;
height:24px;
width:24px;
border: 1px solid #999999; 
}
form.ss input.submit {background:url(http://frankhinder.com.au/images/search_icon.gif) 50% 50% no-repeat}
form.ss input.resetter {background:url(http://frankhinder.com.au/images/reset.gif) 50% 50% no-repeat}  
form.ss input.search {
display:inline;
margin: 3px 0 0 0; 
width: 200px; 
height:16px;
padding: 4px 0 0px 4px; 
background:url(http://frankhinder.com.au/images/keyword.jpg) 5px 50% no-repeat; 
border: 1px solid #999999;
color:#333333;
text-align:left;
}
a.quicktour, a.quickslide, input.quicktour {display:block;height:18px;font-size:12px;color:#FFFFFF;padding: 6px 0 0 10px;margin:2px 0 0 0}
a.quicktour {background-color:#999999;width:257px;}
a.quickslide {background-color:#B3B3B3; width:257px;}
a.quickslide:hover {background-color:#999999}
a.quicktour:hover {background-color:#666666}
a.quicktour.top {margin-top:10px}

#leftColumn2 a.quicktour {background:none; color:#333333;width:257px;padding: 0 0 0 10px;margin:2px 0 0 0}

input.cmedia {background:#999999 url(http://frankhinder.com.au/images/sprites_filter.png) 0px 0px no-repeat}
input.cmedia:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -27px no-repeat}
input.cseries {background:#999999 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -54px no-repeat}
input.cseries:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -81px no-repeat}
input.cperiod {background:#999999 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -107px no-repeat}
input.cperiod:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -134px no-repeat}
input.csubject {background:#999999 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -164px no-repeat}
input.csubject:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -191px no-repeat}

input.cdate1, input.cdate2 {display:inline; height:18px; margin:2px 0 0px 0; border:none; outline:none; border-style:none;}
input.cdate1 {background:#999999 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -221px no-repeat; width:120px !important}
input.cdate2 {background:#999999 url(http://frankhinder.com.au/images/sprites_filter.png) 0px -243px no-repeat; width:121px !important}

/* more IE suckage */
.ie input.cmedia {background:#999999 url(http://frankhinder.com.au/images/sprites_filter2.gif) 0px 0px no-repeat}
.ie input.cmedia:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.gif) 0px -27px no-repeat}
.ie input.cseries {background:#999999 url(http://frankhinder.com.au/images/sprites_filter2.gif) 0px -54px no-repeat}
.ie input.cseries:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.gif) 0px -81px no-repeat}
.ie input.cperiod {background:#999999 url(http://frankhinder.com.au/images/sprites_filter2.gif) 0px -107px no-repeat}
.ie input.cperiod:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.gif) 0px -134px no-repeat}
.ie input.csubject {background:#999999 url(http://frankhinder.com.au/images/sprites_filter2.gif) 0px -164px no-repeat}
.ie input.csubject:hover {background:#666666 url(http://frankhinder.com.au/images/sprites_filter.gif) 0px -191px no-repeat}

.ie input.cdate1 {background:#999999 url(http://frankhinder.com.au/images/sprites_filter2.gif) 0px -221px no-repeat; width:120px !important}
.ie input.cdate2 {background:#999999 url(http://frankhinder.com.au/images/sprites_filter2.gif) 0px -243px no-repeat; width:121px !important}

/* date slider */

.gutter {
position: relative;
height: 16px !important	;
width: 266px;
margin: 2px 0 0 0px;
background:#CCCCCC;
}
.knobl, .knobr  {
position: absolute;
height: 16px;
width: 20px;
cursor: pointer;
}
.knobl {background:#999999 url(/images/left.png) no-repeat 50% 50%;}
.knobr {background:#999999 url(/images/right.png) no-repeat 50% 50%;}

/* pagination, recordnumber, let's put these puppies on the bottom */

#recordnumber{
position:absolute;
bottom:4px;
left:10px
}

#pagination{
position:absolute;
bottom:4px;
right:10px
}
.hidden {display:none}
.inliner {display:inline}
	
/* http://woork.blogspot.com/2008/03/perfect-pagination-style-using-css.html */
#pagination-digg li          { border:0; margin:0; padding:0; font-size:11px; list-style:none; /* savers */ float:left; }
#pagination-digg a           { border:solid 1px #999999; margin-right:2px; }
#pagination-digg .previous-off,
#pagination-digg .next-off   { border:none; color:#333333; display:block; float:left; font-weight:bold; margin-right:2px; padding:0px 0px; }
#pagination-digg .next a,
#pagination-digg .previous a { font-weight:bold; }	
#pagination-digg .active     { background:#666666; color:#FFFFFF; font-weight:bold; display:block; float:left; padding:4px 6px; /* savers */ margin-right:2px; }
#pagination-digg a:link, 
#pagination-digg a:visited   { color:#333333; display:block; float:left; padding:3px 6px; text-decoration:none; }
#pagination-digg a:hover     { border:solid 1px #333333; }

/* timeline accordion */

#accordion {
	margin:	0px 0px; height:650px
}

#accordion img {
	border:	1px solid #FFFFFF;
 	margin-right:10px
}
#accordion img:hover {
	border:	1px solid #999999
}


h3.toggler {
	position:relative;
	cursor: pointer;
	border: none;
	border-right-color: #ddd;
	border-bottom-color: #ddd;
	font-size: 12px;
	background:#C7C7C7;
	color:#333333 !important;
	margin: 0 0 4px 0;
	padding: 3px 5px 1px;
}

h3.toggler.us {background:#B9B9B9 url(../images/TL_america.jpg) center right no-repeat} 
h3.toggler span {position:absolute;left:80px}

div.element p, div.element h4 {
	margin:0px;
	padding:4px;
}

blockquote {
	padding:5px 20px;
}

/* Form Styles, another homage to snooth.com */

#book fieldset {display: block; margin-bottom: 2.1em; border:none }
#book label { font-size: 1.2em; }
#book label.text { display: block; padding-bottom: 2px; font-size: 1.1em; font-weight: bold; color:#333333; text-transform: uppercase; }
#book label.checkbox { padding-left: 3px; }
#book input, #book textarea { font-size: 1.2em; }
#book input.text, #book textarea { width: 93%; display: block; margin-bottom: .1em; padding: 5px; font-size: 1.5em; border: 2px solid #ddd; }
#book textarea {height:6em}
#book input.text:focus { border-color: #bbb; }
#book input.signup_btn {display: block; width: 95px; height: 25px; text-indent: -5000px; background: transparent url(/images/register.gif); border: none; cursor: pointer; }
#book input.signup_btn:hover, #static input.login_btn:hover { background-position: 0 -25px; }

#book label#remember { margin-top: 3px; color: #999; }
#book input#remember { margin-top: 3px; }

#book fieldset em { font-size: 1.1em; font: italic normal 1.1em Georgia, serif; color: #aaa; }
#book p.confirm { padding: 12px 12px 12px 112px; }


#book	div.error { width:559px; background-color:#aa385d; padding: 5px; margin-bottom:1em }
#book div.error_inset { background:transparent; border: 1px solid #e6e9e4; padding: 5px; margin: 0px; padding-top:1em }
#book div.error a { color:#fff }

#book	.error p { text-align: center; font: normal 1.3em "Lucida Grande", Arial, sans-serif; color: #e6e9e4; }
#book	.error span { font: bold 13px "Lucida Grande", Arial, sans-serif; color: #e6e9e4 !important; border-bottom: 2px solid #e6e9e4; }

/** IE Suckage **/

#book label.checkbox { .padding-left: 0px; }
#book form br { .line-height: 1px; }

/**  Loading styles, homage to snooth.com **/

#loader, #loader_ie6 { width: 280px; height: 100px; z-index: 51; position: absolute; top: 50px; left: 50px; background:#FFFFFF;}
#loader_ie6 {width: 380px; height: 180px; border: 1px solid #333333}
#loaderRight { width: 13px; height: 100px; z-index: 52; position: absolute; top: 0px; right: -10px; background: #FFFFFF;}
#loader_wheel{ width: 94px; height: 17px; z-index:53; position: absolute; top: 54px; left: 93px; background: transparent url(http://frankhinder.com.au/images/loading_bar.gif) center center no-repeat; }
#loader_text, #loader_ie6_text  { width: 240px; z-index: 53; position: absolute; top: 24px; left: 60px; font: normal 16px Arial, sans-serif; line-height: 120%; color: #333333; }

/**  site by ana  **/
a.siteby:link,  a.siteby:visited {
float:right;background: transparent url("http://modules.art.net.au/syndicated_assets/siteby/australian_art_siteby_light_css.gif") no-repeat;display: -moz-inline-block;display:inline-block;height:24px;width:83px}
a.siteby:hover {background: transparent url("http://modules.art.net.au/syndicated_assets/siteby/australian_art_siteby_light_css.gif") 0px -24px }

/** Help **/

	.border {
		position: relative;
		background-color: #CCCCCC;
		padding: 11px 2px;
		margin-top:20px;
	}
	.border .desc {
		position: absolute;
		color: #fff;
		font-size:12px;
		top: 4px;
		left: 8px;
	}
	.full{
		background-color: #fff;
		position: relative;
		padding: 0px;
		height: 0px;
		overflow: hidden;
	}
	.full div{
		padding: 9px;
		border-top: 9px #CCCCCC solid;
		border-bottom: 9px #CCCCCC solid;
		line-height:260%
	}
	.full div a{float:left !important; margin-left:0 !important}
	.full div span{margin-left:20px}
	.full div a.pagecontrol {display:block !important; height:24px !important}
a.resetter, a.submit, a.filterhelp, a.datehelp {display:block;height:24px;width:24px;padding:0; border: 1px solid #999999;}
a.submit {background:url(http://frankhinder.com.au/images/search_icon.gif) 50% 50% no-repeat}
a.resetter {background:url(http://frankhinder.com.au/images/reset.gif) 50% 50% no-repeat}
a.filterhelp {background:#999999 url(http://frankhinder.com.au/images/sprites_filter.png) 0px 0px no-repeat}
a.datehelp {background:#999999 url(/images/left.png) no-repeat 50% 50%;}
a.helpcontrol {display:block;height:24px;padding:0; border: 1px solid #999999; padding-left:5px; padding-right:5px}
#twang p {line-height:1.1em}

/** Book **/
.featurebox {border:1px #666666 solid; padding: 15px 15px 10px 15px; margin-top:15px;font-size: 11px;
  line-height: 14px;}
.featurebox p {margin-top:0}
.featurebox p strong {font-size: 12px}
.featurebox img {float:right; margin-left:10px;}
.withimg {min-height:126px}
.withimgb {min-height:140px}