﻿/* 
  HTML5 ? Boilerplate 
  style.css contains a reset, font normalization and some base styles.
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section { display:block; }
nav ul { list-style:none; }
blockquote, q { quotes:none; }
blockquote:before, blockquote:after, q:before, q:after { content:''; content:none; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }
ins { background-color:#ff9; color:#000; text-decoration:none; }
mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
table { border-collapse:collapse; border-spacing:0; } /* tables still need cellspacing="0" in the markup */
hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
input, select { vertical-align:middle; }
/* END RESET CSS */

/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 
/* 
 * minimal base styles 
 */
body, select, input, textarea { 
	color: #444; /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
	font-family: Arial, sans-serif; /* set your base font here, to apply evenly */
}

/* Headers (h1,h2,etc) have no default font-size or margin, you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

html { overflow-y: scroll; } /* always force a scrollbar in non-IE */ 
a:hover, a:active { outline: none; } /* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a, a:active, a:visited { color: #1a1557; }
a:hover { color: #484479; }
ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }
nav ul, nav li { margin: 0; } /* Remove margins for navigation lists */
small { font-size: 85%; }
strong, th { font-weight: bold; }
td, td img { vertical-align: top; } 
sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }
pre { 
  padding: 15px; 
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid { }
input:invalid, textarea:invalid { 
	border-radius: 1px;
	-moz-box-shadow: 0px 0px 5px red; 
	-webkit-box-shadow: 0px 0px 5px red; 
	box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }

/* These selection declarations have to be separate. No text-shadow: twitter.com/miketaylr/status/12228805301 Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

a:link { -webkit-tap-highlight-color: #FF5E99; } /*  j.mp/webkit-tap-highlight-color */
button {  width: auto; overflow: visible; } /* make buttons play nice in IE: www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
 
/* bicubic resizing for non-native sized IMG: code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/* 
 * Non-semantic helper classes 
 */
/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; visibility: hidden;	} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

 /* Primary Styles -  Is this where I edit?
    Author: Terry Apodaca
 */
