/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(http://www.berwickspringsvet.com.au/cms/images/cms/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(http://www.berwickspringsvet.com.au/cms/images/cms/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(http://www.berwickspringsvet.com.au/cms/images/cms/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: Accessibility and cross-browser tools Modified On 2009-05-13 10:42:54 */
/* by Alexander Endresen and mark and Nuno */
#menu_vert {
/* no margin/padding so it fills the whole div */
	margin: 0;
	padding: 0;
}
.clearb {
/* needed for some browsers */
	clear: both;
}
#menuwrapper {
/* set the background color for the menu here */
	background-color: #ffffff; 
/* IE6 Hack */
	height: 1%;
	width: auto;
/* one border at the top */
/*	border-top: 1px solid #3F565C; */
	margin: 0;
	padding: 0;
}
ul#primary-nav, ul#primary-nav ul {
/* remove any default bullets */
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul#primary-nav {
/* pushes the menu div up to give room above for background color to show */
	padding-top: 10px;
/* keeps the first menu item off the left side */
	padding-left: 0px;
}
ul#primary-nav ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
	position: absolute;
/* top being the bottom of the li it comes out of */
	top: auto;
/* keeps it hidden till hover event */
	display: none;
/* same size but different color for each border */
	border-top: 1px solid #C8D3D7;
	border-right: 1px solid #C8D3D7;
	border-bottom: 1px solid #ADC0C7;
	border-left: 1px solid #A5B9C0;
}
ul#primary-nav ul ul {
/* now we move the next level ul down from the top a little for distinction */
	margin-top: 1px;
/* pull it in on the left, helps us not lose the hover effect when going to next level */
	margin-left: -1px;
/* keeps the left side of this ul on the right side of the one it came out of */
	left: 100%;
/* sets the top of it inline with the li it came out of */
	top: 0px;
}
ul#primary-nav li {
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;
/* no margin/padding keeps them next to each other, the padding will be in the "a" */
	margin: 0px;
	padding: 0px;
}
#primary-nav li li {
/* Set the width of the menu elements at second level. Leaving first level flexible. */
	width: 260px;
/* removes any left margin it may have picked up from the first li */
	margin-left: 0px;
/* keeps them tight to the one above, no missed hovers */
	margin-top: -1px;
/* removes the left float set in first li so these will stack from top down */
	float: none;
/* relative to the ul they are in */
	position: relative;
}
/* set the "a" link look here */
ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 1.3em;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors */
	color: #222222;
/* pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding-right: 4px;
	display: block;
/* sets no underline on links */
	text-decoration: none;

}
ul#primary-nav li a span {
/*	background-image: url(http://www.berwickspringsvet.com.au/cms/uploads/images/MenuItem.jpg);*/
  background-color: #e5e5e5;
  height: 49px;
  display: inline-block;
  border-top-left-radius: 14px; border-top-right-radius: 14px;
  text-align: center;
  color: #000;
  width: 156px;
  font-size: 1.2em;
  padding-top: 12px;
}
ul#primary-nav li a span span {
  vertical-align: middle;
}

ul#primary-nav li a:hover span {
  background-color: #555;
  color: #ffffff;
}

ul#primary-nav li ul a:hover span {
  color: #ffffff;
}

ul#primary-nav li ul a:hover, ul#primary-nav li ul a:hover span {
  background-color: #777;
}

ul#primary-nav li ul a:hover, ul#primary-nav li ul a:hover span {
  color: #fff;
}

ul#primary-nav li a:hover span.MenuItemLeft {
  background-image: url(http://www.berwickspringsvet.com.au/cms/uploads/images/MenuItemHoverLeft.jpg);
}

ul#primary-nav li a:hover span.MenuItemRight {
  background-image: url(http://www.berwickspringsvet.com.au/cms/uploads/images/MenuItemHoverRight.jpg);
}


ul#primary-nav li li a span {
  border-radius: 0px; font-size: 1em; background-color: transparent; width: auto;
}



