/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.page #container { 
	width: 100%;
	/*Set default alignment to centre otherwise IE6 will not centre the main contant and header */
	text-align: center;
  background: url(images/back1.gif) center top;
}  
 
.page #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	/*padding: 10px 0;*/ /* using padding instead of margin will allow you to keep the element away from the edges of the div */

}

/*
	Defaults
*/
body 
{
	background-color:#fff;
	color:#333;
	font-family: Arial, Verdana,'Trebuchet MS','Lucida Grande', sans-serif;
	font-size:small;
	margin:0;
	padding:0;
	font-size:1em;
}
p 
{
	line-height:1.8em;
	margin:0.5em 0;
}
a:link, a:visited 
{
	color:#459045;
	text-decoration:none;
	border-bottom:none;
}
a:hover, a:active 
{
	text-decoration:none;
	border-bottom: 1px solid;
}
h1,h2,h3,h4,h5,h6 
{
	font-family:Georgia, Tahoma, Arial, Serif;
	font-weight:normal;
	line-height:1.6em;
}
h2, h3 {
	font-size:1.6em;
	margin: 10px 0px 20px 0px !important;
}

h4 {
	font-size:1.3em;
}
ul 
{
	list-style-image:url(images/arrow.gif);
	margin:5px 10px;
	padding:1em;
}
li 
{
	line-height:1.6em;
	margin-bottom:0.5em;
}


tr.even, tr.odd {
  background: #FCE9F4;
  border: 1px solid #FACFDF;
}




/*
	Primary Menu
*/
#navigation {
	width:980px;
	clear:both;
	height:40px;
	margin: 0px auto;
	text-align:center;
	font-size:1.1em;
  position: relative;
  z-index: 999;
}
.mac #navigation {
	width:1000px;
}
	/*
		Primary navigation LIST formatting
	*/
#navigation ul
{
	list-style:none;
}
#navigation li 
{
	/*line-height:23px;*/
	list-style:none;
	margin: 0px 0px 0px 0px;
}
#navigation ul .links, #navigation ul li{
	margin:0;
	padding:0;
}
	/*
		Primary navigation LINK formatting
	*/
#navigation a:link, #navigation a:visited 
{
	background:#FFF url(images/active1.gif) left bottom no-repeat;
	color:#d96ca7;
	/*height:24px;*/
	margin-right:2px;
	padding-left:65px;
	text-decoration:none;
	border:none;
  margin: 0px 0px 0px 0px;
}

.chrome #navigation a:link, .chrome #navigation a:visited 
{
  font-weight: bold;
}



/*
li#navigation a:link, li#navigation a:link span,
li#navigation a:visited, li#navigation a:visited span 
*/
#navigation a:link, #navigation a:link span,
#navigation a:visited, #navigation a:visited span 
{
	cursor:pointer;
	display:block;
	float:left;
	border:none;
}
#navigation a:hover 
{
	background:url(images/active1.gif) left bottom no-repeat;
	color:#ee2c22;
	height:30px;
	padding-left:65px;
	text-decoration:none;
	border:none;
}
#navigation a:link span,
#navigation a:visited span,
#navigation a:hover span 
{
	background:url(images/active2.gif) right bottom no-repeat;
	padding-right:65px;
	height:30px;
	border:none;
}
#navigation a.active:link,
#navigation a.active:visited 
{
	background:#FFF url(images/current1.gif) left bottom no-repeat;
	color:#fbdbe9;
	/*line-height:24px;*/
	/*height:27px;*/
	margin-right:2px;
	padding-left:65px;
	text-decoration:none;
	border:none;
}
#navigation a.active:hover 
{
	background:#FFF url(images/current1.gif) left bottom no-repeat;
	color:#ffdf9c;
	/*height:27px;*/
	margin-right:2px;
	padding-left:65px;
	text-decoration:none;
	border:none;
  height: 40px;
}
#navigation a.active:link span,
#navigation a.active:visited span,
#navigation a.active:hover span 
{
	background:url(images/current2.gif) right bottom no-repeat;
	/*height:27px;*/
	padding-right:65px;
	border:none;
  height: 40px;
  color: white;
}
/*
	Logo
	Updated 26/4/08 to allow for an image logo
*/
#logoandtitle {
	width:900px;
	margin:0 auto;
}
#logoandtitle div.logo{
	margin:0px auto 0 auto;
	padding-top:0px;				/*You may need to alter this to fir your logo*/
}

