
/* TOGGLE & ACCORDION ------------------------------------------------------------*/

.ui-accordion .ui-accordion-header,
.toggle-trigger {
  cursor: pointer;
  margin-top: 2px;
  position: relative;
  padding-bottom: 6px;
  background: #C0C0C0 ;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.ui-accordion .ui-accordion-header:hover,
.toggle-trigger:hover {
	background: #A8A8A8 ;
}

#content .ui-accordion .ui-accordion-header>a,
#content .toggle-trigger>a{
	text-decoration: none;
	color: #363636;
	font-size: 15px;
	padding-left: 25px;
}

.ui-accordion .ui-accordion-content,
.toggle-container {
  border-top: 0px none;
  margin-bottom: 2px;
  padding: 20px;
  position: relative;
  top: 1px
}

/* ALIGNMENT ------------------------------------------------------------*/

.left-align{
	float:left;
	margin:8px 18px 18px 0;
	display: block;
}

.right-align{
	float:right;
	margin:0px 0px 0px 10px;
	display: block;
}

/* BLOCKS ------------------------------------------------------------*/

.boxed{
	background: white;
	padding: 5px;
	border: 1px solid #cccccc;
}

.border{
	border: 2px solid white;
}

/* DROPCAP ------------------------------------------------------------*/

.dropcap:first-letter{ 
	font-size: 3.571em; 
	line-height: 0.76em; 
	padding: 0.04em 0.12em 0 0; 
	float: left;
	color: #ffcc33;
}

.dropcap.dark:first-letter{ 
	display:block;
	float:left;
	font-size:30px;
	line-height:40px;
	margin:0 8px 0 0;
	padding: 10px 10px;
	background: #606060;
	color: #fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
}

/* HIGHLIGHT ------------------------------------------------------------*/

.highlight,
.highlight-red,
.highlight-blue,
.highlight-green {
	background:yellow;
	padding:2px 5px;
}

.highlight-red{ 
	background: red;
	color:#fff;
}

.highlight-blue{
	background: blue;
	color:#fff;
}

.highlight-green{
	background: green;
	color:#fff;
}

/* PULLQUOTES ------------------------------------------------------------*/

.pullquote-right,
.pullquote-left {
	border-left: #555555 2px solid;
	float:right;
	font-size:16px;
	line-height:1.5em;
	margin: 20px 0px 20px 20px;
	width:33%;
	font-style: italic;
}

.pullquote-left {
	float:left;
	margin: 20px 20px 20px 0px;
	padding:0 0 0 20px;
}

.pullquote-right{
	border-left: none;
	border-right: #555555 2px solid;
	padding:0 20px 0 0px;
}

/* LINK BUTTON BIG ------------------------------------------------------------*/

.link-button-big{
	display: table;
	height: 38px;
	padding-left: 6px;
	text-decoration: none;
	color: #fff;
	background: url('../img/big-button.png') no-repeat 0px 0px;
}
	
.link-button-big span{
	display: block;
	height: 100% ;
	font-size: 18px;
	line-height: 38px;
	padding-left: 9px;
	padding-right: 15px;
	background: url('../img/big-button.png') no-repeat right -38px;
	text-shadow: -1px -1px rgba(0, 0, 0, .7)
}

.link-button-big:hover{
	opacity: .8;
}

/* LINK BUTTON BIGY ------------------------------------------------------------*/

.link-button-bigy{
	display: table;
	height: 57px;
	padding-left: 6px;
	text-decoration: none;
	color: #fff;
	background: url('../img/bigy-button.png') no-repeat 0px 0px;
}
	
.link-button-bigy span{
	display: block;
	height: 100% ;
	font-size: 18px;
	line-height: 57px;
	padding-left: 15px;
	padding-right: 15px;
	background: url('../img/bigy-button.png') no-repeat right -57px;
	text-shadow: -1px -1px rgba(0, 0, 0, .5)
}

.link-button-bigy:hover{
	opacity: .8;
}


/* LINK BUTTON ------------------------------------------------------------*/

#content .link-button{
	display: table;
	height: 37px;
	padding-left: 5px;
	text-decoration: none;
	color: #fff;
	background: url('../img/button.png') no-repeat 1px 0px;
}
	
#content .link-button span{
	display: block;
	height: 100% ;
	font-size: 12px;
	line-height: 37px;
	padding-left: 9px;
	padding-right: 15px;
	background: url('../img/button.png') no-repeat right -36px;
	text-shadow: -1px -1px rgba(0, 0, 0, .7)
}	

#content .link-button:hover{
	background-position: 1px -72px;
}

#content .link-button:hover span{
	background-position: right -108px;
}

