| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568 | 
							- /*
 -  * Skin for jPlayer Plugin (jQuery JavaScript Library)
 -  * http://www.jplayer.org
 -  *
 -  * Skin Name: Blue Monday
 -  *
 -  * Copyright (c) 2010-2012 Happyworm Ltd
 -  * Dual licensed under the MIT and GPL licenses.
 -  *  - http://www.opensource.org/licenses/mit-license.php
 -  *  - http://www.gnu.org/copyleft/gpl.html
 -  *
 -  * Author: Silvia Benvenuti
 -  * Skin Version: 4.2 (jPlayer 2.2.0)
 -  * Date: 22nd October 2012
 -  */
 - 
 - div.jp-audio,
 - div.jp-audio-stream,
 - div.jp-video {
 - 
 - 	/* Edit the font-size to counteract inherited font sizing.
 - 	 * Eg. 1.25em = 1 / 0.8em
 - 	 */
 - 
 - 	font-size:1.25em; /* 1.25em for testing in site pages */ /* No parent CSS that can effect the size in the demos ZIP */
 - 
 - 	font-family:Verdana, Arial, sans-serif;
 - 	line-height:1.6;
 - 	color: #666;
 - 	/*border:1px solid #009be3;*/
 - 	background-color:#eee;
 - }
 - div.jp-audio {
 - 	width:100%;
 - }
 - div.jp-audio-stream {
 - 	width:182px;
 - }
 - div.jp-video-270p {
 - 	width:480px;
 - }
 - div.jp-video-360p {
 - 	width:640px;
 - }
 - div.jp-video-full {
 - 	/* Rules for IE6 (full-screen) */
 - 	width:480px;
 - 	height:270px;
 - 	/* Rules for IE7 (full-screen) - Otherwise the relative container causes other page items that are not position:static (default) to appear over the video/gui. */
 - 	position:static !important; position:relative
 - }
 - 
 - /* The z-index rule is defined in this manner to enable Popcorn plugins that add overlays to video area. EG. Subtitles. */
 - div.jp-video-full div div {
 - 	z-index:1000;
 - }
 - 
 - div.jp-video-full div.jp-jplayer {
 - 	top: 0;
 - 	left: 0;
 - 	position: fixed !important; position: relative; /* Rules for IE6 (full-screen) */
 - 	overflow: hidden;
 - }
 - 
 - div.jp-video-full div.jp-gui {
 - 	position: fixed !important; position: static; /* Rules for IE6 (full-screen) */
 - 	top: 0;
 - 	left: 0;
 - 	width:100%;
 - 	height:100%;
 - 	z-index:1001; /* 1 layer above the others. */
 - }
 - 
 - div.jp-video-full div.jp-interface {
 - 	position: absolute !important; position: relative; /* Rules for IE6 (full-screen) */
 - 	bottom: 0;
 - 	left: 0;
 - }
 - 
 - div.jp-interface {
 - 	position: relative;
 - 	background-color:#eee;
 - 	width:100%;
 - }
 - 
 - div.jp-audio div.jp-type-single div.jp-interface {
 - 	height:80px;
 - }
 - div.jp-audio div.jp-type-playlist div.jp-interface {
 - 	height:80px;
 - }
 - 
 - div.jp-audio-stream div.jp-type-single div.jp-interface {
 - 	height:80px;
 - }
 - 
 - div.jp-video div.jp-interface {
 - 	/*border-top:1px solid #009be3;*/
 - }
 - 
 - /* @group CONTROLS */
 - 
 - div.jp-controls-holder {
 - 	clear: both;
 - 	width:440px;
 - 	margin:0 auto;
 - 	position: relative;
 - 	overflow:hidden;
 - 	top:-8px; /* This negative value depends on the size of the text in jp-currentTime and jp-duration */
 - }
 - 
 - div.jp-interface ul.jp-controls {
 - 	list-style-type:none;
 - 	margin:0;
 - 	padding: 0;
 - 	overflow:hidden;
 - }
 - 
 - div.jp-audio ul.jp-controls {
 - 	width: 380px;
 - 	padding:20px 20px 0 20px;
 - }
 - 
 - div.jp-audio-stream ul.jp-controls {
 - 	width: 142px;
 - 	padding:20px 20px 0 20px;
 - }
 - 
 - div.jp-video div.jp-type-single ul.jp-controls {
 - 	width: 78px;
 - 	margin-left: 200px;
 - }
 - 
 - div.jp-video div.jp-type-playlist ul.jp-controls {
 - 	width: 134px;
 - 	margin-left: 172px;
 - }
 - div.jp-video ul.jp-controls,
 - div.jp-interface ul.jp-controls li {
 - 	display:inline;
 - 	float: left;
 - }
 - 
 - div.jp-interface ul.jp-controls a {
 - 	display:block;
 - 	overflow:hidden;
 - 	text-indent:-9999px;
 - }
 - a.jp-play,
 - a.jp-pause {
 - 	width:40px;
 - 	height:40px;
 - }
 - 
 - a.jp-play {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 0 no-repeat;
 - }
 - a.jp-play:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -41px 0 no-repeat;
 - }
 - a.jp-pause {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -42px no-repeat;
 - 	display: none;
 - }
 - a.jp-pause:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -41px -42px no-repeat;
 - }
 - 
 - a.jp-stop, a.jp-previous, a.jp-next {
 - 	width:28px;
 - 	height:28px;
 - 	margin-top:6px;
 - }
 - 
 - a.jp-stop {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -83px no-repeat;
 - 	margin-left:10px;
 - }
 - 
 - a.jp-stop:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -29px -83px no-repeat;
 - }
 - 
 - a.jp-previous {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -112px no-repeat;
 - }
 - a.jp-previous:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -29px -112px no-repeat;
 - }
 - 
 - a.jp-next {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -141px no-repeat;
 - }
 - a.jp-next:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -29px -141px no-repeat;
 - }
 - 
 - /* @end */
 - 
 - /* @group progress bar */
 - 
 - div.jp-progress {
 - 	overflow:hidden;
 - 	background-color: #ddd;
 - }
 - div.jp-audio div.jp-progress {
 - 	position: absolute;
 - 	top:32px;
 - 	height:15px;
 - }
 - div.jp-audio div.jp-type-single div.jp-progress {
 - 	left:110px;
 - 	width:186px;
 - }
 - div.jp-audio div.jp-type-playlist div.jp-progress {
 - 	left:166px;
 - 	width:130px;
 - }
 - div.jp-video div.jp-progress {
 - 	top:0px;
 - 	left:0px;
 - 	width:100%;
 - 	height:10px;
 - }
 - div.jp-seek-bar {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -202px repeat-x;
 - 	width:0px;
 - 	height:100%;
 - 	cursor: pointer;
 - }
 - div.jp-play-bar {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -218px repeat-x ;
 - 	width:0px;
 - 	height:100%;
 - }
 - 
 - /* The seeking class is added/removed inside jPlayer */
 - div.jp-seeking-bg {
 - 	background: url("jplayer.blue.monday.seeking.gif");
 - }
 - 
 - /* @end */
 - 
 - /* @group volume controls */
 - 
 - 
 - a.jp-mute,
 - a.jp-unmute,
 - a.jp-volume-max {
 - 	width:18px;
 - 	height:15px;
 - 	margin-top:12px;
 - }
 - 
 - div.jp-audio div.jp-type-single a.jp-mute,
 - div.jp-audio div.jp-type-single a.jp-unmute {
 - 	margin-left: 210px;	
 - }
 - div.jp-audio div.jp-type-playlist a.jp-mute,
 - div.jp-audio div.jp-type-playlist a.jp-unmute {
 - 	margin-left: 154px;
 - }
 - 
 - div.jp-audio-stream div.jp-type-single a.jp-mute,
 - div.jp-audio-stream div.jp-type-single a.jp-unmute {
 - 	margin-left:10px;
 - }
 - 
 - div.jp-audio a.jp-volume-max,
 - div.jp-audio-stream a.jp-volume-max {
 - 	margin-left: 56px;	
 - }
 - 
 - div.jp-video a.jp-mute,
 - div.jp-video a.jp-unmute,
 - div.jp-video a.jp-volume-max {
 - 	position: absolute;
 - 	top:12px;
 - 	margin-top:0;
 - }
 - 
 - div.jp-video a.jp-mute,
 - div.jp-video a.jp-unmute {
 - 	left: 50px;
 - }
 - 
 - div.jp-video a.jp-volume-max {
 - 	left: 134px;
 - }
 - 
 - a.jp-mute {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -170px no-repeat;
 - }
 - a.jp-mute:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -19px -170px no-repeat;
 - }
 - a.jp-unmute {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -60px -170px no-repeat;
 - 	display: none;
 - }
 - a.jp-unmute:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -79px -170px no-repeat;
 - }
 - a.jp-volume-max {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -186px no-repeat;
 - }
 - a.jp-volume-max:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -19px -186px no-repeat;
 - }
 - 
 - div.jp-volume-bar {
 - 	position: absolute;
 - 	overflow:hidden;
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -250px repeat-x;
 - 	width:46px;
 - 	height:5px;
 - 	cursor: pointer;
 - }
 - div.jp-audio div.jp-volume-bar {
 - 	top:37px;
 - 	left:330px;
 - }
 - div.jp-audio-stream div.jp-volume-bar {
 - 	top:37px;
 - 	left:92px;
 - }
 - div.jp-video div.jp-volume-bar {
 - 	top:17px;
 - 	left:72px;
 - }
 - div.jp-volume-bar-value {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -256px repeat-x;
 - 	width:0px;
 - 	height:5px;
 - }
 - 
 - /* @end */
 - 
 - /* @group current time and duration */
 - 
 - div.jp-audio div.jp-time-holder {
 - 	position:absolute;
 - 	top:50px;
 - }
 - div.jp-audio div.jp-type-single div.jp-time-holder {
 - 	left:110px;
 - 	width:186px;
 - }
 - div.jp-audio div.jp-type-playlist div.jp-time-holder {
 - 	left:166px;
 - 	width:130px;
 - }
 - 
 - div.jp-current-time,
 - div.jp-duration {
 - 	width:60px;
 - 	font-size:.64em;
 - 	font-style:oblique;
 - }
 - div.jp-current-time {
 - 	float: left;
 - 	display:inline;
 - }
 - div.jp-duration {
 - 	float: right;
 - 	display:inline;
 - 	text-align: right;
 - }
 - 
 - div.jp-video div.jp-current-time {
 - 	margin-left:20px;
 - }
 - div.jp-video div.jp-duration {
 - 	margin-right:20px;
 - }
 - 
 - /* @end */
 - 
 - /* @group playlist */
 - 
 - div.jp-title {
 - 	font-weight:bold;
 - 	text-align:center;
 - }
 - 
 - div.jp-title,
 - div.jp-playlist {
 - 	width:100%;
 - 	background-color:#ccc;
 - 	/*border-top:1px solid #009be3;*/
 - }
 - div.jp-type-single div.jp-title,
 - div.jp-type-playlist div.jp-title,
 - div.jp-type-single div.jp-playlist {
 - 	border-top:none;
 - }
 - div.jp-title ul,
 - div.jp-playlist ul {
 - 	list-style-type:none;
 - 	margin:0;
 - 	padding:0 20px;
 - 	font-size:.72em;
 - }
 - 
 - div.jp-title li {
 - 	padding:5px 0;
 - 	font-weight:bold;
 - }
 - div.jp-playlist li {
 - 	padding:5px 0 4px 20px;
 - 	/*border-bottom:1px solid #eee;*/
 - }
 - 
 - div.jp-playlist li div {
 - 	display:inline;
 - }
 - 
 - /* Note that the first-child (IE6) and last-child (IE6/7/8) selectors do not work on IE */
 - 
 - div.jp-type-playlist div.jp-playlist li:last-child {
 - 	padding:5px 0 5px 20px;
 - 	border-bottom:none;
 - }
 - div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
 - 	list-style-type:square;
 - 	list-style-position:inside;
 - 	padding-left:7px;
 - }
 - div.jp-type-playlist div.jp-playlist a {
 - 	color: #333;
 - 	text-decoration: none;
 - }
 - div.jp-type-playlist div.jp-playlist a:hover {
 - 	color:#0d88c1;
 - }
 - div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
 - 	color:#0d88c1;
 - }
 - 
 - div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove {
 - 	float:right;
 - 	display:inline;
 - 	text-align:right;
 - 	margin-right:10px;
 - 	font-weight:bold;
 - 	color:#666;
 - }
 - div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove:hover {
 - 	color:#0d88c1;
 - }
 - div.jp-type-playlist div.jp-playlist span.jp-free-media {
 - 	float:right;
 - 	display:inline;
 - 	text-align:right;
 - 	margin-right:10px;
 - }
 - div.jp-type-playlist div.jp-playlist span.jp-free-media a{
 - 	color:#666;
 - }
 - div.jp-type-playlist div.jp-playlist span.jp-free-media a:hover{
 - 	color:#0d88c1;
 - }
 - span.jp-artist {
 - 	font-size:.8em;
 - 	color:#666;
 - }
 - 
 - /* @end */
 - 
 - div.jp-video-play {
 - 	width:100%;
 - 	overflow:hidden; /* Important for nested negative margins to work in modern browsers */
 - 	cursor:pointer;
 - 	background-color:rgba(0,0,0,0); /* Makes IE9 work with the active area over the whole video area. IE6/7/8 only have the button as active area. */
 - }
 - div.jp-video-270p div.jp-video-play {
 - 	margin-top:-270px;
 - 	height:270px;
 - }
 - div.jp-video-360p div.jp-video-play {
 - 	margin-top:-360px;
 - 	height:360px;
 - }
 - div.jp-video-full div.jp-video-play {
 - 	height:100%;
 - }
 - a.jp-video-play-icon {
 - 	position:relative;
 - 	display:block;
 - 	width: 112px;
 - 	height: 100px;
 - 
 - 	margin-left:-56px;
 - 	margin-top:-50px;
 - 	left:50%;
 - 	top:50%;
 - 
 - 	background: url("jplayer.blue.monday.video.play.png") 0 0 no-repeat;
 - 	text-indent:-9999px;
 - }
 - div.jp-video-play:hover a.jp-video-play-icon {
 - 	background: url("jplayer.blue.monday.video.play.png") 0 -100px no-repeat;
 - }
 - 
 - 
 - 
 - 
 - 
 - div.jp-jplayer audio,
 - div.jp-jplayer {
 - 	width:0px;
 - 	height:0px;
 - }
 - 
 - div.jp-jplayer {
 - 	background-color: #000000;
 - }
 - 
 - 
 - 
 - 
 - 
 - /* @group TOGGLES */
 - 
 - /* The audio toggles are nested inside jp-time-holder */
 - 
 - ul.jp-toggles {
 - 	list-style-type:none;
 - 	padding:0;
 - 	margin:0 auto;
 - 	overflow:hidden;
 - }
 - 
 - div.jp-audio .jp-type-single ul.jp-toggles {
 - 	width:25px;
 - }
 - div.jp-audio .jp-type-playlist ul.jp-toggles {
 - 	width:55px;
 - 	margin: 0;
 - 	position: absolute;
 - 	left: 325px;
 - 	top: 50px;
 - }
 - 
 - div.jp-video ul.jp-toggles {
 - 	margin-top:10px;
 - 	width:100px;
 - }
 - 
 - ul.jp-toggles li {
 - 	display:block;
 - 	float:right;
 - }
 - 
 - ul.jp-toggles li a {
 - 	display:block;
 - 	width:25px;
 - 	height:18px;
 - 	text-indent:-9999px;
 - 	line-height:100%; /* need this for IE6 */
 - }
 - 
 - a.jp-full-screen {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -310px no-repeat;
 - 	margin-left: 20px;
 - }
 - 
 - a.jp-full-screen:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -30px -310px no-repeat;
 - }
 - 
 - a.jp-restore-screen {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -60px -310px no-repeat;
 - 	margin-left: 20px;
 - }
 - 
 - a.jp-restore-screen:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -90px -310px no-repeat;
 - }
 - 
 - a.jp-repeat {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -290px no-repeat;
 - }
 - 
 - a.jp-repeat:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -30px -290px no-repeat;
 - }
 - 
 - a.jp-repeat-off {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -60px -290px no-repeat;
 - }
 - 
 - a.jp-repeat-off:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -90px -290px no-repeat;
 - }
 - 
 - a.jp-shuffle {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") 0 -270px no-repeat;
 - 	margin-left: 5px;
 - }
 - 
 - a.jp-shuffle:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -30px -270px no-repeat;
 - }
 - 
 - a.jp-shuffle-off {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -60px -270px no-repeat;
 - 	margin-left: 5px;
 - }
 - 
 - a.jp-shuffle-off:hover {
 - 	background: url("/jplayer/skin/blue.monday/jplayer.blue.monday.jpg") -90px -270px no-repeat;
 - }
 - 
 - 
 - /* @end */
 - 
 - /* @group NO SOLUTION error feedback */
 - 
 - .jp-no-solution {
 - 	padding:5px;
 - 	font-size:.8em;
 - 	background-color:#eee;
 - 	border:2px solid #009be3;
 - 	color:#000;
 - 	display:none;
 - }
 - 
 - .jp-no-solution a {
 - 	color:#000;
 - }
 - 
 - .jp-no-solution span {
 - 	font-size:1em;
 - 	display:block;
 - 	text-align:center;
 - 	font-weight:bold;
 - }
 - 
 - /* @end */
 - 
 - 
 - 
 - /* Artfully masterminded by ZURB */
 - body {
 -   position: relative;
 - }
 - 
 - #joyRideTipContent { display: none; }
 - 
 - .joyRideTipContent { display: none; }
 - 
 - /* Default styles for the container */
 - .joyride-tip-guide {
 -   position: absolute;
 -   background: #000;
 -   background: rgba(0,0,0,0.8);
 -   display: none;
 -   color: #fff;
 -   width: 300px;
 -   z-index: 101;
 -   top: 0; /* keeps the page from scrolling when calculating position */
 -   left: 0;
 -   font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", Helvetica, Arial, Lucida, sans-serif;
 -   font-weight: normal;
 -      -moz-border-radius: 4px;
 -   -webkit-border-radius: 4px;
 -           border-radius: 4px;
 - }
 - 
 - .joyride-content-wrapper {
 -   padding: 10px 10px 15px 15px;
 - }
 - 
 - /* Mobile */
 - @media only screen and (max-width: 767px) {
 -   .joyride-tip-guide {
 -     width: 95% !important;
 -     -moz-border-radius: 0;
 -     -webkit-border-radius: 0;
 -     border-radius: 0;
 -     left: 2.5% !important;
 -   }
 -   .joyride-tip-guide-wrapper {
 -     width: 100%;
 -   }
 - }
 - 
 - 
 - /* Add a little css triangle pip, older browser just miss out on the fanciness of it */
 - .joyride-tip-guide span.joyride-nub {
 -   display: block;
 -   position: absolute;
 -   left: 22px;
 -   width: 0;
 -   height: 0;
 -   border: solid 14px;
 -   border: solid 14px;
 - }
 - 
 - .joyride-tip-guide span.joyride-nub.top {
 -   /*
 -   IE7/IE8 Don't support rgba so we set the fallback
 -   border color here. However, IE7/IE8 are also buggy
 -   in that the fallback color doesn't work for
 -   border-bottom-color so here we set the border-color
 -   and override the top,left,right colors below.
 -   */
 -   border-color: #000;
 -   border-color: rgba(0,0,0,0.8);
 -   border-top-color: transparent !important;
 -   border-left-color: transparent !important;
 -   border-right-color: transparent !important;
 -   top: -28px;
 -   bottom: none;
 - }
 - 
 - .joyride-tip-guide span.joyride-nub.bottom {
 -   /*
 -   IE7/IE8 Don't support rgba so we set the fallback
 -   border color here. However, IE7/IE8 are also buggy
 -   in that the fallback color doesn't work for
 -   border-top-color so here we set the border-color
 -   and override the bottom,left,right colors below.
 -   */
 -   border-color: #000;
 -   border-color: rgba(0,0,0,0.8) !important;
 -   border-bottom-color: transparent !important;
 -   border-left-color: transparent !important;
 -   border-right-color: transparent !important;
 -   bottom: -28px;
 -   bottom: none;
 - }
 - 
 - .joyride-tip-guide span.joyride-nub.right {
 -   border-color: #000;
 -   border-color: rgba(0,0,0,0.8) !important;
 -   border-top-color: transparent !important;
 -   border-right-color: transparent !important;
 -   border-bottom-color: transparent !important;
 -   top: 22px;
 -   bottom: none;
 -   left: auto;
 -   right: -28px;
 - }
 - 
 - .joyride-tip-guide span.joyride-nub.left {
 -   border-color: #000;
 -   border-color: rgba(0,0,0,0.8) !important;
 -   border-top-color: transparent !important;
 -   border-left-color: transparent !important;
 -   border-bottom-color: transparent !important;
 -   top: 22px;
 -   left: -28px;
 -   right: auto;
 -   bottom: none;
 - }
 - 
 - .joyride-tip-guide span.joyride-nub.top-right {
 -   border-color: #000;
 -   border-color: rgba(0,0,0,0.8);
 -   border-top-color: transparent !important;
 -   border-left-color: transparent !important;
 -   border-right-color: transparent !important;
 -   top: -28px;
 -   bottom: none;
 -   left: auto;
 -   right: 28px;
 - }
 - 
 - /* Typography */
 - .joyride-tip-guide h1,.joyride-tip-guide h2,.joyride-tip-guide h3,.joyride-tip-guide h4,.joyride-tip-guide h5,.joyride-tip-guide h6 {
 -   line-height: 1.25;
 -   margin: 0;
 -   font-weight: bold;
 -   color: #fff;
 - }
 - .joyride-tip-guide h1 { font-size: 30px; }
 - .joyride-tip-guide h2 { font-size: 26px; }
 - .joyride-tip-guide h3 { font-size: 22px; }
 - .joyride-tip-guide h4 { font-size: 18px; }
 - .joyride-tip-guide h5 { font-size: 16px; }
 - .joyride-tip-guide h6 { font-size: 14px; }
 - .joyride-tip-guide p {
 -   margin: 0 0 18px 0;
 -   font-size: 14px;
 -   line-height: 18px;
 - }
 - .joyride-tip-guide a {
 -   color: rgb(255,255,255);
 -   text-decoration: none;
 -   border-bottom: dotted 1px rgba(255,255,255,0.6);
 - }
 - .joyride-tip-guide a:hover {
 -   color: rgba(255,255,255,0.8);
 -   border-bottom: none;
 - }
 - 
 - /* Button Style */
 - .joyride-tip-guide .joyride-next-tip {
 -   width: auto;
 -   padding: 6px 18px 4px;
 -   font-size: 13px;
 -   text-decoration: none;
 -   color: rgb(255,255,255);
 -   border: solid 1px rgb(0,60,180);
 -   background: rgb(0,99,255);
 -   background: -moz-linear-gradient(top, rgb(0,99,255) 0%, rgb(0,85,214) 100%);
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(0,99,255)), color-stop(100%,rgb(0,85,214)));
 -   background: -webkit-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
 -   background: -o-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
 -   background: -ms-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0063ff', endColorstr='#0055d6',GradientType=0 );
 -   background: linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
 -   text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
 -   -webkit-border-radius: 2px;
 -      -moz-border-radius: 2px;
 -           border-radius: 2px;
 -   -webkit-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
 -      -moz-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
 -           box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
 - }
 - 
 - .joyride-next-tip:hover {
 -   color: rgb(255,255,255) !important;
 -   border: solid 1px rgb(0,60,180) !important;
 -   background: rgb(43,128,255);
 -   background: -moz-linear-gradient(top, rgb(43,128,255) 0%, rgb(29,102,211) 100%);
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(43,128,255)), color-stop(100%,rgb(29,102,211)));
 -   background: -webkit-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
 -   background: -o-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
 -   background: -ms-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b80ff', endColorstr='#1d66d3',GradientType=0 );
 -   background: linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
 - }
 - 
 - .joyride-timer-indicator-wrap {
 -   width: 50px;
 -   height: 3px;
 -   border: solid 1px rgba(255,255,255,0.1);
 -   position: absolute;
 -   right: 17px;
 -   bottom: 16px;
 - }
 - .joyride-timer-indicator {
 -   display: block;
 -   width: 0;
 -   height: inherit;
 -   background: rgba(255,255,255,0.25);
 - }
 - 
 - .joyride-close-tip {
 -   position: absolute;
 -   right: 10px;
 -   top: 10px;
 -   color: rgba(255,255,255,0.4) !important;
 -   text-decoration: none;
 -   font-family: Verdana, sans-serif;
 -   font-size: 10px;
 -   font-weight: bold;
 -   border-bottom: none !important;
 - }
 - 
 - .joyride-close-tip:hover {
 -   color: rgba(255,255,255,0.9) !important;
 - }
 - 
 - .joyride-modal-bg {
 -   position: fixed;
 -   height: 100%;
 -   width: 100%;
 -   background: rgb(0,0,0);
 -   background: transparent;
 -   background: rgba(0,0,0, 0.5);
 -   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
 -   filter: alpha(opacity=50);
 -   opacity: 0.5;
 -   z-index: 100;
 -   display: none;
 -   top: 0;
 -   left: 0;
 -   cursor: pointer;
 - }
 - 
 - body
 - {
 -   background-color: #f4f4f4;
 - }
 - 
 - body a
 - {
 -   text-decoration: none;
 -   color: #B80C1A;
 - }
 - 
 - html, body
 - {
 -   height:100%;
 - }
 - 
 - body a:visited
 - {
 -   text-decoration: none;
 -   color: #B80C1A;
 - }
 - 
 - body a img
 - {
 -   text-decoration: none;
 - }
 - 
 - div#container
 - {
 -   position : relative;
 -   min-height: 100%;
 - }
 - 
 - div#header
 - {
 -   height: 80px;
 -   background-image: url("/img/header_background.png");
 -   background-repeat: repeat-x;
 -   border-bottom: 3px solid #e51936;
 - }
 - 
 - div#header div#hgroup
 - {
 -   width: 980px;
 -   margin-left: auto;
 -   margin-right: auto;
 -   text-align: left;
 - }
 - 
 - #header_logo
 - {
 -   float: left;
 -   margin-top: 20px;
 - }
 - 
 - #header_menu
 - {
 -   color: #ffffff;
 -   margin: 0px;
 -   padding: 0px;
 -   height: 80px;
 -   margin-left: 200px;
 -   width: 580px;
 - }
 - 
 - #header_menu li a, #register_and_login li a, #parameters li a
 - {
 -   color: #ffffff;
 -   text-decoration: none;
 - }
 - 
 - #header_menu li a
 - {
 -   display: block;
 -   text-decoration: none;
 -   font-weight: bold;
 -   padding-top: 45px;
 - }
 - 
 - #header_menu li
 - {
 -   float: left;
 -   display: inline;
 -   padding-left: 13px;
 -   padding-right: 13px;
 -   height: 80px;
 - }
 - 
 - #header_menu li.selected, #header_menu li:hover
 - {
 -   background-color: #e51936;
 - }
 - 
 - #header_menu li.separator
 - {
 -   background-image: url("/img/header_menu_separator.png");
 -   background-repeat: no-repeat;
 -   width: 5px;
 -   padding-left: 0px;
 -   padding-right: 0px;
 - }
 - 
 - #header_menu li.separator:hover
 - {
 -   background: none;
 - }
 - 
 - #register_and_login
 - {
 -   float: right;
 -   margin: 0px;
 -   margin-top: 42px;
 -   margin-right: 15px;
 -   padding: 0px;
 - }
 - 
 - #register_and_login li
 - {
 -   float: left;
 -   display: inline;
 - }
 - 
 - #register_and_login li a
 - {
 -   background-color: #585454;
 -   padding: 8px 8px 6px 6px;
 -   border: 1px solid black;
 -   text-transform : uppercase;
 -   font-size: 70%;
 -   font-weight: bold;
 -   
 -   background-color: #555;
 -   box-shadow: 0 1px 1px 0 #696465 inset;
 - }
 - 
 - #register_and_login li a.left
 - {
 -   -webkit-border-top-left-radius: 5px;
 -   -webkit-border-bottom-left-radius: 5px;
 -   -moz-border-radius-topleft: 5px;
 -   -moz-border-radius-bottomleft: 5px;
 -   border-top-left-radius: 5px;
 -   border-bottom-left-radius: 5px;
 - }
 - 
 - #register_and_login li a.right
 - {
 -   -webkit-border-top-right-radius: 5px;
 -   -webkit-border-bottom-right-radius: 5px;
 -   -moz-border-radius-topright: 5px;
 -   -moz-border-radius-bottomright: 5px;
 -   border-top-right-radius: 5px;
 -   border-bottom-right-radius: 5px;
 - }
 - 
 - /*#parameters
 - {
 -   float: right;
 -   border-right-width: 0;
 -   margin-bottom: 0;
 -   margin-left: 0;
 -   margin-right: 0;
 -   margin-top: 8px;
 - }*/
 - 
 - /*#parameters li
 - {
 -   float: left;
 -   display: inline;
 - }
 - 
 - #parameters li a
 - {
 -   float: left;
 -   display: inline;
 -   font-size: 80%;
 -   font-weight: bold;
 - }*/
 - 
 - div#languages
 - {
 -   float: right;
 -   height: 16px;
 -   overflow: hidden;
 -   padding: 2px;
 -   text-align: center;
 -   width: 15px;
 -   position: absolute;
 -   margin-left: 945px;
 -   margin-top: 7px;
 -   -moz-border-radius: 3px;
 -   -webkit-border-radius: 3px;
 -   -khtml-border-radius: 3px;
 -   border-radius: 3px;
 - }
 - 
 - div#languages a
 - {
 -   color: white;
 -   font-weight: bold;
 -   font-size: 11px;
 - }
 - 
 - div#languages:hover
 - {
 -   height: auto;
 -   background: #474747; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#474747), color-stop(0%,#474747), color-stop(100%,#212121), color-stop(100%,#212121)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
 - }
 - 
 - 
 - #content
 - {
 -   display: table;
 -   width: 980px;
 -   margin-right: auto;
 -   margin-left: auto;
 -   padding-bottom: 135px;
 - }
 - 
 - #main_content
 - {
 -   position: relative;
 -   min-height: 100%;
 - }
 - 
 - #main
 - {
 -   display: table-cell;
 -   width: 650px;
 -   padding-right: 30px;
 - }
 - 
 - #mainbox
 - {
 -   margin-top: 25px;
 -   /*padding: 10px;*/
 -   padding-bottom: 23px;
 - }
 - 
 - #mainbox.mainbox_margintop
 - {
 -   margin-top: 80px;
 - }
 - 
 - #mainbox.mainbox_nopadding
 - {
 -   padding: 0px;
 - }
 - 
 - #mainbox.mainbox_padding
 - {
 -   padding: 10px;
 - }
 - 
 - #mainbox h1
 - {
 -   margin-top: 10px;
 - }
 - 
 - .nicebox
 - {
 -   -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
 -   -moz-box-shadow:    0px 0px 2px rgba(0, 0, 0, 0.3);
 -   box-shadow:         0px 0px 2px rgba(0, 0, 0, 0.3);
 -   border: 1px solid #d3d3d3;
 - }
 - 
 - aside#sidebar
 - {
 -   display: table-cell;
 -   width: 300px;
 -   vertical-align: top;
 - }
 - 
 - ul.elements
 - {
 -   margin-top: 0px;
 -   margin-left: 0px;
 -   margin-bottom: 0px;
 - }
 - 
 - ul.elements li.element
 - {
 -   background-color: #f8f8f8;
 -   border-top: 1px solid #c8c8c8;
 -   list-style-type: none;
 -   padding: 10px;
 - }
 - 
 - ul.elements li.element:last-child
 - {
 -   
 - }
 - 
 - td.element_thumbnail
 - {
 -   background-color: #d5d5d5;
 -   padding: 4px;
 -   text-align: center;
 -   width: 140px;
 - }
 - 
 - li.element img.element_thumbnail
 - {
 -   border: 3px solid white;
 - }
 - 
 - .element_thumb_actions_container
 - {
 -   
 - }
 - 
 - ul.element_thumb_actions
 - {
 -   margin-top: 0;
 -   margin-bottom: 0;
 -   margin-left: auto;
 -   margin-right: auto;
 -   text-align: center;
 -   float: right;
 - }
 - 
 - ul.element_thumb_actions li
 - {
 -   list-style-type: none;
 -   color: #787777;
 -   font-weight: bold;
 -   height: 20px;
 -   display: inline;
 -   float: left;
 -   padding-left: 9px;
 -   padding-right: 9px;
 - }
 - 
 - ul.element_thumb_actions li.score
 - {
 -   padding-top: 2px; 
 -   margin-top: 0px; 
 -   border-right: 1px solid #bfbfbf;
 - }
 - 
 - ul.element_thumb_actions li.thumb
 - {
 -   border-left: 1px solid #eeeeee;
 -   border-right: 1px solid #bfbfbf;
 - }
 - 
 - ul.element_thumb_actions li.star
 - {
 -   padding-top: 2px;
 -   border-left: 1px solid #eeeeee;
 - }
 - 
 - ul.element_thumb_actions li.star a img
 - {
 -   
 - }
 - 
 - ul.element_thumb_actions li.separator
 - {
 -   
 - }
 - 
 - td.element_content
 - {
 -   vertical-align: top;
 -   padding-top: 5px;
 -   padding-left: 15px;
 -   padding-bottom: 5px;
 -   padding-right: 0px;
 -   color: #404040;
 - }
 - 
 - td.element_content a
 - {
 -   color: #b80c1a;
 - }
 - 
 - td.element_content .element_name a
 - {
 -   color: #171717;
 -   font-weight: bold;
 -   font-size: 15px;
 - }
 - 
 - ul.element_links_actions
 - {
 -   float: right;
 -   margin: 0px;
 -   padding: 0px;
 -   border: 1px solid #c7c7c7;
 -   
 -   height: 18px;
 -   padding: 0px 1px 1px;
 -   
 -   background: #f8f8f8; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y4ZjhmOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjhmOGY4IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q3ZDdkNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkN2Q3ZDciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #f8f8f8 0%, #f8f8f8 0%, #d7d7d7 100%, #d7d7d7 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(0%,#f8f8f8), color-stop(100%,#d7d7d7), color-stop(100%,#d7d7d7)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#d7d7d7',GradientType=0 ); /* IE6-8 */
 - 
 -   -webkit-border-top-left-radius: 3px;
 -   -webkit-border-bottom-left-radius: 3px;
 -   -moz-border-radius-topleft: 3px;
 -   -moz-border-radius-bottomleft: 3px;
 -   border-top-left-radius: 3px;
 -   border-bottom-left-radius: 3px;
 -   -webkit-border-top-right-radius: 3px;
 -   -webkit-border-bottom-right-radius: 3px;
 -   -moz-border-radius-topright: 3px;
 -   -moz-border-radius-bottomright: 3px;
 -   border-top-right-radius: 3px;
 -   border-bottom-right-radius: 3px;
 - }
 - 
 - ul.element_links_actions li
 - {
 -   list-style-type: none;
 -   display: inline;
 -   float: left;
 -   height: 18px;
 -   border-right: 1px solid #c7c7c7;
 -   border-left: 1px solid #ffffff;
 - }
 - 
 - ul.element_links_actions li:first-child
 - {
 -   border-left: none;
 - }
 - 
 - ul.element_links_actions li:last-child
 - {
 -   border-right: none;
 - }
 - 
 - .elements ul.element_tags
 - {
 -   margin-top: 3px;
 -   margin-left: 0px;
 - }
 -   
 - .elements ul.element_tags li, ul#autoplay_element ul.element_tags li
 - {
 -   display: inline;
 -   font-size: 90%;
 - }
 - 
 - ul.element_tags .button
 - {
 -   padding: 2px 4px 2px 4px;
 -   font-size: 95%;
 - }
 - 
 - .button {
 -   display: inline-block;
 -   line-height: 1;
 -   padding: 4px 7px;
 -   font-weight: bold;
 -   -moz-border-radius: 3px;
 -   -webkit-border-radius: 3px;
 -   -khtml-border-radius: 3px;
 -   border-radius: 3px;
 -   border: 1px solid #2b82ad;
 -   text-transform : uppercase;
 -   border: 1px solid #b0b0b0;
 -   
 -   background: #f3f3f3; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjNmM2YzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q1ZDVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkNWQ1ZDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #f3f3f3 0%, #f3f3f3 0%, #d5d5d5 100%, #d5d5d5 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(0%,#f3f3f3), color-stop(100%,#d5d5d5), color-stop(100%,#d5d5d5)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#d5d5d5',GradientType=0 ); /* IE6-8 */
 - 
 - }
 - 
 - a.button.element_tag, ul.tagbox li.tag, ul.search_tag_list li, ul#favorite_tags li
 - {
 -   padding: 6px;
 -   border: none;
 -   background: #474747; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#474747), color-stop(0%,#474747), color-stop(100%,#212121), color-stop(100%,#212121)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
 - }
 - 
 - td.element_content li.element_tag a.button, ul.tagbox li.tag
 - {
 -   color: #fff;
 -   text-decoration: none;
 -   text-transform : uppercase;
 - }
 - 
 - 
 - .button.active
 - {
 -   background-color: #39C9CC;
 - }
 - 
 - li.element a.element_tag_large_for_fav_still
 - {
 -   padding-right: 17px;
 - }
 - 
 - li.element a.tag_to_favorites, li.element img.tag_to_favorites
 - {
 -   margin-left: -17px;
 -   margin-right: 4px;
 - }
 - 
 - img.tag_to_favorites
 - {
 -   margin-bottom: -1px;
 - }
 - 
 - img.tag_add_to_favorites
 - {
 -   margin-bottom: -1px;
 -   margin-left: 1px;
 - }
 - 
 - td.element_content a.display_comments, td.element_content a.add_comment, td.element_content a.hide_comments, div.comments a.add_comment
 - {
 -   color: #404040;
 - }
 - 
 - div.comments form.add_comment textarea, div.comments form.edit_comment textarea
 - {
 -   width: 75%;
 -   height: 48px;
 - }
 - 
 - div.comments form.add_comment div.buttons input, div.comments form.edit_comment div.buttons input
 - {
 -   margin-top: 1px;
 -   margin-bottom: 1px;
 - }
 - 
 - aside#sidebar div.nicebox
 - {
 -   background-color: #f5f6f6;
 -   margin-bottom: 18px;
 -   padding: 12px;
 - }
 - 
 - div#user_statusbox
 - {
 -   margin-top: 25px;
 - }
 - 
 - div.user_score
 - {
 -   float: left;
 -   padding-top: 4px;
 -   border: 1px solid #D3D3D3;
 -   background-color: white;
 -   text-align: center;
 -   width: 138px;
 - }
 - 
 - .blackgradiant
 - {
 -   background: #474747; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#474747), color-stop(0%,#474747), color-stop(100%,#212121), color-stop(100%,#212121)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
 - }
 - 
 - div.user_avatar
 - {
 -   height: 137px;
 -   padding-right: 1px;
 - }
 - 
 - div.user_score div.score
 - {
 -   color: #f5f6f6;
 -   height: 29px;
 -   font-weight: bold;
 -   font-size: 18px;
 -   padding-top: 5px;
 -   margin-bottom: 4px;
 -   margin-left: 3px;
 -   margin-right: 5px;
 - }
 - 
 - ul.user_events_infos
 - {
 -   margin: 0;
 -   padding: 0;
 -   margin-left: 150px;
 -   margin-top: 10px;
 -   width: 126px;
 - }
 - 
 - ul.user_events_infos li
 - {
 -   list-style-type: none;
 -   height: 29px;
 -   font-weight: bold;
 -   border-bottom: 1px solid #c0c1c1;
 -   padding-top: 6px;
 -   vertical-align: middle;
 - }
 - 
 - 
 - ul.user_events_infos li img, ul.user_events_infos li span
 - {
 -   float: left;
 - }
 - 
 - ul.user_events_infos li img
 - {
 -   padding-right: 8px;
 - }
 - 
 - ul.user_events_infos li span
 - {
 -   margin-top: 2px;
 - }
 - 
 - ul.user_events_infos li:first-child
 - {
 -   padding-top: 0px;
 -   height: 25px;
 - }
 - 
 - ul.user_events_infos li:last-child
 - {
 -   border-bottom: none;
 - }
 - 
 - ul.user_events_infos li.user_name
 - {
 -   text-transform : uppercase;
 -   overflow: hidden;
 -   text-overflow: ellipsis;
 -   white-space: nowrap;
 - }
 - 
 - div.seachboxcontainer
 - {
 -   -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
 -   box-shadow: inset 0px 0px 2px 3px #c8c8c8; 
 -   height: 34px;
 -   -moz-border-radius: 4px;
 - 	-webkit-border-radius: 4px;
 - 	-khtml-border-radius: 4px;
 - 	border-radius: 4px;
 - }
 - 
 - div.seachboxcontainer input
 - {
 -   background: none;
 -   border: none;
 -   height: 34px;
 -   margin: 0;
 -   padding: 0;
 -   padding-left: 6px;
 -   width: 222px;
 - }
 - div.seachboxcontainer img
 - {
 -   border-left: 1px solid #C4C0C0;
 -   float: right;
 -   margin-right: 8px;
 -   margin-top: 3px;
 -   padding-left: 5px;
 - }
 - 
 - ul.social_links
 - {
 -   margin: 0px;
 -   padding: 0px;
 -   height: 35px;
 -   margin-left: 22px;
 - }
 - 
 - ul.social_links li
 - {
 -   list-style-type: none;
 -   display: inline;
 -   float: left;
 -   padding-left: 10px;
 -   padding-right: 10px;
 -   border-left: 1px solid #E2E2E2;
 -   border-right: 1px solid #E2E2E2;
 - }
 - 
 - ul.social_links li:first-child, ul.social_links li:last-child
 - {
 -   border: none;
 - }
 - 
 - aside#sidebar div#secondarymenu, aside#sidebar div#secondarymenu ul.secondarymenu, aside#sidebar div#secondarymenu ul.submenu
 - {
 -   padding: 0;
 -   margin: 0;
 - }
 - 
 - div#secondarymenu ul.secondarymenu li
 - {
 -   list-style-type: none;
 - }
 - 
 - div#secondarymenu ul.secondarymenu li.top_menu_element div
 - {
 -   padding: 10px;
 - }
 - 
 - div#secondarymenu ul.secondarymenu li.top_menu_element a
 - {
 -   color: white;
 -   text-transform : uppercase;
 -   font-weight: bold;
 - }
 - 
 - div#secondarymenu ul.submenu li.sub_menu_element
 - {
 -   padding: 10px;
 -   padding-left: 20px;
 -   background-color: #f5f6f6;
 -   border-top: 1px solid #dadbdb;
 -   border-bottom: 1px solid #dadbdb;
 -   
 -   background: url("/img/icon_list_chip.png") no-repeat scroll 2% 50% transparent;
 - }
 - 
 - div#secondarymenu ul.submenu li.sub_menu_element:first-child
 - {
 -   border-top: none;
 - }
 - 
 - div#secondarymenu ul.submenu li.sub_menu_element:last-child
 - {
 -   border-bottom: none;
 - }
 - 
 - div#secondarymenu ul.submenu li.sub_menu_element a
 - {
 -   color: black;
 -   text-transform : uppercase;
 -   font-weight: inherit;
 - }
 - 
 - div#secondarymenu ul.secondarymenu li.top_menu_element.close div.dart
 - {
 -   background: url("/img/icon_dart_top.png") no-repeat;
 -   width: 15px;
 -   height: 15px;
 -   float: right;
 -   margin-top: 2px;
 -   padding: 0;
 - }
 - 
 - div#secondarymenu ul.secondarymenu li.top_menu_element.close ul.submenu
 - {
 -   display: none;
 - }
 - 
 - div#secondarymenu ul.secondarymenu li.top_menu_element.open div.dart
 - {
 -   background: url("/img/icon_dart_bottom.png") no-repeat scroll 95% 50% transparent;
 -   width: 15px;
 -   height: 15px;
 -   float: right;
 -   margin-top: 2px;
 -   padding: 0;
 - }
 - 
 - div#secondarymenu ul.secondarymenu li.top_menu_element.open ul.submenu
 - {
 -   display: block;
 - }
 - 
 - #tabs_tag_search_buttons
 - {
 -   margin: 0;
 -   padding: 0;
 -   border-left: 1px solid #d3d3d3;
 -   border-top: 1px solid #d3d3d3;
 -   border-right: 1px solid #d3d3d3;
 -   float: left;
 -   margin-left: -1px;
 -   margin-top: -61px;
 -   font-weight: bold;
 -   
 -   -webkit-border-top-left-radius: 3px;
 -   -webkit-border-bottom-left-radius: 3px;
 -   -moz-border-radius-topleft: 3px;
 -   -moz-border-radius-bottomleft: 3px;
 -   border-top-left-radius: 3px;
 -   border-bottom-left-radius: 3px;
 -   -webkit-border-top-right-radius: 3px;
 -   -webkit-border-bottom-right-radius: 3px;
 -   -moz-border-radius-topright: 3px;
 -   -moz-border-radius-bottomright: 3px;
 -   border-top-right-radius: 3px;
 -   border-bottom-right-radius: 3px;
 - }
 - 
 - #tabs_tag_search_buttons a
 - {
 -   color: black;
 - }
 - 
 - #tabs_tag_search_buttons li
 - {
 -   list-style-type: none;
 -   display: inline;
 -   float: left;
 -   padding: 20px;
 -   
 -   background: #dddddd; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZGRkZGRkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NhY2FjYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjYWNhY2EiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #dddddd 0%, #dddddd 0%, #cacaca 100%, #cacaca 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(0%,#dddddd), color-stop(100%,#cacaca), color-stop(100%,#cacaca)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#cacaca',GradientType=0 ); /* IE6-8 */
 - }
 - 
 - #tabs_tag_search_buttons li.selected
 - {
 -   list-style-type: none;
 -   padding: 20px;
 -   
 -   background: #f3f3f3; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjNmM2YzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2UyZTJlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMmUyZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #f3f3f3 0%, #f3f3f3 0%, #e2e2e2 100%, #e2e2e2 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(0%,#f3f3f3), color-stop(100%,#e2e2e2), color-stop(100%,#e2e2e2)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-8 */
 - }
 - 
 - #tabs_tag_search_buttons li:first-child
 - {
 -   -webkit-box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
 -   -moz-box-shadow:    -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
 -   box-shadow:         -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
 - }
 - 
 - #tabs_tag_search_buttons li:last-child
 - {
 -   -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
 -   -moz-box-shadow:    1px 1px 1px 1px rgba(0, 0, 0, 0.1);
 -   box-shadow:         1px -1px 1px 1px rgba(0, 0, 0, 0.1);
 - }
 - 
 - #tabs_tag_search_buttons li div.dart
 - {
 -   display: none;
 -   height: 16px;
 -   margin-left: 30px;
 -   margin-top: 6px;
 -   width: 30px;
 -   background: url("/img/icon_bigtag_choosed.png") no-repeat scroll 0 0 transparent;
 -   position: absolute;
 - }
 - 
 - #tabs_tag_search_buttons li.selected div.dart
 - {
 -   display: block;
 - }
 - 
 - ul.tagbox a.close
 - {
 -   background: url("/img/icon_close_red.png") repeat scroll 0 100% transparent;
 -   position: absolute;
 -   width: 11px;
 -   text-indent: -9999px;
 -   margin-left: 2px;
 - }
 - 
 - ul.tagbox li.tag
 - {
 -   padding-right: 18px;
 - }
 - 
 - ul.tagbox li.tag, ul#favorite_tags li
 - {
 -   border-radius: 3px 3px 3px 3px;
 -   display: inline-block;
 -   font-size: 13px;
 -   font-weight: bold;
 -   line-height: 1;
 -   margin-bottom: 1px;
 -   margin-right: 3px;
 -   -moz-border-radius: 4px;
 -   -webkit-border-radius: 4px;
 -   -khtml-border-radius: 4px;
 -   border-radius: 4px;
 - }
 - ul.tagbox li.input {display:block; float:left;}
 - ul.tagbox input:focus {
 - border-color: #fff;
 - }
 - ul.tagbox input {
 - width: 50px;
 - margin: 0;
 - border: 0;
 - outline: 0;
 - line-height:1.2;
 - padding: 3px 0;
 - font-size: 105%;
 - }
 - 
 - ul#favorite_tags li
 - {
 -   margin-right: 0px;
 - }
 - 
 - #element_add_link, #element_add_close_link, #group_add_link, #group_add_close_link, #registration_link, #login_link
 - {
 -   float: right;
 -   margin-top: -58px;
 -   padding: 15px;
 -   color: white;
 -   border: none;
 -   
 -   background: #f6282d; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6282d), color-stop(0%,#f6282d), color-stop(100%,#c50617), color-stop(100%,#c50617)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
 - 
 - }
 - 
 - #registration_link, #login_link
 - {
 -   margin-right: -10px;
 -   margin-top: -68px;
 - }
 - 
 - #element_add_link img, #element_add_close_link img, #group_add_link img, #group_add_close_link img, #registration_link img, #login_link img
 - {
 -   margin-bottom: -5px;
 -     margin-right: -5px;
 - }
 - 
 - #element_add_link.justtopright, #element_add_close_link.justtopright, #group_add_link.justtopright, #group_add_close_link.justtopright
 - {
 -   margin-top: 0px;
 -   margin-right: 0px;
 - }
 - 
 - .top_tools
 - {
 -   padding: 10px;
 -   margin-bottom: 10px;
 - }
 - 
 - form[name="search"]
 - {
 -   margin-top: -5px;
 - }
 - 
 - form[name="search"] input[type="submit"]
 - {
 -   float: right;
 -   height: 34px;
 -   margin-top: -55px;
 - }
 - 
 - .top_tools input.tag_prompt
 - {
 -   text-align: center;
 -   width: 518px;
 - }
 - 
 - .niceinput
 - {
 -   -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
 -   box-shadow: inset 0px 0px 2px 3px #c8c8c8; 
 -   height: 34px;
 -   -moz-border-radius: 4px;
 -   -webkit-border-radius: 4px;
 -    -khtml-border-radius: 4px;
 -   border-radius: 4px;
 -   border: medium none;
 -   padding-left: 10px;
 -   padding-right: 10px;
 - }
 - 
 - .nicetextbox
 - {
 -   -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
 -   box-shadow: inset 0px 0px 2px 3px #c8c8c8; 
 -   height: 34px;
 -   -moz-border-radius: 4px;
 -   -webkit-border-radius: 4px;
 -    -khtml-border-radius: 4px;
 -   border-radius: 4px;
 -   border: medium none;
 -   padding: 10px;
 -   padding-right: 10px;
 - }
 - 
 - input:-moz-placeholder, textarea:-moz-placeholder {
 -   color: black;
 - }
 - input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
 -   color: black;
 - }
 - 
 - a.elements_more div
 - {
 -   height: 32px;
 -   width: 100%;
 -   padding: 0px;
 -   text-align: center;
 -   background-image: url("/img/more_result.png");
 -   background-repeat: no-repeat;
 -   padding-top: 30px;
 -   text-transform : uppercase;
 -   
 - }
 - 
 - a.elements_more
 - {
 -   color: black;
 -   font-weight: bold;
 - }
 - 
 - a.elements_more:hover
 - {
 -   color: black;
 - }
 - 
 - div#element_add_box
 - {
 -   padding: 10px;
 - }
 - 
 - #element_add_box h2
 - {
 -   margin-top: 0px;
 - }
 - 
 - div#form_add_first_part #element_add_url
 - {
 -   height: 29px;
 -   width: 485px;
 - }
 - 
 - #tabs_tag_search_buttons a
 - {
 -   padding-left: 5px;
 - }
 - 
 - #tabs_tag_search_buttons img
 - {
 -   float: left;
 - }
 - 
 - .muzichlogodecored
 - {
 -   background-image: url("/img/icon_minilogo_2.png");
 -   background-repeat: no-repeat;
 -   background-position: left center;
 - }
 - 
 - a#autoplay_launch
 - {
 -   -moz-border-radius: 3px 3px 0px 0px;
 -   -webkit-border-radius: 3px 3px 0px 0px;
 -   -khtml-border-radius: 3px 3px 0px 0px;
 -   padding-bottom: 0px;
 -   border-bottom: none;
 -   margin-right: -4px;
 -   margin-top: -3px;
 - }
 - 
 - div#tags_prompt_add
 - {
 -   width: 465px;
 -   
 - }
 - 
 - div#tags_prompt_add input.tag_prompt
 - {
 -   width: 450px;
 - }
 - 
 - div#form_add_second_part table td
 - {
 -   padding: 10px;
 - }
 - 
 - div#form_add_second_part input[type="submit"]
 - {
 -   float: right;
 -   margin-top: -25px;
 - }
 - 
 - div#footer
 - {
 -   height: 104px;
 -   width: 100%;
 -   margin-top: 25px;
 -   border-top: 4px solid #E51936;
 -   background-color: #171717;
 -   text-align: center;
 -   position: absolute;
 -   bottom:0;
 - }
 - 
 - div#footer_content
 - {
 -   margin-left: auto;
 -   margin-right: auto;
 -   width: 980px;
 -   color: #999999;
 - }
 - 
 - div#footer_content a
 - {
 -   color: #999999;
 - }
 - 
 - div#footer_logo
 - {
 -   line-height: 18px;
 -   margin-top: 25px;
 -   padding-left: 0;
 -   padding-right: 40px;
 -   text-align: left;
 -   width: 191px;
 -   float: left;
 - }
 - 
 - div#footer_logo img
 - {
 -   float: left;
 -   padding-right: 10px;
 - }
 - 
 - span.fotter_muzich_big
 - {
 -   font-size: 22px;
 -   font-weight: bold;
 - }
 - 
 - div#footer_content ul.footer_pages_links
 - {
 -   float: left;
 -   height: 74px;
 -   margin-bottom: 0;
 -   margin-top: 12px;
 -   padding-top: 10px;
 -   margin-left: 0;
 -   padding-left: 32px;
 -   width: 210px;
 -   border-left: 1px solid #2F2F2F;
 -   text-align: left;
 - }
 - 
 - div#footer_content ul.footer_pages_links li
 - {
 -   list-style-image: url("/img/list_chip_red.png");
 - }
 - 
 - 
 - div.search_tag_list ul.search_tag_list
 - {
 -   list-style-image: none;
 -   padding:0;
 -   margin:0;
 -   list-style-type:none;
 -   overflow: hidden;
 - }
 - 
 - div.search_tag_list ul.search_tag_list li
 - {
 -   float: left;
 -   margin-right: 4px;
 -   margin-left: 4px;
 -   margin-top: 2px;
 -   margin-bottom: 2px;
 -   padding: 2px 4px 2px 4px;
 -   background-color: #d9f7ff;
 -   
 -   
 -   border-radius: 4px;
 -   -moz-border-radius: 4px;
 -   -webkit-border-radius: 4px;
 -   
 -   -webkit-box-shadow: #666 0px 2px 3px;
 -   -moz-box-shadow: #666 0px 2px 3px;
 -   box-shadow: #666 0px 2px 3px;
 - }
 - 
 - div.search_tag_list ul.search_tag_list li.new
 - {
 -   font-weight: bold;
 -   background: #e0e0e0;
 -   color: black;
 - }
 - 
 - #container div.search_tag_list ul.search_tag_list li.new a
 - {
 -   color: black;
 - }
 -   
 - 
 - div.search_tag_list ul.search_tag_list li:hover
 - {
 -   background-color: #999999;
 - }
 - 
 - div.search_tag_list span.info
 - {
 -   text-shadow: 1px 1px 1px #666;
 -   font-weight: bold;
 -   font-size: 17px;
 - }
 - 
 - #container ul.search_tag_list li a
 - {
 -   color: #E7E7E7;
 - }
 - 
 - #container ul.search_tag_list li a:hover
 - {
 -   text-decoration: none;
 - }
 - 
 - ul.search_tag_list li a
 - {
 -   color: white;
 - }
 - 
 - 
 - div#search_tag_search a.more, div#search_tag_add a.more
 - {
 -   color: black;
 - }
 - 
 - div#search_tag_search p.help
 - {
 -   font-size: 11px;
 -   font-style: italic;
 - }
 - 
 - .textcenter
 - {
 -   text-align: center;
 - }
 - 
 - ul#form_add_prop_tags_api li
 - {
 -   float: left;
 -   list-style-type: none;
 -   margin-right: 15px;
 - }
 - 
 - ul#form_add_prop_tags_api li:hover
 - {
 -   text-decoration: underline;
 - }
 - 
 - ul.elements li.element.selected
 - {
 -   background-color: #E7E7E7;
 - }
 - 
 - ul.elements li.element h2
 - {
 -   margin-top: 0px;
 - }
 - 
 - ul.elements li.element fieldset
 - {
 -   margin-bottom: 5px;
 - }
 - 
 - ul.elements li.element fieldset.edit_url label, ul.elements li.element fieldset.edit_name label, ul.elements li.element fieldset.edit_tags label
 - {
 -   display: block;
 -   float: left;
 -   width: 80px;
 -   font-size: 16px;
 -   padding-top: 6px;
 -   font-weight: bold;
 - }
 - 
 - ul.elements li.element fieldset.edit_tags label
 - {
 -   float: left;
 - }
 - 
 - ul.elements li.element fieldset.edit_url input[type="text"], ul.elements li.element fieldset.edit_name input[type="text"]
 - {
 -   width: 520px;
 -   font-size: 100%;
 -   height: 30px;
 - }
 - 
 - ul.elements li.element fieldset.edit_tags input.tag_prompt
 - {
 -   width: 600px;
 - }
 - 
 - ul.elements li.element div.inputs
 - {
 -   text-align: right;
 - }
 - 
 - div.no_elements
 - {
 -   text-align: center;
 - }
 - 
 - ul#autoplay_element
 - {
 -   margin: 0px;
 -   padding: 0px;
 - }
 - 
 - ul#autoplay_element li
 - {
 -   list-style-type: none;
 - }
 - 
 - ul.tagbox {
 - 
 - cursor: text;
 - border: none;
 - overflow: hidden;
 - padding: 0 0 1px 3px;
 - margin-left: 0px;
 - }
 - ul.tagbox li {
 - margin:0;
 - }
 - 
 - ul#favorite_tags
 - {
 -   padding:0;
 -   margin-top:10px;
 -   margin-bottom: 10px;
 -   margin-left: 0px;
 -   list-style-type:none;
 - }
 - 
 - ul#favorite_tags li a
 - {
 -   color: white;
 - }
 - 
 - ul#favorite_tags li.list_length_big a
 - {
 -   font-size: 16px;
 -   padding-top: 2px;
 -   padding-bottom: 2px;
 - }
 - 
 - ul#favorite_tags li.list_length_medium a
 - {
 -   font-size: 15px;
 -   padding-top: 3px;
 -   padding-bottom: 3px;
 - }
 - 
 - ul#favorite_tags li a.active
 - {
 -   color: #999999;
 - }
 - 
 - ul#favorite_tags li a.highlight
 - {
 -   color: #E51936;
 - }
 - 
 - ul#favorite_tags li a.highlight.active
 - {
 -   color: #999999;
 - }
 - 
 - input#element_add_name
 - {
 -   width: 450px;
 - }
 - 
 - .darkbutton {
 -   background-color: #585454;
 -   padding: 8px 8px 6px 6px;
 -   border: 1px solid black;
 -   text-transform : uppercase;
 -   font-size: 70%;
 -   font-weight: bold;
 -   
 -   background: none;
 -   background-color: #555;
 -   box-shadow: 0 1px 1px 0 #696465 inset;
 -   color: white;
 - }
 - 
 - div.top_tools div.show_options
 - {
 -   float: right;
 -   padding: 10px;
 - }
 - 
 - div.show_options a
 - {
 -   color: white;
 - }
 - 
 - .nicelabels label
 - {
 -   display: block;
 -   float: left;
 -   font-size: 16px;
 -   font-weight: bold;
 -   padding-top: 6px;
 -   width: 100px;
 - }
 - 
 - div#group_add_box label
 - {
 -   width: 110px;
 - }
 - 
 - div#group_add_box input#group_name
 - {
 -   width: 488px;
 - }
 - 
 - div#group_add_box textarea#group_description
 - {
 -   width: 487px;
 -   height: 85px;
 - }
 - 
 - div#group_add_box input.tag_prompt
 - {
 -   width: 96%;
 - }
 - 
 - div.alignright
 - {
 -   text-align: right;
 - }
 - 
 - div#group_add_box input[type="submit"]
 - {
 -   margin-top: 10px;
 - }
 - 
 - div#registration_box input.niceinput
 - {
 -   width: 430px;
 - }
 - 
 - div#registration_box label
 - {
 -   width: 170px;
 - }
 - 
 - div#registration_box div.field
 - {
 -   margin-bottom: 5px;
 - }
 - 
 - .mainbox_start input.tag_prompt
 - {
 -   width: 96%;
 - }
 - 
 - .mainbox_start input[type="submit"]
 - {
 -   float: right;
 -   margin-right: 7px;
 -   margin-top: 10px;
 - }
 - 
 - div.global_search_results
 - {
 -   margin-top: 10px;
 - }
 - 
 - div#add_url_title, div.element_title
 - {
 -   width: 510px;
 -   font-weight: bold;
 -   font-size: 15px;
 -   white-space: nowrap;
 -   overflow: hidden;
 -   text-overflow: ellipsis;
 - }
 - 
 - .button
 - {
 -   cursor: pointer;
 - }
 - 
 - .button:active, ul.element_links_actions li:active
 - {
 -   background: #f6282d; /* Old browsers */
 -   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
 -   background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
 -   background: -moz-linear-gradient(top,  #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
 -   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6282d), color-stop(0%,#f6282d), color-stop(100%,#c50617), color-stop(100%,#c50617)); /* Chrome,Safari4+ */
 -   background: -webkit-linear-gradient(top,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
 -   background: -o-linear-gradient(top,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
 -   background: -ms-linear-gradient(top,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
 -   background: linear-gradient(to bottom,  #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
 -   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
 - }
 - 
 - div#tags_prompt_tag_favorites_form input.tag_prompt
 - {
 -   width: 95%;
 - }
 - 
 - form[name="tag_favorites_form"] input.button
 - {
 -   float: right;
 -   margin-right: 11px;
 -   margin-top: 5px;
 - }
 - 
 - form.changepassword label
 - {
 -   width: 210px;
 - }
 - 
 - form.changepassword input[type="password"]
 - {
 -   margin-bottom: 2px;
 -   width: 388px;
 - }
 - 
 - form.changepassword input[type="submit"]
 - {
 -   float: right;
 -   margin-top: 5px;
 -   margin-right: 7px;
 - }
 - 
 - form.changeemail label
 - {
 -   width: 210px;
 - }
 - 
 - form.changeemail input[type="text"]
 - {
 -   width: 388px;
 - }
 - 
 - form.changeemail input[type="submit"]
 - {
 -   float: right;
 -   margin-top: 5px;
 -   margin-right: 7px;
 - }
 - 
 - div#myaccount h2
 - {
 -   cursor: pointer;
 - }
 - 
 - div#myaccount h2:hover
 - {
 -   text-decoration: underline;
 - }
 - 
 - div.tag_proposition input.tag_prompt
 - {
 -   width: 605px;
 - }
 - 
 - div.tag_proposition input.button
 - {
 -   float: right;
 -   margin-top: 5px;
 -   margin-left: 5px;
 - }
 - 
 - li.element_view_propositions_link
 - {
 -   padding-left: 2px;
 -   padding-right: 2px;
 -   padding-top: 1px;
 - }
 - 
 - div#results_search_form div.seachboxcontainer input
 - {
 -   width: 570px;
 - }
 - 
 - div.display_more_elements
 - {
 -   padding: 10px;
 -   text-align: center;
 - }
 - 
 - div.element_embed div.jp-playlist ul
 - {
 -   text-align: left;
 - }
 - 
 - div.reputation img
 - {
 -   float: left;
 -   margin: 4px;
 -   margin-right: 8px;
 -   margin-top: 8px;
 - }
 - 
 - p.show_info
 - {
 -   margin-top: 0px;
 - }
 - 
 - div#presubscription
 - {
 -   margin-top: 23px;
 - }
 - 
 - div#presubscription input[type="email"]
 - {
 -   width: 253px;
 - }
 - 
 - div#presubscription input[type="submit"]
 - {
 -   margin-top: 10px;
 -   margin-right: 1px;
 - }
 - 
 - ul.element_thumb_actions li.score
 - {
 -   color: black;
 - }
 - 
 - div#myaccount_preferences input[type="submit"]
 - {
 -   float: right;
 -   margin-right: 7px;
 -   margin-top: 5px;
 - }
 
 
  |