@charset "UTF-8";

/* This is the selector for the main Master/Detail structure container. 
 *
 * If you want to constrain the width of the Master/Detail structure, set a width on
 * the Master/Detail container. By default, our structure expands horizontally to fill
 * up available space.
 */
.MasterDetail
{
	font: 100% Verdana, Geneva, sans-serif;
	margin: 2px;
}

/* This is the selector for the Master Container element which houses all the MasterColumn
 * classes. By default the Master column occupy about 35% from the width of the 
 * entire structure. 
*/
.MasterDetail .MasterContainer
{
	background-color: #EAEAEA;
	border: 1px solid gray;
	width: 40%;
	float:left;
	overflow: hidden;
	margin-left: 15px;
	margin-bottom:200px;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 75%;
	background-color: #CCCCCC;
	padding:5px;
	cursor:pointer;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #EAEAEA;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color:#848484;
	color: white;
}

/* This is the selector for the Detail Container element which houses all the DetailColumn
 * classes. By default the Detail column occupy about 60% from the width of the 
 * entire structure. 
*/
.MasterDetail .DetailContainer
{
	border: 1px solid gray;
	padding:10px;
	width: 60%;
	float: right;
	overflow: auto;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 1px;
}

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	float:right;
	overflow: hidden;
	width:50%;
	margin-right:30px;
	margin-bottom:15px;
}

/* 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;
}

/* 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.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-color: #d7c394;
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 4px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

#content .AccordionPanelTab h5 {
	margin: 0px;
	padding: 2px 2px 2px 20px;
	color:#33F;
	background: url('../_images/tab_closed.gif') no-repeat left 50%;
} 

#content .AccordionPanelOpen .AccordionPanelTab h5 {
	color:#F33;
	background: url('../_images/tab_opened.gif') no-repeat left 50%;
}
/* 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: auto;
	margin: 0px;
	padding: 0px;
	height: 100px;
	background:#CCC;
}

#content .AccordionPanelContent h6 {
	padding: 0 5px;
	margin:.3em 0;
	color: #777;
	font-size:90%;
}

#content .AccordionPanelContent h6 a {
	color: #00C;
	text-decoration: none;
	}

#content .AccordionPanelContent h6 a:hover {
	color: #00C;
	background: #C00;
	}


#content .AccordionPanelContent p {
	padding: 0 5px;
	margin:.5em 0;
	color: #777;
}

/* 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: #d5e8bd;
	border-top:2px solid $551824;
}

/* 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: #028827;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #028925;
}


/* SprySpotlightColumn.css */

/* Copyright (c) 2007. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main container of the Spotlight Column and Stacked Containers structure. 
 *
 * If you want to constrain the width of the Master/Detail structure, set a width on
 * the Master/Detail container. By default, our structure expands horizontally to fill
 * up available space.
 */
 
.SpotlightAndStacked
{
	font: 100% Verdana, Geneva, sans-serif;
	margin: 5px;
	width: 640px;
}

/* This is the selector for the row element which houses all the Spotlight and Stacked containers
 * classes. 
*/
.SpotlightAndStacked .SpotlightAndStackedRow
{
	border: 1px solid #808080;
	background-color: #EFEFEF;
	margin-bottom: 5px;
}

/* This is the selector for the container of the Spotlight column elements. By default 
 * the Spotlight column occupy about 25% from the width of the 
 * entire structure. 
*/
.SpotlightAndStacked .SpotlightContainer
{
	width: 25%;
	float: left;
}

#pjetadp .SpotlightAndStacked .SpotlightContainer
{
	width: 200px;
	float: left;
}

/* This is the selector for the Spotlight column element which holds the actual data for 
 * a spotlight column.
*/
.SpotlightAndStacked .SpotlightColumn
{
	padding: 10px 0px;
	text-align:center;

}

#pjetadp .SpotlightAndStacked .SpotlightColumn
{
	padding: 10px;
	text-align:center;
	
	font-size: 0px;

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#pjetadp .SpotlightAndStacked .SpotlightColumn img
{
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow:inset  2px 2px 3px #999, inset -2px -2px 3px #999, 2px 2px 5px #000;
	-moz-box-shadow: inset 2px 2px 3px #999, inset -2px -2px 3px #999, 2px 2px 5px #000;
	box-shadow: inset 2px 2px 3px #999, inset -2px -2px 3px #999, 2px 2px 5px #000; 
	
/*	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
*/
}

#pjetadp .SpotlightAndStacked .SpotlightColumn:hover
{
	padding: 0px;
	font-size: 0.6em;

	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	
	-webkit-transform: scale(4.4) translateX(23px);
	-webkit-transform-origin: 50% 100%;
	-moz-transform: scale(4.4) translateX(23px);
	-moz-transform-origin: 50% 100%;
	transform: scale(4) translateX(23px);
	transform-origin: 50% 100%;
	background-color: #EFEFEF;
}




/* This is the selector for the container of the Stacked container elements. By default 
 * the Stacked container occupy about 75% from the width of the 
 * entire structure. 
*/
.SpotlightAndStacked .StackedContainer
{
	width: 75%;
	float: right;
}

#pjetadp .SpotlightAndStacked .StackedContainer
{
	width: 400px;
	float: right;
}


/* This is the selector for the Stacked container elements which holds the actual data for 
 * a stacked column.
*/
.SpotlightAndStacked .StackedColumnStd		/* pjet adapters */
{
	border: 1px solid #FFFFFF;
	padding: 10px 10px;
	text-indent: .25em;
}

.SpotlightAndStacked .StackedColumn
{
	border: 1px solid #FFFFFF;
	padding: 10px 10px;
	text-indent: .25em;
	height:95px;
}

.SpotlightAndStacked .StackedColumn h4
{
	margin: -10px;
	text-decoration:none;
}

.SpotlightAndStacked .StackedColumn a
{
	text-decoration:none;
}

.SpotlightAndStacked .StackedColumn a:link, .SpotlightAndStacked .StackedColumn a:visited, .SpotlightAndStacked .StackedColumn a:active
{
	color: #00C;
}

.SpotlightAndStacked .StackedColumn a:hover
{
	color: #F00;
}