ul#primary-nav li li a:hover {
/* this is set to #000, black, below so hover will be white text */
	color: #FFF;
}
ul#primary-nav li a.menuactive {
	color: #ffffff;
/* bold to set it off from non active */
	font-weight: normal;
/* set your image here */
/*	background:  url(http://www.berwickspringsvet.com.au/cms/uploads/ngrey/nav.png) repeat-x left 0px; */
}

ul#primary-nav li a.menuactive span {
	background-image: url(http://www.berwickspringsvet.com.au/cms/uploads/images/MenuItemActive.jpg);
  color: #fff
}
ul#primary-nav li a.menuactive span.MenuItemLeft {
  background-image: url(http://www.berwickspringsvet.com.au/cms/uploads/images/MenuItemActiveLeft.jpg); width: 14px;
}

ul#primary-nav li a.menuactive span.MenuItemRight {
  background-image: url(http://www.berwickspringsvet.com.au/cms/uploads/images/MenuItemActiveRight.jpg); width: 14px;
}
ul#primary-nav li a.menuactive:hover {
	color: #aaaaaa;
/* keep it the same */
	font-weight: normal;
}



#primary-nav li li a.menuparent span {
/* makes it hold a shape */
	display: block;
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far */
/*	background:  url(http://www.berwickspringsvet.com.au/cms/uploads/ngrey/parent.png) no-repeat 98% center; */

}
/* gif for IE6, as it can't handle transparent png */
* html #primary-nav li li a.menuparent span {
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far */
/*	background:  url(http://www.berwickspringsvet.com.au/cms/uploads/ngrey/parent.gif) no-repeat 98% center; */
}
ul#primary-nav li ul a {
/* insures alignment */
	text-align: left;
	margin: 0px;
/* keeps it relative to it's container */
	position: relative;
/* less padding than first level no need for large links here */
	padding: 6px 3px 6px 15px;
/* if first level is set to bold this will reset this level */
	font-weight: normal;
/* first level is #FFF/white, we need black to contrast with light background */
	color: #000;
	border-top: 0 none;
	border-right: 0 none;
	border-left: 0 none;
}
ul#primary-nav li ul {
/* very lite grey color, by now you should know what the rest mean */
	background: #F3F5F5;
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	z-index: 999;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #374B51;
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 0.95;
/* CSS 3 */
}
ul#primary-nav li ul span,
ul#primary-nav li.menuactive ul span
{  background-image: none;
    height: auto;

}

ul#primary-nav li.menuactive ul a
{  color: #333;    
}

ul#primary-nav li.menuactive ul a.menuactive, 
ul#primary-nav li.menuactive ul a.menuactive span:hover,
ul#primary-nav li.menuactive ul a.menuactive span,
ul#primary-nav li.menuactive ul a.menuactive span:hover
{  background-color: #555;
}

ul#primary-nav li.menuactive ul a.menuactive span
{  color: #fff;    
}