#logoandtitle div.logo img{
	padding:0px;
	margin: 7px 0px 0px 0px;
	border:none;	
        background: transparent;
  box-shadow: none;
}
#logoandtitle div.logo a:hover{
	border-bottom:none;
}
#logoandtitle div.title{
	float: left;
	padding-top:0px;				/*You may need to alter this to fir your logo*/
}
/*
	Header
*/
#header {
	background:url("images/header1.gif") top repeat-x;
	height:250px;
	margin:0;
	padding:0;
	width:100%;
}
#header h1{
	height:0px;
	color: white;
	text-align:left;
	margin:5px 0 0 10px;
	padding-bottom:4px;
}

#header h1 a {
	margin:5px 0 0 12px;
	color: white;
	font-size:1.3em;
}
#header h2 {
	color:#CAE972;
	font-size:1em;
	font-style:italic;
	padding-left:12px;
	text-align:left;
	font-family: Arial, Verdana,'Trebuchet MS','Lucida Grande', sans-serif;
}

/*
	Content
*/
#content 
{
	display:inline;
	float:left;
	text-align:left;
	width: 700px;
	margin:20px;
	
	padding:0;
}
/*
	Sidebar
*/
#sidebar 
{
	display:inline;
	float:right;
	padding: 5px 20px 20px 20px;
	width:200px;
	margin:25px 0px 25px 0;
	border-left:#ddd 0px dashed;
	font-size:90%;
	text-align: left;	
        background: #fbf5f8;
  border: 2px solid #EC008C;
  border-radius: 10px;
}
#sidebar h2 
{
	border-bottom:#eed 0px solid;
	font-size:18px;
	color:#d96ca7;
	letter-spacing:0;
  margin: 10px 0px 10px 0px !important;
  padding: 0px 0px 0px 0px;
  height: 25px;
}
#sidebar p 
{
	margin:10px 0;
}
#sidebar a
{
	color:#D96CA7;
}

/*
	Content wrapper
*/
#wrap {
	width:1000px;
	margin:0px auto;
	overflow:hidden;
	padding-left:0px;
	padding-right:25px;
	position:relative;
  top: 0px;
  clear: both;
  background: white;
  border: 2px solid #EC008C;
  border-radius: 10px;
}

.page-content-contact-us #wrap,
.page-content-frequently-asked-questions #wrap,
.page-agents #wrap,
.page-content-sizesprices #wrap,
.front.page-catalog #wrap {
  top: -10px;
}



/*
	Footer
*/
#footer {
	background:#223344 url(images/header1.gif) bottom repeat-x;
	clear:both;
	padding:10px;
	text-align:center;
	margin:0 auto;
	color: #EC008C;
  font-size: 15px;
}

#footer a {
	color: #EC008C;
    text-decoration: underline
}

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

/*
	Form elements
*/
fieldset 
{
	border:none;
}
input[type="text"],input[type="password"]
{
	border:#ccc 1px solid;
	background:#fff url(images/postbg.jpg) repeat-y top left;
	font:1em Arial, Verdana, Serif;
	padding:2px 5px;
	width:150px;
}
input[type="text"]:focus,input[type="password"]:focus
{
	border:#999 1px solid;
}
textarea{
	width: 90%;
	padding:5px;
	height: 20em;
	border: 1px solid #ccc;	
	background:#fff url(images/postbg.jpg) repeat-y top left;
	font:1em Arial, Verdana, Serif;
}
#mission{
	border:#ccc 1px solid;
	background:#fff url(images/postbg.jpg) repeat-y top left;
	font:1em Arial, Verdana, Serif;
	padding:2px 5px;
	width:100%;
}
/*
	Comments
*/
.post{
	border-left:#ccc 1px solid;
	background:#ffe;
}
.post .content {
	margin:5px 0 0 1px;
	background:#eed;
	border-left:#aaa 1px solid;
}
.post_info {
	color:#4b5ba2;
}

.post_info a {
	color:#333;
	font:bold 110% "Trebuchet MS", "Lucida Grande", verdana, helvetica, arial, sans-serif;
	text-decoration:underline;
}
.comments ul{

	/*display: inline;*/
	/*	list-style-image:url(images/arrow.gif);
	margin:5px 10px;
	padding:1em;
	
	margin: 0;
	padding:0;*/
}
/*
	Published / Node posting information
	i.e. Published by nick on October 25th, 2007
*/
.submitted {
	color:#999;
	margin:0;
	padding:0;
	font-size:90%;
  display: none;
}
/*
	Node formatting
*/
.node .links ul,.node .links li{
	list-style: none;
	display: inline;
}
.node .links li{
	padding-left:16px;
	padding-right:16px;
	background:url(images/arrow.gif) no-repeat left center;
}

