/* Basic Example CSS */
body { font-family: Arial, Helvetica, sans-serif; }
h3 { color: #666; }
body > .wrapper { width: 500px; margin: 50px auto 0; }

/* ===== Tabs CSS ===== */
div.tabPanes > div { display: none; } /* initially all panes are hidden */
div.tabPanes { border: solid 1px #e6e1f1; padding: 0 15px; background: url(tab-gradient.png) repeat-x; }
ul.tabs { list-style: none; margin: 0 0 0 20px; padding: 0; overflow: hidden; }
ul.tabs li { float: left; margin-left: 2px; }
ul.tabs li a {
	display: block;
	float: left;
	padding: 10px 15px;
	color: #999;
	text-decoration: none;
	font-size: 11px;
}
ul.tabs li a:hover { background: #666; }
ul.tabs li a.current { font-weight: bold; }
ul.tabs li a:hover,
ul.tabs li a.current { color: #454545; background: url(tab-gradient.png) repeat-x; }

/* ===== Tooltip CSS ===== */
div.tooltip { 
	display: none; /* initially tooltips are hidden */
	padding: 10px;
	background: #222;
	color: #fff;
	font-size: 13px;
	font-style: italic;
}

/* ===== Scrollable CSS ===== */
/* Primary Container */
div.scrollable { position: relative; width: 790px; height: 280px; overflow: hidden; }

/* Items Container */
div.scrollable div.items { width: 20000em; position: absolute; clear: both; }

/* Individual Item Containers */
div.scrollable div.items div {
	float: left;
	margin-left: 20px;
	width: 765px;
	height: 278px;
	padding: 0 20px;
}

/* Next and Previous buttons */
a.prev, a.next {
	display:block;
	float:right;
	cursor:pointer;
	color: #999;
}
a.next {
	padding-top: 100px;
	padding-right: 10px;
}
a.prev {
	float: left;
	padding-top: 100px;
	padding-left: 5px;
	padding-right: -15px;
}
a.prev:hover, a.next:hover { color: #333; }

/* Disabled Next or Previous button */
a.disabled { visibility: hidden !important; }

/* Navigation Container */
div.navi { position: relative; top: -5px; bottom: 5px; padding-left: 390px; display: block; }

/* Navigation Links */
div.navi a {
	/*float: left;*/
	display: inline-block;
	margin-left: 2px;
	padding: 5px 15px;
	color: #999;
	text-decoration: none;
	font-size: 16px;
}
div.navi a        { background: url(../images/colouringin/link.jpg) no-repeat top center; font-weight: bold; color: #ffff00; font-weight: bold; }
div.navi a:hover  { background: url(../images/colouringin/active.jpg) no-repeat top center; font-weight: bold; color: #000;}
div.navi a.active { background: url(../images/colouringin/active.jpg) no-repeat top center; font-weight: bold; color: #000;}