ul#primary-nav li ul ul {
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 95;
/* CSS 3 */
}
/* Styling the appearance of menu items on hover */
#primary-nav li:hover,
#primary-nav li.menuh,
#primary-nav li.menuparenth,
#primary-nav li.menuactiveh {
/* set your image here, dark grey image */
/*	background:  url(http://www.berwickspringsvet.com.au/cms/uploads/ngrey/darknav.png) repeat-x left center;*/
	color: #000
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul ul ul,
*/
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
	display: none;
}
/* for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
	display: block;
}
/* IE6 Hacks */
#primary-nav li li {
	float: left;
	clear: both;
}
#primary-nav li li a {
	height: 1%;
}
/* Stylesheet: BSVMenu Modified On 2015-08-24 18:15:39 */
/*
  @Nuno Costa [criacaoweb.net] Core CSS.
  @Licensed under GPL and MIT.
  @Status: Stable
  @Version: 0.1-20090418
  
  @Contributors:
  
  --------------------------------------------------------------- 
*/
/*----------- Global Containers ----------- */
/* 
.core-wrap-100   =  width - 100% of Browser Fluid
.core-wrap-960   =  width - 960px  - fixed
.core-wrap-950   =  width - 950px  - fixed
.core-wrap-780   =  width - 780px  - fixed
.custom-wrap-x   =  width -  custom   - declared in another css (your site css)
*/
.core-wrap-100 {
	width: 100%;
}
.core-wrap-960 {
	width: 960px;
}
.core-wrap-950 {
	width: 950px;
}
.core-wrap-780 {
	width: 780px;
}
.core-wrap-100,
.core-wrap-960,
.core-wrap-950,
.core-wrap-780,
.custom-wrap-x {
	margin-left: auto;
	margin-right: auto;
}
/*----------- Global Float ----------- */
.core-wrap-100  .core-float-left,
.core-wrap-960  .core-float-left,
.core-wrap-950  .core-float-left,
.core-wrap-780  .core-float-left,
.custom-wrap-x  .core-float-left {
	float: left;
	display: inline;
}
.core-wrap-100  .core-float-right,
.core-wrap-960  .core-float-right,
.core-wrap-950  .core-float-right,
.core-wrap-780  .core-float-right,
.custom-wrap-x  .core-float-right {
	float: right;
	display: inline;
}
/*----------- Global Center ----------- */
.core-wrap-100   .core-center,
.core-wrap-960   .core-center,
.core-wrap-950   .core-center,
.core-wrap-780   .core-center,
.custom-wrap-x   .core-center {
	margin-left: auto;
	margin-right: auto;
}
/*
  @Nuno Costa [criacaoweb.net] Utils CSS.
  @Licensed under GPL2 and MIT.
  @Status: Stable
  @Version: 0.1-20090418
  
  @Contributors:
        -  http://meyerweb.com/eric/tools/css/reset/index.html 
  
  --------------------------------------------------------------- 
*/
/* From: http://meyerweb.com/eric/tools/css/reset/index.html  (Original) */
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
/*	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;*/
}
/*
Stantby for nowbody {
	line-height: 1;
}
*/
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ------- @Nuno Costa [criacaoweb.net] Utils CSS. ---------- */
* {
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
}
dfn {
	display: none;
	overflow: hidden;
}
/* ----------- Clear Floated Elements ----------- */
html body .util-clearb {
/*	background: none;
	border: 0;
	clear: both;
	display: block;
	float: none;
	font-size: 0;
	margin: 0;
	padding: 0;
	position: static;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;*/
}
/* ----------- Fix to Clear Floated Elements ----------- */
.util-clearfix:after {
	clear: both;
	content: '.';
	display: block;
	visibility: hidden;
	height: 0;
}
.util-clearfix {
	display: inline-block;
}
* html .util-clearfix {
	height: 1%;
}
.util-clearfix {
	display: block;
}

.accessibility, hr {
/* absolute lets us put it outside the viewport with the indents, the rest is to clear all defaults */
	position: absolute;
	top: -9999em;
	left: -9999em;
	background: none;
	border: 0;
	clear: both;
	display: block;
	float: none;
	font-size: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
	border: none;
}


strong
{  font-weight: bold;
}

ul
{  list-style-type: disc; margin-left: 40px;
}

li
{  margin-bottom: 0.6em;
}


@font-face {
  font-family: WebLight;
  src: url(/cms/uploads/segoeuil.ttf);
}

body {
	font: normal 1.35em Segoe UI Light, Segoe UI, Arial, Helvetica, sans-serif;
	color: #000000;
	background: #fff;
}


/* Mask helper  for browsers ZOOM, Rezise and Decrease */
#Main
{  width: auto;
}



a, a:visited
{  color: #556655; text-decoration: none;
}

a:hover
{  text-decoration: underline;
}

#pagewrapper
{  
}

