@charset "utf-8";
body {
	background-image: url(images/tpc_bg.jpg);
	background-repeat: repeat-y;
	background-attachment: fixed;
	margin: 0 auto;
	padding: 0;
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4em;
}

 The TPC website uses the following colors as base palette: 003399 - light blue, 000066 - dark blue, Logo font - Bodoni MT Black Italic, Logo color - 006699 

/* ~~ 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;
}
/* -- List item settings -- */
ul.download {
	text-decoration: none;
	color: #003399;
	list-style-type: none;
}
li.download {
	margin: 3px 0 3px 20px;
	padding: 0 0px;
	text-decoration: none;
	color: #003399;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 5px;	 /* 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. */
	margin-bottom: 5px;
	padding-right: 25px;
	padding-left: 25px; /* 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. */
	color: #003399;
	font-size: x-large;
}
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: 25px;
	padding-left: 25px; /* 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. */
	font-size: large;
	color: #333;
}
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;
	color: #1475EF;
}

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

/* ~~ the header width is set by the header image size ~~ */
.header {
	background-image: url(images/header_iso.png);
	visibility: visible;
	width: 980px;
	height: 100px;
	background-repeat: no-repeat;
	margin: 0 auto;
	clear: both;
	padding-bottom: 0px;
}

/* ~~ 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.

*/

/* ~~ This highlights the current page in the navigation bar ~~ */
body#home a#nav-home,
body#about a#nav-about,
body#contacts a#nav-contacts,
body#products a#nav-products,
body#forms a#nav-forms,
body#downloads a#nav-downloads,
body#terms a#nav-terms,
body#catalog a#nav-catalogs,
body#shows a#nav-shows
body#promotions a#nav-promotions


{
	color: #666;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0px 25px 25px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
#navbar {
	width: 980px;
	height: 50px;
	position: relative;
	margin-top: -16px;
	padding-top: 0px;
	background-image: url(images/navbar.jpg);
	background-repeat: none;
	color: #FF0000;
	visibility: visible;
}
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 0px solid #FFF; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
	font: .9em;
	font-weight: bold;
	text-align: center;
}
ul.nav li {
	border-bottom: 0px solid #FFF; /* this creates the button separation */
	margin: 15px 10px 0px 5px;
	float: left;

}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 0px 30px 5px 0px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 70px;  /* Adjust this width to accomodate new buttons/links in the top navbar. This width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: none;
	color: #4E4E4E;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: none;
	color: #0F66FF;
}

.content {
	margin: 0;
	padding: 10px 0 40px 0;
	background-image: url(images/body_bg-grey.jpg);
}

/* ~~ The footer ~~ */
.footer {
	background-image:url(images/footer.png);
	width: 980px;
	heigat: none;
	display: block;ht: 100px;
	background-repe
	padding: 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

.sampleSlider {
	background-image:url(images/building/building_picture.jpg);
	width: 980px;
	height: 390px;
	margin: -10px 0 0 0;
	background-repeat: no-repeat;
}

#homeSlider {
	background-color: #FFF;
	width: 980px;
	height: 410px;
	margin: -10px 0 0 0;
	background-repeat: no-repeat;
}

#aboutSlider {
	background-color:#FFF;
	width: 980px;
	height: 410px;
	margin: -10px 0 0 0;
	background-repeat: no-repeat;
}

.mainContent {
	width:980px;
	margin: inherit;
	height: inherit;
	margin: 20px 10px 0 0;
}

.footerLinks {
	color: #FFF;
	font-size: .7em;
	width: 400px;
	display: block;
	padding-top: 5px;
	margin: auto;
}
.footerLinks a {
	color: #FFF;
	text-decoration: underline;
}

.footerLinks a:visited {
	color: #FFF;
	text-decoration: underline;
}

/* ~~ 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;
}
.contentPhoto { /* 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: 0px 25px 0px 25px;
}
.productPhoto {
	width: inherit;
	height: inherit;
	float: left;
	margin: 10px 10px 10px 0px;
	border:solid;
	border-width: thin;
	border-color: #000066;
}

ul.images {
	display: block;
	list-style:none;
	list-style-position:outside;
	width: 860px;
	margin-left: auto;
	margin-right: auto;
}
li.images {
	padding: 10px 0px 20px 50px;
	border: none;
	float: left;
	width: 150px;
	height: 210px;
	text-align: center;
}
.images a {
	text-decoration: none;
}
.images a:hover {
	color: #F90;
}

/* -- this is the form class used on the contact page -- */
.form {
	font-size: .8em;
	width: 450px;
	margin-left: 20px;
	float: left;
}
.downloads {
	display:block;
	width: inherit;
	height: 40px;
	background:url(images/downloads_div-bg.jpg);
	text-align:right;
	vertical-align: middle;
	margin: -14px 0 0 0;
	padding: 0;
	clear:both;
}
.downloads img {
	vertical-align:middle;
	padding: 0 5px 0 10px;
	margin: 4px 0 4px 0;
}
.downloads a {
	text-decoration: none;
}
.downloads a:hover {
	color: #06F;
}

/* -- This controls the 3 column layout used on the main Products page -- */


#leftCol {
  float: left;
  margin: 0 20px 0 100px;
  width: 350px;
  padding-bottom: 10px;
}
#rightCol {
  float: right;
  margin: 0 100px 0 20px;
  width: 350px;
  padding-bottom: 10px;
}

.3col ul {
	list-style: none;
	list-style-position:outside;
	margin: 0 0 10px 20px;
	padding: 0px;
	text-align: left;
	line-height: 30px;
	color: #003399;
}

.3col li {
	list-style-type: none;
	padding-left: 20px;
}
#downloads .container .content .mainContent #CollapsiblePanel1 .CollapsiblePanelContent h3 {
	font-family: Verdana, Geneva, sans-serif;
}
.red {
	font-family: Verdana, Geneva, sans-serif;
	color: #F00;
}
.Red_Quote {
	font-family: Verdana, Geneva, sans-serif;
	color: #F00;
}
.center {
}
.strong {
}