body { background: #fff; }
p { text-align: left; }
hr { display: none; }
:focus { outline: 0; } /* remember to define focus styles! */
.left { float: left; }
.right { float: right; } 
.reverse { unicode-bidi:bidi-override; direction:rtl; }
div.current { background: #1a1557;  }
.current a { color: #c6c4d4; }
/*.tooltip {
	display:none;
	background:transparent url(../images/black_arrow.png);
	font-size:12px;
	height:70px;
	width:160px;
	padding:25px;
	color:#fff;
}*/

p img.right { margin: 0 0 0 20px; }
p img.left { margin: 0 20px 0 0; }
p img { padding: 5px; border: 1px solid #E2E0EB; background:#F1F0F5;  }

#header { width: 100%; height: 140px; background: #fff url(../images/header-bg.png) repeat-x bottom left; }
#header-inner { position: relative; margin: 0 auto; width: 780px; }

#logo { margin: 10px 0 0px 0; width: 193px; height: 130px; }
#logo .flag { margin: 0px 0 0px 10px; }

#nav {  margin: 0 10px; width: 417px; height: 140px; background: transparent url(../images/nav-bg-new.png) no-repeat center 3px; }
#nav #menu { position: relative; margin: 0; padding: 0; width: 417px; height: 140px; font-size: 90%; }
#nav #menu div.Reception { position:absolute; top: 35px; left: 40px; padding: 5px; }
#nav #menu div.Treatment { position:absolute; top: 58px; left: 40px; padding: 5px; }
#nav #menu div.Wards { position:absolute; top: 82px; left: 40px; padding: 5px; }
#nav #menu div.Miscellaneous { position:absolute; top: 105px; left: 40px; padding: 5px; }

#nav #menu div.Grooming { position:absolute; top: 35px; left: 250px; padding: 5px; }
#nav #menu div.Boarding { position:absolute; top: 58px; left: 250px; padding: 5px; }
#nav #menu div.Lab { position:absolute; top: 82px; left: 250px; padding: 5px; }
#nav #menu div.Gallery { position:absolute; top: 105px; left: 250px; padding: 5px; }

/* New Menu */
#nav #menu div.treatment { padding: 5px; position:absolute; top: 10px; left: 40px; }
#nav #menu div.sinks { padding: 5px; position:absolute; top: 30px; left: 40px; }
#nav #menu div.tables { padding: 5px; position:absolute; top: 50px; left: 40px; }
#nav #menu div.cabinets-casework { padding: 5px; position:absolute; top: 70px; left: 40px; }
#nav #menu div.work-islands { padding: 5px; position:absolute; top: 90px; left: 40px; }
#nav #menu div.grooming-tubs { padding: 5px; position:absolute; top: 110px; left: 40px; }

#nav #menu div.kennels { padding: 5px; position:absolute; top: 10px; left: 230px; }
#nav #menu div.cat-condos { padding: 5px; position:absolute; top: 30px; left: 230px; }
#nav #menu div.cages { padding: 5px; position:absolute; top: 50px; left: 230px; }
#nav #menu div.faucets-scales { padding: 5px; position:absolute; top: 70px; left: 230px; }
#nav #menu div.trench-drains { padding: 5px; position:absolute; top: 90px; left: 230px; }
#nav #menu div.gallery { padding: 5px; position:absolute; top: 110px; left: 230px; }
/* End New Menu */

#nav #menu a { font-weight: bold; }
#nav #menu .sub { display:none; z-index: 999; line-height: 1.4em; position: absolute; white-space: nowrap; }
#nav #menu .link:hover .sub { display:block; background: #1a1557; z-index: 999; -moz-box-shadow:3px 3px 5px #333;	-webkit-box-shadow:3px 3px 5px #333; box-shadow:3px 3px 5px #333; }
#nav #menu .sub a { display: block; margin: 0; color: #fff; padding: 3px 10px; }
#nav #menu .sub a:hover { display: block; margin: 0; color: #c6c4d4; }

#nav #menu .subsub { display:none; z-index: 998; line-height: 1.4em; position: absolute; white-space: nowrap; background: #c6c4d4; }
#nav #menu .linklink:hover .subsub { display:block; margin-left: 30px; z-index: 998; -moz-box-shadow:3px 3px 5px #333; -webkit-box-shadow:3px 3px 5px #333; box-shadow:3px 3px 5px #333; }
#nav #menu .subsub a { display: block; margin: 0; color: #1a1557; padding: 3px 10px; }
#nav #menu .subsub a:hover { display: block; margin: 0; color: #484479; }

#social-top { position: absolute; top: 3px; right: 0; border: 0px solid #000; height: 25px; }

#login { position: relative; margin: 30px 0 5px 0; width: 150px; height: 95px; color: #fff; border-top: 10px solid #484479; background: #1a1557; }
#login a { color: #fff; font-weight: bold;}
#login a:hover { color: #c0c0c0; font-weight: bold;}
#login p { margin: 5px; font-size: 12px; }
#login p.wishlist { margin-top: 0; /*background: transparent url(../images/wishlist.png) no-repeat top right;*/ }
#login p.wishlist strong {font-size: 16px;}
#login p.contact { margin-top: 0; /*background: transparent url(../images/contact.png) no-repeat top right;*/ }
#login p.contact strong {font-size: 16px;}
#login p.status { position: absolute; bottom: 0; }

#content { width: 100%; }
#content-main { margin: 0; width: 100%; height: 420px; background: #484479 url(../images/banner-bg.png) no-repeat top center; }
#content-main-inner { margin: 0 auto; position: relative; width: 780px; clear: both; }

#slider { position:relative;  width:780px; height:420px; background:url(../images/loading.gif) no-repeat 50% 50%; }
#slider img { position:absolute; top:0px; left:0px; display:none; }
#slider a { border:0; display:block; }
/*#slider .nivo-controlNav { position:absolute; right: 0; bottom: 13px; width: 320px; height: 60px; }
#slider .nivo-controlNav img {
	float: left;
	display: block;
	position:relative;
	margin-right:5px;
	height: 50px;
	background: #1a1557;
	border: 3px solid #1a1557;
	-moz-box-shadow:0px 0px 5px #333;
	-webkit-box-shadow:0px 0px 5px #333;
	box-shadow:0px 0px 5px #333;
	border-radius:5px;	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
#slider .nivo-controlNav a.active img { -moz-box-shadow:0px 0px 10px #fff; -webkit-box-shadow:0px 0px 10px #fff; box-shadow:0px 0px 10px #fff; }
*/
#slider .nivo-controlNav {
	position:absolute; left: 10px; bottom: 10px; 
	text-align: center;
	padding: 0;
}
#slider .nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(../images/bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
#slider .nivo-controlNav a.active {
	background-position:0 -22px;
}
.nivo-directionNav a { display:block; width:38px; height:55px; text-indent:-9999px; border:0; }
a.nivo-nextNav { background: transparent url(../images/banner-right.png) no-repeat top right; right:0px; }
a.nivo-prevNav { background: transparent url(../images/banner-left.png) no-repeat top right; left:0px; }

.nivo-html-caption { height: 420px; width: 780px; }
.nivo-caption { height: 420px; width: 780px; background:transparent; }

a { text-decoration: none; border: none; }
a:focus { text-decoration: none; outline: 0; }

#tt1a { position: absolute; bottom:55px; left: 400px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt1b { position: absolute; bottom:145px; left: 410px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt1c { position: absolute; bottom:80px; right: 75px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt1d { position: absolute; bottom:200px; right: 150px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }

#tt2a { position: absolute; top:130px; right: 210px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt2b { position: absolute; bottom:105px; right: 115px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt2c { position: absolute; bottom:220px; right: 30px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt2d { position: absolute; top:200px; left: 300px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }

#tt3a { position: absolute; bottom:125px; right: 265px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt3b { position: absolute; bottom:75px; right: 265px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt3c { position: absolute; bottom:210px; left: 230px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }
#tt3d { position: absolute; bottom:175px; right: 125px; height: 30px; width:30px; background:url(../images/tooltip-trans.png); }

.tooltip {cursor: pointer;position: relative;}
.tooltip span {margin-left: -9999em;position: absolute;}
.tooltip:hover span {
	position: absolute;
	margin-left: 0;
	width: 250px;
	font-size: 16px;
	color: #fff;
	text-shadow: 0 0 2px #000;
	padding: 10px 15px;
	z-index: 99;
	border: 1px solid rgba(255,255,255,0.25);
	background-color: rgb(25,25,25);
	background-color: rgba(25,25,25,0.92);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 0 0 5px #555;
	-webkit-box-shadow: 0 0 5px #555;
	-moz-box-shadow: 0 0 5px #555;
}
.tooltip:hover span.tt1a {bottom: 25px; right: 25px;}
.tooltip:hover span.tt1b {bottom: 25px; right: 25px;}
.tooltip:hover span.tt1c {bottom: 25px; right: 25px;}
.tooltip:hover span.tt1d {bottom: 25px; right: 25px;}

.tooltip:hover span.tt2a {bottom: 25px; right: 25px;}
.tooltip:hover span.tt2b {bottom: 25px; right: 25px;}
.tooltip:hover span.tt2c {bottom: 25px; right: 25px;}
.tooltip:hover span.tt2d {bottom: 25px; right: 25px;}

.tooltip:hover span.tt3a {bottom: 25px; right: 25px;}
.tooltip:hover span.tt3b {bottom: 25px; right: 25px;}
.tooltip:hover span.tt3c {bottom: 25px; left: 25px;}
.tooltip:hover span.tt3d {bottom: 25px; right: 25px;}

.border-top-hp { position: absolute; top: 0; width: 780px; height: 5px; background: #1a1557; z-index: 100; }
.border-bottom-hp { position: absolute; bottom: 0; width: 780px; height: 5px; background: #1a1557; z-index: 100; }
.border-top { position: absolute; top: 0; width: 585px; height: 5px; background: #1a1557; z-index: 100; }
.border-bottom { position: absolute; bottom: 0; width: 585px; height: 5px; background: #1a1557; z-index: 100; }

div.col1a { float: left; margin:0; padding: 0; width: 195px; height: 410px; overflow: auto;  color: #fff; background: #1a1557 url(../images/col1a-bg.png) repeat-x top left; border-top: 5px solid #1a1557; border-bottom: 5px solid #1a1557;  }
div.col1a h2 { padding: 15px 20px; font-size: 22px; }
div.col1a strong { padding:  0 20px; font-size: 14px; }
div.col1a h1 { padding: 0 20px; }
div.col1a h1 strong { padding: 0; }
div.col1a ul { margin: 0 20px 20px 20px; padding: 0; list-style: none; }
div.col1a ul li { padding-left: 10px; margin: 5px 0; }
div.col1a p { margin: 0 20px; }
div.col1a p a { margin-left: 20px; color: #fff; text-decoration: underline; }
div.col1a p a strong { padding: 0; }

div.col2a { position: relative; float: left; width: 585px; height: 420px; }

#content-main-page { margin: 0; width: 100%; height: 100px; background: #484479 url(../images/banner-bg.png) no-repeat 50% 50%; }
#content-main-inner-page { margin: 0 auto; position: relative; width: 780px; clear: both; }

#content-sub { margin: 5px 0; width: 100%; background: url(../images/content-sub-bg.png) repeat-x; }

/*Stacy Added this */ 
#content-sub-copy { margin: 0px; position: relative; width: 780px; }
#content-sub-copy h1 { color: #0b56a4; font-size: 14pt; font-weight: bold; }

#content-sub-inner { margin: 0 auto; width: 780px; }

.homepage-sub { height: 271px; } 
.productspage-sub {background: url(../images/productspage-bg.png) repeat-y; }
.page-sub {background: url(../images/productspage-bg.png) repeat-y; }

div.col1b { float: left; width: 195px; height: auto; background: #c6c4d4; }
div.col2b { float: left; width: 585px; height: auto; background: #fff; }

div.productspage-sub .col1b h3 { margin: 10px; padding: 0; font-size: 16px; }
div.productspage-sub .col1b ul { margin: 0px 5px 10px 10px; padding: 0; list-style: none; color:#1a1557; }
div.productspage-sub .col1b ul li { margin:0px 0 10px 0; padding: 0px;}
div.productspage-sub .col1b ul li ul li { margin:0px; padding: 0px;}

/**Stacy changed the h1 tag **/
div.productspage-sub .col2b h1 { margin: 10px 15px; padding: 0; color: #1a1557; font-size: 22px; font-weight: bold;  }
div.productspage-sub .col2b h2 { margin: 10px 15px; padding: 0; color: #1a1557; font-size: 20px; font-weight: bold; }
div.productspage-sub .col2b h3 { margin: 10px 15px; padding: 0; color: #1a1557; font-size: 18px; font-weight: bold; }
div.productspage-sub .col2b h4 { margin: 10px 15px 0 15px; padding: 0; color: #1a1557; font-size: 16px; font-weight: normal; }
div.productspage-sub .col2b h5 { margin: 10px 15px 0 15px; padding: 0; color: #000; font-size: 14px; font-weight: bold; }
div.productspage-sub .col2b h6 { margin: 10px 15px 0 15px; padding: 0; color: #000; font-size: 12px; font-style:italic; font-weight: bold; font-style: italics; }
div.productspage-sub .col2b p { margin: 10px 15px; padding: 0; font-size: 14px; }
div.productspage-sub .col2b ul { margin: 0 20px 20px 30px; list-style: sphere; }
div.productspage-sub .col2b ul li { padding: 3px; }

div.productspage-sub .col2b ul.productlist { margin: 20px; padding: 0; list-style: none; }
div.productspage-sub .col2b ul.productlist li { float: left; margin: 5px; padding: 10px; border: 1px solid #E2E0EB; background:#F1F0F5; text-align: center; }
div.productspage-sub .col2b ul.productlist li h5 { margin: 0; padding: 0; font-size: 10px; font-weight: normal; }

div.col1a-product { float: left; margin:0; padding: 0; width: 195px; height: 415px; overflow: auto;  color: #fff; background: #fff; border-top: 5px solid #1a1557; }
div.col1a-product h2 { padding:15px 20px 20px; font-size: 22px; background: #1a1557 url(../images/col1a-bg.png) repeat-x top left; }
div.col1a-product h3 { margin: 15px 20px 20px 20px; padding-bottom:15px; color: #1a1557; font-size: 22px; border-bottom: 1px solid #1a1557; }
div.col1a-product h4 { margin: 15px 20px 0px 20px; color: #1a1557; font-size: 22px; font-weight: normal; }
div.col1a-product p { position: relative; margin: 0 20px 20px; padding: 0; color: #000; font-size: 12px; text-align: left; }
div.col1a-product p a img { margin: 0 5px -5px 0; padding: 0; background: none; border: none;}
div.col1a-product p span {position: absolute;  width: 150px; height: 25px; font-size: 12px; text-align: center; line-height: 18px;
	background: #c00 url(../images/gallery-button.png) repeat-x top left;
	border-radius:12px; -moz-border-radius:12px;  -webkit-border-radius:12px; }
div.col1a-product span a { display: block; color: #fff; font-weight: bold; font-size: 12px; font-family: Verdana; margin-top: 3px;
	-moz-text-shadow:0px -1px 0px #333; -webkit-text-shadow:0px -1px 0px #333; text-shadow:0px -1px 0px #333;}
div.col1a-product span a:hover { color: #fff; -moz-text-shadow:0px 1px 0px #333; -webkit-text-shadow:0px 1px 0px #333; text-shadow:0px 1px 0px #333; }

div.col2a-product { position: relative; float: left; width: 585px; height: 420px; background: #fff; overflow: hidden; text-align: center; }
div.col2a-product img { max-width: 585px; max-height: 420px; }
.col2a-product #gallery { position: absolute; bottom: 10px; right: 10px; z-index: 99; }
.col2a-product #gallery img { box-shadow: 1px 1px 1px #666; webkit-box-shadow: 1px 1px 1px #666; -moz-box-shadow: 1px 1px 1px #666; }
.col2a-product #gallery img:hover { box-shadow: 1px 1px 1px #fff; webkit-box-shadow: 1px 1px 1px #fff; -moz-box-shadow: 1px 1px 1px #fff; }

div.col2b-product h1 { display: none; }
div.col2b-product h2 { padding:15px 20px 20px; font-size: 22px; background: #1a1557 url(../images/col1a-bg.png) repeat-x top left; }
div.col2b-product h3 { margin: 15px 20px 20px 20px; padding-bottom:15px; color: #1a1557; font-size: 22px; border-bottom: 1px solid #1a1557; }
div.col2b-product h4 { margin: 15px 20px 5px 20px; color: #1a1557; font-size: 22px; font-weight: normal; }
div.col2b-product p { position: relative; margin: 0 20px 20px; padding: 0; color: #000; font-size: 12px; }

div.productspage-sub div.productb h3 { margin: 15px 20px 20px 20px; }
div.productspage-sub div.productb h4 { margin: 0px 20px 20px 20px; }
div.productspage-sub div.productb h6 { margin-bottom: 0px; }
div.productspage-sub div.productb p { margin-top: 0px; margin-bottom: 20px; }
div.productspage-sub div.productb ul { margin: 0 0  20px 30px; }
div.productspage-sub div.productb ul li { padding: 3px; }

div.col1a-product div#variations {text-align: center;}
div.col1a-product div#variations ul { margin: 10px; list-style: none; }
div.col1a-product div#variations ul li { color: #000; text-align: center; position: relative; padding: 5px; border-bottom: 2px solid #fff; background: #f1f0f5;}
div.col1a-product div.quantityBox { margin: 0 20px; color: #333; text-align: center; }
div.col1a-product div.ecomquantityfield { margin: 0; padding: 0; padding: 5px;  background: #f1f0f5;  }
div.col1a-product .ajaxQuantityField { margin: 0; padding: 0; border: none; width: 40px; text-align: center; font-size: 14px; color: #1a1557; font-weight: bold;}
div.col1a-product div#variations ul li div.quantityBox { margin: 0; color: #333; }
div.col1a-product div#variations ul li div.ecomquantityfield { margin: 0; padding: 0; }
div.col1a-product div#variations .ajaxQuantityField { margin: 0; padding: 0; border: none; width: 40px; text-align: center; font-size: 14px; color: #1a1557; font-weight: bold;}
div.col1a-product div#variations span { margin: 0; padding: 0 10px; height: 20px; font-size: 10px; text-align: center; line-height: 16px;
	background: #c00 url(../images/gallery-button.png) repeat-x top left;
	border-radius:12px; -moz-border-radius:12px;  -webkit-border-radius:12px; }
div.col1a-product div#variations span a { display: block; margin: 0; color: #fff; font-weight: bold; font-size: 10px; font-family: Verdana; margin-top: 1px; text-decoration: none; 
	-moz-text-shadow:0px -1px 0px #333; -webkit-text-shadow:0px -1px 0px #333; text-shadow:0px -1px 0px #333;}
div.col1a-product div#variations span a:hover { color: #fff; -moz-text-shadow:0px 1px 0px #333; -webkit-text-shadow:0px 1px 0px #333; text-shadow:0px 1px 0px #333; }
div.productspage-sub div.productb div#variations ul li span a { text-decoration: none; }

div.productspage-sub div.productb div#variations { margin: 20px 20px 0 20px; }
div.productspage-sub div.productb div#variations h4 { margin: 0 10px; }
div.productspage-sub div.productb div#variations ul { margin: 0px; list-style: none; }
div.productspage-sub div.productb div#variations ul li { position: relative; padding: 10px; border-bottom: 2px solid #fff; background: #f1f0f5; }
div.productspage-sub div.productb div#variations ul li a  { text-decoration: underline; }
div.productspage-sub div.productb div#variations ul li div.quantityBox { position: absolute; margin: 0; color: #333; top: 9px; right: 28px; }
div.productspage-sub div.productb div#variations ul li div.ecomquantityfield { margin: 0; padding: 0; }
div.productspage-sub div.productb div#variations .ajaxQuantityField { margin: 0; padding: 0; border: none; width: 40px; text-align: center; font-size: 14px; color: #1a1557; font-weight: bold;}

div.ecomquantityfield a img { margin-bottom: -3px; padding: 0; }

/**div#variations p { position: relative; margin: 0 5px; padding: 0; color: #000; font-size: 11px; }
div#variations a img { margin: 0 5px -5px 0; text-decoration: none; }**/
div#variations span {position: absolute; margin: 0; padding: 0 10px; right: 10px; top: 8px; height: 20px; font-size: 10px; text-align: center; line-height: 16px;
	background: #c00 url(../images/gallery-button.png) repeat-x top left;
	border-radius:12px; -moz-border-radius:12px;  -webkit-border-radius:12px; }
div#variations span a { display: block; margin: 0; color: #fff; font-weight: bold; font-size: 10px; font-family: Verdana; margin-top: 1px; text-decoration: none; 
	-moz-text-shadow:0px -1px 0px #333; -webkit-text-shadow:0px -1px 0px #333; text-shadow:0px -1px 0px #333;}
div#variations span a:hover { color: #fff; -moz-text-shadow:0px 1px 0px #333; -webkit-text-shadow:0px 1px 0px #333; text-shadow:0px 1px 0px #333; }
div.productspage-sub div.productb div#variations ul li span a { text-decoration: none; }

div.col1a-product div#variations  ul li a { color: #c00; }
div.col1a-product div#variations  ul li span {  margin: 0px; padding: 0 10px; top: 20px; left: 28px; height: 20px; width: 100px; font-size: 10px; text-align: center; line-height: 16px;
	background: #c00 url(../images/gallery-button.png) repeat-x top left;
	border-radius:12px; -moz-border-radius:12px;  -webkit-border-radius:12px; }
div.col1a-product div#variations  ul li  span a { display: block; margin: 0; color: #fff; font-weight: bold; font-size: 10px; font-family: Verdana; margin-top: 1px; text-decoration: none; 
	-moz-text-shadow:0px -1px 0px #333; -webkit-text-shadow:0px -1px 0px #333; text-shadow:0px -1px 0px #333;}
div.col1a-product div#variations  ul li  span a:hover { color: #fff; -moz-text-shadow:0px 1px 0px #333; -webkit-text-shadow:0px 1px 0px #333; text-shadow:0px 1px 0px #333; }

div.productspage-sub div#suggested_items { margin: 30px -5px 0; padding: 0; }
div.productspage-sub div#suggested_items h5 { padding: 10px; color: #fff; font-size: 14px; background: #1a1557 url(../images/col1a-bg.png) repeat-x top left; }
div.productspage-sub div#suggested_items ul { margin: 5px 0 0 15px; padding: 0; list-style: none; }
div.productspage-sub div#suggested_items li.items { position: relative; float: left; margin: 0 5px 0 0; padding: 0; width: 185px; height: 150px; background: #dddce6; }
div.productspage-sub div#suggested_items li.items p { position: absolute; top: 0; left: 0; margin: 0; padding: 5px; width: 185px; font-size: 12px; font-weight: bold; white-space: pre-wrap; overflow: hidden; z-index: 2; background: url(../images/rec-head.png) repeat top left ;}

div.productspage-sub div#suggested_items li.items img {position: absolute; bottom: 0; right: 0; max-width: 175px; max-height: 140px; margin: 5px; z-index: 1;}

div.col1a-page { float: left; margin: 0; padding: 0; height: 90px; width: 195px; color: #fff; background: #1a1557 url(../images/col1a-bg.png) repeat-x top left; border-top: 5px solid #1a1557; border-bottom: 5px solid #1a1557;}
div.col1a-page h2 { padding: 20px; font-size: 22px; }

div.col2a-page { position: relative; float: left; margin: 0; padding: 0; height: 100px; width: 585px; overflow: hidden; background: #fff url(../images/imageNotFound.jpg) no-repeat 50% 50%; }
div.col2a-page img { max-height: 100px; max-width: 585px; }

div.col1b-page { float: left; width: 195px; height: auto; }
div.col2b-page { float: left; width: 585px; height: auto; background: #fff; }

div.col2b-page table { margin: 0 15px 15px 15px; width: 555px; }
div.col2b-page table thead { border-top: 1px solid #E2E0EB; border-bottom: 1px solid #E2E0EB; background:#F1F0F5; }
div.col2b-page table tbody tr { border-bottom: 1px solid #E2E0EB; }
div.col2b-page table th, div.col2b-page table td { padding: 5px; line-height: 18px; }
div.col2b-page table th.left {text-align:left;}
div.col2b-page table th.center {text-align:center;}
div.col2b-page table th.right {text-align:right;}
div.col2b-page table td.left {text-align:left;}
div.col2b-page table td.center {text-align:center;}
div.col2b-page table td.right {text-align:right;}

div.page-sub .col1b-page h3 { margin: 10px; padding: 0; font-size: 16px; }
/**Stacy changed the h1 tag **/
div.page-sub .col2b-page h1 { margin: 10px 15px; padding: 0; color: #1a1557; font-size: 22px; font-weight: bold; }
div.page-sub .col2b-page h2 { margin: 10px 15px; padding: 0; color: #1a1557; font-size: 20px; font-weight: bold; }
div.page-sub .col2b-page h3 { margin: 10px 15px; padding: 0; color: #1a1557; font-size: 18px; font-weight: bold; }
div.page-sub .col2b-page h4 { margin: 10px 15px 0 15px; padding: 0; color: #000; font-size: 16px; font-style:italic; font-weight: bold; }
div.page-sub .col2b-page h5 { margin: 10px 15px 0 15px; padding: 0; color: #000; font-size: 14px; font-style:italic; font-weight: bold; }
div.page-sub .col2b-page h6 { margin: 10px 15px 0 15px; padding: 0; color: #000; font-size: 12px; font-style:italic; font-weight: bold; }
div.page-sub .col2b-page p { margin: 10px 15px; padding: 0; font-size: 14px; }
div.page-sub .col2b-page img.right { float:right; margin: 0px px 15px 15px; padding: 5px; border: 1px solid #E2E0EB; background:#F1F0F5; }
div.page-sub .col2b-page img.left { float:left; margin: 0px 15px 15px 0px; padding: 5px; border: 1px solid #E2E0EB; background:#F1F0F5; }

.breadcrumbs { margin: 0 10px 0 10px; padding: 5px 5px; line-height: 12px; font-family: Verdana; font-size: 10px; color: #8E86B1; text-transform: uppercase; border-top: 1px solid #E2E0EB; background:#F1F0F5; }
.breadcrumbs a { color: #B1ABC9; }
.breadcrumbs a:hover { color: #8E86B1; text-decoration: underline; }

#ImageGallery { margin: 10px 10px 0 10px;  }
#ImageGallery img {padding: 5px; border: 1px solid #E2E0EB; background:#F1F0F5; }
#ImageGallery img:hover { border: #c6c4d4;  }
#ImageGallery p.galleryImageTitle { margin: 0 0 20px 0; padding: 0 5px; font-size: 10px; text-align: left; line-height: 11px;}
#ImageGallery tr {border-bottom: none; }

#pod1 { position: relative; display:block; margin: 0 0 0 0px; width:190px; height: 271px; overflow: hidden; background: #c0c0c0; }
#pod1 h3 { position: absolute; top: 0; left: 0; width: 190px; line-height: 35px; color: #fff; font-size: 18px; text-align: center; border-top: 10px solid #484479; background: #1a1557; }
#pod1 img { position: absolute; margin: 1px; top: 45px; left: 0; height: 224px; width: 188px; }
#pod1 div { position: absolute; margin: 1px; bottom: 0; left: 0; width: 188px; background: url(../images/white-tr-bg.png) repeat top left; }
#pod1 div h4 { margin: 3px; font-size: 16px; color: #1a1557; }
#pod1 div p { margin: 5px 10px 10px 10px; font-size: 10px; white-space: pre-wrap; }

#pod2 { position: relative; display:block; margin: 0 0 0 7px; width:190px; height: 271px; overflow: hidden; background: #c0c0c0; }
#pod2 h3 { position: absolute; top: 0; left: 0; width: 190px; line-height: 35px; color: #fff; font-size: 18px; text-align: center; border-top: 10px solid #484479; background: #1a1557; }
#pod2 img { position: absolute; margin: 1px; top: 45px; left: 0; height: 224px; width: 188px; }
#pod2 div { position: absolute; margin: 1px; bottom: 0; left: 0; width: 188px; background: url(../images/white-tr-bg.png) repeat top left; }
#pod2 div h4 { margin: 3px; font-size: 16px; color: #1a1557; }
#pod2 div p { margin: 5px 10px 10px 10px; font-size: 10px; white-space: pre-wrap; }

#pod3 { position: relative; display:block; margin: 0 0 0 7px; width:190px; height: 271px; overflow: hidden; background: #c0c0c0; }
#pod3 h3 { position: absolute; top: 0; left: 0; width: 190px; line-height: 35px; color: #fff; font-size: 18px; text-align: center; border-top: 10px solid #484479; background: #1a1557; }
#pod3 img { position: absolute; margin: 1px; top: 45px; left: 0; height: 224px; width: 188px; }
#pod3 div { position: absolute; margin: 1px; bottom: 0; left: 0; width: 188px; background: url(../images/white-tr-bg.png) repeat top left; }
#pod3 div h4 { margin: 3px; font-size: 16px; color: #1a1557; }
#pod3 div p { margin: 5px 10px 10px 10px; font-size: 10px; white-space: pre-wrap; color: #1a1557; }

#pod4 { position: relative; display:block; margin: 0 0 0 6px; width:190px; height: 271px; overflow: hidden; background: #c0c0c0; overflow: hidden; }
#pod4 h3 { position: absolute; top: 0; left: 0; width: 190px; line-height: 35px; color: #fff; font-size: 18px; text-align: center; border-top: 10px solid #484479; background: #1a1557; }
#pod4 img { position: absolute; margin: 1px; top: 45px; left: 0; height: 224px; width: 188px; background: #1a1557;}
#pod4 p { position: absolute; top: 55px; left: 10px; font: bold 14px/20px Verdana, Arial, sans-serif; width: 105px; color: #1a1557; text-align: left; }
#pod4 p:before { content: " \" "; }
#pod4 p:after { content: " \" "; }
/*#pod4 span a { display: block; color: #fff; font-weight: bold; font-size: 11px; font-family: Verdana; margin-top: 4px;
	-moz-text-shadow:0px -1px 0px #333; -webkit-text-shadow:0px -1px 0px #333; text-shadow:0px -1px 0px #333;}
#pod4 span a:hover { color: #fff; margin-top: 3px; }
#pod4 span:hover { color: #fff; width: 120px; height: 34px;}
#pod4 span {position: absolute; bottom: 30px; left: 10px; width: 120px; height: 34px;  text-align: center; line-height: 12px;
	background: #c00 url(../images/gallery-button.png) repeat-x bottom left; 
	border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;
}*/
#pod4 span {position: absolute; bottom: 15px; left: 30px; width: 120px; height: 34px;  text-align: center; line-height: 12px;
	background: #c00 url(../images/gallery-button.png) repeat-x bottom left; 
	border-radius:5px; -moz-border-radius:5px;  -webkit-border-radius:5px; }
#pod4 span a { display: block; color: #fff; font-weight: bold; font-size: 11px; font-family: Verdana; margin-top: 4px;
	-moz-text-shadow:0px -1px 0px #333; -webkit-text-shadow:0px -1px 0px #333; text-shadow:0px -1px 0px #333;}
#pod4 span a:hover { color: #fff; -moz-text-shadow:0px 1px 0px #333; -webkit-text-shadow:0px 1px 0px #333; text-shadow:0px 1px 0px #333; }

#search-results {margin: 0 auto; width: 780px;}

.col1b-page h5 {margin: 20px 20px 0; font-size: 14px; }
.col1b-page p { margin: 20px; font: bold 12px/16px Georgia, serif; }
/*.col1b-page p.testimonial:before { content: " \" "; }
.col1b-page p.testimonial:after { content: " \" "; }*/

#footer { clear: both; width: 100%; }
#footer-inner { margin: 0 auto; width: 780px; }
#footer a { font-size: 12px; font-weight: bold; }
#footer-row1 { position: relative; height: 40px; color: #fff; line-height: 30px; font-weight: bold; font-size: 13px; font-style: italic; font-family: Verdana; border-top: 10px solid #484479; background: #1a1557; }
#pdf { position: absolute; top:-10px; left:0; width: 71px; height: 79px; background: url(../images/pdf.png) no-repeat top left; }
#catalog { margin: 5px 0; padding-left: 70px; width: 319px; height: 30px; border-right: 1px solid silver; }
#catalog a {color: #fff; font-size: 13px; text-decoration: underline; }
#catalog a:hover {color: #ccc; font-size: 13px;}
#searchbar { margin: 5px 0; padding: 0 15px; width: 359px; height: 30px; border-left: 1px solid silver; font-size: 13px; }
#searchbar p { float: left; width: 220px;}

#footer-row2 { padding: 30px 20px 20px 20px; height: 160px; background: #1a1557 url(../images/footer-bg.png) repeat-x top left; color: #fff; }
#footer-row2 a { color: #fff; }
#footer-row2 a:hover { color: #c6c4d4; }

#fpod1 { margin: 0; padding: 0; width: 200px; }

#fpod2 { margin: 0; padding: 0; width: 410px; background: url(../images/nav-bg-new.png) no-repeat 31px -20px; }

#fpod3 { margin: 0; padding: 0; width: 130px; }

/* Older Footer Menu */
#footer-menu1 { padding-left: 10px; width: 195px; line-height: 28px; }
#footer-menu1 div.Reception {  }
#footer-menu1 div.Treatment { }
#footer-menu1 div.Wards { }
#footer-menu1 div.Miscellaneous { }
#footer-menu2 { padding-left: 10px; width: 195px; line-height: 28px; }
#footer-menu2 div.Grooming { }
#footer-menu2 div.Boarding {}
#footer-menu2 div.Lab { }
#footer-menu2 div.Gallery { }
/* End Older Footer Menu */

/* New Footer Menu */
#footer-menu1 { padding-left: 10px; width: 195px; line-height: 28px; }
#footer-menu1 div { height: 23px; }
#footer-menu1 div.treatment {}
#footer-menu1 div.sinks {}
#footer-menu1 div.tables {}
#footer-menu1 div.cabinets-casework {}
#footer-menu1 div.work-islands {}
#footer-menu1 div.grooming-tubs {}
#footer-menu2 { padding-left: 10px; width: 195px; line-height: 28px; }
#footer-menu2 div { height: 23px; }
#footer-menu2 div.kennel {}
#footer-menu2 div.cat-condos {}
#footer-menu2 div.cages {}
#footer-menu2 div.faucets-scales {}
#footer-menu2 div.corner-guards-kick-plates {}
#footer-menu2 div.gallery {}
/* End New Footer Menu */

#footer-contact { padding: 0; width: 130px; font-size: 12px; }

#footer .copy { position: relative; clear: both; margin: 10px 0; text-align: right; font-size: 12px; }
#footer .copy p { position: relative; text-align: right; }

/*Stacy Added this*/
#footer .copy2 { position: relative; clear: both; margin: 20px; text-align : left; font-size: 12px; }


#flag-m { float: right; margin: 10px 0; padding: 0; width: 176px; height: 31px; background: url(../images/flag.png) no-repeat top left; }
#flag { position: absolute; top:0px; left:10px; width: 176px; height: 31px; background: url(../images/flag.png) no-repeat top left; }

#social div { margin-right: 5px; margin-top: 5px; font-size: 11px; line-height: 12px; }

/*
* Custom Styles for auto generated elements from within SilverStripe.
*/
fieldset { border: none; }
input.action { padding: 3px;	font-size: 14px ; font-family: Verdana, Tahoma, Sans-serif;}
input.action:hover, input.action:focus { cursor: pointer; }
input.text, textarea, select { padding: 2px; border: 1px solid #A7A7A7; color: #000; font-size: 12px; font-weight: bold; width: 300px; }
textarea {	font-family: Verdana, Tahoma, sans-serif; font-size: 12px; }
input:focus span, textarea:focus span {	border: 3px solid #000; }
select { width: auto; }
label { display: block; margin: 0; color: #777; font-size: 16px; }
label.right { display:inline; float: left; }

#WishlistForm_WishlistForm div.Actions input.action {display: block; float: right;   width: 150px; height: 25px;  color: #fff; font-weight: bold; font-size: 12px; font-family: Verdana; text-align: center; margin: 0 15px;
	background: #c00 url(../images/gallery-button.png) repeat-x top left; border: none; 
	border-radius:12px; -moz-border-radius:12px;  -webkit-border-radius:12px; 
	-moz-text-shadow:0px -1px 0px #333; -webkit-text-shadow:0px -1px 0px #333; text-shadow:0px -1px 0px #333;}
#WishlistForm_WishlistForm div.Actions input.action:hover { color: #fff; -moz-text-shadow:0px 1px 0px #333; -webkit-text-shadow:0px 1px 0px #333; text-shadow:0px 1px 0px #333; }

input#SearchForm_SearchForm_Search { width: 126px; height: 26px; background: transparent url(../images/search-bg.png) no-repeat; border: 0;  }
input#SearchForm_SearchForm_action_results { display: none; visibility: none; }

input#SearchForm_SearchForm_Search { padding: 0 10px; width: 126px; height: 26px; background: transparent url(../images/search-bg.png) no-repeat; border: 0;  }
input#SearchForm_SearchForm_action_results { display: none; visibility: none; }

#SearchForm_SearchForm #Search { float: left; background: transparent url(../images/search-bg.png) norepeat; } 
#SearchForm_SearchForm .middleColumn { float: left; width: 126px; height: 26px; background: transparent url(../images/search-bg.png) no-repeat; } 
#SearchForm_SearchForm #SearchForm_SearchForm_Search { padding: 0; border: none; width: 105px; height: 20px; background: none; font-weight: bold; font-size: 11px; margin: 0 0 7px 10px; }
#SearchForm_SearchForm .action{ display: none; }
#SearchForm_SearchForm fieldset{ float: left; } 
#CustomSearchForm_SearchForm #Search { float: left; background: transparent url(../images/search-bg.png) norepeat; } 
#CustomSearchForm_SearchForm .middleColumn { float: left; width: 126px; height: 26px; background: transparent url(../images/search-bg.png) no-repeat; } 
#CustomSearchForm_SearchForm #CustomSearchForm_SearchForm_Search { border: none; width: 105px; height: 20px; background: none; font-weight: bold; font-size: 11px; margin: 0 0 7px 10px; }
#CustomSearchForm_SearchForm .action{ display: none; }
#CustomSearchForm_SearchForm fieldset{ float: left; } 

#MemberLoginForm_LoginForm { margin: 15px; }
#MemberLoginForm_LoginForm .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#MemberLoginForm_LoginForm_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }
#MemberLoginForm_LoginForm_Remember { float: left; vertical-align: bottom; height: 20px; width: 20px; margin-right: 10px; }
#MemberLoginForm_LoginForm .middleColumn .message { margin: 0; }

#MemberLoginForm_LostPasswordForm { margin: 15px; }
#MemberLoginForm_LostPasswordForm .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#MemberLoginForm_LostPasswordForm_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px;  }

#Form_RegisterForm { margin: 15px; }
#Form_RegisterForm p { margin: 10px 0 15px 0; padding: 0; }
#Form_RegisterForm .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#Form_RegisterForm_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }
#Form_RegisterForm_LogInHeader { margin: 0; padding: 0;}
#Form_RegisterForm_RegisterHeader { margin: 0; padding: 0;}


#Form_ProfileForm { margin: 15px; }
#Form_ProfileForm p { margin: 10px 0 15px 0; padding: 0; }
#Form_ProfileForm .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#Form_ProfileForm_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }
#Form_ProfileForm_AddHeader { margin: 0; padding: 0;}
#Form_ProfileForm_YourProfileHeader { margin: 0; padding: 0;}

#ShopAccountForm_MemberForm { margin: 15px; }
/*#ShopAccountForm_MemberForm .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px; width: 300px; clear: left; }
#ShopAccountForm_MemberForm { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; background:#f99; border: 1px solid #c33; }*/

#content-sub #content-sub-inner .col2b-page p #Form_Form { margin: 15px; }
#content-sub #content-sub-inner .col2b-page p #Form_Form p { margin: 10px 0 15px 0; padding: 0; }
#content-sub #content-sub-inner .col2b-page p #Form_Form .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#content-sub #content-sub-inner .col2b-page p #Form_Form_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }

#Form_Form { margin: 15px; }
#Form_Form p { margin: 10px 0 15px 0; padding: 0; }
#Form_Form .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#Form_Form_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }

#Form_BlogEntryForm { margin: 15px; }
#Form_BlogEntryForm p { margin: 10px 0 15px 0; padding: 0; }
#Form_BlogEntryForm .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 100%; clear: left; }
#Form_BlogEntryForm_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }

#PageCommentInterface_Form_PostCommentForm { margin: 15px; }
#PageCommentInterface_Form_PostCommentForm p { margin: 10px 0 15px 0; padding: 0; }
#PageCommentInterface_Form_PostCommentForm .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#PageCommentInterface_Form_PostCommentForm_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }
p#PageCommentInterface_Form_PostCommentForm_error { background: #ff8080; border: 3px solid #c00; padding: 15px;   }

#content-sub #content-sub-inner .col2b-page p #Form_Form { margin: 15px; }
#content-sub #content-sub-inner .col2b-page p #Form_Form p { margin: 10px 0 15px 0; padding: 0; }
#content-sub #content-sub-inner .col2b-page p #Form_Form .middleColumn { display: block; margin: 15px 10px 10px 0; background: #F1F0F5; padding: 4px 10px 4px 4px; width: 300px; clear: left; }
#content-sub #content-sub-inner .col2b-page p #Form_Form_error { margin: 10px 0; padding: 15px; color: #000; font-size: 14px; }

/*
div.quantityBox { margin: -15px 20px 10px; color: #000;  }
.quantityBox { margin: 0; text-align: center; }
.ecomquantityfield { margin: 0; padding: 0; line-height: 16px; padding: 5px; background: #f1f0f5;}
.ecomquantityfield img {}
.ajaxQuantityField { margin: 0; padding: 0; border: none; width: 40px; text-align: center; font-size: 14px; color: #1a1557; font-weight: bold;}*/

.account-order {display: inline; list-style: none; margin: 0 0 0 20px; float: left;  }
.account-order li { display: inline; float: left; padding: 10px; margin: 0 20px 20px 0; border: 1px solid #E2E0EB; background:#F1F0F5; }
.account-order li a {font-weight: bold;}

ul#testimonials { margin: 0px 10px 10px 10px; padding: 0; list-style: none; color:#1a1557; }
ul#testimonials li.testimonial { margin:20px;  background: none repeat scroll 0 0 #F1F0F5; padding: 25px 30px; 
	border-radius:12px; -moz-border-radius:12px;  -webkit-border-radius:12px;
	box-shadow: 2px 2px 3px #c6c4d4; webkit-box-shadow: 2px 2px 3px #c6c4d4; -moz-box-shadow: 2px 2px 3px #c6c4d4;
}
ul#testimonials li.testimonial h2 { color: #8D1C1C; font-size: 20px; font-weight: bold; margin: 0 0 0.5em; padding: 0 !important;}
ul#testimonials li.testimonial blockquote {color: #626670;display: block; font-size: 12px; line-height: 18px; margin: 0; padding: 0; }

/** Custom Search CSS **/
.col1b-page #SearchForm_SearchForm { margin: 20px; } 	
.col1b #SearchForm_SearchForm { margin: 20px; }

ul#SearchResults { margin: 0 20px; padding: 0; list-style: none;  }
ul#SearchResults li { margin-bottom: 30px; border-bottom: #F1F0F5; border-right: #F1F0F5; box-shadow: 2px 2px 3px #c6c4d4; webkit-box-shadow: 2px 2px 3px #c6c4d4; -moz-box-shadow: 2px 2px 3px #c6c4d4;}
ul#SearchResults li a.searchResultHeader { margin-bottom: 0px; font-size: 20px; }
ul#SearchResults li { padding-bottom: 10px; }
div#PageNumbers { margin: 0 20px; }

span.required { color: #c00; font-weight: bold; }


/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}