@charset "utf-8";
/* CSS Document */

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menu/oneBox.html
Copyright (c) 2005-2011 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* this is a CSS answer to fix the hover/focus '~' and hover/focus '+' problem in safari and chrome */
/* tabindex="1" in the link code to fix the 'focus persist' problem in safari and chrome */
html {-webkit-animation: safariSelectorFix infinite 1s;}
@-webkit-keyframes safariSelectorFix {
0% {zoom:1;} 
100% {zoom:1;}
}
body {padding:0; margin:0; width:100%; height:100%}

/* javasript accordion styles - adapted from Soh Tanaka's accordion with JQuery script: http://www.sohtanaka.com/web-design/simple-accordion-w-css-and-jquery/ */ 

h2.acc_trigger {
	width: 240px;
	font-size: 0.8em;
	font-weight: normal;
	float: right;
	clear: both;
	text-align: right;
	text-indent: 30px;
	color: #FFF;
	line-height: 3px;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #FFF;
}

h2.acc_trigger a {
	color: #FFF;
	text-decoration: none;
	display: block;
	padding-right: 5px;
}
h2.acc_trigger a:hover {
	color: #993366;
}
h2.active {
	background-position: right bottom;
}
.acc_container {
	overflow: hidden;
	width: 200px;
	font-size: 0.8em;
	border: 1px solid #333;
	margin-bottom: 10px;
	background-image: url(../images/icons/trans_bg.png);
	background-repeat: repeat;
	text-align: right;
	float: right;
}
.acc_container .block {

}

.acc_content {
	padding-right: 5px;


}

.right_align {	text-align: right;}