@charset "UTF-8";
/* CSS Document */

<!--
body {
	font: 15px "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #dbdbdb url(images/background.jpg) top repeat-x;
	margin: 0;
	padding: 0;
	color: #73695D;
	-webkit-text-size-adjust: none;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 1008px;
	margin: 0 0 0 30px; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	height: 100px;
	margin: 40px 0 0 0;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	overflow: hidden;
	height: 570px;
}
.homepage {
	background: url(images/midsection-main.jpg) no-repeat center;
	height: 570px;
	padding: 10px 0;
}
.whoweare-team {
	background: url(images/midsection-team.jpg) no-repeat center;	
	height: 570px;
	width: 928px;
}
.whoweare-andy {
	background: url(images/midsection-andy.jpg) no-repeat center;	
	height: 570px;
	width: 928px;
}
.whoweare-dave {
	background: url(images/midsection-dave.jpg) no-repeat center;	
	height: 570px;
	width: 928px;
}
.whoweare-tina {
	background: url(images/midsection-tina.jpg) no-repeat center;	
	height: 570px;
	width: 928px;
}
.whoweare-lorelei {
	background: url(images/midsection-lorelei.jpg) no-repeat center;	
	height: 570px;
	width: 928px;
}
.contactus {
	background: url(images/midsection-contactus.jpg) no-repeat center;
	height: 570px;
	padding: 10px 0;
}
.whatwedo {
	background: url(images/midsection-whatwedo.jpg) no-repeat center;
	height: 570px;
	padding: 10px 0;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* HOMEPAGE MENU */
.menu{
	display:inline;
	float:left;
	list-style:none;
	padding:0;
	margin:10px 0 10px 0;
	width: 950px;
}
.menu li{
	display:inline;
	float:left;
	font-size:20px;
	text-transform:uppercase;
	margin-left:40px;
	position:relative;
}
.menu li:first-child{margin-left:0;}
.menu li a{
	text-decoration:none;
	color:#666;
	border-bottom:1px solid #FFF;
	-webkit-transition: all 200ms linear; /*safari and chrome */
	-moz-transition: all 200ms linear; /* firefox */
	-o-transition: all 200ms linear; /* opera */
	transition: all 200ms linear;
}
.menu li a:hover, .menu li.current-menu-item a{
	color:#333;
	border-bottom:1px solid #999;
	text-shadow:2px 2px 1px rgba(0,0,0,0.13);
	-moz-text-shadow:2px 2px 1px rgba(0,0,0,0.13);
}
.menu li ul{
	margin:0;
	position:absolute;
	top:25px;
	left:-10px;
	width:150px;
	background:#FFF;
	padding:10px;
	z-index:20;
	display:none;
	-webkit-box-shadow:1px 1px 3px rgba(0,0,0,0.2);
	-moz-box-shadow:1px 1px 3px rgba(0,0,0,0.2);
	box-shadow:1px 1px 3px rgba(0,0,0,0.2);
}
.menu li:hover ul{
	display:block;
}
.menu li ul li a{
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
}
.menu li ul li{
	display:block;
	clear:both;
	margin:0 0 10px 0;
	line-height:12px;
}
/* END HOMEPAGE MENU */

.biocontent {
	margin: 0 0 0 15px;
	float: left;
	color: #222;
	clear: both;
	width: 800px;
}
.biocontent-right {
	margin: 0 15px 0 0;
	float: right;
	color: #222;
	clear: both;
	text-align: right;
	width: 800px;
}
.biospacer {
	/* height: 65px; */
	float: left;
}
.bioheader {
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	text-align:right;
	padding: 16px 29px 16px 0;
	text-shadow: -1px 0 black, 0 1px black,
      1px 0 black, 0 -1px black;
}
.biohighlight {
	background: #222;
	padding: 0 5px 0 5px;
}
.biotext {
	color: #222;
	background: #FFF;
	padding: 0 5px 0 5px;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
}
.maincontent {
	margin: 0 0 0 15px;
	float: left;
	color: #222;
	clear: left;
	width: 900px;
}
.mainspacer {
	/* height: 65px; */
	float: left;
}
.mainheader {
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	text-align:right;
	padding: 6px 29px 16px 0;
	text-shadow: -1px 0 black, 0 1px black,
      1px 0 black, 0 -1px black;
}
.mainheader a {
	color: #fff;
	text-decoration: none;
}
.mainheader a:hover {
	color: #ccc;
}
.mainhighlight {
	background: #222;
	padding: 0 5px 0 5px;
}
.maintext {
	color: #222;
	background: #FFF;
	padding: 0 5px 0 5px;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
	clear: both;
}

/* FOR TWITTER */
.tweetheader {
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	text-align:right;
	padding: 0 30px 0 0;
	text-shadow: -1px 0 black, 0 1px black,
      1px 0 black, 0 -1px black;
}
.tweetlink {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	text-align:right;
	padding: 0 30px 0 0;
	clear: right;
	text-shadow: -1px 0 black, 0 1px black,
      1px 0 black, 0 -1px black;
}
.tweetlink a {
	color: #333;
}
.tweet, .query {
  float: right;
  width: 500px;
  margin: 0 30px 20px 0;
  font-size: 20px;
	  line-height: 22px;
  font-weight: bold;
  color: #444; }
  .tweet .tweet_list, .query .tweet_list {
	  list-style-type:none;
	 }
    .tweet .tweet_list .awesome, .tweet .tweet_list .epic, .query .tweet_list .awesome, .query .tweet_list .epic {
      text-transform: uppercase; }
    .tweet .tweet_list li, .query .tweet_list li {
		overflow-y: hidden;
      overflow-x: hidden;
      padding: .4em; }
      .tweet .tweet_list li a, .query .tweet_list li a {
        color: #222; }
    .tweet .tweet_list .tweet_even, .query .tweet_list .tweet_even {
       }
    .tweet .tweet_list .tweet_avatar, .query .tweet_list .tweet_avatar {
      display:none; }
      .tweet .tweet_list .tweet_avatar img, .query .tweet_list .tweet_avatar img {
         }
/*	.tweet_time, .tweet_text, .tweet_join {	
	  background: #fff;
	  padding: 0 5px 0 5px;
	}
 END TWITTER */

/* IE WARNING */
#ie-message {
background:#C00;
text-align:center;
border-bottom:1px solid #900;
color: #fff;
position:absolute;
top:0;
left:0;
padding:5px;
width:100%;
z-index: 1000;
}
#ie-message a {
color: #fff;
}
/* END WARNING */

.leftfooter {
	width: 622px;
	background: url(images/footerquotes.png) top no-repeat;
	min-height: 132px;
}
.leftfooter .contact {
	padding: 18px 0 0 160px;
	font-size: 16px;
	line-height: 18px;
}
.rightfooter {
	width: 388px;
	min-height: 132px;
	border-left: dotted #73695D 3px;
	float: right;
	font-size: 12px;
}
.rightfooter p {
	margin-bottom: 0px;
}
/* ============================================================================================================================
== BUBBLE WITH AN ISOCELES TRIANGLE
** ============================================================================================================================ */

/* THE SPEECH BUBBLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-isosceles {
	position:relative;
	padding:5px;
    list-style-type: none;
	text-align: right;
	background: #fff; /* default background for browsers without gradient support */
	
	/* css3 */
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	/* NOTE: webkit gradient implementation is not as per spec */
	background:-webkit-gradient(linear, left top, left bottom, from(#eee), to(#fff));
	background:-moz-linear-gradient(top, #eee, #fff);
	background:-o-linear-gradient(top, #eee, #fff);
}

/* Variant : for top positioned triangle
------------------------------------------ */

.triangle-isosceles.top {
	/* NOTE: webkit gradient implementation is not as per spec */
	background:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
	background:-moz-linear-gradient(top, #fff, #eee);
	background:-o-linear-gradient(top, #fff, #eee);
}

/* Variant : for left/right positioned triangle
------------------------------------------ */

.triangle-isosceles.left {
	margin-left:50px;
	background:#f3961c;
}

/* Variant : for right positioned triangle
------------------------------------------ */

.triangle-isosceles.right {
	margin-right:50px;
	background:#f3961c;
}

/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */

/* creates triangle */
.triangle-isosceles:after {
	content:"";
	display:block; /* reduce the damage in FF3.0 */
	position:absolute;
	bottom:-15px; /* value = - border-top-width - border-bottom-width */
	left:50px; /* controls horizontal position */
	width:0;
	height:0;
	border-width:15px 15px 0; /* vary these values to change the angle of the vertex */
	border-style:solid;
	border-color:#fff transparent;
}

/* Variant : top
------------------------------------------ */

.triangle-isosceles.top:after {
	top:-15px; /* value = - border-top-width - border-bottom-width */
	right:50px; /* controls horizontal position */
	bottom:auto;
	left:auto;
	border-width:0 15px 15px; /* vary these values to change the angle of the vertex */
	border-color: #fff transparent;
}

/* Variant : left
------------------------------------------ */

.triangle-isosceles.left:after {
	top:16px; /* controls vertical position */
	left:-50px; /* value = - border-left-width - border-right-width */
	bottom:auto;
	border-width:10px 50px 10px 0;
	border-color:transparent #f3961c;
}

/* Variant : right
------------------------------------------ */

.triangle-isosceles.right:after {
	top:16px; /* controls vertical position */
	right:-50px; /* value = - border-left-width - border-right-width */
	bottom:auto;
    left:auto;
	border-width:10px 0 10px 50px;
	border-color:transparent #f3961c;
}


-->