.node p a:link,.node p a:visited {
	border-bottom:1px dashed;
}

.node {
	/*margin:10px 0;
	padding:15px 0;*/
	border-bottom:#eed 3px double;
}

.node .content{
	padding:0;
	padding-left:5px;
	background:#fff url(images/postbg.jpg) repeat-y top left;
	text-align: justify;
}
.node a:active,.node a:hover {
	border-bottom:1px solid;
}
h2,h3 {
	color:#d96ca7;
	display:block;
	font-size:1.5em;
	margin:0;
        font: bold 30px/30px Arial,Helvetica,sans-serif;
}
h3.title{
	margin-top:1em;
}
h3.title a {
	border:none;
	text-decoration:none;
}
h3 a:link,h3 a:visited,h3 a:hover,h3 a:active {
	color:#1e2546;
	border: none;
}
/*
	Images
*/
img 
{
  background: none;
  padding: 5px 5px 5px 5px;
  border: 1px solid #ddd;
  box-shadow: 3px 3px 3px #bbb;
}

a img {
  background: none;
  padding: 5px 5px 5px 5px;
  border: 1px solid #ddd;
  box-shadow: 3px 3px 3px #bbb;
}
img.wp-smiley 
{
	border:none;
	padding:0;
	background:none;
}
img.right 
{
	float: right;
	margin:10px 0 0 10px;	
}
img.left 
{
	float: left; 
	margin:0 10px 10px 0;
}
/*
	Feed Icon (was #sidebar ul#feed li )
*/
.feed_icon
{
	list-style:none;
	margin:0;
	padding:5px 20px;
	background:url(images/feed-icon.png) no-repeat left ;
}
#rss_feeds a:hover
{
	border:none;
	text-decoration:underline;
}
/*
	Quotes
*/
blockquote
{
	color:#666;
	margin: 1em;
	padding: 0 0 10px 50px;
	background: url(images/blockquote.gif) no-repeat left top;	
}
/*
	breadcrumb
*/
.breadcrumb {
	font-size: 10pt;
        font-weight: bold;
        color: #febe2d;
  display: none;
}

.node-type-product .breadcrumb {
  display: block;
}

.breadcrumb a {
        color: #febe2d;
}
.block{
	clear:both;
  padding: 0px 0px 20px 0px;
  border-bottom: 1px solid #FACFDF;
}
/*
	Trackback
*/
#trackback-url
{
	font-size: 1em;
	text-align: left;
	margin-bottom: 10px;
	font-family: Arial, Verdana,'Trebuchet MS','Lucida Grande', sans-serif;
}
#trackback-url h2
{
	font-weight:bold;
	font-size: 1em;
	text-align: left;
	margin-bottom: 10px;
	font-family: Arial, Verdana,'Trebuchet MS','Lucida Grande', sans-serif;
}
#trackback-url div.content,#trackback-url h2
{
	display: inline;
	background:transparent;
}
/*
	Service links
*/
.service-links{
	margin-top:25px;
	margin-bottom:0.5em;
	text-align:left;
}
.service-label
{
	display:inline;
	font-weight:bold;
}
.service-links ul
{
	display:inline;
}
.service-links ul.links li
{
	background:none;
	padding:0;
}
.service-links ul.links li img
{
	background:none;
	padding:0;
}


.model {
  padding: 20px 0px 0px 0px;
  display: block;
  color: black;
  QQQ display: none;
  font-size: 16px;
  font-family:
'Arial', 
'Trebuchet MS', 
'Verdana';
}

.page-node-158 .model,
.page-node-159 .model {
  display: none;
}


.uc-price-display {
  display: none;
}

.sell {
  display: none;
}

.node-type-product .node .content {
  padding: 1px 0px 12px 20px;
  min-height: 180px;
}

.node-type-product #content div.add-to-cart {
  display: block;
  font-family: 'Arial', 'Trebuchet MS', 'Verdana';
  margin: 10px 0px 0px 0px;
}

.node-type-product #content div.add-to-cart label {
  font-size: 18px;
  font-weight: normal;
  padding: 2px 5px 0px 7px !important;
  background: #FCDCEB;
  width: 313px;
  color: black;
}

