@charset "UTF-8";
body  {
	font: 100% Arial, Verdana,sans-serif;
	background: #fff; /*#F3F1E9;*/
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: black;/*#465A6A;*/
}

h1{
	padding-bottom:0;
	margin-bottom:0;
}

h2{
	padding-bottom:0;
	margin-bottom:0;
}

h3{
	padding-bottom:0;
	margin-bottom:0;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsRtHdr #container { 
	width: 950px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border-top: 2px solid #717373;
	border-left: 2px solid #000;
	border-right:2px solid #000;
	border-bottom:2px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsRtHdr #header { 
	color:#fff;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0;
} 

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsRtHdr #sidebar1 p" rule.
*/
.twoColElsRtHdr #sidebar1 {
	float: right; 
	width: 220px; /* since this element is floated, a width must be given */
	margin: 0 0 10px 30px;
	padding: 20px 0 4px 0; /* top and bottom padding create visual space within this div */

}

.twoColElsRtHdr #sidebar1 h3, .twoColElsRtHdr #sidebar1 h2 {
	margin-right: 10px;
	font-family:Georgia,Times,serif;
}

.twoColElsRtHdr #sidebar1 p, .twoColElsRtHdr #sidebar1 FORM
{
	margin-right: 10px;
	font-family: Arial;
	letter-spacing: 0.08em;
	line-height: 1.5em;
	font-size: 10px;
}

.twoColElsRtHdr #sidebar1 h2{
	font-size: 20px;
}

.twoColElsRtHdr #sidebar1 h1
{
	text-transform:uppercase;
	font-family: Arial;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color:Black;
	margin-bottom: 1em;
}




/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsRtHdr #mainContent {
 	margin: 50px 250px 40px 10px; /* the left margin will look best if you match the padding amount to the header and footer. */
	padding: 0px 20px 40px 105px;
	/* border-right:2px dotted #C09D55; */
} 



hr{
	color: #465A6A;
}

.twoColElsRtHdr #mainContent h1 {
 	font-family:Arial, Verdana,Sans Serif;
	padding-top:15px;
	clear:left;
	float:left;
	color:#999999;
	border-bottom:2px dotted #cc6600;
	padding-bottom: 2px;
	margin-bottom:15px;
	font-size:21px;
	margin-right:auto;
	padding-right: 10px;
	padding-left:0;
} 
.twoColElsRtHdr #mainContent h2 {
  	font-family:Arial, Verdana,sans-serif;
} 
.twoColElsRtHdr #mainContent h3 {
  	font-family:Arial, Verdana,sans-serif;
} 

.twoColElsRtHdr #mainContent li {
  	padding-bottom:9px;
} 

#mainContent p
{
	clear:left;
	font-size: 13px;
	line-height: 19px;
}

.twoColElsRtHdr #footer { 
	display:block;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #fff; /*#FFE880;*/
	color:#000;/*#0B0038;*/
	font-size: .78em;
} 
.twoColElsRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.break{
	clear:left;

}




/* links */

#mainContent a:link, #mainContent a:visited, #sidebar1  a:link, #sidebar1 a:visited {
	padding-bottom: 1px;
 	font-family:Georgia, Times New Roman,Serif;
 	font-size: 11px;
	color: #F06516;
	text-decoration: none;
	border-bottom: 1px solid #F06516;
	font-weight: bold;
	text-transform:uppercase;
	
	}
#mainContent a:hover, #sidebar1 a:hover
{
	color: #F06516;
}
	
	

/*menu */

#nav {
	position:relative;
	float:left;
  background-color: #cc6600;
	color:white;
  padding: 0;
	width:950px;
}

 

#nav ul 
{
			list-style: none;
      margin: 0;
			padding:0;
			padding-left: 106px;
			height: 22px;
			width:auto;
}


#searchform DIV
{
	height: 19px;
}
#searchform INPUT
{
  padding: 0;
  margin: 0;
}

#sidebar1 #searchform a.search
{
	position:absolute;
	text-indent: -5000px;
	margin: 0;
	padding: 0;
	width: 17px;
	height: 17px;
	background-image: url( 'images/searchicon.gif' );
	background-repeat: no-repeat;
	border: 0;
}           

#toolbar form {

            margin: 0;
            padding: 0.1em 2em 0.1em 0em;
            height: 1em;

            }

#toolbar input {

            margin: 1px;

            }

 
#nav a 
{
	position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0;
  padding-right:8px;
  padding-left: 12px;
  /*border-right: 1px dotted #BD901D;*/
  background-image: url( 'images/yellowdots.gif' );
  background-repeat: repeat-y;
}

#nav li li a
{
  color: #cc6600;
  padding-left: 14px;
}

#nav li li
{
	background-repeat: repeat-x;
	background-image: url('images/bluedots.gif');
}

#nav li li.first
{
  background-image:none;
}

#nav a.first, #nav li li a
{
  background-image:none;
}

#nav a.first
{
  padding-left: 4px;
}

#nav li:hover a
{
  font-weight: bold;
}

#nav li:hover li a
{
  font-weight: normal;
}
 
#nav li:hover li a:hover
{
  font-weight: bold;
}

