/*
*  carb-detail.css : style sheet for detail pages with zoom and 360 views
*	designed to be run in a window ie; lightbox
*
*  Copyright (c) 2013 daytonaparts.com  all rights reserved
*/

		@import url(https://fonts.googleapis.com/css?family=Fredericka+the+Great|Contrail+One);
		@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300|Roboto+Condensed:300italic,400italic,700italic,400,700);	
		

		.container {
			background-color: black;
			/*was 03/22 width: 80%;*/

			width: 100%;
			min-height:600px;
			max-width: 1060px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	/*		min-width: 808px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. 
			background-color: #FFF;*/
			/* margin: 0 auto; the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
			/*was 03/22width: 900px;*/   
			height: 640px;
			overflow:hidden;

		}
		/* ~~ 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 {
			padding: 10px 0;
			max-width: inherit;
			min-width: inherit;
		}
		/* ~~ This grouped selector gives the lists in the .content area space ~~ */
		.content ul, .content ol {
			padding: 0 15px 15px 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. */
		}
		/* ~~ 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-right: 4px;
			color: white;
			width: 48%;
		}
		.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: 4px;
			width: 48%;
			color: white;
		}
		.fltlftZoom { /* 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: 4px;
			color: white;
			padding: 20px
		}
		.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 overflow:hidden on the .container is removed */
			clear: both;
			height: 0;
			font-size: 1px;
			line-height: 0px;
		}
		.f_headerText {
			font-size: 2.0em;
			font-family: 'Roboto Condensed', sans-serif;
			/*font-family: 'Contrail One', cursive;*/
			font-weight: bold;
			text-align:center;

			font-size: 2em;
			font-weight: bold;
			color: red;
			padding: 0px 0px 20px 20px;
		}
		.f_centerText {
			font-size: 1.1em;
			font-weight: bold;
			color: Yellow;
			padding: 0px 0px 0px 20px;
			overflow: hidden;
			font-family: 'Roboto Condensed', sans-serif;

		}
		.f_paraText {
			font-size: 76%;
		}
		#f_header {
			width: inherit;
		/*	margin: 20px;
		*/}
		.f_images {
		/*	width: 100%;
			padding: 10px;
		*/	alignment-adjust: auto;
			overflow: hidden;
			width: 90%;
			margin:0 auto;
		}
		.f_lower {
			width: inherit;
			padding: inherit;
			overflow: hidden;
		}
		ul#thumblist {
			display: block;
		}
		ul#thumblist li {
			float: left;
			margin: 2px;
			list-style: none
		}
		ul#thumblist li a {
			display: block;
			border: 1px solid #CCC;
			overflow: hidden;
		}
		ul#thumblist li a.zoomThumbActive {
			border: 1px solid red;
		}

