/* 
  ------------------------------------------------
  PVII CSS Page Builder Magic
  Copyright (c) 2011 Project Seven Development
  www.projectseven.com
  14: 3 Col Fixed, Top Menu
  ------------------------------------------------
*/

/*Min-width determines the point at which your layout width will cease to shrink horizontally and your browser will spawn a horizontal scroll bar.*/
body {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #000;
	background-color: #FFFFFF;
	margin: 20px 0;
	padding: 0px;
}

/*Border Radius for CURVED CORNERS. The overall wrapper is assigned an 8px radius on all 4 corners. The masthead is assigned a 6px radius for its top corners. The footer is assigned a 6px radius for its bottom corners. The footer and masthead radii must always be 2px less than the radii set on the content wrapper so that its border displays properly.*/
.content-wrapper {border-radius: 8px; }
.masthead {border-radius: 6px 6px 0px 0px;}
.footer { border-radius: 0px 0px 6px 6px; }

/*Masthead, includes Logo and Banner.*/
.masthead {
	background-color: #222;
	text-align: left;
	position: relative;
	z-index: 9999999;
}

/*The masthead logo DIV rule can be used to assign padding or colors to your masthead area that contains your logo. The default logo we provide is simply a level 1 heading, which may be replaced with an image of your logo. If you choose to keep your image logo inside the H1 tag, then edit the masthead h1 rule to remove all properties except for margin: 0. */
.masthead .logo {border-bottom: 1px solid #000;}
.masthead h1 {
	margin: 0;
	color: #FFF;
	padding: 10px 30px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-weight: normal;
}

/*We set height and overflow hidden to allow you place an image in the banner that would normally be too large. You can edit or remove this rule if you design your banner image to fit your layout.*/
.masthead .banner {
	height: 120px;
	overflow: hidden;
}
.masthead .banner img {}

/*Main Layout Container. The entire page is inside this element. */
.content-wrapper {
	border: 1px solid #222;
	margin: 0 auto;
	width: 980px;
	-webkit-box-shadow: 0 0 20px #999;
	box-shadow: 0 0 20px #999;
}
/*The containing element for the the main content. We simply set the content area to have a white background.*/
.columns-wrapper {
	overflow: hidden;
	background-color: #FFF;
}

/*Columns*/
.sidebar {
	width: 220px;
	float: left;
	background-color: #EFEFEF;
}
/*Main Content*/
.main-content {
	width: 538px;
	float: left;
	border-right: 1px dotted #000;
	border-left: 1px dotted #000;
}
.sidebar2 {
	width: 220px;
	float: right;
	background-color: #DFDFDF;
}

/*The Sidebar content. Edit padding and font attributes to suit*/
.sidebar .content, .sidebar2 .content {
	padding: 30px;
	font-size: 12px;
	line-height: 1.5em;
}

/*This container is inside the columns wrapper and serves as a container for the content inside, allowing you to adjust whitespace (padding) without altering the CSS box model. This is the rule to use to set text attributes for your main content.*/
.main-content .content {
	padding: 30px;
	font-size: 14px;
	line-height: 1.5em;
}

/*Heading styles*/
h1, h2, h3, h4 { 
	margin: 30px 0 0 0;
	line-height: normal; 
}
h1 { font-size: 24px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }

/*A utility rule assigned to the first heading to remove all margins. This class can be used on any element for which you would like to remove margin.*/
.page-topper { margin: 0px; }

/*Misc. Typographic Styles*/
.content em {
	font-style: normal;
	text-transform: uppercase;
	font-size: 110%;
}
.content em.big {
	font-size: 125%;
}
/*Ordinary Link Styles*/
.content a { color: #0066CC; }
.content a:hover, .content a:focus { color: #C30; }
.sidebar2 a { color: #0059B3; }
.sidebar2 a:hover, .sidebar2 a:focus { color: #000; }
.footer a { color: #689BF0; }
.footer a:hover, .footer a:focus { color: #FFF; }

/*Lists: We reduce normal indentation and remove bullets for ordered and unordered lists  when placed in a sidebar*/
.sidebar ul, .sidebar ol, .sidebar2 ul, .sidebar2 ol {
	margin: 0 0 0 .5em;
	padding: 0 0 0 .5em;
	line-height: normal;
}
.sidebar li, .sidebar2 li { 
	margin-bottom: 4px; 
}

/*The DIV that contains the horizontal menu bar at the top of your page.*/
.menutop-wrapper {
	padding: 10px 20px;
	background-color: #877876;
	border-top: 1px solid #000;
	border-bottom: 1px solid #FFF;
	-webkit-box-shadow: 0px 0px 30px #999;
	box-shadow: 0px 0px 30px #999;
	position: relative;
	z-index: 999999;
}
/*The Top Menu Bar UL. Font-Size 0 eliminates horizontal whitespace between menu items. DO NOT EDIT any property EXCEPT for text-align, which can be changed to center or right to easily re-position the menu. */
.menutop {
	margin: 0;
	padding: 0;
	font-size: 0px;
	text-align: left;
}
/*The menu list items. DO NOT EDIT the first 2 properties. Margin-right provises some separation between each item and may be edited.*/
.menutop li {
	list-style-type: none;
	display: inline-block;
	margin-right: 6px;
}
/*The menu links. MUST BE DISPLAY BLOCK. Padding provides white space within the link box. The first padding value controls the height of the box. The second value controls width.*/
.menutop a {
	display: block;
	color: #000000;
	text-decoration: none;
	padding: 6px 10px;
	font-size: 14px;
	border: 1px solid #000;
	border-radius: 4px;
	background-color: #998C8A;
}
/*The menu links hover and focus states. A box shadow effect changes for this state. */
.menutop a:hover, .menutop a:focus {
	color: #FFF;
	border-color: #FFFFFF;
	outline: 0;
}

/*Optional Sidebar Menu UL.*/
ul.menuside {
	margin: 0;
	padding: 0;
}

/*The menu list items. Margin-bottom provides some separation between each item and may be edited.*/
ul.menuside li {
	list-style-type: none;
	margin-bottom: 5px;
}
/*The menu links. MUST BE DISPLAY BLOCK. Padding provides white space within the link box. The first padding value controls the height of the box. The second value controls width. A box shadow is set.*/
.menuside a {
	display: block;
	color: #000;
	text-decoration: none;
	padding: 8px 10px;
	font-size: 14px;
	border: 1px solid #FFF;
	border-radius: 4px;
	background-color: #D2D2D2;
	-webkit-box-shadow: 0px 0px 15px #DDD;
	box-shadow: 0px 0px 15px #DDD;
}
/*The menu links hover and focus states. A box shadow effect changes for this state. */
.menuside a:hover, .menuside a:focus {
	color: #FFF;
	border-color: #222;
	background-color: #222;
	box-shadow: 5px 5px 30px #999;
	outline: 0;
}

/*The Footer*/
.footer {
	border-top: 1px solid #222;
	background-color: #222;
	padding: 10px 30px;
	font-size: 11px;
	color: #FFF;
}
.footer p.copyright {
	text-transform: uppercase;
	margin: 0px;
}

/*Mobile Devices*/
/*Phones*/
@media only screen and (max-device-width: 480px) {
	body { min-width: 0px !important;}
	.content-wrapper {width: 960px; margin: 0px 10px;}
	.main-content {width: 518px;}
}
/*Tablets*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	body { min-width: 0px !important;}
	.content-wrapper {width: 960px; margin: 0px 10px;}
	.main-content {width: 518px;}
}

.lessspaceabove {
	margin-top: -0.5em;
}

.centered {
	text-align: center;
}

p.introhigh:first-letter {
  font-size : 200%;
  font-weight : bold;
  float : left;
  margin-top: -0.18em;
  /*margin-top: 0.11em;*/
}
p.introlow:first-letter {
  font-size : 200%;
  font-weight : bold;
  float : left;
  /*margin-top: -0.18em;*/
  margin-top: 0.11em;
}
img.scalable {
	height: auto;
	width: auto;
	display: block;
	max-width: 100%;
}
.imgage-row {
	margin: 1vw 2.5vw -0.25vw 0.5vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	line-height: 0.75vw;
	font-size: 75%;
	text-align: center;
}
img.imgshadow {
	border: 1px solid #222222;
	-webkit-box-shadow: 2px 3px 6px grey;
	        box-shadow: 2px 3px 6px grey;
	margin-bottom: -0.5vw;
}
.caption {
	color:#004040;
	font-size:85%;
	font-style:italic;
	text-align:center;
	margin-top:0;
	padding-top:2px;
}	