#nav ul li {
	float: left;
  padding: 0;
  background-color: #cc6600;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform:uppercase;
	padding-top: 4px;
	padding-bottom: 4px;
}

 
#nav ul li ul 
{
    position: absolute;
    left: -999em;
    height: auto;
    font-weight: normal;
    margin: 0;
    margin-top: 4px;
    list-style: none;
    display: block;
    padding-left: 0px;
    border-bottom: 1px solid #465A6A;
    border-left: 1px solid #465A6A;
    border-right: 1px solid #465A6A;
}

#nav ul li ul li {

		float: none;
    width: 12em;
	  padding-right: 1em;
           /* border-right: 1px solid #BD901D; */
    background-color: White;

}

#nav ul li ul li a {
      width: 5em;
}

#nav ul li:hover ul, #nav ul li.sfhover ul
{
      left: auto;
}

 

#nav ul li:hover, #nav ul li.sfhover 
{
}

/* end menu */


/* form stuff */
input,textarea {

	background: #fff;

	border: 1px solid #000;

	font: bold 12px "Lucida Grande",Arial, sans-serif;

	color: #465A6A;

	vertical-align: middle;

}



input[type="submit"]{

	background: #465A6A;
	border: 1px solid #000;
	font: 11px Arial, sans-serif;
	color: #fff;
	vertical-align: middle;
	margin-top:10px;

}

.formdisplay{
	display:none;
}


/* begin table */
table {
	border-spacing:1px;
	font-family: Arial, Verdana,Helvetica, sans-serif;
	font-size:10px;
	background-color:#E7E7E7;
	color: #666;
}
td, th {
	padding: 2px;
}

thead th {
	text-align: center;
	background: #F5F5F5;
	color: #666;
	border: 1px solid #FFF;
	text-transform:uppercase;
}

tbody th {
	font-weight: bold;
}

tbody tr		{
	background-color:#FFF; 
	text-align:left;
	}
tbody tr.odd 	{
	background: #f9f9f9;
	border-top:1px solid #FFF;
}

tbody th a:link, tbody th a:visited{
	color:#96D030;
	background:url(http://www.tripledogs.com/images/layout.gif) no-repeat; 
	padding:3px 0px 0px 18px;
	}
tbody th a:hover{
	color:#FF8601;
	}

tbody tr td { 
	height:30px;
	background: #FFF;
	border: 1px solid #FFF;
	}

tbody tr.odd td{ 
	background: #f9f9f9;
	border-top:1px solid #FFF;
	}

table td a:link, table td a:visited {
	color: #1975D7;
	text-decoration: none;
}

table td a:hover {
	color: #50ADEA;
	border-bottom:2px solid #8FD5FF;
	text-decoration: none ;
}
tbody td a[href="http://www.tripledogs.com"] {
	margin: 0 auto;
	height: 15px;
	background: url(http://www.tripledogs.com/images/ok.gif) no-repeat;
	border-bottom: 0;
	padding:3px 0px 0px 18px;
	font-weight:bold;
	color:#FF8601;
}

table a[title^="Download"] { 
	background: url(http://www.tripledogs.com/images/down.gif) no-repeat center;
	padding:20px 0px 0px 15px;
}

tfoot th, tfoot td {
	background-color:#E7E7E7; padding:10px;
	text-align:center; 
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:22px; font-weight:bold; font-style:italic;
	border-bottom:3px solid #CCC;
	border-top:1px solid #DFDFDF;
}
/* end table */


small {
	font-size: .83em;
}

label {
	margin-top:10px;
	display:block;
}

img {
	border:0px solid #fff;
}

blockquote.sidenav{
	margin-left:2px;
	padding-left:2px;
	margin-top:15px;
	margin-bottom:10px;

}
blockquote.testimonial{
	margin-left:0px;
	padding:6px;
	margin-top:5px;
	margin-bottom:5px;
	border: 1px solid #ccc;
	text-align:center;

}

.quote{
	color:#cc6600;
	font-weight:bold;
}

#container #header img 
{
  background-color: White;
	width: 950px;
	height: 122px;
	padding:0;
	margin:0;
	border:0;
}

#header
{
	background-color: White;
}

a.nohover, a.nohover:link, a.nohover:visited, a.nohover:hover, #sidebar1 a.nohover, #sidebar1 a.nohover:link, #sidebar1 a.nohover:visited, #sidebar1 a.nohover:hover
{
	text-decoration:none;
	border-bottom:0px solid #fff !important;
	padding-bottom: 0;
}
	
#sidebar1 div.seperator
{
	margin-top: 6px;
	margin-bottom: 6px;
	width: 153px;
	height: 2px;
	border-top:2px dotted #cc6600;
}

.speakingevent
{
	background-image:url('images/calendaricon.gif');
	background-repeat: no-repeat;
	padding-left: 24px;
	margin-bottom: 20px;
}

.speakingevent a
{
	text-transform: uppercase;
}

#sidebar1 .speakingevent p
{
	padding: 0;
	margin: 0;
	margin-top: 5px;
}

#innerContainer 
{ 
	width: 950px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	
	background-image:url('images/orangedots.gif');
	background-repeat: repeat-y;
	background-position: 700px 30px;
	
	margin-bottom: 20px;
}