.node-type-product #content div.add-to-cart p {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px !important;
}

.node-type-product #content div.add-to-cart .form-submit.node-add-to-cart {
  font-weight: bold;
  font-size: 16px;
  font-family: 'Arial', 'Trebuchet MS', 'Verdana';
  padding: 5px;
  margin: 10px 0px 10px 0px;
  background: #FCDCEB;
  border: 3px solid white;
  border-radius: 10px;
}

.node-type-product #content div.add-to-cart .form-submit.node-add-to-cart:hover {
  background: #FEBE2D;
}



.node-type-product #content .product-body p,
.node-type-product #content .product-body {
  width: 322px;
  font-family: 'Arial', 'Trebuchet MS', 'Verdana';
  font-size: 14px;
  margin: 15px 0px 20px 0px;
  line-height: 16px;
}


.node-type-product .node .content select {
  width: 325px;
  font-size: 18px;
  border: 5px solid #FCDCEB;
  letter-spacing: -0.5px;
}

.node-type-product .node .content .form-text {
  width: 305px;
  background: white;
  font-size: 18px;
  border: 5px solid #FCDCEB;
}

.node-type-product .node .content .form-item {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 20px 0px;
}

.node-type-product .node .content #edit-attributes-13-wrapper.form-item,
.node-type-product .node .content #edit-attributes-16-wrapper.form-item {
  padding: 0px 0px 10px 0px;
}



.node-type-product .node {
  border: none !important;
}

.node-type-product .node img {
  margin: 7px 20px 0px 0px;
}

.main-product-image:hover a {
  border: none !important;
}

img#TB_Image {
  border: none !important;
}

#TB_window {
  padding: 0px 10px 0px 0px;
}

.category a {
  color: #D96CA7;
}

.category a:hover {
  text-decoration: underline;
  border:none;
}

.category img {
  margin: 10px 0px 0px 0px !important;
  border: 10px #fbdbe9 solid;
}

.category img:hover {
  border: 10px #E652A2 solid;
}

QQQ #block-search-0 {
  margin: 10px 0px 20px 0px !important;
}

#container .clear {
  display: none;
}

#block-search-0 #edit-submit {
  position: relative;
  top: 3px;
}

.section-catalog img {
  background: transparent;
  border: 1px solid darkgrey;
  padding: 0px 0px 0px 0px;
  margin: 10px 10px 10px 10px;
}

.section-catalog a:hover {
  border: none;
  text-decoration: underline;
}

.section-catalog tr.even, .section-catalog tr.odd {
  background: #fce9f4;
}

.section-catalog .category-grid-products a {
  color: #D96CA7;
  font-weight: bold;
}

.section-catalog .list-add-to-cart {
  margin: 0px 10px 0px 0px;
}

#cart-form-products {
  border: none;
  margin: 30px 0px 20px 0px;
}

#cart-form-buttons {
  border: none;
}

.cart-block-summary-links ul.links li {
  border: none;
}

.cart-block-summary-links ul.links {
  margin: 10px 0px 0px 0px;
}

#edit-items-0-qty {
  width: 100px;
  margin: 0px 20px 0px 0px;
}

img.category {
  display: none;
}

.category-grid-products table {
  border: none;
  margin: 20px 0px 20px 0px;
}

.category-grid-products tbody {
  border: none;
}

.category-grid-products td {
  border: none;
  background: #FACFDF;
  QQQ border-radius: 30px;
  display: inline-block;
  margin: 10px 10px 10px 10px;
  width: 170px;
  min-height: 200px;
  border: 1px solid #EC008C;
}

.category-grid-products td:hover {
  background: #F9B1CC;
}

.category-grid-products .imagecache-product_list {
  max-width: 140px;
  height: auto;
}




.page-node-1 #sidebar {
  display: none;
}

.page-node-1 .node {
  border: 0px solid #ccc;
}

.page-node-1 .node td {
  padding: 2px;
}

.page-node-1 .node .content {
  text-align: left;
}

#block-views-slideshow1-block_1 {
  text-align: center;
}

#block-views-slideshow1-block_1 h2 {
  border: 0px solid #ccc;
  text-align: left;
}

#block-views-slideshow1-block_1 img {
        margin: 0px 0px 0px 0px;
	border:none;
	background:none;
	border-top:#eee 1px solid;
	border-left:#eee 1px solid;	
}

