@charset "UTF-8";

/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */

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

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	margin: 10px 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/

}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding:6px 3px;
	margin: 0px 1px 0px 0px;
	
	background-color: #e1f3ff;
	list-style: none;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;

background:url(tab_bg.gif) no-repeat;

}

.TabbedPanelsTab span {
	font-size: 12px;
}



/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	background-color: #CCC;
	background:url(tab_bg_hover.gif) no-repeat;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
background-image: none;
	background-color: #e1f3ff;
	border-bottom: 1px solid #EEE;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	background-color: #e1f3ff;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 8px;
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #EEE;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}

/* 
icons
 */

.mentor {background: url(Mentor_icon.gif) no-repeat 0 0px; padding-left:  40px; padding-bottom:7px; padding-top: 4px; font-weight: bold;	padding-right: 15px;}
.kPrince {background: url(icon_key.gif) no-repeat 0px 0px; padding-right: 15px;padding-left:  40px; padding-bottom:7px; padding-top: 4px;font-weight: bold;	}
.skills { padding-right: 15px; background: url(icon_skills.gif) no-repeat 0 0px; padding-left:  40px; padding-bottom:7px; padding-top: 4px;font-weight: bold;}
.resources {background: url(icon_resource.gif) no-repeat 0 0px; padding-left:  40px; padding-bottom:7px;  padding-top: 4px;font-weight: bold; 	padding-right: 15px;}

.Information {
	 padding-left:  20px; padding-bottom:7px;  padding-top: 4px; padding-right: 15px;font-weight: bold; 	font-size: .9em;
}


.pbChkLst {width: 600px;}
.pbChkLst h4 {border-bottom:1px solid #333; font-size: 1.4em; fontweight: bold; color:#333333;}
.pbChkLst ul {list-style-type:none;padding:0; margin:0;width: 100%; padding-top: 10px;}
.pbChkLst li {  margin-bottom: 0px; line-height: 1.5em; }
li.pbChkLstItm a{ background:url(box.gif) no-repeat; padding-bottom: 0px; padding-top: 10px;padding-left: 40px;display:block;height:35px; vertical-align:middle; }
li.pbChkLstItm a * {}
li.pbChkLstItm a:hover {background:url(box-ticked.gif)  no-repeat;}


/* 
next & back navigation
 */
.cht_nav {
float:right;
}

.cht_nav a {
overflow: hidden;
}

.cht_nav .cht_back {

background: url(next_back_Btn.jpg) no-repeat;
height: 30px;
width: 80px;
display: block;
text-indent: -9999px;
border-bottom: 1px solid #FFFFFF;
}


.cht_nav .cht_back:hover {
background: url(next_back_Btn.jpg) 0 -29px no-repeat;
}


.cht_nav .cht_next{
margin: -31px 0 0 100px;
background: url(next_back_Btn.jpg) -80px 0 no-repeat;
height: 30px;
width: 80px;
display: block;
text-indent: -9999px;

}

.cht_nav .cht_next:hover{
background: url(next_back_Btn.jpg) -80px -29px no-repeat;


}

.checklist_complete table tr td p{
vertical-align:middle;

}

.checklist_complete table td p{

margin:0;
padding: 0;
height: 40px;
}


/* checklist images */



.pbChkLstBody {
background: url(clipboard-head.jpg) no-repeat; padding-top: 120px; padding-left: 50px; padding-right: 50px;
}

.pbChkLstBody p {
font-weight:bold;
}
.pbChkLst {
background: url(clipboard-body.jpg) repeat-y; position: relative;
}
.pbChkLstFooter {
background:  url(clipboard-footer.jpg) no-repeat;
height: 67px;
}



span.classification, {display: block;padding: 8px 10px 8px 36px;margin: 15px 0;}
span.classification {color: #B79000;border: 1px solid #E7BD72;background: #FFF3A3 10px 50% no-repeat;}


/* frontpage */


#complaintFront {
	border: 1px solid #CCC;
	height: 350px;
	width: 800px;
	background: url(css_frontPage_noShadow.jpg) no-repeat;
	position: relative;

	margin:0;
padding: 0;

margin-left: auto;
margin-right: auto;
}


#complaintFront.complaintFrontShadow {
background: url(css_frontPage.jpg) no-repeat;
}


#complaintFront #complaintIntro{
	width: 400px;
	font-size: 1em;
	position: relative;
	top: 180px;
	padding: 0 20px ;
	color: #454545;
	font-weight: bold;
}

#complaintFront .complaintLinks {
position: relative;
top: -78px;
left: 455px;

}

#complaintFront .complaintLinks a {
	display: block;
	padding: 0px 0;
	font-size: .9em;

	margin-bottom: 8px;
}

#complaintFront a {	

	width: 235px;
	height: 45px;
	text-indent: -9999px;
	overflow: auto;
	}
	
	
	#complaintFront a#beginTool {
	background: url(css_frontPage_buttons.gif) -5px -5px;	
	}
	
	#complaintFront a#beginTool:hover {
		background: url(css_frontPage_buttons.gif) -242px -5px;
	}
	
	#complaintFront a#testScenario {
			background: url(css_frontPage_buttons.gif) -5px 100px;
	}
	
	#complaintFront a#testScenario:hover {
		background: url(css_frontPage_buttons.gif) -242px 100px;
	}
	
	#complaintFront a#processDiagram {
		background: url(css_frontPage_buttons.gif) -5px 50px;
	}
	
	#complaintFront a#processDiagram:hover {
		background: url(css_frontPage_buttons.gif) -242px 50px;
	}
	
.scenario-item {
clear: both;	
}

.scenario-item blockquote{

border:none;
margin-left: 120px;
padding-left: 50px;
background: #FFFFFF url(test-yourself-quote.jpg) no-repeat;
}

.scenario-item blockquote p {
background:url(test-yourself-quotesmall.jpg) no-repeat 100% 100%;	
}
.scenario-item .scenario-img{
float: left;
}

.scenario-swf {
	width: 646px;
	margin-right:auto;
	margin-left:auto;

}

.video-box {
	width: 100%;
	text-align: center;
	background-color: #e1f3ff;
	border: 1px solid #999;


}
