/* http://flowplayer.org/tools/demos/index.html */
/* Minimal setup for Tabs  */
/* root element for tabs  */
ul.css-tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:1px solid #666;	
	height:30px;
}

/* single tab */
ul.css-tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	background: url(tools/blue.png) no-repeat -420px 0;
	font-size:11px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 134px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

ul.css-tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.css-tabs a:hover {
	background-position: -420px -31px;	
	color:#fff;	
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.css-tabs a.current, ul.css-tabs a.current:hover, ul.css-tabs li.current a {
	background-position: -420px -62px;		
	cursor:default !important; 
	color:#000 !important;
}

/* Different widths for css-tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.css-tabs a.s 			{ background-position: -553px 0; width:81px; }
ul.css-tabs a.s:hover 	{ background-position: -553px -31px; }
ul.css-tabs a.s.current  { background-position: -553px -62px; }

/* width 2 */
ul.css-tabs a.l 			{ background-position: -248px -0px; width:174px; }
ul.css-tabs a.l:hover 	{ background-position: -248px -31px; }
ul.css-tabs a.l.current  { background-position: -248px -62px; }


/* width 3 */
ul.css-tabs a.xl 			{ background-position: 0 -0px; width:248px; }
ul.css-tabs a.xl:hover 	{ background-position: 0 -31px; }
ul.css-tabs a.xl.current { background-position: 0 -62px; }


/* initially all panes are hidden */ 
.css-panes .pane {
	display:none;		
}



/* tab pane */
.css-panes div
{
   display:none;		
	padding:15px 10px;
	border:1px solid #999;
	border-top:0;
	background-color:#fff;

}



/* tooltip styling. by default the element to be styled is .tooltip  */
.tooltip
{
    display: none;
    background: transparent url(tools/black_arrow.png);
    font-size: 12px;
    height: 70px;
    width: 160px;
    padding: 25px;
    color: #fff;
}


/*  Using any HTML inside the tooltip*/
/*tooltip styling */
.tooltipHTML
{
    display: none;
    background: url(tools/black_arrow_big.png);
    height: 163px;
    padding: 40px 30px 10px 30px;
    width: 310px;
    font-size: 11px;
    color: #fff;
}

/* a .label element inside tooltip */
.tooltipHTML .label
{
    color: yellow;
    width: 35px;
}

.tooltipHTML a
{
    color: #ad4;
    font-size: 11px;
    font-weight: bold;
}

/* Using tooltips in form fields*/
/*simple css-based tooltip */
.tooltipField
{
    background-color: #000;
    border: 1px solid #fff;
    padding: 10px 15px;
    width: 200px;
    display: none;
    color: #fff;
    text-align: left;
    font-size: 12px; /* outline radius for mozilla/firefox only */
    -moz-box-shadow: 0 0 10px #000;
    -webkit-box-shadow: 0 0 10px #000;
}

/* Minimal setup for overlay */
/* the overlayed element */
.simple_overlay
{
    /* must be initially hidden */
    display: none; /* place overlay on top of other elements */
    z-index: 10000; /* styling */
    background-color: #333;
    width: 675px;
    min-height: 200px;
    border: 1px solid #666; /* CSS3 styling for latest browsers */
    -moz-box-shadow: 0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}

/* close button positioned on upper right corner */
.simple_overlay .close
{
    background-image: url(tools/close.png);
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
    height: 35px;
    width: 35px;
}

/* styling for elements inside overlay */
.details
{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    color: #fff;
    width: 150px;
}

.details h3
{
    color: #aba;
    font-size: 15px;
    margin: 0 0 -10px 0;
}

/*modal dialogs with overlay */
.modal
{
    background-color: #fff;
    display: none;
    width: 350px;
    padding: 15px;
    text-align: left;
    border: 2px solid #333;
    opacity: 0.8;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-box-shadow: 0 0 50px #ccc;
    -webkit-box-shadow: 0 0 50px #ccc;
}



/*Minimal setup for scrollable*/
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable
{
    /* required settings */
    position: relative;
    overflow: hidden;
    width: 680px;
    height: 120px; /* custom decorations */
    border: 1px solid #ccc;
    background: url(tools/h300.png) repeat-x;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items
{
    /* this cannot be too large */
    width: 20000em;
    position: absolute;
    clear: both;
}

.items div
{
    float: left;
    width: 680px;
}

/* single scrollable item */
.scrollable img
{
    float: left;
    margin: 20px 5px 20px 21px;
    background-color: #fff;
    padding: 2px;
    border: 1px solid #ccc;
    width: 100px;
    height: 75px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

/* active item */
.scrollable .active
{
    border: 2px solid #000;
    position: relative;
    cursor: default;
}


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable
{
    /* required settings */
    position: relative;
    overflow: hidden;
    width: 680px;
    height: 120px; /* custom decorations */
    border: 1px solid #ccc;
    background: url(tools/h300.png) repeat-x;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items
{
    /* this cannot be too large */
    width: 20000em;
    position: absolute;
    clear: both;
}

.items div
{
    float: left;
    width: 680px;
}

/* single scrollable item */
.scrollable img
{
    float: left;
    margin: 20px 5px 20px 21px;
    background-color: #fff;
    padding: 2px;
    border: 1px solid #ccc;
    width: 100px;
    height: 75px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

/* active item */
.scrollable .active
{
    border: 2px solid #000;
    position: relative;
    cursor: default;
}


/* this makes it possible to add next button beside scrollable */
.scrollable
{
    float: left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse
{
    background: url(tools/hori_large.png) no-repeat;
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    margin: 40px 10px;
    cursor: pointer;
    font-size: 1px;
}

/* right */
a.right
{
    background-position: 0 -30px;
    clear: right;
    margin-right: 0px;
}
a.right:hover
{
    background-position: -30px -30px;
}
a.right:active
{
    background-position: -60px -30px;
}


/* left */
a.left
{
    margin-left: 0px;
}
a.left:hover
{
    background-position: -30px 0;
}
a.left:active
{
    background-position: -60px 0;
}

/* up and down */
a.up, a.down
{
    background: url(tools/vert_large.png) no-repeat;
    float: none;
    margin: 10px 50px;
}

/* up */
a.up:hover
{
    background-position: -30px 0;
}
a.up:active
{
    background-position: -60px 0;
}

/* down */
a.down
{
    background-position: 0 -30px;
}
a.down:hover
{
    background-position: -30px -30px;
}
a.down:active
{
    background-position: -60px -30px;
}


/* disabled navigational button */
a.disabled
{
    visibility: hidden !important;
}