#block-views-slideshow1-block_1 a {
  text-decoration: none;
}

#block-views-slideshow1-block_1 a:hover {
  text-decoration: underline;
}

#block-views-slideshow1-block_1 .views-field-field-slide1-fid a:hover {
	border-bottom: 0px solid;
}

#cat201 {
  font-weight: bold;
  font-size: 17px;
  color: red;
}



.page-cart #cart-form-pane #uc-cart-view-form #cart-form-products .qty input {
  width: 30px;
}

.page-cart #cart-form-products td {
  padding: 10px 5px 10px 5px;
}

.page-cart #cart-form-products td img {
  padding: 5px;
}

.page-cart #cart-form-products td ul {
  margin: 5px 0px 0px 0px;
}

.page-cart #cart-form-products td li {
  margin: 0px 0px 0px 15px;
}

.page-cart-checkout #uc-cart-checkout-form input[type="text"] {
  width: 200px;
}




.section-node-edit.node-type-product #uc-object-attributes-form #edit-add-attributes {
  height: 290px;
}

.node-type-product #content .add-to-cart .attributes .form-item .description p {
  line-height: 13px;
  padding: 0px 0px 0px 7px !important;
  color: #777;
  font-size: 13px;
  letter-spacing: -0.5px;
}




.page-node-add-agent #node-form #edit-title {
  width: 380px;
}

.page-agents #wrap {
  QQQ width: 90%;
}

.page-agents #sidebar {
  display: none;
}

.page-agents .view-Agents .view-header {
  padding: 10px 0px 10px 0px;
}

.page-agents .view-Agents th,
.page-agents .view-Agents td {
  padding: 5px 5px 5px 5px;
}


.page-agents .view-Agents .views-table {
  width: 950px !important;
}

.page-agents .view-Agents td.views-field-field-suburb-value {
  width: 150px !important;
  font-weight: bold;
}

.page-agents .view-Agents td.views-field-title {
  width: 230px !important;
}

QQQ .page-agents .view-Agents td.views-field-field-phone-value {
  width: 90px !important;
}

QQQ .page-agents .view-Agents td.views-field-field-website-value {
  width: 220px !important;
}

.page-agents .view-Agents td.views-field-field-address-value {
  width: 250px !important;
}

.page-agents .view-Agents td.views-field-field-stock-carried-value {
  width: auto !important;
}

.page-agents .view-Agents td.views-field-field-delivery-day-value {
  width: 120px !important;
  padding-right: 10px;
}



.page-content-sizesprices .sizes1 {
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 35px;
  padding: 0px 0px 40px 0px;
  text-align: left;
}

.page-content-sizesprices .sizes2 {
  font-size: 29px;
  letter-spacing: 0px;
  background: #F38AB3;
  color: white;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
  margin: 0px 0px 15px 0px;
  display: block;
}

.page-content-sizesprices .sizes3 {
  clear: both;
  color: white;
  font-size: 17px;
  font-weight: bold;
  margin: 0px 0px 3px 0px;
}

.page-content-sizesprices .sizes3 table {
  border-collapse: separate;
  background: #F38AB3;
  width: 680px;
}

.page-content-sizesprices .sizes3 tbody {
  border: 0px solid #ccc;
}

.page-content-sizesprices .sizes3 td {
  border: 1px solid white;
  padding: 5px 5px 5px 5px;
}

.page-content-sizesprices .sizes41 {
  font-size: 14px;
  float: right;
  margin: 0px 0px 17px 0px;
}

.page-content-sizesprices .sizes42 {
  clear: both;
  color: white;
  font-size: 17px;
  font-weight: bold;
  margin: 0px 0px 35px 0px;
}

.page-content-sizesprices .sizes42 table {
  border-collapse: separate;
  background: #F38AB3;
  width: 680px;
}

.page-content-sizesprices .sizes42 tbody {
  border: 0px solid #ccc;
}

.page-content-sizesprices .sizes42 td {
  border: 1px solid white;
  padding: 5px 5px 5px 5px;
}

.page-content-sizesprices .sizes43 {
  clear: both;
  color: white;
  font-size: 17px;
  font-weight: bold;
  margin: 0px 0px 35px 0px;
}

.page-content-sizesprices .sizes43 table {
  border-collapse: separate;
  background: #F38AB3;
  width: 680px;
}

.page-content-sizesprices .sizes43 tbody {
  border: 0px solid #ccc;
}