/* TABLE ------------------------------------------------------------*/

table, td, th {
	vertical-align:middle;
}

table {
	border-collapse:separate;
	border-spacing:0;
	border-top:1px solid white;
	margin-bottom:28px;
	width:100%;
	text-align: left;
}

th{
	border-top:5px solid #555555;
	color: #ffffff;
	padding:10px;
	text-transform:uppercase;
	background-color: #49494b;
}

td{
	padding:10px;
}

td, th{
	border-bottom: 1px solid #1f1f1f;
}

/* LISTS ------------------------------------------------------------*/


.lists-check ul,
.lists-arrow ul,
.lists-plus ul,
.lists-star ul,
.lists-heart ul{
	margin-bottom: 30px;
	margin-left: 20px;
}


.lists-check ul li{ 
	list-style-image: url('../img/bullets/check.png');
	line-height: 1.5em
}
	
.lists-arrow ul{ 
	list-style-image: url('../img/bullets/arrow.png'); 
	line-height: 1.5em
}

.lists-plus ul{ 
	list-style-image: url('../img/bullets/plus.png'); 
	line-height: 1.5em
}

.lists-star ul{ 
	list-style-image: url('../img/bullets/star.png'); 
	line-height: 1.5em
}

.lists-heart ul{ 
	list-style-image: url('../img/bullets/heart.png'); 
	line-height: 1.5em
}


/* INFO BOXES ------------------------------------------------------------*/

.info-add,
.warning-box,
.blue-box,
.error-box,
.download-box,
.favorite-box,
.information-box,
.success-box,
.validation-box,
.fastforward-box,
.rewind-box,
.right-box,
.graphite-box,
.green-box,
.gray-box,
.help-box,
.left-box,
.loop-box,
.message-box,
.orange-box,
.pause-box,
.play-box,
.record-box,
.red-box,
.refresh-box,
.remove-box,
.search-box,
.shuffle-box,
.smart-box,
.back-box,
.forward-box,
.stop-box,
.upload-box
{
	border: 1px solid;
	margin: 10px 0px;
	padding:15px 10px 15px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.info-add{
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/knobs-icons/Knob%20Add.png');
}

.warning-box{
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../img/knobs-icons/Knob%20Attention.png');
}

.blue-box{
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../img/knobs-icons/Knob%20Blue.png');
}

.error-box{
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('../img/knobs-icons/Knob%20Cancel.png');
}

.download-box{
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/knobs-icons/Knob%20Download.png');
}

.favorite-box{
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../img/knobs-icons/Knob%20Favorite.png');
}

.information-box{
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../img/knobs-icons/Knob%20Info.png');
}

.success-box{
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/knobs-icons/Knob%20Valid%20Green.png');
}

.fastforward-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Fast%20Forward.png');
}

.rewind-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Fast%20Rewind.png');
}

.right-box{
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/knobs-icons/Knob%20Forward.png');
}

.graphite-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Graphite.png');
}

.green-box{
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/knobs-icons/Knob%20Green.png');
}

.gray-box{
	color: #fff;
	background-color: #999999;
	background-image: url('../img/knobs-icons/Knob%20Grey.png');
}

.help-box{
	color: #fff;
	background-color: #b47bc4;
	background-image: url('../img/knobs-icons/Knob%20Help.png');
}

.left-box{
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/knobs-icons/Knob%20Left.png');
}

.loop-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Loop%20Off.png');
}

.message-box{
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../img/knobs-icons/Knob%20Message.png');
}

.orange-box{
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../img/knobs-icons/Knob%20Orange.png');
}

.pause-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Pause.png');
}

.play-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Play.png');
}

.record-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Record%20Off.png');
}

.red-box{
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('../img/knobs-icons/Knob%20Red.png');
}

.refresh-box{
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/knobs-icons/Knob%20Refresh.png');
}

.remove-box{
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('../img/knobs-icons/Knob%20Remove%20Red.png');
}

.search-box{
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../img/knobs-icons/Knob%20Search.png');
}

.shuffle-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Shuffle%20Off.png');
}

.smart-box{
	color: #fff;
	background-color: #b47bc4;
	background-image: url('../img/knobs-icons/Knob%20Smart.png');
}

.back-box{
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../img/knobs-icons/Knob%20Snapback.png');
}

.forward-box{
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../img/knobs-icons/Knob%20Snapforward.png');
}

.stop-box{
	color: #ffffff;
	background-color: #57737f;
	background-image: url('../img/knobs-icons/Knob%20Stop.png');
}

.upload-box{
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../img/knobs-icons/Knob%20Upload.png');
}