#PageBackgroundLeft
{  float: left; background: url(http://www.berwickspringsvet.com.au/cms/uploads/images/PageLeft.jpg); height: 800px; width: 100px;
}

#Header
{  	height: 100px; width: 960px; background: url(http://www.berwickspringsvet.com.au/cms/uploads/images/Header.jpg) no-repeat left top;
}


#footer-wrapper
{  /*  background: url(http://www.berwickspringsvet.com.au/cms/uploads/images/Footer.jpg) no-repeat; height: 250px; */
}

#footer {
        background-color: #222222 /*5BC6E8*/;
	color: #aaaaaa /*002C77*/;
	font-size: 0.8em;
	padding: 10px 5px;
}

div#footer p
{  margin:0; padding-bottom:30px;  padding-left: 30px;  padding-top:1em;
}

div#footer div.Address
{  float: right; width: 400px; margin: 0px 30px 10px 0px; text-align: right; font-size: 1.4em;
}

div#footer div.Phone
{  font-size: 2em; font-weight: bold; margin-left: 30px; margin-top: 10px;
}

div#footer div.AddressEmail
{  margin-top: 15px;
}

div#footer div.AddressEmail a, div#footer div.AddressEmail a:visited
{  color: #aaaaaa /*002C77*/; 
}

div#footer div.Separator
{  border-bottom: 1px solid #555555; padding-bottom: 20px; margin: 0px 30px 20px 30px; clear: both;
}

h1
{  font-size: 2em; margin-bottom: 0.6em;
}

h2
{  font-size: 1.8em; margin-bottom: 0.6em;
}

h3
{  font-size: 1.3em; margin-bottom: 0.6em;
}

h4
{  font-size: 1.3em; /*font-weight: bold;*/ color: #555; margin-top: 0.6em;
}

h5
{  font-size: 1.1em; font-weight: normal; color: #333333; font-style: italic; margin: 8px 0px 20px 0px;
}

#PageHeader
{  color: #9E0D6D; font-size: 3.5em; font-weight: 100;
}


#ContentBlock
{  margin-top: 15px;
}


.main-main
{  
    padding: 20px 3px 20px 0px;
	min-height: 500px;
	height: auto!important;
	height: 500px;
  background: #ffffff;
  font-size: 1.1em;
  line-height: 140%;
}



.main-main p
{  margin-bottom: 12px;
}



.search-print
{  margin: 20px 8px 0 0; float: right; text-align: right;
}


#search label { display: none; }
/* #search {  width: 230px; }*/

#search .search-input { 
  border: 0px; background: url(http://www.berwickspringsvet.com.au/cms/uploads/images/SearchText.jpg); width: 158px; height: 24px; padding: 0px 4px 0px 6px; color: #888888; /*margin-top: -1px;*/ vertical-align: top; }

#search .search-button { 
  background: url(http://www.berwickspringsvet.com.au/cms/uploads/images/SearchButton.jpg); width: 30px; height: 24px; color: transparent; border: 0px; margin-left: -4px; vertical-align: top; }


.search-print div.Phone
{  font-size: 1.9em; font-weight: bold; margin-top: 10px; color: #002C77;
    text-align: right;
}

.search-print div.Phone span
{  font-size: 1.5em; 
}

#Credit
{  float: right; padding: 0.9em 0px 0px 0px;
}

div#FrontTopRow
{ height: 375px; margin-top: -20px;
}

div#FrontTopRow div#TopLeftBox
{  float: left; width: 356px; height: 100%; background-color: #5897ea; padding: 5px 10px;
   color: #fff;
}

div#FrontTopRow div#TopLeftBox h4
{ color: #fff;
}

div#FrontTopRow div#TopRightBox
{  float: left; width: 600px; height: 100%; 
}

div#FrontMiddleRow
{  margin-top: 40px; height: 310px;
}

div#FrontMiddleRow div#BoxLeft
{  float: left; width: 356px; height: 100%; padding: 5px 10px; background-color: #e0e0e0;
}

div#FrontMiddleRow div#BoxMiddle
{  float: left; width: 356px; height: 100%; padding: 5px 10px; background-color: #fff;
}

div#FrontMiddleRow div#BoxRight
{  float: left; width: 244px; height: 100%; padding: 5px 10px; background-color: #eee;
}

div#FrontBottomRow 
{  margin-top: 40px; height: 230px;
}

div#FrontBottomRow div#BoxLeft
{  float: left; width: 473px; height: 100%; padding: 5px 10px; background-color: #f0f0f0;
}

div#FrontBottomRow div#BoxRight
{  float: left; width: 473px; height: 100%; padding: 5px 10px; background-color: #f0f0f0;
   margin-left: 10px;
}

div.Contact
{  line-height: 1.5em
}

div.Contact h4
{  margin-top: 18px;
}


div.LeftNav
{  float: left; width: 204px; background-color: #5BC6E8 /*b9d5f0*/; margin-left: -20px; border-radius: 10px; position: fixed;
}

div.LeftNav ul
{  /* list-style-type: none; */ margin-left: 0px; list-style-position: inside; color: #002C77;
}

div.LeftNav li
{  padding: 10px 0px 0px 10px; margin: 0px; height: 30px;
    border-radius: 10px;  border-bottom: 1px dotted #3B96b8;
}

div.LeftNav img
{  vertical-align: middle;
}

div.LeftNav ul a, div.LeftNav ul a:visited
{  text-decoration: none; font-size: 1.2em; width: 190px; height: 40px;
    color: #002C77;  
}

div.LeftNav ul li:hover
{  background-color: #002C77; color: #ffffff;
}


div.LeftNav ul li:hover a
{  color: #ffffff;
}

.Services .Content
{  margin-left: 200px;
}

.Services .Content h2
{  font-size: 1.8em; margin-bottom: -10px;
}

.Content h3
{  background-color: #555; color: #ffffff; padding: 4px 10px 6px 10px; font-size: 1.4em;
    margin-top: 40px;  border-radius: 5px;
}

.Services .Content h3 a, .Services .Content h3 a:visited
{ color: #ffffff; text-decoration: none;
}

a.Top
{ float: right; font-size: 0.6em;
}

.contactform
{  border: solid 1px #ccf; padding: 10px 15px; border-radius: 10px; margin-left: 555px; overflow: auto;
}

.contactform legend
{  font-size: 1.2em; font-weight: bold; color: #555;
}

.contactform label
{ font-size: 0.85em; display: inline-block; width: 120px;
}

.contactform input[type=text], .contactform input[type=email]
{ width: 240px;
}


.contactform input[type=submit]
{  border-radius: 5px; border: 0px; background-color: #ddf; color: #eee; 
   background-color: #555; padding: 3px 6px;
   text-align: right; float: right; 
   margin: 5px 5px 0 0;
}

.contactform textarea
{  width: 359px;
}

.FrontContactForm
{  font-size: 0.85em; 
}

.FrontContactForm legend
{  font-size: 1.8em; font-weight: bold; color: #002c77; margin-bottom: 8px; 
   font-weight: normal;
}

.FrontContactForm label
{ display: inline-block; width: 100px; vertical-align: top;
}

.FrontContactForm input[type=text], .FrontContactForm input[type=email]
{ width: 337px;
}

.FrontContactForm .Message textarea
{ font-size: 1em; width: 437px;
}

.FrontContactForm input[type=submit]
{  border-radius: 5px; border: 0px; background-color: #ddf; color: #eee; 
   background-color: #555; padding: 3px 6px;
   text-align: right; float: right; 
   margin: 5px 10px 0 0;
}

ul.Services li
{  margin-bottom: 3px; list-style-image: url(http://www.berwickspringsvet.com.au/cms/uploads/images/marker.png);
   margin-left: 10px;
}

.PromoRow
{  height: 202px; margin-top: 20px;
}

.PromoRow a
{  text-decoration: none;
}

.PromoBoxLeft, .PromoBoxRight
{  width: 465px; height: 100%; background-color: #fefefe; border: solid 1px #ccc;
   float: left; 
}

.PromoBoxLeft h2, .PromoBoxRight h2 { margin-top: 0; }


.PromoBoxLeft:hover, .PromoBoxRight:hover
{  background-color: #bbb; border: solid 1px #bbb;
}

.PromoBoxRight
{  margin-left: 22px;
}

.PromoBoxLeft img, .PromoBoxRight img
{  width: 200px; height: 200px; float: left; margin-right: 5px;
}

.PromoBoxLeft div, .PromoBoxRight div
{  padding: 5px 5px 5px 0px;
}

.PromoBoxLeft h2, .PromoBoxRight h2
{  font-size: 1.6em; color: #002C77;
}

.FloatRight { float: right; margin-left: 10px; }

.PuppyImage { float: left; margin-right: 10px; margin-top: -7px; height: 211px; width: 173px; background: #fff; }

.ContactLeft { width: 545px; float: left; margin-right: 10px; }
.Map { float: right; width: 400px; margin-left: 10px; }

@media (max-width: 767px) {
  #pagewrapper, #Header, .core-wrap-950 { width: auto; }
  .search-print { margin-top: 100px; float: left; }
  #Header .Phone { margin-left: 10px; }

  div.main-main-background h1, div.main-main-background h2, div.main-main-background h3, 
  div.main-main-background h4, div.main-main-background p  
  { padding-left: 10px; padding-right: 10px; }

  div.main-main-background img { max-width: 100%; height: auto; }

  div.main-main-background div#FrontTopRow h4, div.main-main-background div#FrontTopRow p,
  div.main-main-background div#FrontMiddleRow h4, div.main-main-background div#FrontMiddleRow p,
  div.main-main-background div#FrontBottomRow h4, div.main-main-background div#FrontBottomRow p
       { padding-left: 0px; padding-right: 0px; }

  div#FrontTopRow { height: auto; }
  div#FrontTopRow div#TopLeftBox { float: none; width: auto; height: auto;  }
  div#FrontTopRow div#TopRightBox { float: none; margin-left: 0; width: auto; }
  div#FrontTopRow div#TopRightBox img { max-width: 100%; width: auto; height: auto; }
  div#FrontMiddleRow { height: auto; }
  div#FrontMiddleRow div#BoxLeft { float: none; width: auto; height: auto; }
  div#FrontMiddleRow div#BoxMiddle { float: none; margin-left: 0; width: auto;  }
  div#FrontMiddleRow div#BoxRight { float: none; margin-left: 0; width: auto;  }
  div#FrontBottomRow { height: auto; }
  div#FrontBottomRow div#BoxLeft { float: none; width: auto; height: auto; }
  div#FrontBottomRow div#BoxRight { float: none; margin-left: 0; width: auto; }
  div#footer div.Address { float: none; text-align: left; margin-left: 30px; }
  .PuppyImage { height: auto; margin-top: 0; }
  .page-menu { clear: both;}
  .FrontContactForm input[type=text], .FrontContactForm input[type=email], .FrontContactForm .Message textarea { max-width: 100% }
  div#footer div.Address { width: auto; }
  #footer .fb-like { width: auto; max-width: 100%; overflow: hidden }

  .PromoBoxLeft, .PromoBoxRight { width: auto; margin-left: 0px; height: auto; }
  .PromoBoxLeft img, .PromoBoxRight img { width: 40%; height: auto; }
  .PromoBoxLeft div, .PromoBoxRight div { margin-left: 42%; }

  .FloatRight { float: none; margin-left: 0px; }

  .ContactLeft { width: auto; float: none; }
  .ContactMap, .ContactMap #cggm_map_display_1 { width: 350px !important; height: 350px !important }
  .contactform { margin-left: 0; float: left; }

  .contactform input[type=text], .contactform input[type=email] { width: 100%; }
  .contactform textarea { width: 100%; }
}
@media (max-width: 522px) {
  #Header { background-size: 190%; }
}
@media (max-width: 460px) {
  .Phone span { display: block; }
}

.navbar-collapse { padding: 0px; }
/* Stylesheet: BSV Modified On 2015-08-25 16:57:25 */
