/* YOCREAM FROZEN YOGURT STYLE SHEET
/* VERSION 1.0 - DECEMBER, 2008
/* GREEN TANGERINE MEDIA - PORTLAND, OREGON - WWW.GREENTANGERINEMEDIA.COM
*/

* {
	margin: 0;
	padding: 0;
	}
	
body {
	background: #000;
	font-size: 62.5%;
	font-family: Helvetica, Arial, Sans-Serif;
	color: #555;
	text-align: center;
	}
	

	
#header {
	height: 120px;
	background-color: #000;
	margin: 0;
	padding: 0;
	text-align: left;
	}
	
#headershadow {
	height: 15px;
	background-image: url(../images/headershadow.gif);
	background-position: top center;
	background-repeat: repeat-x;
	}
	
#logo {
	width: 800px;
	height: 120px;
	padding: 0px 0 15px 0;
	margin: 0 auto 0 auto;
	}
	
#container {
	width: 800px;
	margin: 0 auto 0 auto;
	text-align: left;
	position: relative;
	z-index: 1;
	}
	
#footer {
	width: 800px;
	margin: 10px auto 30px auto;
	padding-bottom: 30px;
	text-align: center;
	font-size: .9em;
	text-transform: uppercase;
	color: #CCC;
	}
	
#clear {
	clear: both;
	}
	
.content {
	overflow: auto;
	height: 320px;
	padding: 20px;
	}
	
.content p {
	line-height: 1.4em;
	font-size: 1.2em;
	margin-bottom: 15px;
	}
	
.content h2 {
	font-size: 2.2em;
	color: #FF0099;
	font-weight: normal;
	margin-bottom: 15px;
	}
	
.content h3 {
	font-size: 1.8em;
	color: #FF0099;
	font-weight: normal;
	margin-bottom: 15px;
	}
	
blockquote {
	margin-left: 20px;
	}
	
.content ul {
	margin-bottom: 12px;
	}
	
.content li {
	margin-left: 15px;
	font-size: 1.2em;
	margin-bottom: 5px;
	}
	
.content a:link, .content a:visited {
	color: #FF0099;
	text-decoration: none;
	}
	
.content a:hover {
	color: #FF0099;
	text-decoration: underline;
	}
	
.smallgrey {
	font-size: .65em;
	color: #666;
	}
	
.pink {
	color: #FF0099;
	}
	
.supa {
	font-size: .45em;
	vertical-align: super;
	}
		
#footer a:link, #footer a:visited {
	color: #FF0099;
	text-decoration: none;
	}
	
#footer a:hover {
	color: #FF0099;
	text-decoration: underline;
	}
	
#logo h1 {
	display: block;
	width: 800px;
	height: 120px;
	text-indent: -9000px;
	background-image: url(../images/yocreamcompanystore.gif);
	}
	
.imageright {
	width: 350px;
	height: 360px;
	float: right;
	margin: 0 0 0 0px;
	z-index: 0;
	}
	
.imagecontact {
	width: 350px;
	height: 360px;
	float: right;
	margin: 0 0 0 0px;
	z-index: 0;
	}
	
#imageright {
	width: 350px;
	height: 360px;
	float: right;
	margin: 0 0 0 0px;
	position: relative;
	display: inherit;
	z-index: 0;
	}
	
.pdficon {
	width: 15px;
	height: 15px;
	margin: 0 10px 0 0;
	}
	
.formtext {
	font-size: 1.2em;
	}
	

	


/* ----- Start Accordion Styles ----- */

.Accordion {
	border: #CCC 1px solid;
	overflow: hidden;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
	position: relative;
	z-index: 100;
	
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 */
.AccordionPanelTab1 {
	display: block;
	background-color: #FF0099;
	margin: 0px;
	padding: 10px 20px 10px 20px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 2em;
	text-transform: uppercase;
	color: #FFF;
	z-index: 200;
	position: relative;
	letter-spacing: .4em;
}

.AccordionPanelTab2 {
	display: block;
	background-color: #33CC00;
	margin: 0px;
	padding: 10px 20px 10px 20px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 2em;
	text-transform: uppercase;
	color: #FFF;
	z-index: 300;
	letter-spacing: .4em;
}

.AccordionPanelTab3 {
	display: block;
	background-color: #FF6600;
	margin: 0px;
	padding: 10px 20px 10px 20px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 2em;
	text-transform: uppercase;
	color: #FFF;
	z-index: 400;
	letter-spacing: .4em;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	height: 360px;
	background-color: #FFF;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #EEEEEE;
}

.AccordionPanelTab {
	display: block;
	}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #555555;
	background-color: #D2D2D2;
	display: block;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
	background-color: #D2D2D2;
	display: block;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
	display: block;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
	background-color: #CCC;
	display: block;
}


#TB_window {
	font: 12px Arial, Helvetica, sans-serif;
	color: #333333;
}

#TB_secondLine {
	font: 10px Arial, Helvetica, sans-serif;
	color:#666666;
}

#TB_window a:link {color: #666666;}
#TB_window a:visited {color: #666666;}
#TB_window a:hover {color: #000;}
#TB_window a:active {color: #666666;}
#TB_window a:focus{color: #666666;}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	height:100%;
	width:100%;
}

.TB_overlayMacFFBGHack {background: url(file:///workgroup/Client%20Folders/images/machack.png) repeat;}
.TB_overlayBG {
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

* html #TB_overlay { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_window {
	position: fixed;
	background: #ffffff;
	z-index: 102;
	color:#000000;
	display:none;
	border: 4px solid #525252;
	text-align:left;
	top:50%;
	left:50%;
}

* html #TB_window { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_window img#TB_Image {
	display:block;
	margin: 15px 0 0 15px;
	border-right: 1px solid #D2D2D2;
	border-bottom: 1px solid #D2D2D2;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
}

#TB_caption{
	height:25px;
	padding:7px 30px 10px 25px;
	float:left;
}

#TB_closeWindow{
	height:25px;
	padding:11px 25px 10px 0;
	float:right;
}

#TB_closeAjaxWindow{
	padding:7px 10px 5px 0;
	margin-bottom:1px;
	text-align:right;
	float:right;
}

#TB_ajaxWindowTitle{
	float:left;
	padding:7px 0 5px 10px;
	margin-bottom:1px;
}

#TB_title{
	background-color:#e8e8e8;
	height:27px;
}

#TB_ajaxContent{
	clear:both;
	padding:2px 15px 15px 15px;
	overflow:auto;
	text-align:left;
	line-height:1.4em;
}

#TB_ajaxContent.TB_modal{
	padding:15px;
}

#TB_ajaxContent p{
	padding:5px 0px 5px 0px;
}

#TB_load{
	position: fixed;
	display:none;
	height:13px;
	width:208px;
	z-index:103;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
}

* html #TB_load { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_HideSelect{
	z-index:99;
	position:fixed;
	top: 0;
	left: 0;
	background-color:#fff;
	border:none;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	height:100%;
	width:100%;
}

* html #TB_HideSelect { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_iframeContent{
	clear:both;
	border:none;
	margin-bottom:-1px;
	margin-top:1px;
	_margin-bottom:1px;
}