.page-content-sizesprices .sizes43 td {
  border: 1px solid white;
  padding: 5px 5px 5px 5px;
}

.page-content-sizesprices .sizes44 {
  clear: both;
  font-size: 17px;
  font-weight: bold;
  margin: 0px 20px 35px 0px;
  float: left;
}

.page-content-sizesprices .sizes44 table {
  border-collapse: separate;
  background: #F38AB3;
  color: white;
  width: 310px;
}

.page-content-sizesprices .sizes44 tbody {
  border: 0px solid #ccc;
}

.page-content-sizesprices .sizes44 td {
  border: 1px solid white;
  padding: 5px 5px 5px 5px;
}

.page-content-sizesprices .sizes45 {
  font-size: 14px;
  margin: 0px 0px 5px 0px;
}

.page-content-sizesprices .sizes46 table {
  border-collapse: separate;
  background: #F38AB3;
  color: white;
  width: 350px;
  font-weight: bold;
  margin: 0px 0px 20px 0px;
  text-align: left;
}

.page-content-sizesprices .sizes46 tbody {
  border: 0px solid #ccc;
}

.page-content-sizesprices .sizes46 td {
  border: 1px solid white;
  padding: 5px 5px 5px 5px;
}

.page-content-sizesprices .sizes47 {
  font-size: 14px;
  margin: 0px 0px 5px 0px;
}

.page-content-sizesprices .sizes47 table {
  border-collapse: separate;
  background: #F38AB3;
  color: white;
  width: 350px;
  font-size: 16px;
  font-weight: bold;
  margin: 0px 0px 5px 0px;
}

.page-content-sizesprices .sizes47 tbody {
  border: 0px solid #ccc;
}

.page-content-sizesprices .sizes47 td {
  border: 1px solid white;
  padding: 5px 5px 5px 5px;
}

.page-content-sizesprices .sizes48 {
  clear: both;
}

.page-content-sizesprices .sizes8 {
  float: left;
  margin: 0px 15px 20px 0px;
}

.page-content-sizesprices .sizes10 {
  color: #DB4A82;
  font-weight: bold;
  border: 3px solid #F38AB3;
  padding: 2px 5px 2px 5px;
  letter-spacing: -0.5px;
  text-align: center;
  border-radius: 10px;
}




.page-content-frequently-asked-questions .faq1 {
  background: #F38AB3;
  color: white;
  margin: 0px 0px 20px 0px;
  padding: 10px;
  font-size: 18px;
  text-align: left;
}

.page-content-frequently-asked-questions .faq2 {
  font-weight: bold;
}



.front.page-catalog #wrap #content h2 {
  display: none;
}

.front.page-catalog #wrap #content h2.top11 {
  display: block;
  padding: 10px 0px 0px 0px;
  letter-spacing: -1px;
}

.front.page-catalog #content td.category {
  background: #FACFDF;
  QQQ border-radius: 20px;
  margin: 5px;
  padding: 0px 10px 10px 10px;
  display: inline-block;
  height: 180px;
  width: 140px;
  border: 1px solid #EC008C;

}




#block-block-2 #social1 {
  display: block;
  height: 50px;
}

#block-block-2 #social1 img {
  border: 0px solid #ccc;
  box-shadow: none;
  padding: 0px 0px 0px 0px;
  float: left;
  margin: 0px 0px 0px 0px;
}

#block-uc_catalog-0 li {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

#block-uc_cart-0 {
  border: 0px solid #ccc;
}


td.category {
  width: 20%;
}

#contactus1 {
  width: 410px;
}

#contactus1 td {
  background: #E652A2;
  color: white;
  padding: 5px;
}

.page-content-contact-us .webform-client-form #edit-actions {
  position: relative;
  top: 190px;
  margin: 0px 0px 0px 10px;
  z-index: 999;
}

.page-content-contact-us .webform-client-form #edit-actions #edit-submit {
  font-size: 16px;
  font-weight: bold;
  padding: 2px 10px 2px 10px;
  font-family:
'Arial', 
'Trebuchet MS', 
'Verdana';
}



.page-content-contact-us .webform-client-form .captcha {
  position: relative;
  top: -20px;
  padding: 0px 0px 0px 0px;
  height: 220px;
}

.page-content-contact-us .webform-client-form .captcha legend {
  display: none;
}

.page-content-contact-us .webform-client-form .captcha .description {
  display: none;
}




