diff --git a/services/m=funorb/css/AC_OETags-1.css b/services/m=funorb/css/AC_OETags-1.css new file mode 100644 index 000000000..a68f1e69a --- /dev/null +++ b/services/m=funorb/css/AC_OETags-1.css @@ -0,0 +1,275 @@ +// Flash Player Version Detection - Rev 1.6 +// Detect Client Browser type +// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved. +var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false; +var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; +var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false; + +function ControlVersion() +{ + var version; + var axo; + var e; + + // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry + + try { + // version will be set for 7.X or greater players + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); + version = axo.GetVariable("$version"); + } catch (e) { + } + + if (!version) + { + try { + // version will be set for 6.X players only + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); + + // installed player is some revision of 6.0 + // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29, + // so we have to be careful. + + // default to the first public version + version = "WIN 6,0,21,0"; + + // throws if AllowScripAccess does not exist (introduced in 6.0r47) + axo.AllowScriptAccess = "always"; + + // safe to call for 6.0r47 or greater + version = axo.GetVariable("$version"); + + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 4.X or 5.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = axo.GetVariable("$version"); + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 3.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = "WIN 3,0,18,0"; + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 2.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); + version = "WIN 2,0,0,11"; + } catch (e) { + version = -1; + } + } + + return version; +} + +// JavaScript helper required to detect Flash Player PlugIn version information +function GetSwfVer(){ + // NS/Opera version >= 3 check for Flash plugin in plugin array + var flashVer = -1; + + if (navigator.plugins != null && navigator.plugins.length > 0) { + if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) { + var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; + var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description; + var descArray = flashDescription.split(" "); + var tempArrayMajor = descArray[2].split("."); + var versionMajor = tempArrayMajor[0]; + var versionMinor = tempArrayMajor[1]; + var versionRevision = descArray[3]; + if (versionRevision == "") { + versionRevision = descArray[4]; + } + if (versionRevision[0] == "d") { + versionRevision = versionRevision.substring(1); + } else if (versionRevision[0] == "r") { + versionRevision = versionRevision.substring(1); + if (versionRevision.indexOf("d") > 0) { + versionRevision = versionRevision.substring(0, versionRevision.indexOf("d")); + } + } + var flashVer = versionMajor + "." + versionMinor + "." + versionRevision; + } + } + // MSN/WebTV 2.6 supports Flash 4 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4; + // WebTV 2.5 supports Flash 3 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3; + // older WebTV supports Flash 2 + else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; + else if ( isIE && isWin && !isOpera ) { + flashVer = ControlVersion(); + } + return flashVer; +} + +// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available +function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) +{ + versionStr = GetSwfVer(); + if (versionStr == -1 ) { + return false; + } else if (versionStr != 0) { + if(isIE && isWin && !isOpera) { + // Given "WIN 2,0,0,11" + tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"] + tempString = tempArray[1]; // "2,0,0,11" + versionArray = tempString.split(","); // ['2', '0', '0', '11'] + } else { + versionArray = versionStr.split("."); + } + var versionMajor = versionArray[0]; + var versionMinor = versionArray[1]; + var versionRevision = versionArray[2]; + + // is the major.revision >= requested major.revision AND the minor version >= requested minor + if (versionMajor > parseFloat(reqMajorVer)) { + return true; + } else if (versionMajor == parseFloat(reqMajorVer)) { + if (versionMinor > parseFloat(reqMinorVer)) + return true; + else if (versionMinor == parseFloat(reqMinorVer)) { + if (versionRevision >= parseFloat(reqRevision)) + return true; + } + } + return false; + } +} + +function AC_AddExtension(src, ext) +{ + if (src.indexOf('?') != -1) + return src.replace(/\?/, ext+'?'); + else + return src + ext; +} + +function AC_Generateobj(objAttrs, params, embedAttrs) +{ + var str = ''; + if (isIE && isWin && !isOpera) + { + str += ' '; + str += '>'; + } else { + str += 'body td.COC_rules ul { text-indent: -3px; } + + +p#COC_ie_bug { padding-right: 2px; } + + +.section h4 { + color: #DAD6D5; + margin-bottom: 0px; + margin-top: 0px; + padding: 5px 0px 8px 0px; +} +h3 { + font-size: 1.2em; + margin-bottom: 11px; + margin-top: 11px; +} + + +div#threadadd_buttons { width: 312px; margin: 5px auto; } + +div#threadedit_buttons { width: 263px; margin: 5px auto; } +div#messageadd_buttons { width: 362px; margin: 5px auto; } +div#messageedit_buttons { width: 392px; margin: 5px auto; } + + +#threadescalate_button, #usermessage_button, #sendquery_button { margin-top: 5px; } +#togglesmileys_button { float: none; margin-left: 0px; } + +#search_button, .finduser_button { + float: none; + display: inline; + margin-left: 0px; + position: relative; + top: 1px; +} +.finduser_button { margin-left: 3px; } + + + +div#search_query { margin-bottom: 15px; } +#search_button { margin-top: 6px; } +div#adv_search_opts { text-align: left; height: 1%; } +div#adv_search_opts div.title { margin-bottom: 10px; } + + +div#info #adv_search_opts { display: block; padding-bottom: 5px; } +div#hiddeninfo #adv_search_opts { display: none; } + +div#adv_search_title a { text-decoration: none; } + +#adv_search_opts #user_options { text-align: center; margin-bottom: 10px; } +#adv_search_opts td { vertical-align: middle; text-align: left; } +#adv_search_opts #show_options { float: left; width: 380px; margin-right: auto; } +#adv_search_opts #show_options td { padding-top: 3px; } +#adv_search_opts #status_options { float: left; width: 280px; margin-left: auto; } +#adv_search_opts #status_options img { padding-right: 2px; vertical-align: text-bottom; } +#adv_search_opts .left_cbox input { margin-right: 15px; } +#adv_search_opts #status_options #reset { margin-top: 25px; } +#adv_search_opts #footnote { margin-top: 15px; } +#adv_search_opts #footnote hr { border-top: 1px solid #dad6d5; border-bottom-style: none; margin: 0px; } +#adv_search_opts span.asterisk { font-weight: normal; padding: 1px; } + +#adv_search_opts #created_within, +#adv_search_opts #updated_within { + width: 141px; +} + +#search_results { margin-top: 30px; } +#search_results td { padding: 2px 4px; } +#search_results td.title { text-align: left; } +#search_results td.rating { width: 80px; } +#search_results td.rating img { vertical-align: bottom; } +#search_results td.result { } +#search_results td.last_updated { text-align: right; width: 130px; } +#search_results tr.odd { background-color: #0E305A; } +#search_results tr.even { background-color: #0c2749; } +#search_results tr.even td.msg_extract { padding-bottom: 8px; } +#search_results td.msg_extract { padding-bottom: 3px; } + +#search_results td.result, +#search_results td.rating, +#search_results td.last_updated { + padding-top: 3px; +} + +#search_results tr.even td.result, +#search_results tr.even td.rating, +#search_results tr.even td.last_updated { + padding-top: 8px; +} diff --git a/services/m=funorb/css/forum/forum3-1.css b/services/m=funorb/css/forum/forum3-1.css new file mode 100644 index 000000000..5f1a19264 --- /dev/null +++ b/services/m=funorb/css/forum/forum3-1.css @@ -0,0 +1,339 @@ + + + + + + + + +form { margin: 0px; } + +TABLE { width: 100%; border-collapse: collapse; border-spacing: 0px; } +INPUT, SELECT, TEXTAREA { background-color: black; color: white; } +INPUT, SELECT { font-size: 1em; } +input.b { background: #336DC5; border-color: #81A3C7; color: white; font-weight: bold; padding: 0px 3px; } +.bk { display: none; } +.tandc { margin-top: 20px; } +.white { color: white; } +.inactive { color: #999; } +.sticky1, TD.unread { font-weight: bold; } +.n,.center {text-align: center;} +/* Overrides the display property in the FunOrb global.css file */ +td.center { display: table-cell; } +.t { font-weight: bold; } +.thrd { white-space:nowrap; width: 100%; } +.left_title, .title, #commandtitle { color: white; font-weight: bold; } +#infotitle { color: white; } +div.title { margin-bottom: 7px; } +.breadcrumb { color: white; font-size: 11px; } +#breadcrumb_bottom { margin: 7px 7px 2px 7px; font-weight: bold; } + +#picker { text-align: right; margin: 4px 5px 0px 5px; padding: 5px 5px; } +#picker ul.flat { margin: 0px; } +#picker form { padding: 0px; } +#picker ul.flat { margin: 0px; } +#picker ul.flat li { margin-right: 0px; padding-right: 0px; } + + + + #picker ul.flat li { margin-left: 8px; } + +UL.flat { list-style-type: none; margin: 2px; padding: 0; } +UL.flat LI { display: inline; padding: 0 4px; margin: 0; } +li#delete_thread { padding-left: 7px; } +li#delete_thread a { color: #D50009; } + +.actions INPUT, .actions SELECT { background-color: #222; border: 1px solid #444; text-align: center; } +#infopane, #infotitle, #commandtitle { padding-top: 15px; text-align: center; width: 95%; margin: 0px auto; } +#infotitle { padding-bottom: 10px; } +#infopane .title, #infotitle, #commandtitle { font-size: 15pt; margin: 0px auto; font-weight: normal; } +#infopane .title img { vertical-align: text-bottom; } +#infopane .about { margin-top: 20px; } +.attention { text-align: center; color: white; background-color: #a00; margin: 5px auto; padding: 2px; width: 99%; } +.goodattention { text-align: center; color: white; background-color: #060; margin: 5px auto; padding: 2px; width: 99%; } +.actions .commands {} +.nav, .nav INPUT { font-size: 8pt; } +#nocontrols { padding: 1px; margin-top: 10px; } +#controls, .actions, #info, #content_forum, .modcentreitem div.l { position: relative; background-color: black; } +#controls { padding: 1px; margin: 10px 0px 5px 0px; text-align: center; } +#controls, .actions, .border, #info, .modcentreitem div.l { border: 2px solid #0d2f53; } +#movThreadBtn { margin-left: 10px; padding: 0px 3px; } +#command { text-align: center; } +#command table { width: 70%; margin: auto; } +#command .commandtitle { text-align: right; width: 27%; } +#command .commandinput { font-size: 10px; } +#menu { padding: 8px 0px 12px 0px; text-align: center; } +#command .commandtwo { text-align: center; } + +#becontrol table table { border-style: 2px solid #0d2f53; } + + +table.group { border: 2px solid #0D2F53; margin-bottom: 7px; } +.group .groupname { + color: #ffffff; + font-size: 11pt; + letter-spacing: 1px; + font-weight: bold; + text-align: left; + padding: 8px 0px 8px 5px; +} +.threads, .posts { width: 10%; } +.posts { padding-top: 5px; padding-bottom: 5px; } +.lastpost { width: 121px; } +#header_lastpost { width: 120px; } +.group td { border-top: 1px solid #0D2F53; background-color: #000000; } + + +.groupname .groupname { float: left; padding: 0 8px 0 0; } +.showhide { text-align: center; float: left; padding-top: 1px; font-size: 0px; } +.hidefgroup, .showfgroup { + float: left; + cursor: pointer; + width: 13px; + height: 13px; + background: #0A3B76 url(../../img/forum/cmdicons/contractexpand.gif) left top no-repeat; +} +.showfgroup { background-position: right top; } +.hidefgroup:hover { background-position: left bottom; } +.showfgroup:hover { background-position: right bottom; } + + +.group tr.hidden_row { display: none; } +.group .hidden_text { font-size: 0px; display: none; } + +#contentfrm .f { background-color: #000; } + +#contentfrm .i, #content_forum .threadmarks { width: 4%; text-align: center; } +#contentfrm .i { vertical-align: middle; padding: 4px 5px 4px 4px; } +#content .threadmarks { padding-right: 5px; } +#top, #bottom { padding: 2px; margin: auto; } +div#top { margin-bottom: 8px; } +div#bottom { margin-top: 8px; } +#content_forum, #becontrol, #contentmsg { padding: 2px; } +#content_forum { margin: 0px auto; } + +#content_forum.f { border-top: 1px solid #0d2f53; } +#content_forum .u { width: 25%; } +#content_forum .spacerm #contentmsg .spacerm, #contentfrm.spacerm { height: 5px; } +#content_forum .sticky { font-weight: bold; } +div#modcentre_container { margin-bottom: -7px; } +.modcentreitem div.l { text-align: center; padding: 8px; margin: 0px auto 7px auto; width: 70%; } +.modcentreitem img { padding: 5px 0px 3px 0px; } +.modcentreitem .title { padding-bottom: 5px; } +tr#userview_first_row td { padding: 8px; } +div#becontrol td.list, div#becontrol td.viewdetails, .extra { border: 2px solid #313131; background-color: black; } +div#becontrol td.list { width: 25%; } +div#becontrol td.space { padding: 0px; width: 8px; } +div#becontrol .priv { text-align: right; margin-right: 32%; } +.extra, TD.viewdetails { margin-top: 20px; } +.extra { text-align: center; padding: 2px; } +#history, .listof { text-align: left; } +.searchresult { padding: 2px; } +#uid { text-align: center; color: #888; margin: 10px auto 5px auto; } +.msgplace { margin-top: -50px; } +#smileylegend { margin-top: 20px; text-align: center; } +#smileylegend span { cursor: pointer; } +#smileylegend span.title, #smileylegend span#smilytxt { cursor: text; } +#smileylegend span#smilytxt { display: block; } +.thdhid { background-color: #270909; } +.thdnrml { background-color: #191919; } +tr.thdnrml td { padding-top: 2px; padding-bottom: 2px; } +.note, .noteb, .notet { border: 2px solid #313131; padding: 2px 0px 5px 0px; background: black; } +.noteb { border-top: 0px; } +.notet { border-bottom: 0px; } +tr.note td { text-align: center; } +.notehidden { background-color: #270909; } +.sm0,.sm1,.sm2,.sm3,.sm4,.sm5,.sm6,.sm7,.sm8,.sm9 { width: 15px; height: 15px; background-image: url('../../img/forum/smileys.gif'); } +.sm0 { background-position: 0px; } +.sm1 { background-position: 135px; } +.sm2 { background-position: 120px; } +.sm3 { background-position: 105px; } +.sm4 { background-position: 90px; } +.sm5 { background-position: 75px; } +.sm6 { background-position: 60px; } +.sm7 { background-position: 45px; } +.sm8 { background-position: 30px; } +.sm9 { background-position: 15px; } +#contentfrm a { text-decoration: none; } +#qr { height: 0px; } +div.hist { background-color: black; } + +#infopane a, #picker a, td.commands a { text-decoration: none; font-weight: bold; } +td.threadtitle a { font-weight: bold; text-decoration: none; } + +td.title, td.n, .r { vertical-align: middle; text-align: center; } +td.left_title { text-align: left; vertical-align: middle; } + +td.threadtitle img { vertical-align: text-bottom; } + +#search .listof { + position: relative; + top: -15px; +} + +.thread_status, .last_posted, .show_posts_by { text-align: center; padding-bottom: 4px; } +span#reason { font-weight: bold; } +td.commandtitle, td.commandinput { vertical-align: middle; } +td.commandinput { text-align: left; } +td.commandinput input { margin: 5px auto 5px 4px; } +div#info div.cont { padding: 5px; } +div#info div.cont br { display: block; margin: 4px; } +div.about a img { margin-right: 4px; vertical-align: text-top; } +td.commands a img { vertical-align: text-bottom; } +div#becontrol input, div#becontrol select { margin: 5px 3px 5px 0px; } +div#becontrol div#username { display: inline; } +span.username { font-weight: bold; } +div#becontrol div#memberof { display: inline; } +div#becontrol a { line-height: 15px; } +div#menu a { line-height: 19px; } +div#lookupuser { margin-bottom: 5px; } +p#ban_history_spacing { display: none; } +h3 { margin-top: 5px; margin-bottom: 14px; } + +td.threadtitle { padding-left: 5px; } +div#info div.cont { padding: 10px; } +td.r { padding-right: 10px; } + +center.modcentretxt { text-align: left; } +td.posts_by { text-align: center; } +div#lookupuser { margin-bottom: 16px; } +td.commandtwo textarea#charlimit_text_a { margin-top: 7px } +textarea { padding: 8px; } + + +div.userview_spacing { margin-top: 12px; } +div.go_back_link { margin-bottom: 12px; } + + + + + + + + + +p.top { text-align: right; } + +div#COC_summary_container { + height: 1%; + padding: 0px 5px 5px 5px; + margin-top: 0px; +} +.COC_rules { + padding: 0; + background: black; +} +.COC_rules .subsection { + background-color: #0B2540; + border-bottom: 5px solid #0B2540; +} +td.COC_spacer { font-size: 0px; line-height: 0px; padding: 0px 4px 0px 0px; } +td.COC_rules ul { + margin: 0px; + padding: 0px 4px 4px 12px; + line-height: 28px; + color: #FFD200; + list-style-type: square; + list-style-position: inside; +} +html>body td.COC_rules ul { text-indent: -3px; } + + +p#COC_ie_bug { padding-right: 2px; } + + +.section h4 { + color: #DAD6D5; + margin-bottom: 0px; + margin-top: 0px; + padding: 5px 0px 8px 0px; +} +h3 { + font-size: 1.2em; + margin-bottom: 11px; + margin-top: 11px; +} + + +div#threadadd_buttons { width: 312px; margin: 5px auto; } + +div#threadedit_buttons { width: 263px; margin: 5px auto; } +div#messageadd_buttons { width: 362px; margin: 5px auto; } +div#messageedit_buttons { width: 392px; margin: 5px auto; } + + +#threadescalate_button, #usermessage_button, #sendquery_button { margin-top: 5px; } +#togglesmileys_button { float: none; margin-left: 0px; } + +#search_button, .finduser_button { + float: none; + display: inline; + margin-left: 0px; + position: relative; + top: 1px; +} +.finduser_button { margin-left: 3px; } + + + +div#search_query { margin-bottom: 15px; } +#search_button { margin-top: 6px; } +div#adv_search_opts { text-align: left; height: 1%; } +div#adv_search_opts div.title { margin-bottom: 10px; } + + +div#info #adv_search_opts { display: block; padding-bottom: 5px; } +div#hiddeninfo #adv_search_opts { display: none; } + +div#adv_search_title a { text-decoration: none; } + +#adv_search_opts #user_options { text-align: center; margin-bottom: 10px; } +#adv_search_opts td { vertical-align: middle; text-align: left; } +#adv_search_opts #show_options { float: left; width: 44%; margin-right: auto; } +#adv_search_opts #show_options td { padding-top: 3px; } +#adv_search_opts #status_options { float: left; width: 280px; margin-left: auto; } +#adv_search_opts #status_options img { padding-right: 2px; vertical-align: text-bottom; } +#adv_search_opts .left_cbox input { margin-right: 15px; } +#adv_search_opts #status_options #reset { margin-top: 25px; } +#adv_search_opts #footnote { margin-top: 15px; } +#adv_search_opts #footnote hr { border-top: 1px solid #dad6d5; border-bottom-style: none; margin: 0px; } +#adv_search_opts span.asterisk { font-weight: normal; padding: 1px; } +#adv_search_opts select{ width: 100%; } + +#show_options table{ + width: 330px; +} +#show_options table td.firstChild, +#show_options table td:first-child{ + width: 35%; +} +/* +#adv_search_opts #created_within, +#adv_search_opts #updated_within { + width: 141px; +} +*/ +#search_results { margin-top: 30px; } +#search_results td { padding: 2px 4px; } +#search_results td.title { text-align: left; } +#search_results td.rating { width: 80px; } +#search_results td.rating img { vertical-align: bottom; } +#search_results td.result { } +#search_results td.last_updated { text-align: right; width: 130px; } +#search_results tr.odd { background-color: #0E305A; } +#search_results tr.even { background-color: #0c2749; } +#search_results tr.even td.msg_extract { padding-bottom: 8px; } +#search_results td.msg_extract { padding-bottom: 3px; } + +#search_results td.result, +#search_results td.rating, +#search_results td.last_updated { + padding-top: 3px; +} + +#search_results tr.even td.result, +#search_results tr.even td.rating, +#search_results tr.even td.last_updated { + padding-top: 8px; +} + diff --git a/services/m=funorb/css/forum/forum3msg-1.css b/services/m=funorb/css/forum/forum3msg-1.css new file mode 100644 index 000000000..6c8c02c94 --- /dev/null +++ b/services/m=funorb/css/forum/forum3msg-1.css @@ -0,0 +1,62 @@ + + + + + + + +/* Hides from IE5-mac and Mozilla \*/ +* html #contentmsg .message { height: 1%; } +* html #contentmsg .rightpanel { width:570px; } +/* End hide from IE5-mac and Mozilla */ +/* Hide from (old versions of?) IE: > operator not supported */ +div > table.message { border-collapse: separate; } +#contentmsg { padding: 4px 6px; } +#contentmsg .message { + text-align: left; + border: 2px solid #002085; + margin-bottom: 4px; + margin-top: 4px; + background-color: #000B1D; + border-color: #002085; +} +#contentmsg .leftpanel { border: 3px solid #06234D; vertical-align: top; width: 20%; padding: 0px 0px 10px 0px; background-color: #021126; } +#contentmsg .rightpanel { margin-right: 10px; background-color: #000C1D; padding-left: 9px; word-wrap: break-word; overflow:hidden; } +*:first-child+html #contentmsg .msgcontents { display: block; width: 580px; } /* IE7 only */ +#contentmsg .msgcontents { + padding: 10px 10px 2em 1px; + word-wrap: break-word; + overflow:hidden; + color: #CCCCCC; + font-size: 12px; + width: 560px; +} +#contentmsg .msgtime { color: #888; text-align: right; margin-right: 5px; } +#contentmsg .hiddenmsg { color: #888; } +#contentmsg .msgcommands { text-align: center; margin-top: 5px; } +#contentmsg .msgcommands .button{ + background-color: transparent; + border: none; + color: #FFD200; + font-size: 1.0em; + margin: 0px; +} +#contentmsg .modtype, #content .msgcommands { font-size: 8pt; } +#content .msgcommands { text-align: center; } +#contentmsg .modtype { padding: 0px 0px 3px 23px; } +#contentmsg .msgcreator { background-color: #06234D; padding: 3px; font-size: 12px; font-family: Verdana,Helvetica,FreeSans,sans-serif; } +#contentmsg .jmod .msgcreator, #contentmsg .jmod .modtype { background-color: #4C4205; } +#contentmsg .mod { border-color: #04741E; } +#contentmsg .mod .leftpanel { background-color: #032606; border-color: #064C0E; } +#contentmsg .mod .msgcreator, #contentmsg .mod .modtype { background-color: #064C0E; } +#contentmsg .moved { background-color: #050525; border-color: #16164a; } +#contentmsg .moved .leftpanel { background-color: #050530; } +#contentmsg .jmod .leftpanel { background-color: #262103; border-color: #4C4205; } +#contentmsg .jmod { border-color: #66661C; } +#contentmsg .hid .leftpanel, #contentmsg .hid .leftpanel div { + background-color: #270909; border-color: #270909; +} +#contentmsg .hid { background-color: #200909; border-color: #472929; } +#contentmsg .msghighlight { border: 2px solid yellow; color: white; } + +div.msgrate { margin: 12px auto 7px auto; } diff --git a/services/m=funorb/css/forum/forummsg-1.css b/services/m=funorb/css/forum/forummsg-1.css new file mode 100644 index 000000000..89ceb7163 --- /dev/null +++ b/services/m=funorb/css/forum/forummsg-1.css @@ -0,0 +1,60 @@ + + + + + +/* Hides from IE5-mac and Mozilla \*/ +* html #contentmsg .message { height: 1%; } +* html #contentmsg .rightpanel { width:570px; } +/* End hide from IE5-mac and Mozilla */ +/* Hide from (old versions of?) IE: > operator not supported */ +div > table.message { border-collapse: separate; } +#contentmsg { padding: 4px 6px; } +#contentmsg .message { + text-align: left; + border: 2px solid #002085; + margin-bottom: 4px; + margin-top: 4px; + background-color: #000B1D; + border-color: #002085; +} +#contentmsg .leftpanel { border: 3px solid #06234D; vertical-align: top; width: 20%; padding: 0px 0px 10px 0px; background-color: #021126; } +#contentmsg .rightpanel { margin-right: 10px; background-color: #000C1D; padding-left: 9px; word-wrap: break-word; overflow:hidden; } +*:first-child+html #contentmsg .msgcontents { display: block; width: 580px; } /* IE7 only */ +#contentmsg .msgcontents { + padding: 10px 10px 2em 1px; + word-wrap: break-word; + overflow:hidden; + color: #CCCCCC; + font-size: 12px; + width: 560px; +} +#contentmsg .msgtime { color: #888; text-align: right; margin-right: 5px; } +#contentmsg .hiddenmsg { color: #888; } +#contentmsg .msgcommands { text-align: center; margin-top: 5px; } +#contentmsg .msgcommands .button{ + background-color: transparent; + border: none; + color: #FFD200; + font-size: 1.0em; + margin: 0px; +} +#contentmsg .modtype, #content .msgcommands { font-size: 8pt; } +#content .msgcommands { text-align: center; } +#contentmsg .modtype { padding: 0px 0px 3px 23px; } +#contentmsg .msgcreator { background-color: #06234D; padding: 3px; font-size: 12px; } +#contentmsg .jmod .msgcreator, #contentmsg .jmod .modtype { background-color: #4C4205; } +#contentmsg .mod { border-color: #04741E; } +#contentmsg .mod .leftpanel { background-color: #032606; border-color: #064C0E; } +#contentmsg .mod .msgcreator, #contentmsg .mod .modtype { background-color: #064C0E; } +#contentmsg .moved { background-color: #050525; border-color: #16164a; } +#contentmsg .moved .leftpanel { background-color: #050530; } +#contentmsg .jmod .leftpanel { background-color: #262103; border-color: #4C4205; } +#contentmsg .jmod { border-color: #66661C; } +#contentmsg .hid .leftpanel, #contentmsg .hid .leftpanel div { + background-color: #270909; border-color: #270909; +} +#contentmsg .hid { background-color: #200909; border-color: #472929; } +#contentmsg .msghighlight { border: 2px solid yellow; color: white; } + +div.msgrate { margin: 12px auto 7px auto; } diff --git a/services/m=funorb/css/game-13.css b/services/m=funorb/css/game-13.css new file mode 100644 index 000000000..f5ff67c91 --- /dev/null +++ b/services/m=funorb/css/game-13.css @@ -0,0 +1,277 @@ + + +/* ############# */ +/* GAME PAGE CSS */ +/* ############# */ +/* Navigation */ +#gameContainer #navigation { + background:url(../img/images/layout/nav_game.gif) repeat-x 136px; + margin:auto; + height:136px; + width:758px; + position:relative; + top:0px; + left:0px; + z-index:1; +} + +#gameContainer #navigation .lft { + background:url(../img/images/layout/nav_game.gif) no-repeat; + position:absolute; + left:-9px; + height:136px; + width:10px; +} + +#gameContainer #navigation .rght { + background:url(../img/images/layout/nav_game.gif) no-repeat right -272px; + position:absolute; + right:-9px; + height:136px; + width:10px; +} +/* xNavigation */ + +#gameContainer { + margin:0px auto; + width:100%; + background: none; +} + +#gameContainer .menu { + position:absolute; + left:0px; + bottom:0px; + width:758px; +} + + +#gameContainer li.p2 { + width:105px; +} + + + +#gameContainer li.p3 { + width:105px; +} + + +#gameContainer li.p11 { + width:368px; +} + + + +#gameContainer li.p11 span { + background:url(../img/images/layout/menu.gif) no-repeat right 0px; + margin-left:3px; + display:block; + color:#04fa2d; + width:183px; + margin-left:285px; +} + + + + +#affgame { + line-height: 25px; + padding: 2px 0 0 94px; + background:url(../img/images/layout/affiliate_gameheader.gif) no-repeat left 1px; +} + +#affgame li.p11 span { + margin-left: 108px; +} + +#affgame li.p11 { + width:200px; +} + +#affgame #affgamelogo { + position: absolute; + right: 0; + bottom: -3px; + height: 38px; + background: url(../img/images/layout/affiliate_gameheader.gif) no-repeat left 2px; + padding: 4px 14px 0 69px; + font-size: 34px; +} + +#affgame #affgamelogo img { + width: 88px; + height: 31px; +} + + + +.menu li a#gamelist, +.menu li a#serverlist { + background:url(../img/images/layout/menu.gif) no-repeat 0px -76px; +} + +.menu li a#gamelist span, +.menu li a#serverlist span { + margin-left:3px; + background:url(../img/images/layout/menu.gif) no-repeat right -76px; + display:block; +} + +.menu li a#gamelist:hover span, +.menu li a#serverlist:hover span { + background:url(../img/images/layout/menu.gif) no-repeat right -114px; +} + +.menu li a#gamelist:hover, +.menu li a#serverlist:hover { + background:url(../img/images/layout/menu.gif) no-repeat 0px -114px; +} + +.menu li a#gamelist {width:105px;} + + + .menu li a#serverlist { + width:105px; + } + + + +.menu li.top:hover a#gamelist, +.menu li.top:hover a#serverlist { + background:url(../img/images/layout/menu.gif) no-repeat 0px -114px; +} + +.menu li.top:hover a#gamelist span, +.menu li.top:hover a#serverlist span { + background:url(../img/images/layout/menu.gif) no-repeat right -114px; +} + +#returnToGames { + cursor:pointer; +} + +#banner { + background:#000; + border:solid 1px #000; + width:728px; + height:90px; + margin: 0px auto; + position:relative; + top:5px; +} + +#affbanner { + width:728px; + height:90px; + margin: 0px auto; + position:relative; + top:5px; +} + +#bookmark { + background:url("../img/images/social/bookmark_bg.png") repeat scroll 0 0 transparent; + height:34px; + line-height:32px; +} + +#bookmark .bmtg { + position: relative; + top: 1px; + font-size: 12px; + font-weight: bold; +} + +#bookmark, +#copyRight, +#theGameScreen { + width: 776px; + margin: auto +} + +#theGameScreen { + background: black; + padding: 15px 0; +} + +#ResizableContent { + position: absolute; + width: 100%; + height: auto; + left: 0; + text-align: center; +} + +/*body#game #footer #copyRight { + background:none !important; + padding-top:25px; +} + +body#game #footer { + background:url(../img/images/layout/gameFooter.jpg) repeat-x -101px; + margin:0px 9px; + height:101px; + width:758px !important; + position:relative; +} + +body#game #footer .lft { + background:url(../img/images/layout/gameFooter.jpg) no-repeat; + position:absolute; + left:-9px; + height:101px; + width:16px; +} + +body#game #footer .rght { + background:url(../img/images/layout/gameFooter.jpg) no-repeat right -202px; + position:absolute; + right:-9px; + height:101px; + width:16px; +}*/ + + + +.GameResize .bodyTheme, +body.GameResize, +.GameResize #wrapper { + background: black !important; +} + +body.GameResize, +.GameResize applet, +.GameResize #theGameScreen { + height: 100%; +} + +.GameResize #theGameScreen, +.GameResize applet { + width: 100%; +} + +.GameResize #theGameScreen { + margin: 0; +} + +.GameResize #ResizableContent { + bottom: 0; + top: 150px; +} + +.GameResize #theGameScreen { + padding: 0; +} + +.GameResize #theGameScreen p, +.GameResize #bookmark, +.GameResize #copyRight { + display: none; +} + + + + +/* ############# */ +/* xGAME PAGE CSS */ +/* ############# */ \ No newline at end of file diff --git a/services/m=funorb/css/gamelist-1.css b/services/m=funorb/css/gamelist-1.css new file mode 100644 index 000000000..4beed013c --- /dev/null +++ b/services/m=funorb/css/gamelist-1.css @@ -0,0 +1,94 @@ + + +#gamelistAdvert { + margin:0 5px 8px 7px; +} + +#gamelist .subsectionContent { + padding-top: 6px; +} + +#filterform { + padding:4px; + margin:0px 6px 6px 5px; + background:#0b2540; +} + +#multigenre { + margin-left:5px; +} + +.gamelistentry { + width:240px; + float:left; + text-decoration:none; + background:#0b2540; + margin:0 0 6px 5px; + font-size:11px; + display:inline; +} + +.gametitle a, +.gametitle a:hover, +.genre a, +.genre a:hover { + text-decoration:none; + color:#FFD200; + padding-left:1px; +} + +.gameimage { + float:left; + padding:4px 0 4px 4px; + font-size:0px; +} + +.gameimage a, +.gameimage img { + display: block; + width: 95px; + height: 70px; +} + +.gametext { + float:left; + width:135px; + margin-left:3px; + overflow:hidden; +} + +.gametitle { + color:#ffc000; + height:1.3em; + overflow:hidden; + margin-top:2px; + font-weight:bold; +} + +.gamedesc { + height:3.8em; + overflow:hidden; + font-size:10px; + padding-left:2px; +} + +.genre { + position:relative; + bottom:0px; + float:left; + margin-top:3px; + width:57px; + overflow:hidden; +} + +#gameInfoInt { + background:#000; + height:100%; + margin: 0px 3px 0px 3px; + position:relative; +} + +#gameInfoInt .links { + float: right; + margin-right:3px; +} diff --git a/services/m=funorb/css/gamelist-2.css b/services/m=funorb/css/gamelist-2.css new file mode 100644 index 000000000..82b9e9789 --- /dev/null +++ b/services/m=funorb/css/gamelist-2.css @@ -0,0 +1,94 @@ + + +#gamelistAdvert { + margin:0 5px 8px 7px; +} + +#games .subsectionContent { + padding-top: 6px; +} + +#filterform { + padding:4px; + margin:0px 6px 6px 5px; + background:#0b2540; +} + +#multigenre { + margin-left:5px; +} + +.gamelistentry { + width:240px; + float:left; + text-decoration:none; + background:#0b2540; + margin:0 0 6px 5px; + font-size:11px; + display:inline; +} + +.gametitle a, +.gametitle a:hover, +.genre a, +.genre a:hover { + text-decoration:none; + color:#FFD200; + padding-left:1px; +} + +.gameimage { + float:left; + padding:4px 0 4px 4px; + font-size:0px; +} + +.gameimage a, +.gameimage img { + display: block; + width: 95px; + height: 70px; +} + +.gametext { + float:left; + width:135px; + margin-left:3px; + overflow:hidden; +} + +.gametitle { + color:#ffc000; + height:1.3em; + overflow:hidden; + margin-top:2px; + font-weight:bold; +} + +.gamedesc { + height:3.8em; + overflow:hidden; + font-size:10px; + padding-left:2px; +} + +.genre { + position:relative; + bottom:0px; + float:left; + margin-top:3px; + width:57px; + overflow:hidden; +} + +#gameInfoInt { + background:#000; + height:100%; + margin: 0px 3px 0px 3px; + position:relative; +} + +#gameInfoInt .links { + float: right; + margin-right:3px; +} diff --git a/services/m=funorb/css/gamelist-3.css b/services/m=funorb/css/gamelist-3.css new file mode 100644 index 000000000..4beed013c --- /dev/null +++ b/services/m=funorb/css/gamelist-3.css @@ -0,0 +1,94 @@ + + +#gamelistAdvert { + margin:0 5px 8px 7px; +} + +#gamelist .subsectionContent { + padding-top: 6px; +} + +#filterform { + padding:4px; + margin:0px 6px 6px 5px; + background:#0b2540; +} + +#multigenre { + margin-left:5px; +} + +.gamelistentry { + width:240px; + float:left; + text-decoration:none; + background:#0b2540; + margin:0 0 6px 5px; + font-size:11px; + display:inline; +} + +.gametitle a, +.gametitle a:hover, +.genre a, +.genre a:hover { + text-decoration:none; + color:#FFD200; + padding-left:1px; +} + +.gameimage { + float:left; + padding:4px 0 4px 4px; + font-size:0px; +} + +.gameimage a, +.gameimage img { + display: block; + width: 95px; + height: 70px; +} + +.gametext { + float:left; + width:135px; + margin-left:3px; + overflow:hidden; +} + +.gametitle { + color:#ffc000; + height:1.3em; + overflow:hidden; + margin-top:2px; + font-weight:bold; +} + +.gamedesc { + height:3.8em; + overflow:hidden; + font-size:10px; + padding-left:2px; +} + +.genre { + position:relative; + bottom:0px; + float:left; + margin-top:3px; + width:57px; + overflow:hidden; +} + +#gameInfoInt { + background:#000; + height:100%; + margin: 0px 3px 0px 3px; + position:relative; +} + +#gameInfoInt .links { + float: right; + margin-right:3px; +} diff --git a/services/m=funorb/css/global-1.css b/services/m=funorb/css/global-1.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-1.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-13.css b/services/m=funorb/css/global-13.css new file mode 100644 index 000000000..29467b288 --- /dev/null +++ b/services/m=funorb/css/global-13.css @@ -0,0 +1,1179 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; + background: #0a3b76 url(../img/images/layout/bg_body.png?1) repeat-y center top; +} + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + + border-collapse: collapse; +} + + + +#bodyTheme { +} + +#container { + width:776px; + margin:0px auto; + text-align:left; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo { + background:url(../img/images/layout/logo_funOrb.jpg) no-repeat; + width:203px; + height:80px; + display:block; + top:5px; + float:left; +} + +#logo span { + position:absolute; + left:-9999px; + top:0; + z-index:0; + font-size:10px; +} + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:91px; } +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +#dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + +.menu a iframe { position: absolute; left: -9999px; top: -9999px; margin-left: 0; filter: mask(); } +.menu a:hover iframe { left: 0px; top: 32px; width: 153px; } +.menu a#games:hover iframe { height: 91px; } +.menu a#forums:hover iframe { height: 112px; } +.menu a#help:hover iframe { height: 133px; } + + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + padding-top: 16px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + margin: 0 auto 5px; + + width: 420px; + + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + diff --git a/services/m=funorb/css/global-14.css b/services/m=funorb/css/global-14.css new file mode 100644 index 000000000..29467b288 --- /dev/null +++ b/services/m=funorb/css/global-14.css @@ -0,0 +1,1179 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; + background: #0a3b76 url(../img/images/layout/bg_body.png?1) repeat-y center top; +} + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + + border-collapse: collapse; +} + + + +#bodyTheme { +} + +#container { + width:776px; + margin:0px auto; + text-align:left; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo { + background:url(../img/images/layout/logo_funOrb.jpg) no-repeat; + width:203px; + height:80px; + display:block; + top:5px; + float:left; +} + +#logo span { + position:absolute; + left:-9999px; + top:0; + z-index:0; + font-size:10px; +} + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:91px; } +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +#dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + +.menu a iframe { position: absolute; left: -9999px; top: -9999px; margin-left: 0; filter: mask(); } +.menu a:hover iframe { left: 0px; top: 32px; width: 153px; } +.menu a#games:hover iframe { height: 91px; } +.menu a#forums:hover iframe { height: 112px; } +.menu a#help:hover iframe { height: 133px; } + + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + padding-top: 16px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + margin: 0 auto 5px; + + width: 420px; + + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + diff --git a/services/m=funorb/css/global-15.css b/services/m=funorb/css/global-15.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-15.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-3.css b/services/m=funorb/css/global-3.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-3.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-33.css b/services/m=funorb/css/global-33.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-33.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-37.css b/services/m=funorb/css/global-37.css new file mode 100644 index 000000000..acd60763b --- /dev/null +++ b/services/m=funorb/css/global-37.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; + background: #01030b; + +} + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + border-collapse: collapse; +} + + +.bodyBackground { +} + + +.bodyTheme { + padding: 0; + min-height: 568px; + height: auto; + background: #01030b url('../img/images/layout/bg_aos.jpg') no-repeat center top; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:91px; } +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + diff --git a/services/m=funorb/css/global-38.css b/services/m=funorb/css/global-38.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-38.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-39.css b/services/m=funorb/css/global-39.css new file mode 100644 index 000000000..cc637b3b0 --- /dev/null +++ b/services/m=funorb/css/global-39.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: #000 url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 397px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:91px; } +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-4.css b/services/m=funorb/css/global-4.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-4.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-40.css b/services/m=funorb/css/global-40.css new file mode 100644 index 000000000..a9e784807 --- /dev/null +++ b/services/m=funorb/css/global-40.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: #000 url('../img/images/layout/bg_body_tombracer.jpg') repeat-y center 0 !important; + border-collapse: collapse; +} + + +.bodyBackground { +} + + +.bodyTheme { + padding: 0; + height: auto; + min-height: 397px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:91px; } +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-41.css b/services/m=funorb/css/global-41.css new file mode 100644 index 000000000..cc637b3b0 --- /dev/null +++ b/services/m=funorb/css/global-41.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: #000 url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 397px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:91px; } +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-42.css b/services/m=funorb/css/global-42.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-42.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/global-44.css b/services/m=funorb/css/global-44.css new file mode 100644 index 000000000..d868b9c10 --- /dev/null +++ b/services/m=funorb/css/global-44.css @@ -0,0 +1,1242 @@ + + + + + + + +html { + background:transparent; + overflow-y:scroll; +} + +.genre { + font-size:11px; + color:#ffc000; + font-weight:normal !important; + margin-top: -2px; + margin-bottom: 2px; +} + +textarea { + background-color:#000 !important; + border-color:#444; + color:#fff; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:10pt; + overflow:auto; +} + +select { + color: #fff; + background-color: #000 !important; + border-color: #444; + font-size: x-small; +} + +select:-moz-system-metric(windows-default-theme) { + background-image: url(../img/images/layout/white.png); + background-repeat: no-repeat; + background-position: right top; +} + +.buttonBlue { + cursor:pointer; +} + +label { + padding-left: 5px; +} + +.button { + font-size: x-small; + color: #fff; + background-color: #000; + border-color: #444; + margin-left: 5px; +} + +.hidden, +.hidden a { + display: none; +} + +.top a { + cursor:pointer; +} + +b a { + text-decoration: none; +} + +html, body, #wrapper { + height:100%; + margin: 0; + padding: 0; + border: none; +} + +body { + position:relative; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size:11px; + text-align:center; + color:#fff; +} + +body#game { min-height:826px; } + +iframe { border: none; } + +button { + border:none; + color:#fff; + cursor:pointer; +} + +td { + font-size:11px; + vertical-align:top; +} + +a, a.title { + outline:none; + color:#FFD200; + text-decoration:underline; +} + +a:hover { text-decoration:none; color:#F6E89A; } + +div#lang a:hover img { background:none; } + +h3, p { margin:0px; } + +img { border:0px; } + + + hr { + margin: 7px auto; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; + border-left: none; + border-right: none; + } + + .hr { + height: 16px; + background: url(../img/images/layout/hr.gif) repeat-x center; + border: none; + font-size: 1px; + } + + +.center { + text-align:center; + margin: 0px auto; + display:block; +} + +.clear { + font-size: 0; + clear:both; + line-height:0; +} + + + +#wrapper { + width:100%; + background: black url('../img/images/layout/bg_body_voidhunters_repeat.jpg') repeat-y center 0 !important; + border-collapse: collapse; + +} + + +.bodyTheme { + background: transparent url('../img/images/layout/bg_body_voidhunters.jpg') no-repeat center 0 !important; + padding: 0; + height: auto; + min-height: 568px; +} + +#container { + width:776px; + margin:0px auto; + text-align:left; + background: black; +} + +#page_content { + margin: 18px 7px 0px 8px; +} + +#navHome #page_content { + margin: 8px 7px 0px 8px; +} + +#filters { + width:761px; + height:auto; +} + +#filters fieldset { + border:1px solid silver; + display:inline; +} +#filters form { + margin:0px; +} + +#common_section .sectionContent { + padding:0 4px; +} + +#common_section .sectionContainerContent { + padding:5px; + background:#000; +} + +#common_section .subsectionContent { + background:#082e5b; +} + + + + + +#navigation { + background:url(../img/images/layout/nav.gif) repeat-x 116px; + margin:0px 9px; + height:116px; + width:758px; + position:absolute; + top:0px; + left:0px; + z-index:1; +} + +#navigation .lft { + background:url(../img/images/layout/nav.gif) no-repeat; + position:absolute; + left:-9px; + height:116px; + width:10px; +} + +#navigation .rght { + background:url(../img/images/layout/nav.gif) no-repeat right -232px; + height:217px; + position:absolute; + right:-9px; + height:116px; + width:10px; +} + + + +#logo, #logo a { + margin:0; + width:203px; + height:80px; + float:left; + font-size: 0; + text-decoration: none; +} + +#logo img { + font-size: 22px; + border: 0; +} + + + + +#header { + width:776px; + height:0px; + padding-top:105px; + position:relative; + z-index: 1; +} + +#navHome #header { + height:195px; +} + + +#header .container { + height:82px; +} + + + + +#affiliate { + position: relative; + height: 80px; + background: black url(../img/images/layout/affiliate_header.jpg) no-repeat right top; +} + +#affiliate #logo { + width: 190px; +} + +#affiliate #afflogo { + position: absolute; + left: 621px; + top: 14px; + width: 120px; + height: 56px; +} + + + + +#shell { + position:relative; + float:left; + margin-left:5px; + height:80px; + width:550px; + overflow:hidden; + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -80px; + color:#999999; + text-align:left; + font-size:10px; + font-weight:normal; + letter-spacing:1px; +} + + + +#teleText { margin:12px 10px 10px 15px; } + +#teleText .emph { + color:#00C0FF; +} + +#teleText .hilight { + font-weight:bold; +} + +#teleText #typer { + display:inline; + margin-left:3px; +} + +#sessionText { + position:absolute; + left:15px; + bottom:10px; + color:#ff040f; + font-weight:bold; +} + +#welcomeText { + color:#32acfa; + font-size:11px; + margin:0px; + padding:0px; + font-weight:bold; +} + +#shell .lft { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x; + height:80px; + position:absolute; + left:0px; + top:0px; + width:9px; +} + +#shell .rght { + background:url(../img/images/layout/nav_headerbg.gif) repeat-x 0px -160px; + height:80px; + position:absolute; + right:0px; + top:0px; + width:9px; +} + + + + + +#latestRelease { + background:url(../img/images/layout/releaseBar.gif) repeat-x 217px; + margin:0px 15px; + height:195px; + width:746px; + position:relative; +} + +#latestRelease .lft { + background:url(../img/images/layout/releaseBar.gif) no-repeat; + position:absolute; + left:-14px; + height:195px; + width:14px; +} + +#latestRelease .rght { + background:url(../img/images/layout/releaseBar.gif) no-repeat right -389px; + height:195px; + position:absolute; + right:-14px; + width:14px; +} + + + +/* ================================================================ + Modified version of http://www.cssplay.co.uk/menus/pro_drop.html +=================================================================== */ + + +.menu, +.menu ul { + list-style-type:none; + padding:0; + margin:0; +} + + +.menu li.top { + display:block; + float:left; + position:relative; + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; + text-align:center; +} + +.menu li.top:hover a#account, +.menu li.top:hover a#games, +.menu li.top:hover a#help, +.menu li.top:hover a#forums, +.menu li.top:hover a#register { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li.top:hover a#account span, +.menu li.top:hover a#games span, +.menu li.top:hover a#help span, +.menu li.top:hover a#forums span, +.menu li.top:hover a#register span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li.top:hover a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li.top a#countrydrop span { + height: 33px; + line-height:0; + vertical-align:middle; +} + +.menu li.top a#countrydrop span img { + margin-top: 7px; + margin-left: 4px; + float: left; +} + + +.menu table { + border-collapse:collapse; + width:0; + height:0; + position:absolute; + top:0; + left:0; +} + + +.menu li.top a.top_link, +.menu li.top div.top_link { + display:block; + float:left; + height:33px; + line-height:28px; + font-size:12px; + font-weight:bold; +} +.menu li.top a.top_link { + cursor:pointer; + color:white; +} + + +.menu li.p1 {width:80px; } +.menu li.p2, +.menu li.p3 {width:80px; } +.menu li.p4 {width:88px; } +.menu li.p5 {width:80px; } +.menu li.p6 {width:10px; } +.menu li.p6:hover { + background: url(../img/images/layout/menu.png?1) repeat-x left -76px; +} +.menu li.p7 {width:110px; } +.menu li.p8 {width:98px; } +.menu li.p9 {width:98px; } +.menu li.p10 {width:51px; } +.menu li.p11 {width:201px; } /* Was 91 */ +.menu li.p12 {width:201px; } + +.p10 img { + margin: 0 2px 0 0; + vertical-align: middle; +} + + +body#navHome .menu li a#home { + background:url(../img/images/layout/menu.png?1) no-repeat left -38px; +} + +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + + +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + + + +.menu li a#home {width:80px; background:url(../img/images/layout/menu.png?1) no-repeat;} +.menu li a#home:hover { background:url(../img/images/layout/menu.png?1) no-repeat left -38px;} +.menu li a#countrydrop {background:url(../img/images/layout/menu.png?1) no-repeat right;} +.menu li a#countrydrop:hover {background:url(../img/images/layout/menu.png?1) no-repeat right -38px;} + +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop { + background:url(../img/images/layout/menu.png?1) no-repeat left -76px; +} + +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#signIn span, +.menu li a#register span, +.menu li a#countrydrop span { + margin-left:3px; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; + display:block; +} + +.menu li a#countrydrop span { + background:url(../img/images/layout/menu.png?1) no-repeat right top; +} + +.menu li a#home span { + margin-left:6px; +} + +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; +} + +.menu li a#countrydrop:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -38px; +} + +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover { + background:url(../img/images/layout/menu.png?1) no-repeat left -114px; +} + +.menu li a#signIn:hover span, +.menu li a#signOut:hover span, +.menu li a#register:hover { + color: white; +} + +.menu li a#account { width:80px; } +.menu li a#games {width:80px; } +.menu li a#help {width:80px;} +.menu li a#forums {width:88px;} +.menu li a#privacy {width:10px; background:url(multi_level-files/privacy_0.gif) no-repeat; } + +.menu li a#register { width:110px; color: #d50009; } +.menu li a#register:hover { color: white; } + +.menu li a#signOut span { + font-size: 12px; + margin-left: 3px; + width: 95px; + display: block; + color: #d50009; + background: url(../img/images/layout/menu.png?1) no-repeat right -76px; +} + +.menu li a#signOut:hover span { + background: url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +.menu li a#signIn span { + color: #00c721; + width:95px; + display:block; + background:url(../img/images/layout/menu.png?1) no-repeat right -76px; +} +.menu li a#signIn:hover span { + background:url(../img/images/layout/menu.png?1) no-repeat right -114px; + color: white; +} + +#lang_div { + float: none; + background: transparent url(../img/images/layout/menu.png?1) no-repeat scroll right top; + line-height:0px; + height: 33px; +} + +.menu li.top a#countrydrop #dropArrow { + margin-top: 9px; + float: left; + height: 9px; + width: 9px; + font-size: 0; + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left top; +} + +.menu li.top a#countrydrop:hover #dropArrow, +.menu li.top:hover a#countrydrop #dropArrow { + background-position: left bottom; +} + +.p10 a:hover #dropArrow, .p10:hover #dropArrow { + background: transparent url(../img/images/layout/dropdown.gif) no-repeat left bottom; +} + +#lang { + float: none; + line-height:0px; + height: 33px; +} + +#lang img { + padding-bottom: 1px; +} + +.menu li a#countrydrop:hover { + background: none; + height: 33px; + display: block; +} + + +.menu a {text-decoration:none;} +.menu a:hover {color:#fff;visibility:visible;} +.menu li:hover { position:relative; z-index:200;} + + +.menu ul, +.menu:hover ul ul, +.menu:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul ul, +.menu:hover ul:hover ul:hover ul:hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0;} + + +.menu :hover ul.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat left bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:153px; + height:auto; + font-weight:normal; +} +.menu :hover ul#lang.sub { + left:0; + top:33px; + background: url(../img/images/layout/menu.png?1) no-repeat right bottom; + z-index:1000; + padding-bottom:7px; + white-space:nowrap; + width:53px; + height:auto; + font-weight:normal; +} +.menu :hover ul.sub li {display:block; height:20px; position:relative; float:left; text-align:left;} +.menu :hover ul.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:139px; line-height:20px; text-indent:5px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a {margin-left:7px; display:block; font-size:11px; height:20px; width:39px; line-height:20px; text-indent:8px; color:#fff; text-decoration:none; font-weight:normal;} +.menu :hover ul#lang.sub li a img {margin-top: 4px;} +.menu :hover ul.sub li a.fly { border-bottom:solid 1px #3e3e3e; } +.menu :hover ul.sub li a:hover {background:#212121;} +.menu :hover ul.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat left -152px;} +.menu :hover ul#lang.sub li a.fly:hover {background:transparent url(../img/images/layout/menu.png?1) no-repeat right -152px;} + +.menu :hover ul.sub li a.last { border: none; } +.menu :hover ul.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat left -182px;} +.menu :hover ul#lang.sub li a.last:hover { background: url(../img/images/layout/menu.png?1) no-repeat right -182px;} + + +.menu :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul, +.menu :hover ul :hover ul :hover ul :hover ul :hover ul +{left:104px; top:-4px; background: #fff; padding:3px 0; border:1px solid #888; white-space:nowrap; width:107px; z-index:200; height:auto; z-index:300;} + + + + +.section { + text-align: left; + font-size: 12px; + color: #dad6d5; + font-size: 12px; +} + +.sectionHeader { + height: 32px; + background: url(../img/images/layout/section_header.gif); +} + +.sectionHeaderRight { + height: 32px; + background: url(../img/images/layout/section_header_right.gif) no-repeat top right; +} + +.sectionTitle { + padding: 6px 0 0 32px; + font-weight: bold; + color: white; +} + +.sectionTitle a { + text-decoration: none; +} + +.sectionBorder { + padding: 0 1px; + background: #123F83; +} + +.sectionGradient .sectionBorder { + background: url(../img/images/layout/section_border.gif) top; +} + +.sectionBackground { + padding: 0; + background: #00307A; +} + +.sectionGradient .sectionBackground { + background: url(../img/images/layout/section_bg.gif) top; +} + +.sectionContent { + overflow: hidden; +} + +.section h4 { + font-size: 100%; + font-weight: bold; + color: white; +} + +.section p { + padding-top: 5px; + padding-bottom: 8px; +} + +.sectionFooter { + margin: 0 -1px; + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer.gif) top left; +} + +.sectionFooter div { + height: 5px; + font-size: 1px; + background: url(../img/images/layout/section_footer_right.gif) no-repeat top right; +} + +.subsection { + height: 1%; + margin: 0 auto; + background: transparent url(../img/images/layout/subsection_header_right.gif) top right no-repeat; + font-size: 12px; + text-align:left; +} + +.subsectionHeader { + height: 21px; + padding-left: 24px; + margin-right: 7px; + background: transparent url(../img/images/layout/subsection_header.gif) top left no-repeat; +} + +.subsectionTitle { + height: 1%; + padding: 3px 0 0 0; + font-weight: bold; + color: white; +} + +.subsectionContent { + margin-top: 4px; + height: 1%; +} + + + + +.buttonInfo, +.buttonPlay, +.buttonPlaySmall { + height:21px; + display:block; + float:left; + font-size: 11px; + text-align:center; +} + +.buttonInfo { + width: 26px; + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom left; + cursor:pointer; +} + +.buttonInfo:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat top left; +} + +.buttonPlay { + width: 69px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonPlay:hover, +.buttonPlaySmall:hover { + background:url(../img/images/layout/info_play_button.gif) no-repeat bottom right; +} + +.buttonPlaySmall { + width: 52px; + background:url(../img/images/layout/info_play_button.gif) no-repeat top right; + text-decoration:none; + font-weight:bold; + color:#fff; + line-height:21px; +} + +.buttonNew, .buttonNewWide, .buttonNewMedium { + height:21px; + display:block; + float:left; + text-decoration:none; + cursor:pointer; + color:#fff; + font-size: 11px; + font-weight:bold; + text-align:center; + line-height:21px; + border:none; + margin-left:6px; + padding-left: 0px; + padding-right: 0px; +} + +.buttonNew { + background:url(../img/images/layout/new_button_bg.gif) no-repeat top left; + width:95px; +} + +.buttonNewMedium { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat top left; + width:120px; +} + +.buttonNewWide { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat top left; + width:150px; +} + + +#buttonPrev, +#buttonNext +{ + width: 61px; + background-image: url(../img/images/layout/button_blue_mini_61.gif); +} + +#buttonPrev { + margin-right: 6px; +} + + +.centredButton { + float:none; + margin:0px auto; +} + +.buttonNew:hover { + background:url(../img/images/layout/new_button_bg.gif) no-repeat bottom left; +} + +.buttonNewMedium:hover { + background:url(../img/images/layout/new_button_medium_bg.gif) no-repeat bottom left; +} + +.buttonNewWide:hover { + background:url(../img/images/layout/new_button_wide_bg.gif) no-repeat bottom left; +} + +.buttonWide { + display: block; + width: 169px; + height: 29px; + background: top url(../img/images/layout/button_wide.gif); + text-align: center; + font-size: 13px; + font-weight: bold; + text-decoration: none; + color: white; +} + +.buttonWide:hover { + background-position: bottom; + color: #F6E89A; +} + +.buttonWide div { + padding-top: 6px; +} + + + + + +#copyRight { + position: relative; + height:104px; + clear:both; + background: transparent url(../img/images/layout/footer_bg.png) no-repeat center bottom; + text-align:center; + font-size: 0px; /* IE fix */ +} + +#languagefooter { + padding-top: 22px; + font-size: 9px; +} + +#languagefooter a { + margin: 0 3px; + text-decoration: none; + font-size: 9px; +} + +#languagefooter img { + vertical-align:middle; + margin-right: 3px; +} + +#copyRight .cr { + + padding-top: 16px; + +} + +#copyRight .cr a { + font-size: 11px; +} + +#copyRight p { + text-align:center; + font-weight:bold; + + margin: 0 auto 5px; + + width: 420px; + font-size:9px; + font-weight:bold; +} + +#jagex { + float:right; + position:absolute; + bottom:3px; + right:6px; +} + + + + + +div#contrast_panel { + background-color: #012255; + margin: 4px 5px 0px 5px; + padding: 5px; + width: auto; + height: 1%; +} +div#contrast_panel2 { + padding: 7px; + height: 1%; +} +.bgcolor_darkblue { + background-color: #00183E; +} + + +span.FO_username, span.highlight { + color: #61E774; + font-weight: bold; +} + + + +/* FunOrb knowledge base and generic text pages, and category page / account management stylesheet */ + +/* COMMON STYLE */ + +.sectionContentContainer { + background-color: black; + padding: 5px; +} + + +.stackedContentContainer { + background-color: black; + padding: 5px 5px 0px 5px; +} + +#category .sectionContent, +#article .sectionContent, +#accountManagement .sectionContent, +#info .sectionContent { + padding: 0 4px; +} + +/* KB CATEGORY & ACCOUNT MANAGEMENT */ + + +#category .sectionContentContainer, #category .categoryContent, .stackedContentContainer { + height: 1%; +} + +#category p { + padding-left: 8px; + padding-right: 8px; +} + +.categoryContent { + padding-top: 5px; + background: #0B2540; +} + +.listBox, .listBoxSmall { + float: left; + padding: 0 0 5px 5px; +} + +.listBoxContainer { + height: 92px; + overflow: hidden; + background: #010f1f; +} + +.listBox .listBoxContainer { + width: 363px; +} + +.listBoxSmall .listBoxContainer { + width: 240px; +} + +.listBoxIcon { + float: left; + margin: 7px 7px 20px; +} + +.listBoxTitle { + padding: 7px 7px 0 0; +} + +.listBoxTitle a { + font-size: 12px; + font-weight: bold; + text-decoration: none; +} + +/* ARTICLE STYLE */ + +.articlePadding { + padding: 5px; + background: black; +} + +.articleTitle { + margin: 0 0 5px; + padding: 3px 8px; + background: #1B4688 url(../img/images/layout/article_title.gif) top center no-repeat; + font-size: 18px; + font-weight: normal; + color: white; +} + +.articleBody { + padding: 8px; + background: #0B2540; + font-size: 12px; +} + +.articleBody h2 { + font-size: 12px; + font-weight: bold; +} + +.articleBody .hr { + margin-bottom: 6px; +} + +.section p.articleBacktotop { + padding-bottom: 0; + font-size: 0px; + text-align: right; +} + +.articleBacktotop a { + height: 25px; + overflow: hidden; +} + +.articleFooter { + margin: 5px 0 0; + padding: 8px; + background: #1B4688; +} + +.articleMore { + margin-left: 1em; +} + +#article .title { + color: #FFD200; +} + +.articleSubsection { + height: 1%; + margin-top: 5px; +} + +#article .faqsList { + position: relative; + top: -3px; + margin: 0 -3px; + background: black; +} + +#article .faqsList ol { + margin: 0px; + padding: 8px 8px 8px 34px; + line-height: 2em; + color: #FFD200; +} + +.row_a { + background-color: #184270; +} + +.row_b { + background-color: #3d628a; +} + +.row_c { + background-color: #205585; +} + + +/* from funorb_global */ + #bookmark img { + margin: 0 1px 0 0; + vertical-align: middle; + } + #bookmark a { + + + margin-left: 16px; + + + text-decoration: none; + } + #bookmark a span { + text-decoration: underline; + } + #bookmark a:hover span { + text-decoration: none; + } + + + + +#feed { + margin-left: 1px; + float: left; + height: 24px; + line-height: 26px; +} + +#feed a, +#feed a:hover span { + text-decoration: none; +} + +#feed a span { + text-decoration: underline; + vertical-align: middle; +} + +#feed img { + vertical-align: middle; +} + +#feed sup { + font-size: smaller; +} + + diff --git a/services/m=funorb/css/home-1.css b/services/m=funorb/css/home-1.css new file mode 100644 index 000000000..1f20c3f06 --- /dev/null +++ b/services/m=funorb/css/home-1.css @@ -0,0 +1,542 @@ + + + +/* ############# */ +/* Home PAGE CSS */ +/* ############# */ + + +h2, h3 { + margin: 0; + padding: 0; + font-size: 12px; + font-weight: bold; +} + +#header, +#page_content .section { + color: white; +} + + +/* Latest Releases */ + +#latestReleases { + float:left; +} +#latestReleases b { + font-size:17px; +} + +#release, #release object { + outline: 0; + float: left; + width: 432px; + height: 167px; + background-color: black; +} + +#release .releasePlayMe { + display: block; + position: absolute; + width: 62px; + height: 62px; + left: 11px; + top: 30px; + background: url(#); /* IE 7 & Opera fix (they refuse to render elements over flash unless they have either content or a background) */ + cursor: pointer; +} + +#release .links { + position:absolute; + left:333px; + top:158px; +} + +#release .text { + position: absolute; + top: 160px; + left:10px; +} + +#release .title { + float:left; + font-weight:bold; + font-size:14px; +} + +#release .genre { + float:left; + position:relative; + padding: 4px 0 0 12px; +} + +/* xLatest Releases */ + + +/* Developer's Diary */ + +#devDiary { + position: relative; + width: 308px; + height: 167px; + float: right; + font-size: 12px; + font-weight: bold; + background: url(../img/images/home/developer_diary_bg.png) left top no-repeat; +} + +#devTitle { + padding: 3px 0 0 24px; +} + +#devDiary img { + position: absolute; + left: 7px; + top: 27px; + width: 295px; + height: 133px; + background: #091e34 left top no-repeat; +} + +#devName { + position: absolute; + font-size: 13px; + left: 15px; + top: 140px; + z-index: 1; +} + +#devMore { + position: absolute; + right: 15px; + top: 141px; +} + +/* xDeveloper's Diary */ + + +/* page_content */ + +#navHome #page_content { + margin-top: 0; + padding-top: 8px; + background: url(../img/images/home/games_list_bg.png) left 36px no-repeat; +} + +#page_content .sectionHeader, +#page_content .sectionHeaderRight { + height: 28px; +} + +#pageContentFooter { + margin-left: 0; + margin-right: 0; +} + +#page_content .sectionTitle span { /* news title */ + float: left; +} + +#page_content .sectionTitle a { /* news archive link */ + float: right; + padding: 0 5px 0; + font-weight: normal; + text-decoration: underline; +} + +#page_content .sectionTitle a:hover { + text-decoration: none; +} + +/* xpage_content */ + + +/* Games List */ + +#gamesHeader { + float: left; + width: 437px; +} + +#gamesList { + margin: 0; + padding: 0; + list-style: none; + text-align: center; + font-size: 11px; +} + +#gamesList li { + padding: 0; +} + +#gamesList .first { + display: inline; + clear: left; + margin-left: 10px; +} + +/* sub elements of the game boxes shared properties for all sizes + some shared by medium and small then overidden by big */ + +.gamesName { + overflow: hidden; + height: 29px; + font-weight: bold; +} + +.gamesName table { + width: 100%; + border-collapse: collapse; +} + +.gamesName td { + height: 27px; + padding: 0 4px; + font-weight: bold; + line-height: 90%; + text-align: center; + vertical-align: middle; +} + +.gamesName a { + text-decoration: none; + color: white; +} + +.gamesIcon { + display: block; + margin: 0 auto 3px; +} + +.gamesButtons { + position: absolute; + bottom: 1px; + left: 2px; + line-height: 15px; + font-weight: bold; +} + +.gamesButtons a { + text-decoration: none; + color: white; +} + +.gamesInfo { + float: left; + width: 22px; + height: 17px; + background: no-repeat left bottom; +} + +.gamesInfo:hover img { + visibility: hidden; +} + +.gamesPlay { + float: right; + height: 17px; + background: no-repeat right top; +} + +.gamesPlay:hover { + color: #F6E89A; + background-position: right bottom; +} + +/* Big games boxes */ + +.gamesBig { + position: relative; + float: left; + margin: 8px 0 0 9px; + width: 204px; + height: 214px; + background: #021c5d url(../img/images/home/games_big_bg.png); +} + +.gamesBig .gamesName { + height: 33px; +} + +.gamesBig .gamesName td { + height: 32px; + font-size: 13px; +} + +.gamesBig .gamesIcon { + width: 192px; + height: 140px; + margin-bottom: 2px; +} + +.gamesBig .gamesButtons { + width: 200px; + line-height: 18px; + font-size: 12px; +} + +.gamesBig .gamesInfo { + width: 22px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +.gamesBig .gamesPlay { + width: 178px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +/* Medium games boxes */ + +.gamesMedium { + position: relative; + float: left; + margin: 8px 0 0 6px; + width: 135px; + height: 158px; + background: #021c5d url(../img/images/home/games_medium_bg.png); +} + +.gamesMedium .gamesIcon { + width: 125px; + height: 92px; +} + +.gamesMedium .gamesGenre { + font-size: 9px; +} + +.gamesMedium .gamesButtons { + width: 131px; +} + +.gamesMedium .gamesInfo { + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +.gamesMedium .gamesPlay { + width: 109px; + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +/* Small games boxes */ + +.gamesSmall { + position: relative; + float: left; + margin: 8px 0 5px 6px; + width: 119px; + height: 145px; + background: #021c5d url(../img/images/home/games_small_bg.png); +} + +.gamesSmall .gamesName td { + padding-bottom: 1px; +} + +.gamesSmall .gamesIcon { + width: 107px; + height: 79px; +} + +.gamesSmall .gamesGenre { + font-size: 9px; +} + +.gamesSmall .gamesButtons { + width: 115px; +} + +.gamesSmall .gamesInfo { + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +.gamesSmall .gamesPlay { + width: 93px; + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +/* All games link */ + +#gamesAll { + width: 117px; + font-weight: bold; + text-decoration: none; + color: white; + background: #021c5d url(../img/images/home/games_all_bg.png) left top no-repeat; +} + +#gamesAll .gamesName { + line-height: 26px; +} + +#gamesAll .gamesIcon { + width: 105px; + height: 93px; +} + +#gamesAll .gamesButtons { + position: absolute; + width: 113px; + height: 17px; + color: white; + text-decoration: none; + background: url(../img/images/home/games_all_button.png) left top no-repeat; +} + +#gamesAll .gamesButtons:hover { + background-position: center bottom; +} + +/* xGames List */ + + +/* Community Inset (News / Community Home) */ + +#communityInset { + float: right; + margin: 0 0 4px; + width: 315px; +} + +#communityInset .sectionBackground { + background-color: black; +} + +/* xCommunity Inset */ + + +/* News */ + +#news { + margin: 0 0 8px; /* bottom margin is 10-2px to comp for the -2px top margin on the sectionFooter */ + height: 282px; +} + +#news .sectionContent { + padding: 3px 3px 0; + height: 246px; /* fix the height as the accordion is less accurate in Safari and the bottom of the box wiggles if it's not fixed height */ +} + +#news .sectionFooter { + margin-top: -2px; +} + +.newsHead { + height: 23px; + overflow: hidden; + padding: 0 4px; + outline: 0; + background-image: url(../img/images/home/news_head_bg.png); +} + +.ui-accordion .newsHead { /* whole bar should appear to be a link with JS enabled */ + cursor: pointer; +} + +.newsHead a { /* title */ + float: left; + padding: 3px 0 0 12px; + font-weight: bold; + background: url(../img/images/home/news_arrow.png) left 6px no-repeat; + text-decoration: none; +} + +.ui-accordion .newsHead a { /* shouldn't look like links with JS enabled */ + color: white; +} + +#news h3.ui-state-active a { /* can't just do .newsHead.ui-state-active as IE doesn't support chaining classes like that */ + background-image: url(../img/images/home/news_arrow_selected.png); +} + +.newsHead span { /* date */ + float: right; + padding: 3px 0 0; +} + +.newsBody { + display: none; + height: 0px; + overflow: hidden; + background-image: url(../img/images/home/news_body_bg.png); +} + +.newsBody#newsBodyFirst { + display: block; + height: 154px; +} + +.newsBody img { /* header graphic */ + display: block; + margin: auto; + width: 305px; + height: 78px; +} + +.newsBody p { /* teaser text */ + padding: 8px; + font-size: 11px; +} + +/* xNews */ + + +/* Community Home */ + +#community { + float: right; + position: relative; + width: 315px; + height: 114px; +} + +#community img { + width: 315px; + height: 114px; +} + +#community table { + position: absolute; + left: 12px; + bottom: 2px; + width: 291px; + height: 35px; + border-collapse: collapse; +} + +#community td { + height: 35px; + padding: 0; + vertical-align: middle; +} + +#communityIntro { + + + width: 227px; + + + font-weight: bold; +} + +#communityGo { + text-align: right; +} + +/* xCommunity Home */ + + + + + + +#feed { + height: 22px; +} + +#page_content #feed a { + float: left; +} \ No newline at end of file diff --git a/services/m=funorb/css/home-12.css b/services/m=funorb/css/home-12.css new file mode 100644 index 000000000..0232d1009 --- /dev/null +++ b/services/m=funorb/css/home-12.css @@ -0,0 +1,542 @@ + + + +/* ############# */ +/* Home PAGE CSS */ +/* ############# */ + + +h2, h3 { + margin: 0; + padding: 0; + font-size: 12px; + font-weight: bold; +} + +#header, +#page_content .section { + color: white; +} + + +/* Latest Releases */ + +#latestReleases { + float:left; +} +#latestReleases b { + font-size:17px; +} + +#release, #release object { + outline: 0; + float: left; + width: 432px; + height: 167px; + background-color: black; +} + +#release .releasePlayMe { + display: block; + position: absolute; + width: 62px; + height: 62px; + left: 11px; + top: 30px; + background: url(#); /* IE 7 & Opera fix (they refuse to render elements over flash unless they have either content or a background) */ + cursor: pointer; +} + +#release .links { + position:absolute; + left:333px; + top:158px; +} + +#release .text { + position: absolute; + top: 160px; + left:10px; +} + +#release .title { + float:left; + font-weight:bold; + font-size:14px; +} + +#release .genre { + float:left; + position:relative; + padding: 4px 0 0 12px; +} + +/* xLatest Releases */ + + +/* Developer's Diary */ + +#devDiary { + position: relative; + width: 308px; + height: 167px; + float: right; + font-size: 12px; + font-weight: bold; + background: url(../img/images/home/developer_diary_bg.png) left top no-repeat; +} + +#devTitle { + padding: 3px 0 0 24px; +} + +#devDiary img { + position: absolute; + left: 7px; + top: 27px; + width: 295px; + height: 133px; + background: #091e34 left top no-repeat; +} + +#devName { + position: absolute; + font-size: 13px; + left: 15px; + top: 140px; + z-index: 1; +} + +#devMore { + position: absolute; + right: 15px; + top: 141px; +} + +/* xDeveloper's Diary */ + + +/* page_content */ + +#navHome #page_content { + margin-top: 0; + padding-top: 8px; + background: url(../img/images/home/games_list_bg.png) left 36px no-repeat; +} + +#page_content .sectionHeader, +#page_content .sectionHeaderRight { + height: 28px; +} + +#pageContentFooter { + margin-left: 0; + margin-right: 0; +} + +#page_content .sectionTitle span { /* news title */ + float: left; +} + +#page_content .sectionTitle a { /* news archive link */ + float: right; + padding: 0 5px 0; + font-weight: normal; + text-decoration: underline; +} + +#page_content .sectionTitle a:hover { + text-decoration: none; +} + +/* xpage_content */ + + +/* Games List */ + +#gamesHeader { + float: left; + width: 437px; +} + +#gamesList { + margin: 0; + padding: 0; + list-style: none; + text-align: center; + font-size: 11px; +} + +#gamesList li { + padding: 0; +} + +#gamesList .first { + display: inline; + clear: left; + margin-left: 10px; +} + +/* sub elements of the game boxes shared properties for all sizes + some shared by medium and small then overidden by big */ + +.gamesName { + overflow: hidden; + height: 29px; + font-weight: bold; +} + +.gamesName table { + width: 100%; + border-collapse: collapse; +} + +.gamesName td { + height: 27px; + padding: 0 4px; + font-weight: bold; + line-height: 90%; + text-align: center; + vertical-align: middle; +} + +.gamesName a { + text-decoration: none; + color: white; +} + +.gamesIcon { + display: block; + margin: 0 auto 3px; +} + +.gamesButtons { + position: absolute; + bottom: 1px; + left: 2px; + line-height: 15px; + font-weight: bold; +} + +.gamesButtons a { + text-decoration: none; + color: white; +} + +.gamesInfo { + float: left; + width: 22px; + height: 17px; + background: no-repeat left bottom; +} + +.gamesInfo:hover img { + visibility: hidden; +} + +.gamesPlay { + float: right; + height: 17px; + background: no-repeat right top; +} + +.gamesPlay:hover { + color: #F6E89A; + background-position: right bottom; +} + +/* Big games boxes */ + +.gamesBig { + position: relative; + float: left; + margin: 8px 0 0 9px; + width: 204px; + height: 214px; + background: #021c5d url(../img/images/home/games_big_bg.png); +} + +.gamesBig .gamesName { + height: 33px; +} + +.gamesBig .gamesName td { + height: 32px; + font-size: 13px; +} + +.gamesBig .gamesIcon { + width: 192px; + height: 140px; + margin-bottom: 2px; +} + +.gamesBig .gamesButtons { + width: 200px; + line-height: 18px; + font-size: 12px; +} + +.gamesBig .gamesInfo { + width: 22px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +.gamesBig .gamesPlay { + width: 178px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +/* Medium games boxes */ + +.gamesMedium { + position: relative; + float: left; + margin: 8px 0 0 6px; + width: 135px; + height: 158px; + background: #021c5d url(../img/images/home/games_medium_bg.png); +} + +.gamesMedium .gamesIcon { + width: 125px; + height: 92px; +} + +.gamesMedium .gamesGenre { + font-size: 9px; +} + +.gamesMedium .gamesButtons { + width: 131px; +} + +.gamesMedium .gamesInfo { + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +.gamesMedium .gamesPlay { + width: 109px; + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +/* Small games boxes */ + +.gamesSmall { + position: relative; + float: left; + margin: 8px 0 5px 6px; + width: 119px; + height: 145px; + background: #021c5d url(../img/images/home/games_small_bg.png); +} + +.gamesSmall .gamesName td { + padding-bottom: 1px; +} + +.gamesSmall .gamesIcon { + width: 107px; + height: 79px; +} + +.gamesSmall .gamesGenre { + font-size: 9px; +} + +.gamesSmall .gamesButtons { + width: 115px; +} + +.gamesSmall .gamesInfo { + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +.gamesSmall .gamesPlay { + width: 93px; + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +/* All games link */ + +#gamesAll { + width: 117px; + font-weight: bold; + text-decoration: none; + color: white; + background: #021c5d url(../img/images/home/games_all_bg.png) left top no-repeat; +} + +#gamesAll .gamesName { + line-height: 26px; +} + +#gamesAll .gamesIcon { + width: 105px; + height: 93px; +} + +#gamesAll .gamesButtons { + position: absolute; + width: 113px; + height: 17px; + color: white; + text-decoration: none; + background: url(../img/images/home/games_all_button.png) left top no-repeat; +} + +#gamesAll .gamesButtons:hover { + background-position: center bottom; +} + +/* xGames List */ + + +/* Community Inset (News / Community Home) */ + +#communityInset { + float: right; + margin: 0 0 4px; + width: 315px; +} + +#communityInset .sectionBackground { + background-color: black; +} + +/* xCommunity Inset */ + + +/* News */ + +#news { + margin: 0 0 8px; /* bottom margin is 10-2px to comp for the -2px top margin on the sectionFooter */ + height: 282px; +} + +#news .sectionContent { + padding: 3px 3px 0; + height: 246px; /* fix the height as the accordion is less accurate in Safari and the bottom of the box wiggles if it's not fixed height */ +} + +#news .sectionFooter { + margin-top: -2px; +} + +.newsHead { + height: 23px; + overflow: hidden; + padding: 0 8px; + outline: 0; + background-image: url(../img/images/home/news_head_bg.png); +} + +.ui-accordion .newsHead { /* whole bar should appear to be a link with JS enabled */ + cursor: pointer; +} + +.newsHead a { /* title */ + float: left; + padding: 3px 0 0 16px; + font-weight: bold; + background: url(../img/images/home/news_arrow.png) left 6px no-repeat; + text-decoration: none; +} + +.ui-accordion .newsHead a { /* shouldn't look like links with JS enabled */ + color: white; +} + +#news h3.selected a { /* can't just do .newsHead.selected as IE doesn't support chaining classes like that */ + background-image: url(../img/images/home/news_arrow_selected.png); +} + +.newsHead span { /* date */ + float: right; + padding: 3px 0 0; +} + +.newsBody { + display: none; + height: 0px; + overflow: hidden; + background-image: url(../img/images/home/news_body_bg.png); +} + +.newsBody#newsBodyFirst { + display: block; + height: 154px; +} + +.newsBody img { /* header graphic */ + display: block; + margin: auto; + width: 305px; + height: 78px; +} + +.newsBody p { /* teaser text */ + padding: 8px; + font-size: 11px; +} + +/* xNews */ + + +/* Community Home */ + +#community { + float: right; + position: relative; + width: 315px; + height: 114px; +} + +#community img { + width: 315px; + height: 114px; +} + +#community table { + position: absolute; + left: 12px; + bottom: 2px; + width: 291px; + height: 35px; + border-collapse: collapse; +} + +#community td { + height: 35px; + padding: 0; + vertical-align: middle; +} + +#communityIntro { + + + width: 227px; + + + font-weight: bold; +} + +#communityGo { + text-align: right; +} + +/* xCommunity Home */ + + + + + + +#feed { + height: 22px; +} + +#page_content #feed a { + float: left; +} \ No newline at end of file diff --git a/services/m=funorb/css/home-13.css b/services/m=funorb/css/home-13.css new file mode 100644 index 000000000..1f20c3f06 --- /dev/null +++ b/services/m=funorb/css/home-13.css @@ -0,0 +1,542 @@ + + + +/* ############# */ +/* Home PAGE CSS */ +/* ############# */ + + +h2, h3 { + margin: 0; + padding: 0; + font-size: 12px; + font-weight: bold; +} + +#header, +#page_content .section { + color: white; +} + + +/* Latest Releases */ + +#latestReleases { + float:left; +} +#latestReleases b { + font-size:17px; +} + +#release, #release object { + outline: 0; + float: left; + width: 432px; + height: 167px; + background-color: black; +} + +#release .releasePlayMe { + display: block; + position: absolute; + width: 62px; + height: 62px; + left: 11px; + top: 30px; + background: url(#); /* IE 7 & Opera fix (they refuse to render elements over flash unless they have either content or a background) */ + cursor: pointer; +} + +#release .links { + position:absolute; + left:333px; + top:158px; +} + +#release .text { + position: absolute; + top: 160px; + left:10px; +} + +#release .title { + float:left; + font-weight:bold; + font-size:14px; +} + +#release .genre { + float:left; + position:relative; + padding: 4px 0 0 12px; +} + +/* xLatest Releases */ + + +/* Developer's Diary */ + +#devDiary { + position: relative; + width: 308px; + height: 167px; + float: right; + font-size: 12px; + font-weight: bold; + background: url(../img/images/home/developer_diary_bg.png) left top no-repeat; +} + +#devTitle { + padding: 3px 0 0 24px; +} + +#devDiary img { + position: absolute; + left: 7px; + top: 27px; + width: 295px; + height: 133px; + background: #091e34 left top no-repeat; +} + +#devName { + position: absolute; + font-size: 13px; + left: 15px; + top: 140px; + z-index: 1; +} + +#devMore { + position: absolute; + right: 15px; + top: 141px; +} + +/* xDeveloper's Diary */ + + +/* page_content */ + +#navHome #page_content { + margin-top: 0; + padding-top: 8px; + background: url(../img/images/home/games_list_bg.png) left 36px no-repeat; +} + +#page_content .sectionHeader, +#page_content .sectionHeaderRight { + height: 28px; +} + +#pageContentFooter { + margin-left: 0; + margin-right: 0; +} + +#page_content .sectionTitle span { /* news title */ + float: left; +} + +#page_content .sectionTitle a { /* news archive link */ + float: right; + padding: 0 5px 0; + font-weight: normal; + text-decoration: underline; +} + +#page_content .sectionTitle a:hover { + text-decoration: none; +} + +/* xpage_content */ + + +/* Games List */ + +#gamesHeader { + float: left; + width: 437px; +} + +#gamesList { + margin: 0; + padding: 0; + list-style: none; + text-align: center; + font-size: 11px; +} + +#gamesList li { + padding: 0; +} + +#gamesList .first { + display: inline; + clear: left; + margin-left: 10px; +} + +/* sub elements of the game boxes shared properties for all sizes + some shared by medium and small then overidden by big */ + +.gamesName { + overflow: hidden; + height: 29px; + font-weight: bold; +} + +.gamesName table { + width: 100%; + border-collapse: collapse; +} + +.gamesName td { + height: 27px; + padding: 0 4px; + font-weight: bold; + line-height: 90%; + text-align: center; + vertical-align: middle; +} + +.gamesName a { + text-decoration: none; + color: white; +} + +.gamesIcon { + display: block; + margin: 0 auto 3px; +} + +.gamesButtons { + position: absolute; + bottom: 1px; + left: 2px; + line-height: 15px; + font-weight: bold; +} + +.gamesButtons a { + text-decoration: none; + color: white; +} + +.gamesInfo { + float: left; + width: 22px; + height: 17px; + background: no-repeat left bottom; +} + +.gamesInfo:hover img { + visibility: hidden; +} + +.gamesPlay { + float: right; + height: 17px; + background: no-repeat right top; +} + +.gamesPlay:hover { + color: #F6E89A; + background-position: right bottom; +} + +/* Big games boxes */ + +.gamesBig { + position: relative; + float: left; + margin: 8px 0 0 9px; + width: 204px; + height: 214px; + background: #021c5d url(../img/images/home/games_big_bg.png); +} + +.gamesBig .gamesName { + height: 33px; +} + +.gamesBig .gamesName td { + height: 32px; + font-size: 13px; +} + +.gamesBig .gamesIcon { + width: 192px; + height: 140px; + margin-bottom: 2px; +} + +.gamesBig .gamesButtons { + width: 200px; + line-height: 18px; + font-size: 12px; +} + +.gamesBig .gamesInfo { + width: 22px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +.gamesBig .gamesPlay { + width: 178px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +/* Medium games boxes */ + +.gamesMedium { + position: relative; + float: left; + margin: 8px 0 0 6px; + width: 135px; + height: 158px; + background: #021c5d url(../img/images/home/games_medium_bg.png); +} + +.gamesMedium .gamesIcon { + width: 125px; + height: 92px; +} + +.gamesMedium .gamesGenre { + font-size: 9px; +} + +.gamesMedium .gamesButtons { + width: 131px; +} + +.gamesMedium .gamesInfo { + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +.gamesMedium .gamesPlay { + width: 109px; + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +/* Small games boxes */ + +.gamesSmall { + position: relative; + float: left; + margin: 8px 0 5px 6px; + width: 119px; + height: 145px; + background: #021c5d url(../img/images/home/games_small_bg.png); +} + +.gamesSmall .gamesName td { + padding-bottom: 1px; +} + +.gamesSmall .gamesIcon { + width: 107px; + height: 79px; +} + +.gamesSmall .gamesGenre { + font-size: 9px; +} + +.gamesSmall .gamesButtons { + width: 115px; +} + +.gamesSmall .gamesInfo { + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +.gamesSmall .gamesPlay { + width: 93px; + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +/* All games link */ + +#gamesAll { + width: 117px; + font-weight: bold; + text-decoration: none; + color: white; + background: #021c5d url(../img/images/home/games_all_bg.png) left top no-repeat; +} + +#gamesAll .gamesName { + line-height: 26px; +} + +#gamesAll .gamesIcon { + width: 105px; + height: 93px; +} + +#gamesAll .gamesButtons { + position: absolute; + width: 113px; + height: 17px; + color: white; + text-decoration: none; + background: url(../img/images/home/games_all_button.png) left top no-repeat; +} + +#gamesAll .gamesButtons:hover { + background-position: center bottom; +} + +/* xGames List */ + + +/* Community Inset (News / Community Home) */ + +#communityInset { + float: right; + margin: 0 0 4px; + width: 315px; +} + +#communityInset .sectionBackground { + background-color: black; +} + +/* xCommunity Inset */ + + +/* News */ + +#news { + margin: 0 0 8px; /* bottom margin is 10-2px to comp for the -2px top margin on the sectionFooter */ + height: 282px; +} + +#news .sectionContent { + padding: 3px 3px 0; + height: 246px; /* fix the height as the accordion is less accurate in Safari and the bottom of the box wiggles if it's not fixed height */ +} + +#news .sectionFooter { + margin-top: -2px; +} + +.newsHead { + height: 23px; + overflow: hidden; + padding: 0 4px; + outline: 0; + background-image: url(../img/images/home/news_head_bg.png); +} + +.ui-accordion .newsHead { /* whole bar should appear to be a link with JS enabled */ + cursor: pointer; +} + +.newsHead a { /* title */ + float: left; + padding: 3px 0 0 12px; + font-weight: bold; + background: url(../img/images/home/news_arrow.png) left 6px no-repeat; + text-decoration: none; +} + +.ui-accordion .newsHead a { /* shouldn't look like links with JS enabled */ + color: white; +} + +#news h3.ui-state-active a { /* can't just do .newsHead.ui-state-active as IE doesn't support chaining classes like that */ + background-image: url(../img/images/home/news_arrow_selected.png); +} + +.newsHead span { /* date */ + float: right; + padding: 3px 0 0; +} + +.newsBody { + display: none; + height: 0px; + overflow: hidden; + background-image: url(../img/images/home/news_body_bg.png); +} + +.newsBody#newsBodyFirst { + display: block; + height: 154px; +} + +.newsBody img { /* header graphic */ + display: block; + margin: auto; + width: 305px; + height: 78px; +} + +.newsBody p { /* teaser text */ + padding: 8px; + font-size: 11px; +} + +/* xNews */ + + +/* Community Home */ + +#community { + float: right; + position: relative; + width: 315px; + height: 114px; +} + +#community img { + width: 315px; + height: 114px; +} + +#community table { + position: absolute; + left: 12px; + bottom: 2px; + width: 291px; + height: 35px; + border-collapse: collapse; +} + +#community td { + height: 35px; + padding: 0; + vertical-align: middle; +} + +#communityIntro { + + + width: 227px; + + + font-weight: bold; +} + +#communityGo { + text-align: right; +} + +/* xCommunity Home */ + + + + + + +#feed { + height: 22px; +} + +#page_content #feed a { + float: left; +} \ No newline at end of file diff --git a/services/m=funorb/css/home-5.css b/services/m=funorb/css/home-5.css new file mode 100644 index 000000000..1f20c3f06 --- /dev/null +++ b/services/m=funorb/css/home-5.css @@ -0,0 +1,542 @@ + + + +/* ############# */ +/* Home PAGE CSS */ +/* ############# */ + + +h2, h3 { + margin: 0; + padding: 0; + font-size: 12px; + font-weight: bold; +} + +#header, +#page_content .section { + color: white; +} + + +/* Latest Releases */ + +#latestReleases { + float:left; +} +#latestReleases b { + font-size:17px; +} + +#release, #release object { + outline: 0; + float: left; + width: 432px; + height: 167px; + background-color: black; +} + +#release .releasePlayMe { + display: block; + position: absolute; + width: 62px; + height: 62px; + left: 11px; + top: 30px; + background: url(#); /* IE 7 & Opera fix (they refuse to render elements over flash unless they have either content or a background) */ + cursor: pointer; +} + +#release .links { + position:absolute; + left:333px; + top:158px; +} + +#release .text { + position: absolute; + top: 160px; + left:10px; +} + +#release .title { + float:left; + font-weight:bold; + font-size:14px; +} + +#release .genre { + float:left; + position:relative; + padding: 4px 0 0 12px; +} + +/* xLatest Releases */ + + +/* Developer's Diary */ + +#devDiary { + position: relative; + width: 308px; + height: 167px; + float: right; + font-size: 12px; + font-weight: bold; + background: url(../img/images/home/developer_diary_bg.png) left top no-repeat; +} + +#devTitle { + padding: 3px 0 0 24px; +} + +#devDiary img { + position: absolute; + left: 7px; + top: 27px; + width: 295px; + height: 133px; + background: #091e34 left top no-repeat; +} + +#devName { + position: absolute; + font-size: 13px; + left: 15px; + top: 140px; + z-index: 1; +} + +#devMore { + position: absolute; + right: 15px; + top: 141px; +} + +/* xDeveloper's Diary */ + + +/* page_content */ + +#navHome #page_content { + margin-top: 0; + padding-top: 8px; + background: url(../img/images/home/games_list_bg.png) left 36px no-repeat; +} + +#page_content .sectionHeader, +#page_content .sectionHeaderRight { + height: 28px; +} + +#pageContentFooter { + margin-left: 0; + margin-right: 0; +} + +#page_content .sectionTitle span { /* news title */ + float: left; +} + +#page_content .sectionTitle a { /* news archive link */ + float: right; + padding: 0 5px 0; + font-weight: normal; + text-decoration: underline; +} + +#page_content .sectionTitle a:hover { + text-decoration: none; +} + +/* xpage_content */ + + +/* Games List */ + +#gamesHeader { + float: left; + width: 437px; +} + +#gamesList { + margin: 0; + padding: 0; + list-style: none; + text-align: center; + font-size: 11px; +} + +#gamesList li { + padding: 0; +} + +#gamesList .first { + display: inline; + clear: left; + margin-left: 10px; +} + +/* sub elements of the game boxes shared properties for all sizes + some shared by medium and small then overidden by big */ + +.gamesName { + overflow: hidden; + height: 29px; + font-weight: bold; +} + +.gamesName table { + width: 100%; + border-collapse: collapse; +} + +.gamesName td { + height: 27px; + padding: 0 4px; + font-weight: bold; + line-height: 90%; + text-align: center; + vertical-align: middle; +} + +.gamesName a { + text-decoration: none; + color: white; +} + +.gamesIcon { + display: block; + margin: 0 auto 3px; +} + +.gamesButtons { + position: absolute; + bottom: 1px; + left: 2px; + line-height: 15px; + font-weight: bold; +} + +.gamesButtons a { + text-decoration: none; + color: white; +} + +.gamesInfo { + float: left; + width: 22px; + height: 17px; + background: no-repeat left bottom; +} + +.gamesInfo:hover img { + visibility: hidden; +} + +.gamesPlay { + float: right; + height: 17px; + background: no-repeat right top; +} + +.gamesPlay:hover { + color: #F6E89A; + background-position: right bottom; +} + +/* Big games boxes */ + +.gamesBig { + position: relative; + float: left; + margin: 8px 0 0 9px; + width: 204px; + height: 214px; + background: #021c5d url(../img/images/home/games_big_bg.png); +} + +.gamesBig .gamesName { + height: 33px; +} + +.gamesBig .gamesName td { + height: 32px; + font-size: 13px; +} + +.gamesBig .gamesIcon { + width: 192px; + height: 140px; + margin-bottom: 2px; +} + +.gamesBig .gamesButtons { + width: 200px; + line-height: 18px; + font-size: 12px; +} + +.gamesBig .gamesInfo { + width: 22px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +.gamesBig .gamesPlay { + width: 178px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +/* Medium games boxes */ + +.gamesMedium { + position: relative; + float: left; + margin: 8px 0 0 6px; + width: 135px; + height: 158px; + background: #021c5d url(../img/images/home/games_medium_bg.png); +} + +.gamesMedium .gamesIcon { + width: 125px; + height: 92px; +} + +.gamesMedium .gamesGenre { + font-size: 9px; +} + +.gamesMedium .gamesButtons { + width: 131px; +} + +.gamesMedium .gamesInfo { + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +.gamesMedium .gamesPlay { + width: 109px; + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +/* Small games boxes */ + +.gamesSmall { + position: relative; + float: left; + margin: 8px 0 5px 6px; + width: 119px; + height: 145px; + background: #021c5d url(../img/images/home/games_small_bg.png); +} + +.gamesSmall .gamesName td { + padding-bottom: 1px; +} + +.gamesSmall .gamesIcon { + width: 107px; + height: 79px; +} + +.gamesSmall .gamesGenre { + font-size: 9px; +} + +.gamesSmall .gamesButtons { + width: 115px; +} + +.gamesSmall .gamesInfo { + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +.gamesSmall .gamesPlay { + width: 93px; + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +/* All games link */ + +#gamesAll { + width: 117px; + font-weight: bold; + text-decoration: none; + color: white; + background: #021c5d url(../img/images/home/games_all_bg.png) left top no-repeat; +} + +#gamesAll .gamesName { + line-height: 26px; +} + +#gamesAll .gamesIcon { + width: 105px; + height: 93px; +} + +#gamesAll .gamesButtons { + position: absolute; + width: 113px; + height: 17px; + color: white; + text-decoration: none; + background: url(../img/images/home/games_all_button.png) left top no-repeat; +} + +#gamesAll .gamesButtons:hover { + background-position: center bottom; +} + +/* xGames List */ + + +/* Community Inset (News / Community Home) */ + +#communityInset { + float: right; + margin: 0 0 4px; + width: 315px; +} + +#communityInset .sectionBackground { + background-color: black; +} + +/* xCommunity Inset */ + + +/* News */ + +#news { + margin: 0 0 8px; /* bottom margin is 10-2px to comp for the -2px top margin on the sectionFooter */ + height: 282px; +} + +#news .sectionContent { + padding: 3px 3px 0; + height: 246px; /* fix the height as the accordion is less accurate in Safari and the bottom of the box wiggles if it's not fixed height */ +} + +#news .sectionFooter { + margin-top: -2px; +} + +.newsHead { + height: 23px; + overflow: hidden; + padding: 0 4px; + outline: 0; + background-image: url(../img/images/home/news_head_bg.png); +} + +.ui-accordion .newsHead { /* whole bar should appear to be a link with JS enabled */ + cursor: pointer; +} + +.newsHead a { /* title */ + float: left; + padding: 3px 0 0 12px; + font-weight: bold; + background: url(../img/images/home/news_arrow.png) left 6px no-repeat; + text-decoration: none; +} + +.ui-accordion .newsHead a { /* shouldn't look like links with JS enabled */ + color: white; +} + +#news h3.ui-state-active a { /* can't just do .newsHead.ui-state-active as IE doesn't support chaining classes like that */ + background-image: url(../img/images/home/news_arrow_selected.png); +} + +.newsHead span { /* date */ + float: right; + padding: 3px 0 0; +} + +.newsBody { + display: none; + height: 0px; + overflow: hidden; + background-image: url(../img/images/home/news_body_bg.png); +} + +.newsBody#newsBodyFirst { + display: block; + height: 154px; +} + +.newsBody img { /* header graphic */ + display: block; + margin: auto; + width: 305px; + height: 78px; +} + +.newsBody p { /* teaser text */ + padding: 8px; + font-size: 11px; +} + +/* xNews */ + + +/* Community Home */ + +#community { + float: right; + position: relative; + width: 315px; + height: 114px; +} + +#community img { + width: 315px; + height: 114px; +} + +#community table { + position: absolute; + left: 12px; + bottom: 2px; + width: 291px; + height: 35px; + border-collapse: collapse; +} + +#community td { + height: 35px; + padding: 0; + vertical-align: middle; +} + +#communityIntro { + + + width: 227px; + + + font-weight: bold; +} + +#communityGo { + text-align: right; +} + +/* xCommunity Home */ + + + + + + +#feed { + height: 22px; +} + +#page_content #feed a { + float: left; +} \ No newline at end of file diff --git a/services/m=funorb/css/home-8.css b/services/m=funorb/css/home-8.css new file mode 100644 index 000000000..474b4d864 --- /dev/null +++ b/services/m=funorb/css/home-8.css @@ -0,0 +1,406 @@ + +/* ############# */ +/* Home PAGE CSS */ +/* ############# */ +/* Content Container Boxes */ +/* Latest Releases */ +#latestReleases { + float:left; +} +#latestReleases b { + font-size:17px; +} + +#release { + float:left; + width:432px; + height:167px; + background-color: black; +} + +#release .releasePlayMe { + display: block; + position: absolute; + width: 62px; + height: 62px; + left: 11px; + top: 30px; + background: url(#); /* IE 7 & Opera fix (they refuse to render elements over flash unless they have either content or a background) */ + cursor: pointer; +} + +#release .links { + position:absolute; + left:333px; + top:158px; +} + +#release .text { + position: absolute; + top: 160px; + left:10px; +} + +#release .title { + float:left; + font-weight:bold; + font-size:14px; +} + +#release .genre { + float:left; + position:relative; + padding: 4px 0 0 12px; +} + +/* xLatest Releases */ + +/* Top 10 Games */ + +#top { + position: relative; + width: 308px; + height: 167px; + float: right; + background: url(../img/images/layout/top_bg.png) left top no-repeat; +} + +#topThumb, #topLoader { + position: absolute; + left: 6px; + top: 24px; + width: 151px; + height: 111px; +} + +#topLoader { + display: none; + background: black url(../img/images/layout/loading.gif) 60px 40px no-repeat; +} + +#topTitle { + float: left; + padding: 3px 0 0 24px; + font-size: 12px; + font-weight: bold; +} + +#topButtons { + position: absolute; + left: 34px; + bottom: 7px; +} + +#topList { + position: absolute; + left: 164px; + top: 0; + width: 142px; +} + + + +#topList div { + position: relative; + height: 17px; + overflow: hidden; +} + +#topList a { + position: absolute; + top: -1px; + left: -1px; + display: block; + width: 144px; + height: 19px; + line-height: 18px; + text-decoration: none; + color: white; +} + +#topList #top1, +#topList #top10 { + height: 16px; + line-height: 15px; +} + +#topList #top1 a, +#topList #top10 a { + height: 18px; +} + +#topList a.selected, +#topList a:hover { + color: #ffc000; + font-weight: bold; + background: url(../img/images/layout/topList_bg.png) 1px 1px; +} + +#topList #top1 a.selected, +#topList #top1 a:hover { + background: url(../img/images/layout/topList_bg_top.png) 1px 1px; +} + +#topList #top10 a.selected, +#topList #top10 a:hover { + background: url(../img/images/layout/topList_bg_bottom.png) 1px 1px; +} + +#topList span { + float: left; + width: 21px; + margin-right: 3px; + text-align: center; + cursor: pointer; +} + +/* xTop 10 Games */ + +/* News, Single and Multi Player Shared */ + +.gamesList .sectionHeader, +.gamesList .sectionHeaderRight, +#news .sectionHeader, +#news .sectionHeaderRight { + height: 28px; +} + +/* xFeatured, Single and Multi Player Shared */ + + + +/* Latest News */ + +#news { + float: left; + width:437px; +} + +#news .sectionBackground, +#news .sectionContent, +#news .sectionFooter, +#news .sectionFooter div { + background: none; +} + +#news .sectionFooter { + display: none; +} + +#news .sectionBorder { + background: black url(../img/images/layout/section_bg_featured.gif) no-repeat; + padding-top: 4px; +} + +#newsContainer { + padding: 5px 9px 10px; +} + +#newsBackground { + position: relative; + width: 417px; + height: 135px; + overflow: hidden; + background-color: #0b2540; +} + +#newsContent { + padding: 5px 5px 0; +} + + + +#newsTitle { + float: left; + margin: 0 0 1px; + width: 320px; + height: 17px; + overflow: hidden; + font-size: 14px; + font-weight: bold; + color: white; +} + +#newsDate { + float: right; + padding-top: 1px; + color: white; +} + +#newsRule { + margin: 0 0 4px; + clear: both; + font-size: 0px; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; +} + +#newsIcon { + float: right; +} + +#newsSummary { + margin: 0; + padding: 0; + height: 48px; + overflow: hidden; + font-size: 11px; + color: #dad6d5; +} + + + +.newsRule { + margin: 4px auto; + clear: both; + font-size: 0px; + border-top: 1px solid #001a3b; + border-bottom: 1px solid #25476b; +} + +.newsSmall { + height: 14px; + font-size: 11px; + color: white; +} + +.newsTitle { + float: left; + font-size: 11px; + font-weight: normal; +} + +.newsDate { + float: right; +} + +/* xLatest News */ + + + +/* Advert */ +#advert { + background:transparent url(../img/images/layout/advert_bg.gif) no-repeat; + float:left; + width:316px; + height:281px; + margin-left:8px; +} + +#advert iframe { + width:300px; + height:273px; + margin:8px 8px 0; +} + +#advert img { + margin: 8px 0 0 8px; +} + +/* xAdvert */ + +/* Single and Multi Player Shared */ + +#ourGames { + width: 437px; + float: left; + margin:8px 0 0; +} + +.gamesList .sectionTitle a { + font-weight: normal; + text-decoration: underline; +} + +.gamesList .sectionTitle a:hover { + text-decoration: none; +} + +.gamesList .sectionBackground { + background-image: url(../img/images/layout/section_bg_games.gif); +} + +.gamesList ul { + margin: 0; + padding: 0 0 0 6px; +} + +#ourMulti ul { + padding-left: 2px; +} + +.gamesList li { + list-style:none; + float:left; + width:106px; + text-align:center; + overflow:visible; +} + +#ourMulti li { + width: 103px; +} + +a.genre, +a.genre:hover, +.genre a, +.genre a:hover { + text-decoration:none; + color:#FFD200; +} + +.gamesList .name { + height:26px; + line-height:11px; + vertical-align:middle; + text-align: center; + font-weight:bold; +} + +.gamesList table { + width:100%; + border-collapse: collapse; +} + +.gamesList td { + padding: 0px; +} + +.gamesList .thumbLink { + display: block; + margin-bottom: 1px; +} + +.gamesList .genre { + height: 15px; + margin: 0; + font-size: 10px; +} + +.gamesList .buttonInfo { + margin-left: 5px; + display: inline-block; /* IE fix */ +} + +.gamesList .hr { + height: 11px; + background-position: center bottom; +} + +/* xSingle and Multi Player Shared */ + +/* Right Column */ + +#gameAdvert, #topGames, #ourMulti { + float: left; + width: 316px; + margin-left: 8px; + margin-top:8px; +} + +/* xRight Column */ + +/* Content Container Boxes */ +/* ############# */ +/* Home PAGE CSS */ +/* ############# */ \ No newline at end of file diff --git a/services/m=funorb/css/home-9.css b/services/m=funorb/css/home-9.css new file mode 100644 index 000000000..1f20c3f06 --- /dev/null +++ b/services/m=funorb/css/home-9.css @@ -0,0 +1,542 @@ + + + +/* ############# */ +/* Home PAGE CSS */ +/* ############# */ + + +h2, h3 { + margin: 0; + padding: 0; + font-size: 12px; + font-weight: bold; +} + +#header, +#page_content .section { + color: white; +} + + +/* Latest Releases */ + +#latestReleases { + float:left; +} +#latestReleases b { + font-size:17px; +} + +#release, #release object { + outline: 0; + float: left; + width: 432px; + height: 167px; + background-color: black; +} + +#release .releasePlayMe { + display: block; + position: absolute; + width: 62px; + height: 62px; + left: 11px; + top: 30px; + background: url(#); /* IE 7 & Opera fix (they refuse to render elements over flash unless they have either content or a background) */ + cursor: pointer; +} + +#release .links { + position:absolute; + left:333px; + top:158px; +} + +#release .text { + position: absolute; + top: 160px; + left:10px; +} + +#release .title { + float:left; + font-weight:bold; + font-size:14px; +} + +#release .genre { + float:left; + position:relative; + padding: 4px 0 0 12px; +} + +/* xLatest Releases */ + + +/* Developer's Diary */ + +#devDiary { + position: relative; + width: 308px; + height: 167px; + float: right; + font-size: 12px; + font-weight: bold; + background: url(../img/images/home/developer_diary_bg.png) left top no-repeat; +} + +#devTitle { + padding: 3px 0 0 24px; +} + +#devDiary img { + position: absolute; + left: 7px; + top: 27px; + width: 295px; + height: 133px; + background: #091e34 left top no-repeat; +} + +#devName { + position: absolute; + font-size: 13px; + left: 15px; + top: 140px; + z-index: 1; +} + +#devMore { + position: absolute; + right: 15px; + top: 141px; +} + +/* xDeveloper's Diary */ + + +/* page_content */ + +#navHome #page_content { + margin-top: 0; + padding-top: 8px; + background: url(../img/images/home/games_list_bg.png) left 36px no-repeat; +} + +#page_content .sectionHeader, +#page_content .sectionHeaderRight { + height: 28px; +} + +#pageContentFooter { + margin-left: 0; + margin-right: 0; +} + +#page_content .sectionTitle span { /* news title */ + float: left; +} + +#page_content .sectionTitle a { /* news archive link */ + float: right; + padding: 0 5px 0; + font-weight: normal; + text-decoration: underline; +} + +#page_content .sectionTitle a:hover { + text-decoration: none; +} + +/* xpage_content */ + + +/* Games List */ + +#gamesHeader { + float: left; + width: 437px; +} + +#gamesList { + margin: 0; + padding: 0; + list-style: none; + text-align: center; + font-size: 11px; +} + +#gamesList li { + padding: 0; +} + +#gamesList .first { + display: inline; + clear: left; + margin-left: 10px; +} + +/* sub elements of the game boxes shared properties for all sizes + some shared by medium and small then overidden by big */ + +.gamesName { + overflow: hidden; + height: 29px; + font-weight: bold; +} + +.gamesName table { + width: 100%; + border-collapse: collapse; +} + +.gamesName td { + height: 27px; + padding: 0 4px; + font-weight: bold; + line-height: 90%; + text-align: center; + vertical-align: middle; +} + +.gamesName a { + text-decoration: none; + color: white; +} + +.gamesIcon { + display: block; + margin: 0 auto 3px; +} + +.gamesButtons { + position: absolute; + bottom: 1px; + left: 2px; + line-height: 15px; + font-weight: bold; +} + +.gamesButtons a { + text-decoration: none; + color: white; +} + +.gamesInfo { + float: left; + width: 22px; + height: 17px; + background: no-repeat left bottom; +} + +.gamesInfo:hover img { + visibility: hidden; +} + +.gamesPlay { + float: right; + height: 17px; + background: no-repeat right top; +} + +.gamesPlay:hover { + color: #F6E89A; + background-position: right bottom; +} + +/* Big games boxes */ + +.gamesBig { + position: relative; + float: left; + margin: 8px 0 0 9px; + width: 204px; + height: 214px; + background: #021c5d url(../img/images/home/games_big_bg.png); +} + +.gamesBig .gamesName { + height: 33px; +} + +.gamesBig .gamesName td { + height: 32px; + font-size: 13px; +} + +.gamesBig .gamesIcon { + width: 192px; + height: 140px; + margin-bottom: 2px; +} + +.gamesBig .gamesButtons { + width: 200px; + line-height: 18px; + font-size: 12px; +} + +.gamesBig .gamesInfo { + width: 22px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +.gamesBig .gamesPlay { + width: 178px; + height: 20px; + background-image: url(../img/images/home/games_buttons_big_bg.png); +} + +/* Medium games boxes */ + +.gamesMedium { + position: relative; + float: left; + margin: 8px 0 0 6px; + width: 135px; + height: 158px; + background: #021c5d url(../img/images/home/games_medium_bg.png); +} + +.gamesMedium .gamesIcon { + width: 125px; + height: 92px; +} + +.gamesMedium .gamesGenre { + font-size: 9px; +} + +.gamesMedium .gamesButtons { + width: 131px; +} + +.gamesMedium .gamesInfo { + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +.gamesMedium .gamesPlay { + width: 109px; + background-image: url(../img/images/home/games_buttons_medium_bg.png); +} + +/* Small games boxes */ + +.gamesSmall { + position: relative; + float: left; + margin: 8px 0 5px 6px; + width: 119px; + height: 145px; + background: #021c5d url(../img/images/home/games_small_bg.png); +} + +.gamesSmall .gamesName td { + padding-bottom: 1px; +} + +.gamesSmall .gamesIcon { + width: 107px; + height: 79px; +} + +.gamesSmall .gamesGenre { + font-size: 9px; +} + +.gamesSmall .gamesButtons { + width: 115px; +} + +.gamesSmall .gamesInfo { + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +.gamesSmall .gamesPlay { + width: 93px; + background-image: url(../img/images/home/games_buttons_small_bg.png); +} + +/* All games link */ + +#gamesAll { + width: 117px; + font-weight: bold; + text-decoration: none; + color: white; + background: #021c5d url(../img/images/home/games_all_bg.png) left top no-repeat; +} + +#gamesAll .gamesName { + line-height: 26px; +} + +#gamesAll .gamesIcon { + width: 105px; + height: 93px; +} + +#gamesAll .gamesButtons { + position: absolute; + width: 113px; + height: 17px; + color: white; + text-decoration: none; + background: url(../img/images/home/games_all_button.png) left top no-repeat; +} + +#gamesAll .gamesButtons:hover { + background-position: center bottom; +} + +/* xGames List */ + + +/* Community Inset (News / Community Home) */ + +#communityInset { + float: right; + margin: 0 0 4px; + width: 315px; +} + +#communityInset .sectionBackground { + background-color: black; +} + +/* xCommunity Inset */ + + +/* News */ + +#news { + margin: 0 0 8px; /* bottom margin is 10-2px to comp for the -2px top margin on the sectionFooter */ + height: 282px; +} + +#news .sectionContent { + padding: 3px 3px 0; + height: 246px; /* fix the height as the accordion is less accurate in Safari and the bottom of the box wiggles if it's not fixed height */ +} + +#news .sectionFooter { + margin-top: -2px; +} + +.newsHead { + height: 23px; + overflow: hidden; + padding: 0 4px; + outline: 0; + background-image: url(../img/images/home/news_head_bg.png); +} + +.ui-accordion .newsHead { /* whole bar should appear to be a link with JS enabled */ + cursor: pointer; +} + +.newsHead a { /* title */ + float: left; + padding: 3px 0 0 12px; + font-weight: bold; + background: url(../img/images/home/news_arrow.png) left 6px no-repeat; + text-decoration: none; +} + +.ui-accordion .newsHead a { /* shouldn't look like links with JS enabled */ + color: white; +} + +#news h3.ui-state-active a { /* can't just do .newsHead.ui-state-active as IE doesn't support chaining classes like that */ + background-image: url(../img/images/home/news_arrow_selected.png); +} + +.newsHead span { /* date */ + float: right; + padding: 3px 0 0; +} + +.newsBody { + display: none; + height: 0px; + overflow: hidden; + background-image: url(../img/images/home/news_body_bg.png); +} + +.newsBody#newsBodyFirst { + display: block; + height: 154px; +} + +.newsBody img { /* header graphic */ + display: block; + margin: auto; + width: 305px; + height: 78px; +} + +.newsBody p { /* teaser text */ + padding: 8px; + font-size: 11px; +} + +/* xNews */ + + +/* Community Home */ + +#community { + float: right; + position: relative; + width: 315px; + height: 114px; +} + +#community img { + width: 315px; + height: 114px; +} + +#community table { + position: absolute; + left: 12px; + bottom: 2px; + width: 291px; + height: 35px; + border-collapse: collapse; +} + +#community td { + height: 35px; + padding: 0; + vertical-align: middle; +} + +#communityIntro { + + + width: 227px; + + + font-weight: bold; +} + +#communityGo { + text-align: right; +} + +/* xCommunity Home */ + + + + + + +#feed { + height: 22px; +} + +#page_content #feed a { + float: left; +} \ No newline at end of file diff --git a/services/m=funorb/css/ieFix-2.css b/services/m=funorb/css/ieFix-2.css new file mode 100644 index 000000000..072c65d0e --- /dev/null +++ b/services/m=funorb/css/ieFix-2.css @@ -0,0 +1,93 @@ + + +/*Background override not used anymore as plasma bg replaced with lovely blue gradient */ +/*Background must be a jpg and not png. ms alpha hack not advised*/ +/*body { background:#000 url(../img/images/layout/bg_ie.jpg) repeat-y center top; }*/ +/* remove png background */ +#wrapper { background:none; } + +/*change transparent png subnav menu to solid gif, cannot position elements with ms alpha hack*/ + + + +.menu a iframe { position: absolute; left: -9999px; top: -9999px; margin-left: 0; filter: mask(); } +.menu a:hover iframe { left: 0px; top: 32px; width: 153px; } +.menu a#games:hover iframe { height: 91px; } +.menu a#forums:hover iframe { height: 112px; } +.menu a#help:hover iframe { height: 133px; } + + + + +.menu :hover ul.sub, +.menu :hover ul#lang.sub, +.menu li.top, +.menu li.top:hover a, +.menu li.top:hover a span, +body#navHome .menu li a#home, +body#navAccount .menu li a#account, +body#navGames .menu li a#games, +body#navHelp .menu li a#help, +body#navForums .menu li a#forums, +body#navRegister .menu li a#register, +body#navSignOut .menu li a#signOut, +body#navSignIn .menu li a#signIn, +body#navHome .menu li a#home span, +body#navAccount .menu li a#account span, +body#navGames .menu li a#games span, +body#navHelp .menu li a#help span, +body#navForums .menu li a#forums span, +body#navRegister .menu li a#register span, +body#navSignIn .menu li a#signIn span, +body#navSignOut .menu li a#signOut span, +.menu li a#home, +.menu li a#signIn, +.menu li a#signOut, +.menu li a#account, +.menu li a#games, +.menu li a#help, +.menu li a#forums, +.menu li a#register, +.menu li a#countrydrop, +.menu li a#home span, +.menu li a#account span, +.menu li a#games span, +.menu li a#help span, +.menu li a#forums span, +.menu li a#register span, +.menu li a#countrydrop span, +.menu li a#home:hover span, +.menu li a#account:hover span, +.menu li a#games:hover span, +.menu li a#help:hover span, +.menu li a#forums:hover span, +.menu li a#register:hover span, +.menu li a#home:hover, +.menu li a#signIn:hover, +.menu li a#signOut:hover, +.menu li a#account:hover, +.menu li a#games:hover, +.menu li a#help:hover, +.menu li a#forums:hover, +.menu li a#register:hover, +.menu li a#countrydrop:hover, +.menu li a#countrydrop:hover span, +.menu li a#signOut span, +.menu li a#signOut:hover span, +.menu li a#signIn span, +.menu li a#signIn:hover span, +#lang_div, +.menu :hover ul.sub, +.menu :hover ul#lang.sub { + background-image: url(../img/images/layout/menu.gif?1); +} + +.menu li #lang_div a:hover { + background: none; +} + +/* Minor Bug fix for pointer to show active hover state */ +button, +#returnToGames { + cursor:hand; +} \ No newline at end of file diff --git a/services/m=funorb/css/info-2.css b/services/m=funorb/css/info-2.css new file mode 100644 index 000000000..62debd012 --- /dev/null +++ b/services/m=funorb/css/info-2.css @@ -0,0 +1,227 @@ + + + +.sectionTrail { + float: left; +} + +.sectionServerlist { + float: right; + margin-right: 10px; +} + +.intro { + height: 173px; + margin-bottom: 5px; + background: black -4px 0px no-repeat; +} + +.introDescription { + float: left; + width: 567px; + height: 173px; +} + +.introDescription div { + padding: 123px 8px 0 8px; + color: white; +} + +.introDescription a { + color: #FFD200; + text-decoration: none; +} + +#navGames .buttonWide { + float: right; + margin-bottom: 5px; +} + +.buttonPlayBig { + height: 70px; + float: right; + display: block; + width: 169px; + background: top url(../img/images/info/button_play.gif); +} + +.buttonPlayBig:hover { + background-position: bottom; +} + +.screenshotsFrame { + float:left; + width: 351px; + height: 263px; + margin-top: 4px; +} + +.screenshotsImage { + float: left; + margin-top: 4px; + width: 351px; + height: 263px; +} + +#screenshotsThumbs { + float: right; + width: 83px; + margin-top: 4px; +} + +.screenshotsThumb { + display: block; + margin-bottom: 5px; + text-decoration: none; +} + +.screenshotsThumb div { + height: 62px; + background: transparent url(../img/images/layout/loading.gif) no-repeat -83px -62px; + cursor: pointer; +} + +.benefitsPadding { + height: 4px; + font-size: 1px; +} + +.benefitsContent { + margin: auto; + width: 281px; + height: 263px; + background: #051C37; +} + +.benefitsList { + height: 208px; +} + +.benefitsList ul { + margin: 0; + padding: 4px 8px 8px 8px; + text-align: left; + font-size: 14px; + color: white; + line-height: 2em; +} + +.benefitsList li { + list-style: none; + padding-left: 17px; + background: url(../img/images/info/benefits_bullet.gif) no-repeat 4px 10px; + +} + +#fullscreen { + text-decoration: none; +} + +.buttonSubscribe { + display: block; + margin: auto; + width: 270px; + height: 49px; + background-position: top; +} + +.buttonSubscribe:hover { + background-position: bottom; +} + +.faqsList { + margin: 0 5px 5px; + background: black; +} + +.faqsList ol { + margin: 0; + padding: 8px 8px 11px 34px; + line-height: 2em; + color: #FFD200; +} + +.faqsAnswer { + margin-top: 0; + clear: both; + padding: 8px; +} + +.faqsAnswer h3 { + margin: 6px 0 12px 0; + font-size: 12px; + font-weight: normal; + color: #FFD200; +} + +.faqsBack { + text-align: right; +} + +.descriptionFix { + height: 1px; + font-size: 5px; +} + +/* Overrides of default components */ + +.subsection#screenshots { + float: left; + width: 447px; +} + +.subsection#screenshots .subsectionContent { + padding: 0 4px; + height: 271px; + background: #202020; +} + +.subsection#benefits { + float: right; + width: 289px; +} + +.subsection#benefits .subsectionContent { + height: 271px; + background: #0B2540; + text-align: center; + margin-bottom: 5px; +} + +.subsection#description, .subsection#faqs, .subsection#furtherBenefits { + margin-bottom: 5px; +} + +.subsection#description .subsectionContent, +.subsection#furtherBenefits .subsectionContent { + background: #0B2540; +} + +.subsection#description .subsectionContent div, +.subsection#furtherBenefits .subsectionContent div { + padding: 0 8px; +} + +.subsection#credits .subsectionContent div { + position: relative; + padding: 0 8px 8px; +} + +.subsection#credits p { + line-height: 2em; +} + +.subsection#credits .articleBacktotop { + position: absolute; + bottom: 8px; + right: 8px; +} + +.subsection#faqs .subsectionContent, .subsection#credits .subsectionContent { + background: #0B2540; + padding-top: 5px; +} + +#faqs .subsectionContent { + height: 1%; +} \ No newline at end of file diff --git a/services/m=funorb/css/info-5.css b/services/m=funorb/css/info-5.css new file mode 100644 index 000000000..e49ccf9af --- /dev/null +++ b/services/m=funorb/css/info-5.css @@ -0,0 +1,225 @@ + + + +.sectionTrail { + float: left; +} + +.sectionServerlist { + float: right; + margin-right: 10px; +} + +.intro { + height: 173px; + margin-bottom: 5px; + background: black -4px 0px no-repeat; +} + +.introDescription { + float: left; + width: 567px; + height: 173px; +} + +.introDescription div { + padding: 123px 8px 0 8px; + color: white; +} + +.introDescription a { + color: #FFD200; + text-decoration: none; +} + +#navGames .buttonWide { + float: right; + margin-bottom: 5px; +} + +.buttonPlayBig { + height: 70px; + float: right; + display: block; + width: 169px; + background: top url(../img/images/info/button_play.gif); +} + +.buttonPlayBig:hover { + background-position: bottom; +} + +.screenshotsFrame { + float:left; + width: 351px; + height: 263px; + margin-top: 4px; +} + +.screenshotsImage { + float: left; + margin-top: 4px; + width: 351px; + height: 263px; +} + +#screenshotsThumbs { + float: right; + width: 83px; + margin-top: 4px; +} + +.screenshotsThumb { + display: block; + margin-bottom: 5px; + text-decoration: none; +} + +.screenshotsThumb div { + height: 62px; + background: transparent url(../img/images/layout/loading.gif) no-repeat -83px -62px; + cursor: pointer; +} + +.benefitsPadding { + height: 4px; + font-size: 1px; +} + +.benefitsContent { + margin: auto; + width: 281px; + height: 263px; + background: #051C37; +} + +.benefitsList { + height: 208px; +} + +.benefitsList ul { + margin: 0; + padding: 4px 8px 8px 8px; + text-align: left; + font-size: 14px; + color: white; + line-height: 2em; +} + +.benefitsList li { + list-style: none; + padding-left: 17px; + background: url(../img/images/info/benefits_bullet.gif) no-repeat 4px 10px; + +} + +#fullscreen { + text-decoration: none; +} + +.buttonSubscribe { + display: block; + margin: auto; + width: 270px; + height: 49px; + background-position: top; +} + +.buttonSubscribe:hover { + background-position: bottom; +} + +.faqsList { + margin: 0 5px 5px; + background: black; +} + +.faqsList ol { + margin: 0; + padding: 8px 8px 11px 34px; + line-height: 2em; + color: #FFD200; +} + +.faqsAnswer { + margin-top: 0; + clear: both; + padding: 8px; +} + +.faqsAnswer h3 { + margin: 6px 0 12px 0; + font-size: 12px; + font-weight: normal; + color: #FFD200; +} + +.faqsBack { + text-align: right; +} + +.descriptionFix { + height: 1px; + font-size: 5px; +} + +/* Overrides of default components */ + +.subsection#screenshots { + float: left; + width: 447px; +} + +.subsection#screenshots .subsectionContent { + padding: 0 4px; + height: 271px; + background: #202020; +} + +.subsection#benefits { + float: right; + width: 289px; +} + +.subsection#benefits .subsectionContent { + height: 271px; + background: #0B2540; + text-align: center; + margin-bottom: 5px; +} + +.subsection#description, .subsection#faqs { + margin-bottom: 5px; +} + +.subsection#description .subsectionContent { + background: #0B2540; +} + +.subsection#description .subsectionContent div { + padding: 0 8px; +} + +.subsection#credits .subsectionContent div { + position: relative; + padding: 0 8px 8px; +} + +.subsection#credits p { + line-height: 2em; +} + +.subsection#credits .articleBacktotop { + position: absolute; + bottom: 8px; + right: 8px; +} + +.subsection#faqs .subsectionContent, .subsection#credits .subsectionContent { + background: #0B2540; + padding-top: 5px; +} + +#faqs .subsectionContent { + height: 1%; +} \ No newline at end of file diff --git a/services/m=funorb/css/info-6.css b/services/m=funorb/css/info-6.css new file mode 100644 index 000000000..62debd012 --- /dev/null +++ b/services/m=funorb/css/info-6.css @@ -0,0 +1,227 @@ + + + +.sectionTrail { + float: left; +} + +.sectionServerlist { + float: right; + margin-right: 10px; +} + +.intro { + height: 173px; + margin-bottom: 5px; + background: black -4px 0px no-repeat; +} + +.introDescription { + float: left; + width: 567px; + height: 173px; +} + +.introDescription div { + padding: 123px 8px 0 8px; + color: white; +} + +.introDescription a { + color: #FFD200; + text-decoration: none; +} + +#navGames .buttonWide { + float: right; + margin-bottom: 5px; +} + +.buttonPlayBig { + height: 70px; + float: right; + display: block; + width: 169px; + background: top url(../img/images/info/button_play.gif); +} + +.buttonPlayBig:hover { + background-position: bottom; +} + +.screenshotsFrame { + float:left; + width: 351px; + height: 263px; + margin-top: 4px; +} + +.screenshotsImage { + float: left; + margin-top: 4px; + width: 351px; + height: 263px; +} + +#screenshotsThumbs { + float: right; + width: 83px; + margin-top: 4px; +} + +.screenshotsThumb { + display: block; + margin-bottom: 5px; + text-decoration: none; +} + +.screenshotsThumb div { + height: 62px; + background: transparent url(../img/images/layout/loading.gif) no-repeat -83px -62px; + cursor: pointer; +} + +.benefitsPadding { + height: 4px; + font-size: 1px; +} + +.benefitsContent { + margin: auto; + width: 281px; + height: 263px; + background: #051C37; +} + +.benefitsList { + height: 208px; +} + +.benefitsList ul { + margin: 0; + padding: 4px 8px 8px 8px; + text-align: left; + font-size: 14px; + color: white; + line-height: 2em; +} + +.benefitsList li { + list-style: none; + padding-left: 17px; + background: url(../img/images/info/benefits_bullet.gif) no-repeat 4px 10px; + +} + +#fullscreen { + text-decoration: none; +} + +.buttonSubscribe { + display: block; + margin: auto; + width: 270px; + height: 49px; + background-position: top; +} + +.buttonSubscribe:hover { + background-position: bottom; +} + +.faqsList { + margin: 0 5px 5px; + background: black; +} + +.faqsList ol { + margin: 0; + padding: 8px 8px 11px 34px; + line-height: 2em; + color: #FFD200; +} + +.faqsAnswer { + margin-top: 0; + clear: both; + padding: 8px; +} + +.faqsAnswer h3 { + margin: 6px 0 12px 0; + font-size: 12px; + font-weight: normal; + color: #FFD200; +} + +.faqsBack { + text-align: right; +} + +.descriptionFix { + height: 1px; + font-size: 5px; +} + +/* Overrides of default components */ + +.subsection#screenshots { + float: left; + width: 447px; +} + +.subsection#screenshots .subsectionContent { + padding: 0 4px; + height: 271px; + background: #202020; +} + +.subsection#benefits { + float: right; + width: 289px; +} + +.subsection#benefits .subsectionContent { + height: 271px; + background: #0B2540; + text-align: center; + margin-bottom: 5px; +} + +.subsection#description, .subsection#faqs, .subsection#furtherBenefits { + margin-bottom: 5px; +} + +.subsection#description .subsectionContent, +.subsection#furtherBenefits .subsectionContent { + background: #0B2540; +} + +.subsection#description .subsectionContent div, +.subsection#furtherBenefits .subsectionContent div { + padding: 0 8px; +} + +.subsection#credits .subsectionContent div { + position: relative; + padding: 0 8px 8px; +} + +.subsection#credits p { + line-height: 2em; +} + +.subsection#credits .articleBacktotop { + position: absolute; + bottom: 8px; + right: 8px; +} + +.subsection#faqs .subsectionContent, .subsection#credits .subsectionContent { + background: #0B2540; + padding-top: 5px; +} + +#faqs .subsectionContent { + height: 1%; +} \ No newline at end of file diff --git a/services/m=funorb/css/jagex/global-38.css b/services/m=funorb/css/jagex/global-38.css new file mode 100644 index 000000000..33f14820c --- /dev/null +++ b/services/m=funorb/css/jagex/global-38.css @@ -0,0 +1,783 @@ + + + + + +/* Tags */ +html {height:100%} +td, p, div, a, li, span { + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-size: 12px; +} +body { + background: #000; + text-align: center; + margin:0px; + margin-top:26px; + font-family:Arial,Helvetica,FreeSans,sans-serif; + color:#ccc; + font-size:12px; + height: 100%; +} +a { + text-decoration:underline; + color:#fff; +} +a:hover { + text-decoration:underline; +} +label { + cursor:pointer; + font-weight:bold; + line-height:16px; +} +label span { + font-size:9px; + color: #dbc68f; +} +img { + padding:0px; + margin:0px; + border:none; + display:block; +} +fieldset { + margin:10px; + border:solid 1px #000; + color:#fff; +} +h1 { + margin-top: 16px; +} +/* === Disabled +fieldset:hover { + border:solid 1px #fff; + background:#26221d; +} + Disabled === */ +fieldset table { + margin:20px; +} +legend { + color:#dbc68f; +} +form { + margin:0px; + padding:0px; +} +select, option { + font-size:11px; + margin-top:5px; + background:#201d19; + color: #dbc68f; +} +select { + border:solid 1px #453e33; +} +textarea { + background:none; + border:none; + width:356px; + height:90px; + padding:4px; + color: #dbc68f; + font-size:12px; + font-family:verdana; + overflow:auto; +} +td { + vertical-align:top; +} +td a { + font-size:12px; +} +td span { + font-size:12px; +} +ol li { + padding:5px; +} +.textarea { + background: #333 url(../../img/jagex/textarea.gif) no-repeat; +} +.textarea_hover, .textarea:hover { + background: #444 url(../../img/jagex/textarea.gif) no-repeat right; +} +.textarea, .textarea_hover { + width:366px; + height:100px; + margin-top:10px; +} + +.textarea2 { + background: #333 url(../../img/jagex/textarea.gif) no-repeat; +} +.textarea2_hover, .textarea2:hover { + background: #444 url(../../img/jagex/textarea.gif) no-repeat right; +} +.textarea2, .textarea2_hover { + width:366px; + height:100px; + margin-top: 5px; +} +iframe#terms { + width:640px; + height:150px; + margin-left:10px; + margin-bottom:20px; +} +/* xTags */ +/* General */ +#termsContainer { + width:660px; + margin-left:auto; + margin-right:auto; +} +#termsContainer label { + padding-left:20px; +} +.hspace { + margin-left: 4px; + margin-right: 4px; +} +.clear { + clear:both; + font-size:1px; + height:1px; +} +.infoBox { + width:507px; + background:#171512; + margin: 10px; +} +.infoList { + margin: 10px; + color: #FFFFFF; +} +.smallInfoBox { + width:360px; + background:#171512; +} +.infoTopCnrs { + height:4px; + background: url(../../img/jagex/info_cnrs.gif) no-repeat top; + font-size:1px; +} +.smallInfoTopCnrs { + height:4px; + background: url(../../img/jagex/info_cnrs_small.gif) no-repeat top; + font-size:1px; +} +.infoContent { + border-left:1px solid #6c6c6c; + border-right:1px solid #6c6c6c; + color:#fff; +} +.infoBotCnrs { + height:4px; + background: url(../../img/jagex/info_cnrs.gif) no-repeat bottom; + font-size:1px; +} +.smallInfoBotCnrs { + height:4px; + background: url(../../img/jagex/info_cnrs_small.gif) no-repeat bottom; + font-size:1px; +} +.infoBox p, .smallInfoBox p { + padding-left:20px !important; + margin:0px; + margin-left:10px; + margin-right:10px; +} +.infoList p { + padding-left:20px !important; + margin:0px; + margin-left:10px; + margin-right:10px; +} +.inputLong { + background: #333 url(../../img/jagex/input_long.gif) no-repeat; +} +.inputLong_hover, +.inputLong:hover +{ + background: #444 url(../../img/jagex/input_long.gif) no-repeat right; +} +.inputLong, +.inputLong_hover { + width:366px; +} +.inputLong, +.inputLong_hover, +.inputMedium, +.inputMedium_hover, +.inputSmall, +.inputSmall_hover { + height:20px; +} +.inputLong input, +.inputLong_hover input { + width:356px; +} +.inputMedium { + background: #333 url(../../img/jagex/input_med.gif) no-repeat; + width:176px; +} +.inputMedium_hover, +.inputMedium:hover +{ + background: #444 url(../../img/jagex/input_med.gif) no-repeat right; +} +.inputMedium, +.inputMedium_hover { + width:176px; +} +.inputMedium input, +.inputMedium_hover input { + width:166px; +} +.inputSmall { + background: #333 url(../../img/jagex/input_small.gif) no-repeat; +} +.inputSmall_hover, +.inputSmall:hover +{ + background: #444 url(../../img/jagex/input_small.gif) no-repeat right; +} +.inputSmall, +.inputSmall_hover { + width:85px; +} +.inputSmall input, +.inputSmall_hover input { + width:75px; +} +.inputLong input, +.inputMedium input, +.inputSmall input, +.inputLong_hover input, +.inputMedium_hover input, +.inputSmall_hover input { + padding-left:5px; + padding-right:5px; + padding-top:3px; + background:none; + border:none; + font-size:12px; + color: #dbc68f; +} +.bullet1 { + margin-top:30px; + margin-bottom:30px; +} +.bullet1 li { + list-style: url(../../img/jagex/bullet_silver.gif); + margin:15px; +} +.bullet2 { + margin-top:0px; + margin-bottom:30px; + margin-left:auto; + margin-right:auto; + list-style: url(../../img/jagex/bullet_gold.gif); +} +.bullet2 li { + margin-bottom:12px; + color:#e5ad65; +} +b.titleInfo { + color:#dbc68f !important; +} +.bullet2 { + margin-top:0px; + margin-bottom:30px; + width:600px; + margin-left:auto; + margin-right:auto; + list-style: url(../../img/jagex/bullet_gold.gif); +} +a.button, input.button, button.button { + display:block; + background: #333 url(../../img/jagex/button.gif); + width:109px; + height:29px; + color:#fff !important; + text-decoration:none; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-weight:bold; + text-align:center; + line-height:31px; + cursor: pointer !important; + cursor: hand; + border: none; +} +a.buttonlarge, input.buttonlarge, button.buttonlarge { + background: #333 url(../../img/jagex/button2.gif); +} +a.buttonlarge2, input.buttonlarge2, button.buttonlarge2 { + background: #333 url(../../img/jagex/button2a.gif); +} +a.buttonlarge, input.buttonlarge, button.buttonlarge, a.buttonlarge2, input.buttonlarge2, button.buttonlarge2 { + display:block; + width:140px; + height:29px; + color:#fff !important; + text-decoration:none; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-weight:bold; + text-align:center; + line-height:32px; + border: none; +} +button.buttonlarge, button.buttonlarge2 { + display: inline; + display: inline !important; +} +a.buttonLong, input.buttonLong, button.buttonLong { + display:block; + background: #333 url(../../img/jagex/button_long.gif); + width:195px; + height:29px; + color:#fff !important; + text-decoration:none; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-weight:bold; + text-align:center; + line-height:31px; + cursor: pointer !important; + cursor: hand; + border:none; +} +a.button250, input.button250, button.button250 { + background: #333 url(../../img/jagex/button_250.gif); +} +input.button250a { + background: #333 url(../../img/jagex/button_250a.gif); +} +a.button250, input.button250, button.button250, input.button250a { + display:block; + width:250px; + height:29px; + color:#fff !important; + text-decoration:none; + font-family:Arial,Helvetica,FreeSans,sans-serif; + font-weight:bold; + text-align:center; + line-height:31px; + cursor: pointer !important; + cursor: hand; + border:none; +} +/* === not supported ie +input[type="button"], +input[type="submit"] { } +not supported ie === */ +.buttonList { + width:218px; + margin: 20px 0px 0px 0px; + padding:0px; + height:29px; +} +.buttonList li { + list-style:none; + float:left; +} +.center { + text-align:center; + margin-left:auto; + margin-right:auto; +} +.vAlignCenter td { + vertical-align:middle; +} +.right { + margin-left:auto; +} +.leftIndent { + margin-left:40px; +} +.topIndent { + margin-top:40px; +} +a.button:hover,a.buttonlarge:hover,a.buttonlarge2:hover { + text-decoration:none; +} +#contentLeft .title { + background: #453e33 url(../../img/jagex/title_lftCnr.gif) no-repeat top left; +} +#contentLeft .title span { + display:block; + height:26px; +} +#contentRight .title, #contentLeft .title span { + background: #453e33 url(../../img/jagex/title_rghtCnr.gif) no-repeat top right; +} +.title, legend { + font-size:14px; + font-weight:bold; + height:26px; + line-height:26px; +} +/* xGeneral */ +/* Page Setup */ +body#billingHome #contentRight { + width:297px; + background: #453e33 url(../../img/jagex/bg_gradient.jpg) repeat-x; +} +body#billingDetails fieldset { + float:left; + width:335px; + background:#26221d; +} +body#billingInfo table { + width:100%; +} +body#billingInfo #contentRight { + width:200px; +} +body#billingInfo #contentLeft { + margin-right:5px; + width:100%; +} +/* xPage Setup */ +/* Site Layout */ +#container { + position:relative; + text-align:left; + margin-left:auto; + margin-right:auto; + width: 750px; +} +/* Header */ + #header { + background: #302a21; + margin-bottom:4px; + } + #innerHeader { + background: url(../../img/jagex/header_bg.jpg) repeat-x; + height:106px; + } + #headerNav { + position:absolute; + top:5px; + right:10px; + margin:0px; + padding:0px; + } + #headerNavLarge { + position:absolute; + top:5px; + right:220px; + margin:0px; + padding:0px; + } + #headerNav li { + list-style:none; + float:left; + padding-right:10px; + background: url(../../img/jagex/header_button_big.jpg) no-repeat; + text-align:center; + } + #headerNavLarge li { + list-style:none; + float:left; + padding-right:10px; + background: url(../../img/jagex/header_button_big.jpg) no-repeat; + text-align:center; + } + #headerNav span { + color:#ffb900; + text-decoration:none; + display:block; + width:200px; + height:28px; + line-height:20px; + font-size:10px; + font-weight:bold; + } + #headerNavLarge span { + color:#ffb900; + text-decoration:none; + display:block; + width:200px; + height:28px; + line-height:20px; + font-size:10px; + font-weight:bold; + } + #headerNavLarge span a, #headerNav span a { + font-size:10px; + font-weight:bold; + } + #headerNav a:hover, #headerNavLarge a:hover{ + text-decoration:underline; + color:#ffb900; + } + #headerNav a, #headerNavLarge a { + text-decoration:none; + color:#ffb900; + } + #innerHeaderLogo { + float:left; + background: url(../../img/jagex/header_logo_blank.jpg) no-repeat; + height:106px; + width:339px; + } + #innerHeaderLogo img { + float: left; + } + #innerHeaderLogoFunOrb { + background-image: url(../../img/jagex/header_logo_funorb.jpg); + } + #innerHeaderLogoMechScape { + background-image: url(../../img/jagex/header_logo_mechscape.jpg); + } + #innerHeaderLogoRuneScape { + background-image: url(../../img/jagex/header_logo_runescape2.jpg); + } + #innerHeaderLogoJagex { + background-image: url(../../img/jagex/header_logo.jpg?1); + } + #innerHeaderLogoLink { + display: block; + width: 225px; + height: 73px; + margin: 16px 0 0 16px; + } +/* Not used... */ + #forgottenButton { + float:left; + background: url(../../img/jagex/forgotten_password.gif) no-repeat; + height:97px; + width:349px; + } +/* Not used... */ + #stolenButton { + float:left; + background: url(../../img/jagex/stolen_password.gif) no-repeat; + height:97px; + width:349px; + } + #innerHeaderCnr { + background: url(../../img/jagex/header_rghtCnr.jpg) no-repeat; + height:106px; + width:16px; + float:right; + } + #logoJagex { + background: url(../../img/jagex/logo_jagex.gif?1) no-repeat; + height:45px; + width:132px; + position:absolute; + right:15px; + top:50px; + } + /* xHeader */ + /* content */ + #content { + margin-bottom:4px; + position:relative; + } + /* Content Left */ + #contentLeft { + position:relative; + background: #201d19; + line-height: 14px; + padding-bottom:5px; + } + #contentLeft .title, #contentLeft h4 { + color: #dbc68f; + } + #contentLeft p, #contentLeft h4 { + margin-bottom: 0px; + padding-left:10px; + padding-right:10px; + padding-bottom:10px; + } + #contentLeft .title { + padding-left:10px; + } + #contentLeft h4 { + margin-top:25px; + } + #contentLeft a { + color:#fec800; + } + /* Billing Options*/ + .jagexBox { + width:361px; + } + .jagexBoxSmall { + width:240px; + } + .jagexBox, + .jagexBoxSmall { + margin:5px; + float:left; + } + .jagexBoxSmall { + margin-right:2px; + } + .jagexBox p a, + .jagexBoxSmall p a { + text-decoration:none; + } + .jagexBox .topCnrs { + background:url(../../img/jagex/jagex_Cnrs.gif) no-repeat top; + } + .jagexBoxSmall .topCnrs { + background:url(../../img/jagex/jagex_Cnrs_Small.gif) no-repeat top; + } + .jagexBox .topCnrs, + .jagexBoxSmall .topCnrs { + height:5px; + font-size:1px; + } + .jagexBox .botCnrs { + background:url(../../img/jagex/jagex_CnrsBot.gif) no-repeat scroll center bottom; + } + .jagexBoxSmall .botCnrs { + background:url(../../img/jagex/jagex_CnrsBot_small.gif) no-repeat scroll center bottom; + } + .jagexBox .botCnrs, + .jagexBoxSmall .botCnrs { + height:25px; + font-size:1px; + } + .jagexBox .content, + .jagexBoxSmall .content { + border-left:solid 2px #151310; + border-right:solid 2px #151310; + background:#302a21; + padding:5px; + color:#fff; + font-size:12px; + padding-bottom:25px; + } + .jagexBox img, + .jagexBoxSmall img { + margin:5px; + float:left; + } + .jagexBox b, + .jagexBoxSmall b { + font-size:14px; + } + .jagexBox span, + .jagexBoxSmall span { + color:#dbc68f; + } + .jagexBox p, + .jagexBoxSmall p { + margin:0px; + } + .subscribe { + float: right; + bottom:0px; + right:0px; + width:119px; + height:25px; + background:url(../../img/billingv4/billingOption_button.gif) no-repeat; + z-index:100; + text-align:center; + line-height:20px; + text-decoration:none; + } + /* xBilling Options*/ + /* Close Content*/ + .closeContent { + padding-bottom:6px; + background:#000; + } + .closeContent div { + height:10px; + background: #201d19 url(../../img/jagex/content_footer_lftCnr.gif) no-repeat bottom left; + padding-left:10px; + } + .closeContent span { + display:block; + height:10px; + background: #201d19 url(../../img/jagex/content_footer_rghtCnr.gif) no-repeat bottom right; + } + /* Close Content*/ + /* Footer */ + #footer { + background: #302a21 url(../../img/jagex/footer_rghtCnr.gif) no-repeat bottom right; + font-size:9px; + margin-top:4px; + position:relative; + } + #footer ul { + display:block; + background: #302a21 url(../../img/jagex/footer_lftCnr.gif) no-repeat bottom left; + margin:0px; + padding-left:5px; + margin-right:100px; + padding-top:5px; + height:18px; + } + #footer li { + display:inline; + } + #footer a { + font-size:9px; + letter-spacing:0.9px; + font-weight:bold; + } + #footer a:hover { + color: #d6c4a3; + } + #footer, #footer a { + color:#a59374; + text-decoration:none; + } + /* T&C */ + #TnC { + text-align: center; + margin-top: 5px; + font-size: 9px; + } + #TnC a { + color: #FEC800; + font-size: 9px; + } + /* xT&C */ + /* copyRight */ + #copyRight { + font-size: 9px; + position:absolute; + right:10px; + top:6px; + } + /* xcopyRight */ + /* xFooter */ +/* xSite Layout */ +/* Original Layout */ +.alert, +.alert forminfo { + font-size: 8pt; + font-weight:bold; + color: #FFBB00; +} +.alert b { + font-weight: bolder; +} +.forminfo { + font-size: 8pt; + color:#dbc68f; +} +.forminfo b { + font-weight: bolder; +} +.info { + font-weight: bold; + color: #880000; +} +.error { + font-weight: bold; + color: #FFBB00; + padding: 15px; +} +.error b { + font-weight: bolder; +} diff --git a/services/m=funorb/css/jagex/print-38.css b/services/m=funorb/css/jagex/print-38.css new file mode 100644 index 000000000..464c193b4 --- /dev/null +++ b/services/m=funorb/css/jagex/print-38.css @@ -0,0 +1,38 @@ +body { + margin:50px; + margin-left:20px; + color:#000; + font-family:arial; +} + +a { + text-decoration:none; + color:#000; + font-weight:bold; +} + +p { + margin:20px 0px 20px 0px; +} + +b, .title, dt { + font-weight:bold; + font-size:15px; +} + +dl { + border:solid 1px #000; + float:left; + width:200px; + margin:5px; + padding:5px; + background:#ccc; +} + +h4 { + font-size:25px; +} + +.button, #footer, ul, .infoBox, .title { + visibility:hidden; +} \ No newline at end of file diff --git a/services/m=funorb/css/jquery_1_3_1-0.js b/services/m=funorb/css/jquery_1_3_1-0.js new file mode 100644 index 000000000..c327fae81 --- /dev/null +++ b/services/m=funorb/css/jquery_1_3_1-0.js @@ -0,0 +1,19 @@ +/* + * jQuery JavaScript Library v1.3.1 + * http://jquery.com/ + * + * Copyright (c) 2009 John Resig + * Dual licensed under the MIT and GPL licenses. + * http://docs.jquery.com/License + * + * Date: 2009-01-21 20:42:16 -0500 (Wed, 21 Jan 2009) + * Revision: 6158 + */ +(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.makeArray(E))},selector:"",jquery:"1.3.1",size:function(){return this.length},get:function(E){return E===g?o.makeArray(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,find:function(E){if(this.length===1&&!/,/.test(E)){var G=this.pushStack([],"find",E);G.length=0;o.find(E,this[0],G);return G}else{var F=o.map(this,function(H){return o.find(E,H)});return this.pushStack(/[^+>] [^+>]/.test(E)?o.unique(F):F,"find",E)}},clone:function(F){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.cloneNode(true),H=document.createElement("div");H.appendChild(I);return o.clean([H.innerHTML])[0]}else{return this.cloneNode(true)}});var G=E.find("*").andSelf().each(function(){if(this[h]!==g){this[h]=null}});if(F===true){this.find("*").andSelf().each(function(I){if(this.nodeType==3){return}var H=o.data(this,"events");for(var K in H){for(var J in H[K]){o.event.add(G[I],K,H[K][J],H[K][J].data)}}})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var F=o.expr.match.POS.test(E)?o(E):null;return this.map(function(){var G=this;while(G&&G.ownerDocument){if(F?F.index(G)>-1:o(G).is(E)){return G}G=G.parentNode}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML:null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(K,N,M){if(this[0]){var J=(this[0].ownerDocument||this[0]).createDocumentFragment(),G=o.clean(K,(this[0].ownerDocument||this[0]),J),I=J.firstChild,E=this.length>1?J.cloneNode(true):J;if(I){for(var H=0,F=this.length;H0?E.cloneNode(true):J)}}if(G){o.each(G,z)}}return this;function L(O,P){return N&&o.nodeName(O,"table")&&o.nodeName(P,"tr")?(O.getElementsByTagName("tbody")[0]||O.appendChild(O.ownerDocument.createElement("tbody"))):O}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(G,E,I){if(E=="width"||E=="height"){var K,F={position:"absolute",visibility:"hidden",display:"block"},J=E=="width"?["Left","Right"]:["Top","Bottom"];function H(){K=E=="width"?G.offsetWidth:G.offsetHeight;var M=0,L=0;o.each(J,function(){M+=parseFloat(o.curCSS(G,"padding"+this,true))||0;L+=parseFloat(o.curCSS(G,"border"+this+"Width",true))||0});K-=Math.round(M+L)}if(o(G).is(":visible")){H()}else{o.swap(G,F,H)}return Math.max(0,K)}return o.curCSS(G,E,I)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,R){if(typeof R==="number"){R+=""}if(!R){return}if(typeof R==="string"){R=R.replace(/(<(\w+)[^>]*?)\/>/g,function(T,U,S){return S.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?T:U+">"});var O=o.trim(R).toLowerCase();var Q=!O.indexOf("",""]||!O.indexOf("",""]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"","
"]||!O.indexOf("",""]||(!O.indexOf("",""]||!O.indexOf("",""]||!o.support.htmlSerialize&&[1,"div
","
"]||[0,"",""];L.innerHTML=Q[1]+R+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var N=!O.indexOf(""&&O.indexOf("=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(R)){L.insertBefore(K.createTextNode(R.match(/^\s*/)[0]),L.firstChild)}R=o.makeArray(L.childNodes)}if(R.nodeType){G.push(R)}else{G=o.merge(G,R)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E*",this).remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); +/* + * Sizzle CSS Selector Engine - v0.9.3 + * Copyright 2009, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var Q=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]+['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[]+)+|[>+~])(\s*,\s*)?/g,K=0,G=Object.prototype.toString;var F=function(X,T,aa,ab){aa=aa||[];T=T||document;if(T.nodeType!==1&&T.nodeType!==9){return[]}if(!X||typeof X!=="string"){return aa}var Y=[],V,ae,ah,S,ac,U,W=true;Q.lastIndex=0;while((V=Q.exec(X))!==null){Y.push(V[1]);if(V[2]){U=RegExp.rightContext;break}}if(Y.length>1&&L.exec(X)){if(Y.length===2&&H.relative[Y[0]]){ae=I(Y[0]+Y[1],T)}else{ae=H.relative[Y[0]]?[T]:F(Y.shift(),T);while(Y.length){X=Y.shift();if(H.relative[X]){X+=Y.shift()}ae=I(X,ae)}}}else{var ad=ab?{expr:Y.pop(),set:E(ab)}:F.find(Y.pop(),Y.length===1&&T.parentNode?T.parentNode:T,P(T));ae=F.filter(ad.expr,ad.set);if(Y.length>0){ah=E(ae)}else{W=false}while(Y.length){var ag=Y.pop(),af=ag;if(!H.relative[ag]){ag=""}else{af=Y.pop()}if(af==null){af=T}H.relative[ag](ah,af,P(T))}}if(!ah){ah=ae}if(!ah){throw"Syntax error, unrecognized expression: "+(ag||X)}if(G.call(ah)==="[object Array]"){if(!W){aa.push.apply(aa,ah)}else{if(T.nodeType===1){for(var Z=0;ah[Z]!=null;Z++){if(ah[Z]&&(ah[Z]===true||ah[Z].nodeType===1&&J(T,ah[Z]))){aa.push(ae[Z])}}}else{for(var Z=0;ah[Z]!=null;Z++){if(ah[Z]&&ah[Z].nodeType===1){aa.push(ae[Z])}}}}}else{E(ah,aa)}if(U){F(U,T,aa,ab)}return aa};F.matches=function(S,T){return F(S,null,null,T)};F.find=function(Z,S,aa){var Y,W;if(!Z){return[]}for(var V=0,U=H.order.length;V":function(X,T,Y){if(typeof T==="string"&&!/\W/.test(T)){T=Y?T:T.toUpperCase();for(var U=0,S=X.length;U=0){if(!U){S.push(X)}}else{if(U){T[W]=false}}}}return false},ID:function(S){return S[1].replace(/\\/g,"")},TAG:function(T,S){for(var U=0;S[U]===false;U++){}return S[U]&&P(S[U])?T[1]:T[1].toUpperCase()},CHILD:function(S){if(S[1]=="nth"){var T=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(S[2]=="even"&&"2n"||S[2]=="odd"&&"2n+1"||!/\D/.test(S[2])&&"0n+"+S[2]||S[2]);S[2]=(T[1]+(T[2]||1))-0;S[3]=T[3]-0}S[0]="done"+(K++);return S},ATTR:function(T){var S=T[1].replace(/\\/g,"");if(H.attrMap[S]){T[1]=H.attrMap[S]}if(T[2]==="~="){T[4]=" "+T[4]+" "}return T},PSEUDO:function(W,T,U,S,X){if(W[1]==="not"){if(W[3].match(Q).length>1){W[3]=F(W[3],null,null,T)}else{var V=F.filter(W[3],T,U,true^X);if(!U){S.push.apply(S,V)}return false}}else{if(H.match.POS.test(W[0])){return true}}return W},POS:function(S){S.unshift(true);return S}},filters:{enabled:function(S){return S.disabled===false&&S.type!=="hidden"},disabled:function(S){return S.disabled===true},checked:function(S){return S.checked===true},selected:function(S){S.parentNode.selectedIndex;return S.selected===true},parent:function(S){return !!S.firstChild},empty:function(S){return !S.firstChild},has:function(U,T,S){return !!F(S[3],U).length},header:function(S){return/h\d/i.test(S.nodeName)},text:function(S){return"text"===S.type},radio:function(S){return"radio"===S.type},checkbox:function(S){return"checkbox"===S.type},file:function(S){return"file"===S.type},password:function(S){return"password"===S.type},submit:function(S){return"submit"===S.type},image:function(S){return"image"===S.type},reset:function(S){return"reset"===S.type},button:function(S){return"button"===S.type||S.nodeName.toUpperCase()==="BUTTON"},input:function(S){return/input|select|textarea|button/i.test(S.nodeName)}},setFilters:{first:function(T,S){return S===0},last:function(U,T,S,V){return T===V.length-1},even:function(T,S){return S%2===0},odd:function(T,S){return S%2===1},lt:function(U,T,S){return TS[3]-0},nth:function(U,T,S){return S[3]-0==T},eq:function(U,T,S){return S[3]-0==T}},filter:{CHILD:function(S,V){var Y=V[1],Z=S.parentNode;var X=V[0];if(Z&&(!Z[X]||!S.nodeIndex)){var W=1;for(var T=Z.firstChild;T;T=T.nextSibling){if(T.nodeType==1){T.nodeIndex=W++}}Z[X]=W-1}if(Y=="first"){return S.nodeIndex==1}else{if(Y=="last"){return S.nodeIndex==Z[X]}else{if(Y=="only"){return Z[X]==1}else{if(Y=="nth"){var ab=false,U=V[2],aa=V[3];if(U==1&&aa==0){return true}if(U==0){if(S.nodeIndex==aa){ab=true}}else{if((S.nodeIndex-aa)%U==0&&(S.nodeIndex-aa)/U>=0){ab=true}}return ab}}}}},PSEUDO:function(Y,U,V,Z){var T=U[1],W=H.filters[T];if(W){return W(Y,V,U,Z)}else{if(T==="contains"){return(Y.textContent||Y.innerText||"").indexOf(U[3])>=0}else{if(T==="not"){var X=U[3];for(var V=0,S=X.length;V=0:V==="~="?(" "+X+" ").indexOf(T)>=0:!U[4]?S:V==="!="?X!=T:V==="^="?X.indexOf(T)===0:V==="$="?X.substr(X.length-T.length)===T:V==="|="?X===T||X.substr(0,T.length+1)===T+"-":false},POS:function(W,T,U,X){var S=T[2],V=H.setFilters[S];if(V){return V(W,U,T,X)}}}};var L=H.match.POS;for(var N in H.match){H.match[N]=RegExp(H.match[N].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(T,S){T=Array.prototype.slice.call(T);if(S){S.push.apply(S,T);return S}return T};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(M){E=function(W,V){var T=V||[];if(G.call(W)==="[object Array]"){Array.prototype.push.apply(T,W)}else{if(typeof W.length==="number"){for(var U=0,S=W.length;U";var S=document.documentElement;S.insertBefore(T,S.firstChild);if(!!document.getElementById(U)){H.find.ID=function(W,X,Y){if(typeof X.getElementById!=="undefined"&&!Y){var V=X.getElementById(W[1]);return V?V.id===W[1]||typeof V.getAttributeNode!=="undefined"&&V.getAttributeNode("id").nodeValue===W[1]?[V]:g:[]}};H.filter.ID=function(X,V){var W=typeof X.getAttributeNode!=="undefined"&&X.getAttributeNode("id");return X.nodeType===1&&W&&W.nodeValue===V}}S.removeChild(T)})();(function(){var S=document.createElement("div");S.appendChild(document.createComment(""));if(S.getElementsByTagName("*").length>0){H.find.TAG=function(T,X){var W=X.getElementsByTagName(T[1]);if(T[1]==="*"){var V=[];for(var U=0;W[U];U++){if(W[U].nodeType===1){V.push(W[U])}}W=V}return W}}S.innerHTML="";if(S.firstChild&&S.firstChild.getAttribute("href")!=="#"){H.attrHandle.href=function(T){return T.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var S=F,T=document.createElement("div");T.innerHTML="

";if(T.querySelectorAll&&T.querySelectorAll(".TEST").length===0){return}F=function(X,W,U,V){W=W||document;if(!V&&W.nodeType===9&&!P(W)){try{return E(W.querySelectorAll(X),U)}catch(Y){}}return S(X,W,U,V)};F.find=S.find;F.filter=S.filter;F.selectors=S.selectors;F.matches=S.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){H.order.splice(1,0,"CLASS");H.find.CLASS=function(S,T){return T.getElementsByClassName(S[1])}}function O(T,Z,Y,ac,aa,ab){for(var W=0,U=ac.length;W0){W=S;break}}}S=S[T]}ab[V]=W}}}var J=document.compareDocumentPosition?function(T,S){return T.compareDocumentPosition(S)&16}:function(T,S){return T!==S&&(T.contains?T.contains(S):true)};var P=function(S){return S.nodeType===9&&S.documentElement.nodeName!=="HTML"||!!S.ownerDocument&&P(S.ownerDocument)};var I=function(S,Z){var V=[],W="",X,U=Z.nodeType?[Z]:Z;while((X=H.match.PSEUDO.exec(S))){W+=X[0];S=S.replace(H.match.PSEUDO,"")}S=H.relative[S]?S+"*":S;for(var Y=0,T=U.length;Y=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("
").append(M.responseText.replace(//g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}this[H].style.display=o.data(this[H],"olddisplay",K)}}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)==1){n=setInterval(function(){var K=o.timers;for(var J=0;J=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='
';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(H,F){var E=H?"Left":"Top",G=H?"Right":"Bottom";o.fn["inner"+F]=function(){return this[F.toLowerCase()]()+j(this,"padding"+E)+j(this,"padding"+G)};o.fn["outer"+F]=function(J){return this["inner"+F]()+j(this,"border"+E+"Width")+j(this,"border"+G+"Width")+(J?j(this,"margin"+E)+j(this,"margin"+G):0)};var I=F.toLowerCase();o.fn[I]=function(J){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+F]||document.body["client"+F]:this[0]==document?Math.max(document.documentElement["client"+F],document.body["scroll"+F],document.documentElement["scroll"+F],document.body["offset"+F],document.documentElement["offset"+F]):J===g?(this.length?o.css(this[0],I):null):this.css(I,typeof J==="string"?J:J+"px")}})})(); \ No newline at end of file diff --git a/services/m=funorb/css/jquery_ui_accordion_tabs_1_5_3-0.js b/services/m=funorb/css/jquery_ui_accordion_tabs_1_5_3-0.js new file mode 100644 index 000000000..4707cab3b --- /dev/null +++ b/services/m=funorb/css/jquery_ui_accordion_tabs_1_5_3-0.js @@ -0,0 +1,90 @@ +;(function($){ $.ui={plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,args){var set=instance.plugins[name];if(!set){return;} +for(var i=0;i').addClass(name).css({position:'absolute',top:'-5000px',left:'-5000px',display:'block'}).appendTo('body');$.ui.cssCache[name]=!!((!(/auto|default/).test(tmp.css('cursor'))||(/^[1-9]/).test(tmp.css('height'))||(/^[1-9]/).test(tmp.css('width'))||!(/none/).test(tmp.css('backgroundImage'))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor'))));try{ $('body').get(0).removeChild(tmp.get(0));}catch(e){} +return $.ui.cssCache[name];},disableSelection:function(el){ $(el).attr('unselectable','on').css('MozUserSelect','none');},enableSelection:function(el){ $(el).attr('unselectable','off').css('MozUserSelect','');},hasScroll:function(e,a){var scroll=/top/.test(a||"top")?'scrollTop':'scrollLeft',has=false;if(e[scroll]>0)return true;e[scroll]=1;has=e[scroll]>0?true:false;e[scroll]=0;return has;}};var _remove=$.fn.remove;$.fn.remove=function(){ $("*",this).add(this).triggerHandler("remove");return _remove.apply(this,arguments);};function getter(namespace,plugin,method){var methods=$[namespace][plugin].getter||[];methods=(typeof methods=="string"?methods.split(/,?\s+/):methods);return($.inArray(method,methods)!=-1);} +$.widget=function(name,prototype){var namespace=name.split(".")[0];name=name.split(".")[1];$.fn[name]=function(options){var isMethodCall=(typeof options=='string'),args=Array.prototype.slice.call(arguments,1);if(isMethodCall&&getter(namespace,name,options)){var instance=$.data(this[0],name);return(instance?instance[options].apply(instance,args):undefined);} +return this.each(function(){var instance=$.data(this,name);if(isMethodCall&&instance&&$.isFunction(instance[options])){instance[options].apply(instance,args);}else if(!isMethodCall){ $.data(this,name,new $[namespace][name](this,options));}});};$[namespace][name]=function(element,options){var self=this;this.widgetName=name;this.widgetBaseClass=namespace+'-'+name;this.options=$.extend({},$.widget.defaults,$[namespace][name].defaults,options);this.element=$(element).bind('setData.'+name,function(e,key,value){return self.setData(key,value);}).bind('getData.'+name,function(e,key){return self.getData(key);}).bind('remove',function(){return self.destroy();});this.init();};$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);};$.widget.prototype={init:function(){},destroy:function(){this.element.removeData(this.widgetName);},getData:function(key){return this.options[key];},setData:function(key,value){this.options[key]=value;if(key=='disabled'){this.element[value?'addClass':'removeClass'](this.widgetBaseClass+'-disabled');}},enable:function(){this.setData('disabled',false);},disable:function(){this.setData('disabled',true);}};$.widget.defaults={disabled:false};$.ui.mouse={mouseInit:function(){var self=this;this.element.bind('mousedown.'+this.widgetName,function(e){return self.mouseDown(e);});if($.browser.msie){this._mouseUnselectable=this.element.attr('unselectable');this.element.attr('unselectable','on');} +this.started=false;},mouseDestroy:function(){this.element.unbind('.'+this.widgetName);($.browser.msie&&this.element.attr('unselectable',this._mouseUnselectable));},mouseDown:function(e){(this._mouseStarted&&this.mouseUp(e));this._mouseDownEvent=e;var self=this,btnIsLeft=(e.which==1),elIsCancel=(typeof this.options.cancel=="string"?$(e.target).parents().add(e.target).filter(this.options.cancel).length:false);if(!btnIsLeft||elIsCancel||!this.mouseCapture(e)){return true;} +this._mouseDelayMet=!this.options.delay;if(!this._mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){self._mouseDelayMet=true;},this.options.delay);} +if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){this._mouseStarted=(this.mouseStart(e)!==false);if(!this._mouseStarted){e.preventDefault();return true;}} +this._mouseMoveDelegate=function(e){return self.mouseMove(e);};this._mouseUpDelegate=function(e){return self.mouseUp(e);};$(document).bind('mousemove.'+this.widgetName,this._mouseMoveDelegate).bind('mouseup.'+this.widgetName,this._mouseUpDelegate);return false;},mouseMove:function(e){if($.browser.msie&&!e.button){return this.mouseUp(e);} +if(this._mouseStarted){this.mouseDrag(e);return false;} +if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){this._mouseStarted=(this.mouseStart(this._mouseDownEvent,e)!==false);(this._mouseStarted?this.mouseDrag(e):this.mouseUp(e));} +return!this._mouseStarted;},mouseUp:function(e){ $(document).unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate).unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this.mouseStop(e);} +return false;},mouseDistanceMet:function(e){return(Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance);},mouseDelayMet:function(e){return this._mouseDelayMet;},mouseStart:function(e){},mouseDrag:function(e){},mouseStop:function(e){},mouseCapture:function(e){return true;}};$.ui.mouse.defaults={cancel:null,distance:1,delay:0};})(jQuery);(function($){ $.widget("ui.accordion",{init:function(){var options=this.options;if(options.navigation){var current=this.element.find("a").filter(options.navigationFilter);if(current.length){if(current.filter(options.header).length){options.active=current;}else{options.active=current.parent().parent().prev();current.addClass("current");}}} +options.headers=this.element.find(options.header);options.active=findActive(options.headers,options.active);if($.browser.msie){this.element.find('a').css('zoom','1');} +if(!this.element.hasClass("ui-accordion")){this.element.addClass("ui-accordion");$("").insertBefore(options.headers);$("").appendTo(options.headers);options.headers.addClass("ui-accordion-header").attr("tabindex","0");} +var maxHeight;if(options.fillSpace){maxHeight=this.element.parent().height();options.headers.each(function(){maxHeight-=$(this).outerHeight();});var maxPadding=0;options.headers.next().each(function(){maxPadding=Math.max(maxPadding,$(this).innerHeight()-$(this).height());}).height(maxHeight-maxPadding);}else if(options.autoHeight){maxHeight=0;options.headers.next().each(function(){maxHeight=Math.max(maxHeight,$(this).outerHeight());}).height(maxHeight);} +options.headers.not(options.active||"").next().hide();options.active.parent().andSelf().addClass(options.selectedClass);if(options.event){this.element.bind((options.event)+".accordion",clickHandler);}},activate:function(index){clickHandler.call(this.element[0],{target:findActive(this.options.headers,index)[0]});},destroy:function(){this.options.headers.next().css("display","");if(this.options.fillSpace||this.options.autoHeight){this.options.headers.next().css("height","");} +$.removeData(this.element[0],"accordion");this.element.removeClass("ui-accordion").unbind(".accordion");}});function scopeCallback(callback,scope){return function(){return callback.apply(scope,arguments);};};function completed(cancel){if(!$.data(this,"accordion")){return;} +var instance=$.data(this,"accordion");var options=instance.options;options.running=cancel?0:--options.running;if(options.running){return;} +if(options.clearStyle){options.toShow.add(options.toHide).css({height:"",overflow:""});} +$(this).triggerHandler("accordionchange",[$.event.fix({type:'accordionchange',target:instance.element[0]}),options.data],options.change);} +function toggle(toShow,toHide,data,clickedActive,down){var options=$.data(this,"accordion").options;options.toShow=toShow;options.toHide=toHide;options.data=data;var complete=scopeCallback(completed,this);options.running=toHide.size()===0?toShow.size():toHide.size();if(options.animated){if(!options.alwaysOpen&&clickedActive){ $.ui.accordion.animations[options.animated]({toShow:jQuery([]),toHide:toHide,complete:complete,down:down,autoHeight:options.autoHeight});}else{ $.ui.accordion.animations[options.animated]({toShow:toShow,toHide:toHide,complete:complete,down:down,autoHeight:options.autoHeight});}}else{if(!options.alwaysOpen&&clickedActive){toShow.toggle();}else{toHide.hide();toShow.show();} +complete(true);}} +function clickHandler(event){var options=$.data(this,"accordion").options;if(options.disabled){return false;} +if(!event.target&&!options.alwaysOpen){options.active.parent().andSelf().toggleClass(options.selectedClass);var toHide=options.active.next(),data={options:options,newHeader:jQuery([]),oldHeader:options.active,newContent:jQuery([]),oldContent:toHide},toShow=(options.active=$([]));toggle.call(this,toShow,toHide,data);return false;} +var clicked=$(event.target);clicked=$(clicked.parents(options.header)[0]||clicked);var clickedActive=clicked[0]==options.active[0];if(options.running||(options.alwaysOpen&&clickedActive)){return false;} +if(!clicked.is(options.header)){return;} +options.active.parent().andSelf().toggleClass(options.selectedClass);if(!clickedActive){clicked.parent().andSelf().addClass(options.selectedClass);} +var toShow=clicked.next(),toHide=options.active.next(),data={options:options,newHeader:clicked,oldHeader:options.active,newContent:toShow,oldContent:toHide},down=options.headers.index(options.active[0])>options.headers.index(clicked[0]);options.active=clickedActive?$([]):clicked;toggle.call(this,toShow,toHide,data,clickedActive,down);return false;};function findActive(headers,selector){return selector!=undefined?typeof selector=="number"?headers.filter(":eq("+selector+")"):headers.not(headers.not(selector)):selector===false?$([]):headers.filter(":eq(0)");} +$.extend($.ui.accordion,{defaults:{selectedClass:"selected",alwaysOpen:true,animated:'slide',event:"click",header:"a",autoHeight:true,running:0,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase();}},animations:{slide:function(options,additions){options=$.extend({easing:"swing",duration:300},options,additions);if(!options.toHide.size()){options.toShow.animate({height:"show"},options);return;} +var hideHeight=options.toHide.height(),showHeight=options.toShow.height(),difference=showHeight/hideHeight;options.toShow.css({height:0,overflow:'hidden'}).show();options.toHide.filter(":hidden").each(options.complete).end().filter(":visible").animate({height:"hide"},{step:function(now){var current=(hideHeight-now)*difference;if($.browser.msie||$.browser.opera){current=Math.ceil(current);} +options.toShow.height(current);},duration:options.duration,easing:options.easing,complete:function(){if(!options.autoHeight){options.toShow.css("height","auto");} +options.complete();}});},bounceslide:function(options){this.slide(options,{easing:options.down?"bounceout":"swing",duration:options.down?1000:200});},easeslide:function(options){this.slide(options,{easing:"easeinout",duration:700});}}});$.fn.activate=function(index){return this.accordion("activate",index);};})(jQuery);(function($){ $.widget("ui.tabs",{init:function(){this.options.event+='.tabs';this.tabify(true);},setData:function(key,value){if((/^selected/).test(key)) +this.select(value);else{this.options[key]=value;this.tabify();}},length:function(){return this.$tabs.length;},tabId:function(a){return a.title&&a.title.replace(/\s/g,'_').replace(/[^A-Za-z0-9\-_:\.]/g,'')||this.options.idPrefix+$.data(a);},ui:function(tab,panel){return{options:this.options,tab:tab,panel:panel,index:this.$tabs.index(tab)};},tabify:function(init){this.$lis=$('li:has(a[href])',this.element);this.$tabs=this.$lis.map(function(){return $('a',this)[0];});this.$panels=$([]);var self=this,o=this.options;this.$tabs.each(function(i,a){if(a.hash&&a.hash.replace('#','')) +self.$panels=self.$panels.add(a.hash);else if($(a).attr('href')!='#'){ $.data(a,'href.tabs',a.href);$.data(a,'load.tabs',a.href);var id=self.tabId(a);a.href='#'+id;var $panel=$('#'+id);if(!$panel.length){ $panel=$(o.panelTemplate).attr('id',id).addClass(o.panelClass).insertAfter(self.$panels[i-1]||self.element);$panel.data('destroy.tabs',true);} +self.$panels=self.$panels.add($panel);} +else +o.disabled.push(i+1);});if(init){this.element.addClass(o.navClass);this.$panels.each(function(){var $this=$(this);$this.addClass(o.panelClass);});if(o.selected===undefined){if(location.hash){this.$tabs.each(function(i,a){if(a.hash==location.hash){o.selected=i;if($.browser.msie||$.browser.opera){var $toShow=$(location.hash),toShowId=$toShow.attr('id');$toShow.attr('id','');setTimeout(function(){ $toShow.attr('id',toShowId);},500);} +scrollTo(0,0);return false;}});} +else if(o.cookie){var index=parseInt($.cookie('ui-tabs'+$.data(self.element)),10);if(index&&self.$tabs[index]) +o.selected=index;} +else if(self.$lis.filter('.'+o.selectedClass).length) +o.selected=self.$lis.index(self.$lis.filter('.'+o.selectedClass)[0]);} +o.selected=o.selected===null||o.selected!==undefined?o.selected:0;o.disabled=$.unique(o.disabled.concat($.map(this.$lis.filter('.'+o.disabledClass),function(n,i){return self.$lis.index(n);}))).sort();if($.inArray(o.selected,o.disabled)!=-1) +o.disabled.splice($.inArray(o.selected,o.disabled),1);this.$panels.addClass(o.hideClass);this.$lis.removeClass(o.selectedClass);if(o.selected!==null){this.$panels.eq(o.selected).show().removeClass(o.hideClass);this.$lis.eq(o.selected).addClass(o.selectedClass);var onShow=function(){ $(self.element).triggerHandler('tabsshow',[self.fakeEvent('tabsshow'),self.ui(self.$tabs[o.selected],self.$panels[o.selected])],o.show);};if($.data(this.$tabs[o.selected],'load.tabs')) +this.load(o.selected,onShow);else +onShow();} +$(window).bind('unload',function(){self.$tabs.unbind('.tabs');self.$lis=self.$tabs=self.$panels=null;});} +for(var i=0,li;li=this.$lis[i];i++) +$(li)[$.inArray(i,o.disabled)!=-1&&!$(li).hasClass(o.selectedClass)?'addClass':'removeClass'](o.disabledClass);if(o.cache===false) +this.$tabs.removeData('cache.tabs');var hideFx,showFx,baseFx={'min-width':0,duration:1},baseDuration='normal';if(o.fx&&o.fx.constructor==Array) +hideFx=o.fx[0]||baseFx,showFx=o.fx[1]||baseFx;else +hideFx=showFx=o.fx||baseFx;var resetCSS={display:'',overflow:'',height:''};if(!$.browser.msie) +resetCSS.opacity='';function hideTab(clicked,$hide,$show){ $hide.animate(hideFx,hideFx.duration||baseDuration,function(){ $hide.addClass(o.hideClass).css(resetCSS);if($.browser.msie&&hideFx.opacity) +$hide[0].style.filter='';if($show) +showTab(clicked,$show,$hide);});} +function showTab(clicked,$show,$hide){if(showFx===baseFx) +$show.css('display','block');$show.animate(showFx,showFx.duration||baseDuration,function(){ $show.removeClass(o.hideClass).css(resetCSS);if($.browser.msie&&showFx.opacity) +$show[0].style.filter='';$(self.element).triggerHandler('tabsshow',[self.fakeEvent('tabsshow'),self.ui(clicked,$show[0])],o.show);});} +function switchTab(clicked,$li,$hide,$show){ $li.addClass(o.selectedClass).siblings().removeClass(o.selectedClass);hideTab(clicked,$hide,$show);} +this.$tabs.unbind('.tabs').bind(o.event,function(){var $li=$(this).parents('li:eq(0)'),$hide=self.$panels.filter(':visible'),$show=$(this.hash);if(($li.hasClass(o.selectedClass)&&!o.unselect)||$li.hasClass(o.disabledClass)||$(this).hasClass(o.loadingClass)||$(self.element).triggerHandler('tabsselect',[self.fakeEvent('tabsselect'),self.ui(this,$show[0])],o.select)===false){this.blur();return false;} +self.options.selected=self.$tabs.index(this);if(o.unselect){if($li.hasClass(o.selectedClass)){self.options.selected=null;$li.removeClass(o.selectedClass);self.$panels.stop();hideTab(this,$hide);this.blur();return false;}else if(!$hide.length){self.$panels.stop();var a=this;self.load(self.$tabs.index(this),function(){ $li.addClass(o.selectedClass).addClass(o.unselectClass);showTab(a,$show);});this.blur();return false;}} +if(o.cookie) +$.cookie('ui-tabs'+$.data(self.element),self.options.selected,o.cookie);self.$panels.stop();if($show.length){var a=this;self.load(self.$tabs.index(this),$hide.length?function(){switchTab(a,$li,$hide,$show);}:function(){ $li.addClass(o.selectedClass);showTab(a,$show);});}else +throw'jQuery UI Tabs: Mismatching fragment identifier.';if($.browser.msie) +this.blur();return false;});if(!(/^click/).test(o.event)) +this.$tabs.bind('click.tabs',function(){return false;});},add:function(url,label,index){if(index==undefined) +index=this.$tabs.length;var o=this.options;var $li=$(o.tabTemplate.replace(/#\{href\}/g,url).replace(/#\{label\}/g,label));$li.data('destroy.tabs',true);var id=url.indexOf('#')==0?url.replace('#',''):this.tabId($('a:first-child',$li)[0]);var $panel=$('#'+id);if(!$panel.length){ $panel=$(o.panelTemplate).attr('id',id).addClass(o.hideClass).data('destroy.tabs',true);} +$panel.addClass(o.panelClass);if(index>=this.$lis.length){ $li.appendTo(this.element);$panel.appendTo(this.element[0].parentNode);}else{ $li.insertBefore(this.$lis[index]);$panel.insertBefore(this.$panels[index]);} +o.disabled=$.map(o.disabled,function(n,i){return n>=index?++n:n});this.tabify();if(this.$tabs.length==1){ $li.addClass(o.selectedClass);$panel.removeClass(o.hideClass);var href=$.data(this.$tabs[0],'load.tabs');if(href) +this.load(index,href);} +this.element.triggerHandler('tabsadd',[this.fakeEvent('tabsadd'),this.ui(this.$tabs[index],this.$panels[index])],o.add);},remove:function(index){var o=this.options,$li=this.$lis.eq(index).remove(),$panel=this.$panels.eq(index).remove();if($li.hasClass(o.selectedClass)&&this.$tabs.length>1) +this.select(index+(index+1=index?--n:n});this.tabify();this.element.triggerHandler('tabsremove',[this.fakeEvent('tabsremove'),this.ui($li.find('a')[0],$panel[0])],o.remove);},enable:function(index){var o=this.options;if($.inArray(index,o.disabled)==-1) +return;var $li=this.$lis.eq(index).removeClass(o.disabledClass);if($.browser.safari){ $li.css('display','inline-block');setTimeout(function(){ $li.css('display','block');},0);} +o.disabled=$.grep(o.disabled,function(n,i){return n!=index;});this.element.triggerHandler('tabsenable',[this.fakeEvent('tabsenable'),this.ui(this.$tabs[index],this.$panels[index])],o.enable);},disable:function(index){var self=this,o=this.options;if(index!=o.selected){this.$lis.eq(index).addClass(o.disabledClass);o.disabled.push(index);o.disabled.sort();this.element.triggerHandler('tabsdisable',[this.fakeEvent('tabsdisable'),this.ui(this.$tabs[index],this.$panels[index])],o.disable);}},select:function(index){if(typeof index=='string') +index=this.$tabs.index(this.$tabs.filter('[href$='+index+']')[0]);this.$tabs.eq(index).trigger(this.options.event);},load:function(index,callback){var self=this,o=this.options,$a=this.$tabs.eq(index),a=$a[0],bypassCache=callback==undefined||callback===false,url=$a.data('load.tabs');callback=callback||function(){};if(!url||!bypassCache&&$.data(a,'cache.tabs')){callback();return;} +var inner=function(parent){var $parent=$(parent),$inner=$parent.find('*:last');return $inner.length&&$inner.is(':not(img)')&&$inner||$parent;};var cleanup=function(){self.$tabs.filter('.'+o.loadingClass).removeClass(o.loadingClass).each(function(){if(o.spinner) +inner(this).parent().html(inner(this).data('label.tabs'));});self.xhr=null;};if(o.spinner){var label=inner(a).html();inner(a).wrapInner('').find('em').data('label.tabs',label).html(o.spinner);} +var ajaxOptions=$.extend({},o.ajaxOptions,{url:url,success:function(r,s){ $(a.hash).html(r);cleanup();if(o.cache) +$.data(a,'cache.tabs',true);$(self.element).triggerHandler('tabsload',[self.fakeEvent('tabsload'),self.ui(self.$tabs[index],self.$panels[index])],o.load);o.ajaxOptions.success&&o.ajaxOptions.success(r,s);callback();}});if(this.xhr){this.xhr.abort();cleanup();} +$a.addClass(o.loadingClass);setTimeout(function(){self.xhr=$.ajax(ajaxOptions);},0);},url:function(index,url){this.$tabs.eq(index).removeData('cache.tabs').data('load.tabs',url);},destroy:function(){var o=this.options;this.element.unbind('.tabs').removeClass(o.navClass).removeData('tabs');this.$tabs.each(function(){var href=$.data(this,'href.tabs');if(href) +this.href=href;var $this=$(this).unbind('.tabs');$.each(['href','load','cache'],function(i,prefix){ $this.removeData(prefix+'.tabs');});});this.$lis.add(this.$panels).each(function(){if($.data(this,'destroy.tabs')) +$(this).remove();else +$(this).removeClass([o.selectedClass,o.unselectClass,o.disabledClass,o.panelClass,o.hideClass].join(' '));});},fakeEvent:function(type){return $.event.fix({type:type,target:this.element[0]});}});$.ui.tabs.defaults={unselect:false,event:'click',disabled:[],cookie:null,spinner:'Loading…',cache:false,idPrefix:'ui-tabs-',ajaxOptions:{},fx:null,tabTemplate:'
  • #{label}
  • ',panelTemplate:'
    ',navClass:'ui-tabs-nav',selectedClass:'ui-tabs-selected',unselectClass:'ui-tabs-unselect',disabledClass:'ui-tabs-disabled',panelClass:'ui-tabs-panel',hideClass:'ui-tabs-hide',loadingClass:'ui-tabs-loading'};$.ui.tabs.getter="length";$.extend($.ui.tabs.prototype,{rotation:null,rotate:function(ms,continuing){continuing=continuing||false;var self=this,t=this.options.selected;function start(){self.rotation=setInterval(function(){t=++t>> 0; + for (var i = 0; i < length; i++) { + parameters[i] = "argArray[" + i + "]"; + }; + var functionCall = + "thisArg.__applyTemp__(" + parameters + ")"; + + try { + return eval(functionCall) + } finally { + try { + delete thisArg.__applyTemp__ + } catch (e) { + /* ignore */ + } + } +} +//Sebs Hack +Function.prototype.call = function(thisArg) { + return this.apply(thisArg, + Array.prototype.slice.apply(arguments, [1])); +} +// Array.shift() - Remove and return the first element +if( typeof Array.prototype.shift==='undefined' ) { + Array.prototype.shift = function() { + for( var i = 0, b = this[0], l = this.length-1; i + Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis + This software is released under the MIT License +*/ +var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write(" + + + + + + + + + + + + + + + +
    +
    +
    +
    + + +
    + + +
    +
    +
    +
    +Game List + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    Please use the dropdown menus to select the type of game you would like to play.
    +
    +
    +
    +
    + + + + + + +Some games may belong to more than one genre. +
    +
    +
    + + + +
    +
    + +
    Aerial dare-devilry with a stiff upper lip
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Magic and mayhem-filled multiplayer matches.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Wage war with the Armies of Gielinor
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Where health and safety dare not tread.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    How long can you last in this platform-filled fun fest?
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Classic brick destruction with Brick and Brac.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Play the classic strategy game with your friends.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Fly down alien tunnels with some serious guns.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Rock-hard tile-based puzzle game.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Multiplayer mayhem with shapes that keep coming back!
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Save the Earth in this side-scrolling shooter.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Defend your hoard. Become the Dragon King!
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Fly through twisty caves to reclaim Earth's stolen tech.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Guide your fleas through their tiny little circus.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Match the shapes or colours, three-of-a-kind.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Fight for pole position in this powered-up racer.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Defeat the hordes of alien spawn.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    From jumpers-for-goalposts to the Diamond Division...
    + + +
    +
    +
    +
    + + + +
    +
    + +
    How many words can you make from falling blocks?
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Plunder the depths of a loot�filled volcano.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Catapult coloured coconuts to dislodge the monkeys.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Defend against the Norb invasion.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    It's a falling block game - with a twist!
    + + +
    +
    +
    +
    + + + +
    +
    + +
    The classic game of angular skill.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Bend worlds to your will and conquer the galaxy.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Protect the solar system from (kilo)tons of asteroids.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Pilot the most powerful space fighter ever made.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Build and control giant robots and battle for supremacy.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Clear the asteroid field with ever-increasing fire power.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    GyojiBot commands your presence.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Command your elite troops in this strategy game.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Get four counters in a row before your opponent.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Push the pieces into place to finish your train track.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    The classic pair-matching game � with a slight twist.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Race online in the Tortuous Temples of Torment
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Conquer the towers and attain enlightenment.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Momentum and hamsters don't mix � except here!
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Anagrams aplenty in this quiz-show-themed puzzler.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Paint the blocks purple in this 3D platform game.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Dominate the grid to achieve victory.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Build a spaceship and destroy your friends
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Fling stars at your enemies in this fun platform game.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Mastermind an invasion of the undead.
    + + +
    +
    +
    +
    + + + +
    +
    + +
    Fight of the living dead: capture humans for your evil research!
    + + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    + + + + + + + + + + + diff --git a/services/m=funorb/img/images/game/36cardtrick/small.jpg b/services/m=funorb/img/images/game/36cardtrick/small.jpg new file mode 100755 index 000000000..36d0af4c6 Binary files /dev/null and b/services/m=funorb/img/images/game/36cardtrick/small.jpg differ diff --git a/services/m=funorb/img/images/game/aceofskies/small.jpg b/services/m=funorb/img/images/game/aceofskies/small.jpg new file mode 100755 index 000000000..4f261de65 Binary files /dev/null and b/services/m=funorb/img/images/game/aceofskies/small.jpg differ diff --git a/services/m=funorb/img/images/game/arcanistsmulti/massive.jpg b/services/m=funorb/img/images/game/arcanistsmulti/massive.jpg new file mode 100755 index 000000000..abdcae77a Binary files /dev/null and b/services/m=funorb/img/images/game/arcanistsmulti/massive.jpg differ diff --git a/services/m=funorb/img/images/game/arcanistsmulti/small.jpg b/services/m=funorb/img/images/game/arcanistsmulti/small.jpg new file mode 100755 index 000000000..bfa18295e Binary files /dev/null and b/services/m=funorb/img/images/game/arcanistsmulti/small.jpg differ diff --git a/services/m=funorb/img/images/game/armiesofgielinor/massive.jpg b/services/m=funorb/img/images/game/armiesofgielinor/massive.jpg new file mode 100755 index 000000000..ba692effd Binary files /dev/null and b/services/m=funorb/img/images/game/armiesofgielinor/massive.jpg differ diff --git a/services/m=funorb/img/images/game/armiesofgielinor/small.jpg b/services/m=funorb/img/images/game/armiesofgielinor/small.jpg new file mode 100755 index 000000000..918cd2181 Binary files /dev/null and b/services/m=funorb/img/images/game/armiesofgielinor/small.jpg differ diff --git a/services/m=funorb/img/images/game/bachelorfridge/small.jpg b/services/m=funorb/img/images/game/bachelorfridge/small.jpg new file mode 100755 index 000000000..3a57eb2be Binary files /dev/null and b/services/m=funorb/img/images/game/bachelorfridge/small.jpg differ diff --git a/services/m=funorb/img/images/game/bouncedown/small.jpg b/services/m=funorb/img/images/game/bouncedown/small.jpg new file mode 100755 index 000000000..f1f351d67 Binary files /dev/null and b/services/m=funorb/img/images/game/bouncedown/small.jpg differ diff --git a/services/m=funorb/img/images/game/brickabrac/small.jpg b/services/m=funorb/img/images/game/brickabrac/small.jpg new file mode 100755 index 000000000..b4379a600 Binary files /dev/null and b/services/m=funorb/img/images/game/brickabrac/small.jpg differ diff --git a/services/m=funorb/img/images/game/chess/small.jpg b/services/m=funorb/img/images/game/chess/small.jpg new file mode 100755 index 000000000..efb3e9a7c Binary files /dev/null and b/services/m=funorb/img/images/game/chess/small.jpg differ diff --git a/services/m=funorb/img/images/game/confined/small.jpg b/services/m=funorb/img/images/game/confined/small.jpg new file mode 100755 index 000000000..e581aab7e Binary files /dev/null and b/services/m=funorb/img/images/game/confined/small.jpg differ diff --git a/services/m=funorb/img/images/game/crazycrystals/small.jpg b/services/m=funorb/img/images/game/crazycrystals/small.jpg new file mode 100755 index 000000000..c295271c0 Binary files /dev/null and b/services/m=funorb/img/images/game/crazycrystals/small.jpg differ diff --git a/services/m=funorb/img/images/game/dekobloko/small.jpg b/services/m=funorb/img/images/game/dekobloko/small.jpg new file mode 100755 index 000000000..89f87e984 Binary files /dev/null and b/services/m=funorb/img/images/game/dekobloko/small.jpg differ diff --git a/services/m=funorb/img/images/game/drphlogistonsavestheearth/small.jpg b/services/m=funorb/img/images/game/drphlogistonsavestheearth/small.jpg new file mode 100755 index 000000000..91f8aedca Binary files /dev/null and b/services/m=funorb/img/images/game/drphlogistonsavestheearth/small.jpg differ diff --git a/services/m=funorb/img/images/game/dungeonassault/small.jpg b/services/m=funorb/img/images/game/dungeonassault/small.jpg new file mode 100755 index 000000000..f33157fb6 Binary files /dev/null and b/services/m=funorb/img/images/game/dungeonassault/small.jpg differ diff --git a/services/m=funorb/img/images/game/dungeonassault/tiny.jpg b/services/m=funorb/img/images/game/dungeonassault/tiny.jpg new file mode 100755 index 000000000..75f6d0cb7 Binary files /dev/null and b/services/m=funorb/img/images/game/dungeonassault/tiny.jpg differ diff --git a/services/m=funorb/img/images/game/escapevector/small.jpg b/services/m=funorb/img/images/game/escapevector/small.jpg new file mode 100755 index 000000000..f564ff80d Binary files /dev/null and b/services/m=funorb/img/images/game/escapevector/small.jpg differ diff --git a/services/m=funorb/img/images/game/fleacircus/small.jpg b/services/m=funorb/img/images/game/fleacircus/small.jpg new file mode 100755 index 000000000..759ec7f03 Binary files /dev/null and b/services/m=funorb/img/images/game/fleacircus/small.jpg differ diff --git a/services/m=funorb/img/images/game/geoblox/small.jpg b/services/m=funorb/img/images/game/geoblox/small.jpg new file mode 100755 index 000000000..c17c3b38b Binary files /dev/null and b/services/m=funorb/img/images/game/geoblox/small.jpg differ diff --git a/services/m=funorb/img/images/game/holdtheline/small.jpg b/services/m=funorb/img/images/game/holdtheline/small.jpg new file mode 100755 index 000000000..138cafec3 Binary files /dev/null and b/services/m=funorb/img/images/game/holdtheline/small.jpg differ diff --git a/services/m=funorb/img/images/game/hostilespawn_vengeance/small.jpg b/services/m=funorb/img/images/game/hostilespawn_vengeance/small.jpg new file mode 100755 index 000000000..e444aef85 Binary files /dev/null and b/services/m=funorb/img/images/game/hostilespawn_vengeance/small.jpg differ diff --git a/services/m=funorb/img/images/game/hostilespawn_vengeance/tiny.jpg b/services/m=funorb/img/images/game/hostilespawn_vengeance/tiny.jpg new file mode 100755 index 000000000..a506aaa0b Binary files /dev/null and b/services/m=funorb/img/images/game/hostilespawn_vengeance/tiny.jpg differ diff --git a/services/m=funorb/img/images/game/kickabout/small.jpg b/services/m=funorb/img/images/game/kickabout/small.jpg new file mode 100755 index 000000000..0287561ba Binary files /dev/null and b/services/m=funorb/img/images/game/kickabout/small.jpg differ diff --git a/services/m=funorb/img/images/game/kickabout/smedium.jpg b/services/m=funorb/img/images/game/kickabout/smedium.jpg new file mode 100755 index 000000000..c20eae342 Binary files /dev/null and b/services/m=funorb/img/images/game/kickabout/smedium.jpg differ diff --git a/services/m=funorb/img/images/game/lexicominos/small.jpg b/services/m=funorb/img/images/game/lexicominos/small.jpg new file mode 100755 index 000000000..bb554c467 Binary files /dev/null and b/services/m=funorb/img/images/game/lexicominos/small.jpg differ diff --git a/services/m=funorb/img/images/game/minerdisturbance/small.jpg b/services/m=funorb/img/images/game/minerdisturbance/small.jpg new file mode 100755 index 000000000..2e607b2a4 Binary files /dev/null and b/services/m=funorb/img/images/game/minerdisturbance/small.jpg differ diff --git a/services/m=funorb/img/images/game/minerdisturbance/tiny.jpg b/services/m=funorb/img/images/game/minerdisturbance/tiny.jpg new file mode 100755 index 000000000..635b0564a Binary files /dev/null and b/services/m=funorb/img/images/game/minerdisturbance/tiny.jpg differ diff --git a/services/m=funorb/img/images/game/monkeypuzzle2/small.jpg b/services/m=funorb/img/images/game/monkeypuzzle2/small.jpg new file mode 100755 index 000000000..9589ce8c0 Binary files /dev/null and b/services/m=funorb/img/images/game/monkeypuzzle2/small.jpg differ diff --git a/services/m=funorb/img/images/game/orbdefence/small.jpg b/services/m=funorb/img/images/game/orbdefence/small.jpg new file mode 100755 index 000000000..451e36e95 Binary files /dev/null and b/services/m=funorb/img/images/game/orbdefence/small.jpg differ diff --git a/services/m=funorb/img/images/game/pixelate/small.jpg b/services/m=funorb/img/images/game/pixelate/small.jpg new file mode 100755 index 000000000..dccea4236 Binary files /dev/null and b/services/m=funorb/img/images/game/pixelate/small.jpg differ diff --git a/services/m=funorb/img/images/game/pool/small.jpg b/services/m=funorb/img/images/game/pool/small.jpg new file mode 100755 index 000000000..e866abab3 Binary files /dev/null and b/services/m=funorb/img/images/game/pool/small.jpg differ diff --git a/services/m=funorb/img/images/game/shatteredplans/small.jpg b/services/m=funorb/img/images/game/shatteredplans/small.jpg new file mode 100755 index 000000000..4f198b5a0 Binary files /dev/null and b/services/m=funorb/img/images/game/shatteredplans/small.jpg differ diff --git a/services/m=funorb/img/images/game/solknight/small.jpg b/services/m=funorb/img/images/game/solknight/small.jpg new file mode 100755 index 000000000..cce472478 Binary files /dev/null and b/services/m=funorb/img/images/game/solknight/small.jpg differ diff --git a/services/m=funorb/img/images/game/starcannon/small.jpg b/services/m=funorb/img/images/game/starcannon/small.jpg new file mode 100755 index 000000000..8845ffa57 Binary files /dev/null and b/services/m=funorb/img/images/game/starcannon/small.jpg differ diff --git a/services/m=funorb/img/images/game/steelsentinels/small.jpg b/services/m=funorb/img/images/game/steelsentinels/small.jpg new file mode 100755 index 000000000..cd1346c39 Binary files /dev/null and b/services/m=funorb/img/images/game/steelsentinels/small.jpg differ diff --git a/services/m=funorb/img/images/game/steelsentinels/smedium.jpg b/services/m=funorb/img/images/game/steelsentinels/smedium.jpg new file mode 100755 index 000000000..d924225c6 Binary files /dev/null and b/services/m=funorb/img/images/game/steelsentinels/smedium.jpg differ diff --git a/services/m=funorb/img/images/game/stellarshard/small.jpg b/services/m=funorb/img/images/game/stellarshard/small.jpg new file mode 100755 index 000000000..a1ccfca31 Binary files /dev/null and b/services/m=funorb/img/images/game/stellarshard/small.jpg differ diff --git a/services/m=funorb/img/images/game/sumoblitz/news.png b/services/m=funorb/img/images/game/sumoblitz/news.png new file mode 100755 index 000000000..bcfea1eb0 Binary files /dev/null and b/services/m=funorb/img/images/game/sumoblitz/news.png differ diff --git a/services/m=funorb/img/images/game/sumoblitz/small.jpg b/services/m=funorb/img/images/game/sumoblitz/small.jpg new file mode 100755 index 000000000..2ebecd66d Binary files /dev/null and b/services/m=funorb/img/images/game/sumoblitz/small.jpg differ diff --git a/services/m=funorb/img/images/game/sumoblitz/tiny.jpg b/services/m=funorb/img/images/game/sumoblitz/tiny.jpg new file mode 100755 index 000000000..cd7308bd2 Binary files /dev/null and b/services/m=funorb/img/images/game/sumoblitz/tiny.jpg differ diff --git a/services/m=funorb/img/images/game/terraphoenix/small.jpg b/services/m=funorb/img/images/game/terraphoenix/small.jpg new file mode 100755 index 000000000..4657de47c Binary files /dev/null and b/services/m=funorb/img/images/game/terraphoenix/small.jpg differ diff --git a/services/m=funorb/img/images/game/tetralink/small.jpg b/services/m=funorb/img/images/game/tetralink/small.jpg new file mode 100755 index 000000000..312e38b39 Binary files /dev/null and b/services/m=funorb/img/images/game/tetralink/small.jpg differ diff --git a/services/m=funorb/img/images/game/tombracer/small.jpg b/services/m=funorb/img/images/game/tombracer/small.jpg new file mode 100755 index 000000000..ad929c52c Binary files /dev/null and b/services/m=funorb/img/images/game/tombracer/small.jpg differ diff --git a/services/m=funorb/img/images/game/tombracer/tiny.jpg b/services/m=funorb/img/images/game/tombracer/tiny.jpg new file mode 100755 index 000000000..68c331b69 Binary files /dev/null and b/services/m=funorb/img/images/game/tombracer/tiny.jpg differ diff --git a/services/m=funorb/img/images/game/torchallenge/small.jpg b/services/m=funorb/img/images/game/torchallenge/small.jpg new file mode 100755 index 000000000..36352590e Binary files /dev/null and b/services/m=funorb/img/images/game/torchallenge/small.jpg differ diff --git a/services/m=funorb/img/images/game/torquing/small.jpg b/services/m=funorb/img/images/game/torquing/small.jpg new file mode 100755 index 000000000..98fd711f9 Binary files /dev/null and b/services/m=funorb/img/images/game/torquing/small.jpg differ diff --git a/services/m=funorb/img/images/game/trackcontroller/small.jpg b/services/m=funorb/img/images/game/trackcontroller/small.jpg new file mode 100755 index 000000000..e4a841b9e Binary files /dev/null and b/services/m=funorb/img/images/game/trackcontroller/small.jpg differ diff --git a/services/m=funorb/img/images/game/transmogrify/small.jpg b/services/m=funorb/img/images/game/transmogrify/small.jpg new file mode 100755 index 000000000..3325b8b49 Binary files /dev/null and b/services/m=funorb/img/images/game/transmogrify/small.jpg differ diff --git a/services/m=funorb/img/images/game/vertigo2/small.jpg b/services/m=funorb/img/images/game/vertigo2/small.jpg new file mode 100755 index 000000000..feebf2a43 Binary files /dev/null and b/services/m=funorb/img/images/game/vertigo2/small.jpg differ diff --git a/services/m=funorb/img/images/game/virogrid/small.jpg b/services/m=funorb/img/images/game/virogrid/small.jpg new file mode 100755 index 000000000..a486798b9 Binary files /dev/null and b/services/m=funorb/img/images/game/virogrid/small.jpg differ diff --git a/services/m=funorb/img/images/game/voidhunters/news.png b/services/m=funorb/img/images/game/voidhunters/news.png new file mode 100755 index 000000000..9d0cdcdbc Binary files /dev/null and b/services/m=funorb/img/images/game/voidhunters/news.png differ diff --git a/services/m=funorb/img/images/game/voidhunters/release.jpg b/services/m=funorb/img/images/game/voidhunters/release.jpg new file mode 100755 index 000000000..313440264 Binary files /dev/null and b/services/m=funorb/img/images/game/voidhunters/release.jpg differ diff --git a/services/m=funorb/img/images/game/voidhunters/release.swf b/services/m=funorb/img/images/game/voidhunters/release.swf new file mode 100755 index 000000000..13d7817ec Binary files /dev/null and b/services/m=funorb/img/images/game/voidhunters/release.swf differ diff --git a/services/m=funorb/img/images/game/voidhunters/small.jpg b/services/m=funorb/img/images/game/voidhunters/small.jpg new file mode 100755 index 000000000..442e718fc Binary files /dev/null and b/services/m=funorb/img/images/game/voidhunters/small.jpg differ diff --git a/services/m=funorb/img/images/game/voidhunters/smedium.jpg b/services/m=funorb/img/images/game/voidhunters/smedium.jpg new file mode 100755 index 000000000..6938e12d3 Binary files /dev/null and b/services/m=funorb/img/images/game/voidhunters/smedium.jpg differ diff --git a/services/m=funorb/img/images/game/wizardrun/small.jpg b/services/m=funorb/img/images/game/wizardrun/small.jpg new file mode 100755 index 000000000..439e0b90f Binary files /dev/null and b/services/m=funorb/img/images/game/wizardrun/small.jpg differ diff --git a/services/m=funorb/img/images/game/zombiedawn/small.jpg b/services/m=funorb/img/images/game/zombiedawn/small.jpg new file mode 100755 index 000000000..2b4c266e4 Binary files /dev/null and b/services/m=funorb/img/images/game/zombiedawn/small.jpg differ diff --git a/services/m=funorb/img/images/game/zombiedawnmulti/small.jpg b/services/m=funorb/img/images/game/zombiedawnmulti/small.jpg new file mode 100755 index 000000000..a4d784cbe Binary files /dev/null and b/services/m=funorb/img/images/game/zombiedawnmulti/small.jpg differ diff --git a/services/m=funorb/img/images/home/developer_diary_bg.png b/services/m=funorb/img/images/home/developer_diary_bg.png new file mode 100755 index 000000000..7521054fe Binary files /dev/null and b/services/m=funorb/img/images/home/developer_diary_bg.png differ diff --git a/services/m=funorb/img/images/home/games_all.jpg b/services/m=funorb/img/images/home/games_all.jpg new file mode 100755 index 000000000..a9d9d31c8 Binary files /dev/null and b/services/m=funorb/img/images/home/games_all.jpg differ diff --git a/services/m=funorb/img/images/home/games_all_bg.png b/services/m=funorb/img/images/home/games_all_bg.png new file mode 100755 index 000000000..e001c0e34 Binary files /dev/null and b/services/m=funorb/img/images/home/games_all_bg.png differ diff --git a/services/m=funorb/img/images/home/games_all_button.png b/services/m=funorb/img/images/home/games_all_button.png new file mode 100755 index 000000000..81eae1f1a Binary files /dev/null and b/services/m=funorb/img/images/home/games_all_button.png differ diff --git a/services/m=funorb/img/images/home/games_big_bg.png b/services/m=funorb/img/images/home/games_big_bg.png new file mode 100755 index 000000000..684452995 Binary files /dev/null and b/services/m=funorb/img/images/home/games_big_bg.png differ diff --git a/services/m=funorb/img/images/home/games_buttons_big_bg.png b/services/m=funorb/img/images/home/games_buttons_big_bg.png new file mode 100755 index 000000000..a54dd59bb Binary files /dev/null and b/services/m=funorb/img/images/home/games_buttons_big_bg.png differ diff --git a/services/m=funorb/img/images/home/games_buttons_big_info.png b/services/m=funorb/img/images/home/games_buttons_big_info.png new file mode 100755 index 000000000..44ae35112 Binary files /dev/null and b/services/m=funorb/img/images/home/games_buttons_big_info.png differ diff --git a/services/m=funorb/img/images/home/games_buttons_info.png b/services/m=funorb/img/images/home/games_buttons_info.png new file mode 100755 index 000000000..0100ae0b8 Binary files /dev/null and b/services/m=funorb/img/images/home/games_buttons_info.png differ diff --git a/services/m=funorb/img/images/home/games_buttons_medium_bg.png b/services/m=funorb/img/images/home/games_buttons_medium_bg.png new file mode 100755 index 000000000..64d98afe6 Binary files /dev/null and b/services/m=funorb/img/images/home/games_buttons_medium_bg.png differ diff --git a/services/m=funorb/img/images/home/games_buttons_small_bg.png b/services/m=funorb/img/images/home/games_buttons_small_bg.png new file mode 100755 index 000000000..56f96a37e Binary files /dev/null and b/services/m=funorb/img/images/home/games_buttons_small_bg.png differ diff --git a/services/m=funorb/img/images/home/games_list_bg.png b/services/m=funorb/img/images/home/games_list_bg.png new file mode 100755 index 000000000..75f4f2e3e Binary files /dev/null and b/services/m=funorb/img/images/home/games_list_bg.png differ diff --git a/services/m=funorb/img/images/home/games_medium_bg.png b/services/m=funorb/img/images/home/games_medium_bg.png new file mode 100755 index 000000000..914cf4118 Binary files /dev/null and b/services/m=funorb/img/images/home/games_medium_bg.png differ diff --git a/services/m=funorb/img/images/home/games_small_bg.png b/services/m=funorb/img/images/home/games_small_bg.png new file mode 100755 index 000000000..843415afc Binary files /dev/null and b/services/m=funorb/img/images/home/games_small_bg.png differ diff --git a/services/m=funorb/img/images/home/md_banner.jpg b/services/m=funorb/img/images/home/md_banner.jpg new file mode 100755 index 000000000..ba0bcdd32 Binary files /dev/null and b/services/m=funorb/img/images/home/md_banner.jpg differ diff --git a/services/m=funorb/img/images/home/news_arrow.png b/services/m=funorb/img/images/home/news_arrow.png new file mode 100755 index 000000000..09160472a Binary files /dev/null and b/services/m=funorb/img/images/home/news_arrow.png differ diff --git a/services/m=funorb/img/images/home/news_body_bg.png b/services/m=funorb/img/images/home/news_body_bg.png new file mode 100755 index 000000000..b2cd7156d Binary files /dev/null and b/services/m=funorb/img/images/home/news_body_bg.png differ diff --git a/services/m=funorb/img/images/home/news_head_bg.png b/services/m=funorb/img/images/home/news_head_bg.png new file mode 100755 index 000000000..fbdd9c58b Binary files /dev/null and b/services/m=funorb/img/images/home/news_head_bg.png differ diff --git a/services/m=funorb/img/images/layout/bg_body_voidhunters.jpg b/services/m=funorb/img/images/layout/bg_body_voidhunters.jpg new file mode 100755 index 000000000..9616267c1 Binary files /dev/null and b/services/m=funorb/img/images/layout/bg_body_voidhunters.jpg differ diff --git a/services/m=funorb/img/images/layout/bg_body_voidhunters_repeat.jpg b/services/m=funorb/img/images/layout/bg_body_voidhunters_repeat.jpg new file mode 100755 index 000000000..58a5c4f5b Binary files /dev/null and b/services/m=funorb/img/images/layout/bg_body_voidhunters_repeat.jpg differ diff --git a/services/m=funorb/img/images/layout/br.gif b/services/m=funorb/img/images/layout/br.gif new file mode 100755 index 000000000..5c43c7f3f Binary files /dev/null and b/services/m=funorb/img/images/layout/br.gif differ diff --git a/services/m=funorb/img/images/layout/de.gif b/services/m=funorb/img/images/layout/de.gif new file mode 100755 index 000000000..6da89d826 Binary files /dev/null and b/services/m=funorb/img/images/layout/de.gif differ diff --git a/services/m=funorb/img/images/layout/dropdown.gif b/services/m=funorb/img/images/layout/dropdown.gif new file mode 100755 index 000000000..c02f1f349 Binary files /dev/null and b/services/m=funorb/img/images/layout/dropdown.gif differ diff --git a/services/m=funorb/img/images/layout/en.gif b/services/m=funorb/img/images/layout/en.gif new file mode 100755 index 000000000..0643ee729 Binary files /dev/null and b/services/m=funorb/img/images/layout/en.gif differ diff --git a/services/m=funorb/img/images/layout/footer_bg.png b/services/m=funorb/img/images/layout/footer_bg.png new file mode 100755 index 000000000..807984970 Binary files /dev/null and b/services/m=funorb/img/images/layout/footer_bg.png differ diff --git a/services/m=funorb/img/images/layout/fr.gif b/services/m=funorb/img/images/layout/fr.gif new file mode 100755 index 000000000..1a01792ce Binary files /dev/null and b/services/m=funorb/img/images/layout/fr.gif differ diff --git a/services/m=funorb/img/images/layout/info_play_button.gif b/services/m=funorb/img/images/layout/info_play_button.gif new file mode 100755 index 000000000..0aff8d2bb Binary files /dev/null and b/services/m=funorb/img/images/layout/info_play_button.gif differ diff --git a/services/m=funorb/img/images/layout/jagex_footer.gif b/services/m=funorb/img/images/layout/jagex_footer.gif new file mode 100755 index 000000000..ac2b63dda Binary files /dev/null and b/services/m=funorb/img/images/layout/jagex_footer.gif differ diff --git a/services/m=funorb/img/images/layout/logo_voidhunters.jpg b/services/m=funorb/img/images/layout/logo_voidhunters.jpg new file mode 100755 index 000000000..add3b4372 Binary files /dev/null and b/services/m=funorb/img/images/layout/logo_voidhunters.jpg differ diff --git a/services/m=funorb/img/images/layout/menu.png b/services/m=funorb/img/images/layout/menu.png new file mode 100755 index 000000000..3ecf53cbd Binary files /dev/null and b/services/m=funorb/img/images/layout/menu.png differ diff --git a/services/m=funorb/img/images/layout/nav.gif b/services/m=funorb/img/images/layout/nav.gif new file mode 100755 index 000000000..3c8ea24c9 Binary files /dev/null and b/services/m=funorb/img/images/layout/nav.gif differ diff --git a/services/m=funorb/img/images/layout/nav_headerbg.gif b/services/m=funorb/img/images/layout/nav_headerbg.gif new file mode 100755 index 000000000..452a330f7 Binary files /dev/null and b/services/m=funorb/img/images/layout/nav_headerbg.gif differ diff --git a/services/m=funorb/img/images/layout/releaseBar.gif b/services/m=funorb/img/images/layout/releaseBar.gif new file mode 100755 index 000000000..e3e1d74cf Binary files /dev/null and b/services/m=funorb/img/images/layout/releaseBar.gif differ diff --git a/services/m=funorb/img/images/layout/section_footer.gif b/services/m=funorb/img/images/layout/section_footer.gif new file mode 100755 index 000000000..10a4544ad Binary files /dev/null and b/services/m=funorb/img/images/layout/section_footer.gif differ diff --git a/services/m=funorb/img/images/layout/section_footer_right.gif b/services/m=funorb/img/images/layout/section_footer_right.gif new file mode 100755 index 000000000..40ac96058 Binary files /dev/null and b/services/m=funorb/img/images/layout/section_footer_right.gif differ diff --git a/services/m=funorb/img/images/layout/section_header.gif b/services/m=funorb/img/images/layout/section_header.gif new file mode 100755 index 000000000..d4b0391c5 Binary files /dev/null and b/services/m=funorb/img/images/layout/section_header.gif differ diff --git a/services/m=funorb/img/images/layout/section_header_right.gif b/services/m=funorb/img/images/layout/section_header_right.gif new file mode 100755 index 000000000..569cc9f7c Binary files /dev/null and b/services/m=funorb/img/images/layout/section_header_right.gif differ diff --git a/services/m=funorb/img/images/layout/subsection_header.gif b/services/m=funorb/img/images/layout/subsection_header.gif new file mode 100755 index 000000000..5eb07b14b Binary files /dev/null and b/services/m=funorb/img/images/layout/subsection_header.gif differ diff --git a/services/m=funorb/img/images/layout/subsection_header_right.gif b/services/m=funorb/img/images/layout/subsection_header_right.gif new file mode 100755 index 000000000..0d0ab535f Binary files /dev/null and b/services/m=funorb/img/images/layout/subsection_header_right.gif differ diff --git a/services/m=funorb/img/images/news/2010-07-06_aog.png b/services/m=funorb/img/images/news/2010-07-06_aog.png new file mode 100755 index 000000000..6df704c75 Binary files /dev/null and b/services/m=funorb/img/images/news/2010-07-06_aog.png differ diff --git a/services/m=funorb/img/news/fo_undercroft_iphone.jpg b/services/m=funorb/img/news/fo_undercroft_iphone.jpg new file mode 100755 index 000000000..81930ca74 Binary files /dev/null and b/services/m=funorb/img/news/fo_undercroft_iphone.jpg differ diff --git a/services/m=funorb/index.html b/services/m=funorb/index.html new file mode 100644 index 000000000..6f486eca3 --- /dev/null +++ b/services/m=funorb/index.html @@ -0,0 +1,491 @@ + + + + + + + + + + + + + + + + + + + + + +FunOrb - Free Online Games by Jagex Games Studio + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    +
    +

    +Top 10 Games +All Games +

    +
    +
    +
    + + +
    +
    +
    +
    +News
    + + + +
    +Archive + +
    +
    +
    +
    +
    +
    + +

    FunOrb Sunsetting08-May-2018

    +
    + +

    Over the next 3 months we�ll be slowly winding down FunOrb, read on for more. Read More...

    +
    + +

    Undercroft - Free iPhone Game16-Sep-2010

    +
    + +

    Undercroft is our latest game release for iPhone and iPod touch - and it's completely free! We're hoping you'll enjoy this classic RPG filled with exploration, quests and strategic turn-based combat. Read More...

    +
    + +

    Released: Void Hunters15-Sep-2010

    +
    + +

    We're delighted to announce the full release of Mod Dunk's Void Hunters , which is available to play today. Read More...

    +
    + +

    New game: Sumoblitz01-Sep-2010

    +
    + +

    Announcing a new game from a dear friend. Read More...

    +
    +
    + +
    +
    +
    +
    +

    iPhone Miner Disturbance +

    +
    +
      +
    1. + + + +
      +More info... +Play +
      +
    2. +
    3. + + + +
      +More info... +Play +
      +
    4. +
    5. + + + +
      +More info... +Play +
      +
    6. +
    7. + + + +
      +More info... +Play +
      +
    8. +
    9. + + + +
      +More info... +Play +
      +
    10. +
    11. + + + +
      +More info... +Play +
      +
    12. +
    13. + + + +
      +More info... +Play +
      +
    14. +
    15. + + + +
      +More info... +Play +
      +
    16. +
    17. + + + +
      +More info... +Play +
      +
    18. +
    19. + + + +
      +More info... +Play +
      +
    20. +
    21. + + +See Full List... +
    22. +
    +
    + +
    + +
    +
    + + + + + + + + + + +