/* 
  ------------------------------------------------
  PVII CSS Page Builder Magic
  Copyright (c) 2011 Project Seven Development
  www.projectseven.com
  02: 1 Col Fixed
  ------------------------------------------------
*/

/*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;
}

body img {
	border: none;	
}

/*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; }

/*The content wrapper border and shadow effects.*/
.content-wrapper  {
	-webkit-box-shadow: 0 0 20px #999;
	box-shadow: 0 0 20px #999;
	border: 1px solid #222;
}

/*Masthead, includes Logo and Banner. It carries a bottom shadow that creates a bevel effect between the masthead and your page content. All modern browsers except Safari 5.x support box-shadow. As of this writing, Safari still requires the proprietary webkit prefix. Once Safari 6 is released, you can remove the webkit property.*/
.masthead {
	background-color: #222;
	border-bottom: 1px solid #FFF;
	padding: 0px;
	text-align: left;
	position: relative;
	-webkit-box-shadow: 0 0 20px #AAA;
	box-shadow: 0 0 20px #AAA;
}

/*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.1em;
	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;
	background-image: url(img/md_flag_04.gif);
	background-position: center top;
	background-repeat: no-repeat;
	font-size: 16px;
	font-weight: 800;
	color: #333;
	padding: 24px 30px 0px 30px;
	text-shadow: 2px 2px 3px #CCC;
}
.masthead .banner .printOnly {
	display: none;
}
.masthead .banner img {
	margin: 0 auto;
	display: block;
}

/*Main Layout Container. The entire page is inside this element. Auto left and right margins serve to center the wrapper.*/
.content-wrapper {
	margin: 0 auto;
	width: 95%;
	max-width: 980px;
}

/*The containing element for the the main content. We simply set the content area to have a white background.*/
.columns-wrapper { 
	background-color: #FFF; 
}

/*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.*/
.content {
	padding: 30px;
	font-size: 14px;
	line-height: 1.5em;
}

/*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; 
}

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

/*Misc. Typographic Styles*/
.content em {
	/*font-style: normal;
	text-transform: uppercase;
	font-size: 110%;*/
}
.content .contrast {
	color: #F00;
}
.content .big {
	font-size: 125%;
}
.content .indent {
	margin-left: 10px;
	/*margin-right: 10px;*/
}
.content .topLink {
	text-align: center;	
}

/*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-top: 0.25em;
}

/*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; 
}
.content ol, .content ul, .content ol {
	margin-bottom: 8px;
}
.content li, .content li { 
	margin-bottom: 8px; 
}

/*Ordinary Link Styles*/
.content a { color: #0066CC; }
.content a:hover, .content a:focus { color: #C30; }
.footer a { color: #689BF0; }
.footer a:hover, .footer a:focus { color: #FFF; }

/*Masthead Link Styles*/
.masthead a {
	color: #FFF;
	text-decoration: none;
}
.masthead a:hover, .masthead a:focus {
	color: #09F;
	text-decoration: underline;
}


/*The DIV that contains the horizontal menu bar at the top of your page.*/
.menutop-wrapper {
	padding: 20px 30px 10px 30px;
	background-color: #FFF;
}
/*The 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: 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.*/
.menutop a {
	display: block;
	color: #000;
	text-decoration: none;
	padding: 8px 10px;
	font-size: 14px;
	border: 1px solid #FFF;
	border-radius: 5px;
	background-color: #CFCFCF;
	-webkit-box-shadow: 5px 5px 15px #DDD;
	box-shadow: 5px 5px 15px #DDD;
}

/*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: #222;
	background-color: #222;
	-webkit-box-shadow: 5px 5px 30px #999;
	box-shadow: 5px 5px 30px #999;
	outline: 0;
}

/*The Footer*/
.footer {
	background-color: #222;
	border-top: 1px solid #222;
	padding: 10px 30px;
	font-size: 11px;
	color: #FFF;
}
.footer p.copyright {
	text-transform: uppercase;
	margin: 0px;
}
/*P7MOBILE Styles. These styles will be used only by mobile devices (phones and tablets) and will be ignored by desktop and laptop browsers.*/
body.p7mobile { 
	-webkit-text-size-adjust:100%; 
	min-width: 0;
	margin: 1em;
}
.p7mobile .content-wrapper {
	width: auto;
}
.p7mobile .content {
	padding: 1.5em;
	font-size: large;
	line-height: 1.35em;
}
.p7mobile .menutop li {
	margin-bottom: 5px;
}
.p7mobile .menutop a, .p7mobile .footer  { 
	font-size: large; 
}
