There are 3 previous versions of this script.
the source is over 100KB, syntax highlighting in the browser is too slow
// ==UserScript==
// @name Google Apps Themes
// @namespace http://www.tim-jarrett.com
// @description Adds Google Theme Support to Google Apps
// @include https://mail.google.com/a/*
// @include http://mail.google.com/a/*
// ==/UserScript==
// Google Apps Themes
// version 0.0.4 BETA!
// 2009-03-16
// Copyright (c) 2006-2009, Tim Jarrett
// Contact: tim |at| tim-jarrett |dot| com
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// IF YOU ARE UPGRADING FROM A PREVIOUS VERSION OF GOOGLE APPS THEMES,
// go to Tools/Manage User Scripts and manually uninstall the
// previous version before installing this one. Sorry, this is a
// limitation of Greasemonkey.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Google Apps Themes", and click Uninstall.
//
// --------------------------------------------------------------------
//
// WHAT IT DOES:
//
// mail.google.com (Gmail):
// - Adds support for themes to Gmail for Google Apps Users
//
// --------------------------------------------------------------------
/**
* Object for waiting for finding and monitoring the canvas_frame iframe and calling
* other functionality once it is loaded
*/
var bootstrap = {
_canvas_frame_id: 'canvas_frame',
_elem_canvas: null,
_elem_canvas_window: null,
_elem_canvas_document: null,
_canvas_load_timeout: null,
_canvas_load_interval: null,
_callbacks: { },
_regexps: { },
_gmail: null,
_view_change_callbacks: {},
_post_init_callbacks: [],
/**
* Used to register callbacks that will be run when regexp matches unsafeWindow.location.
* callback should accept three parameters: iframe, iframe_window, iframe_document
*/
register: function(callback, regexp)
{
if ( !this._callbacks[regexp] ) {
this._callbacks[regexp] = [];
}
this._regexps[regexp] = regexp;
this._callbacks[regexp].push(callback);
},//end register
registerViewChange: function(callback)
{
//Get the registeration type, if provided
if ( arguments.length == 2 ) {
var type = arguments[1];
} else {
var type = 'all';
}
//Create the type
if ( !this._view_change_callbacks[type] ) {
bootstrap._view_change_callbacks[type] = [ ];
}
//Store it
bootstrap._view_change_callbacks[type].push(callback);
},//end registerViewChange
/**
* Registers any functions that are registered to be run at the end of initializaiton
*/
registerPostInit: function(callback)
{
bootstrap._post_init_callbacks.push(callback);
},//end registerPostInit
/**
* Initialization routine
*/
init: function()
{
this._get_gmonkey_api();
},//end init
/**
* Called after gmail object is loaded
*/
_post_init: function()
{
for ( var i=0; i<this._post_init_callbacks.length; i++ ) {
this._post_init_callbacks[i]();
}//for i
},//end _post_init
_get_gmonkey_api: function()
{
if ( unsafeWindow.gmonkey && unsafeWindow.gmonkey.isLoaded("1.0") == false ) {
window.addEventListener('load', function() {
if ( unsafeWindow.gmonkey ) {
unsafeWindow.gmonkey.load('1.0', function(gmail) {
bootstrap.log("Found the gmonkey api...");
var gmail = unsafeWindow.gmonkey.get("1.0");
bootstrap._gmail = gmail;
bootstrap.log("Current View..." + bootstrap._gmail.getActiveViewType());
bootstrap._post_init();
bootstrap._gmail.registerViewChangeCallback(function() { bootstrap.gmonkeyChangeView(); });
});
}
}, true);
} else if ( unsafeWindow.gmonkey && gmonkey.isLoaded("1.0") == true ) {
bootstrap._post_init();
bootstrap._gmail.registerViewChangeCallback(function() { bootstrap.gmonkeyChangeView(); });
}
},//end _get_gmonkey_api
/**
* Handles changes to the view
*/
gmonkeyChangeView: function(gmail)
{
var view = this._gmail.getActiveViewType();
bootstrap.log("View changed to: " + view + ". Calling callbacks...");
//Any "all" registered?
if ( this._view_change_callbacks.all ) {
for ( var i=0; i<this._view_change_callbacks.all.length; i++ ) {
this._view_change_callbacks.all[i](view);
}//for i
}
if ( this._view_change_callbacks[view] ) {
for ( var i=0; i<this._view_change_callbacks[view].length; i++ ) {
this._view_change_callbacks[view][i](view);
}//for i
}
},//end gmonkeyViewChange
/**
* Wrapper for firebug log
*/
log: function(msg)
{
if ( console && console.log ) {
console.log(msg);
}
}//end log
}//end bootstrap
var google_apps_themes = {
version: '0.0.4',
selected_theme: GM_getValue('theme', 'chrome'),
selected_theme_elem: null,
logo_id: ':rc',
gat_style_id: '_gat_themes',
gat_style_elem: null,
gat_img_elem: null,
gat_settings_doc: null,
gat_settings_bar: null,
gat_settings_page_container: null,
gat_settings_theme_page: null,
gat_settings_themes_link: null,
gat_settings_off_class: null,
gat_settings_on_class: null,
gat_settings_themes_container: null,
gat_settings_as: null,
themes: {
chrome: {
name: "Default",
id: "chrome",
css: "body{margin:0;width:100%;height:100%} body,td,input,textarea,select{font-family:arial,sans-serif} input,textarea,select{font-size:100%} #loading{position:absolute;width:100%;height:100%;z-index:1000;background-color:#fff} .cmsg{margin:1em} .msg{font-weight:bold} .lpb{margin:2px 0;border:1px solid #949dad;width:300px;height:0.5em;overflow:hidden;padding:1px} #lpt{background:#d4e4ff;width:0;height:100%;font-size:0} .invfr{position:absolute;left:0;top:0;z-index:-1;width:0;height:0;border:0} .msgb{position:absolute;right:0;bottom:10px;font-size:12px;font-weight:normal;color:#000;background:#fff;padding:20px}html,body{margin:0;height:100%;width:100%;overflow:hidden}body.xE{background-color:#fff;background-image:none}.cO{height:100%;width:100%}html.cQ{overflow-y:scroll;overflow-x:auto}.cP{overflow:visible;background-color:#fff}body,td,input,textarea,select{margin:0;font-family:arial,sans-serif}input,textarea,select{font-size:100%}.cf{border-collapse:collapse}.aB,.e,.cg{color:#2a5db0;cursor:pointer}.aB,.e{white-space:nowrap}.e,.cg{text-decoration:underline}.ce{position:absolute;height:9px;left:0;top:-10000px}.ch,.ci{width:100%;text-align:center;border:none;margin:0;overflow:hidden}.ci{height:95px}.goog-inline-block{position:relative;display:inline-block}.goog-inline-block{display:-moz-inline-box;display:inline-block}.cP{background:#fff}.wl,.wn,.wo,.wp,.wq{position:absolute;width:100%;height:100%;min-height:inherit}.wl{background:none}.cS .wp{background:none}.cS .wq{background:none}.cS .wn{background:none}.cS .wo{background:none}.cN .wp{background:none}.cN .wq{background:none}.cN .wn{background:none}.cN .wo{background:none}.cL .wp{background:none}.cL .wq{background:none}.cL .wn{background:none}.cL .wo{background:none}.cM .wp{background:none}.cM .wq{background:none}.cM .wn{background:none}.cM .wo{background:none}.cR .wp{background:none}.cR .wq{background:none}.cR .wn{background:none}.cR .wo{background:none}.vi{font-size:0}.vk,.vk,.vg,.vf{font-size:0;width:4px;height:4px}.b8 .ve,.cd .ve,.cc .ve{margin:0 auto 0 auto}.b8,.cd,.cc{padding:5px 0 5px 0}.b8 .vh,.cd .vh,.cc .vh{font-size:80%;font-weight:bold;padding:0 5px;text-align:center}.cb{margin:-2px 0}.ca{text-decoration:underline;cursor:pointer;margin-left:5px}.b8 .vi,.b8 .vh{background:#fff1a8;color:#000}.b8 .b9{color:#2a5db0}.b8 .vj{background:url(rc?a=af&c=fff1a8&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=fff1a8&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=fff1a8&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=fff1a8&w=4&h=4) no-repeat -4px -4px}.cd .vi,.cd .vh{background:#c00;color:#fff}.cd .ca,.cd .b9{color:#c3d9ff}.cd .vj{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat 0 0}.cd .vk{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat -4px 0}.cd .vf{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat 0 -4px}.cd .vg{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#c9edcc}.cc .vh{background:#c9edcc}.cc .ca,.cc .b9{color:#2a5db0}.cc .vj{background:url(rc?a=af&c=c9edcc&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=c9edcc&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=c9edcc&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=c9edcc&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#2a5db0;background-color:#e0ecff;font:normal 80% arial,sans-serif;border:1px solid #777;z-index:7;margin-top:-1px;padding:2px}.aq{position:relative;height:1.4em;line-height:1.4em;white-space:nowrap;cursor:default;clear:both}.am{overflow:hidden;text-overflow:ellipsis;margin-left:2px;width:23em;white-space:nowrap}.an{overflow:hidden;text-overflow:ellipsis;margin-left:2px;width:21.5em;white-space:nowrap}.ao{overflow:hidden;text-overflow:ellipsis;width:25em;white-space:nowrap}.al{width:16px;height:16px;float:left;margin:0 0 0 2px}.ak{width:16px;height:16px;top:50%;font-size:0}.ah .ac-active{background-color:#c3d9ff;color:#2a5db0}.ai{float:right;width:16px;height:16px}.aj{width:16px;height:16px;background-image:url(im/aim_online.png);background-repeat:no-repeat;background-position:top left}.ap{border-top:1px solid #777}.lz{font:70% arial,sans-serif;color:#2a5db0}.ly{color:#2a5db0;text-decoration:underline;cursor:pointer;white-space:nowrap}.vY{visibility:hidden;z-index:5;position:absolute;left:0;top:0;width:100%;height:100%}div.nq{z-index:-2}.vX{visibility:visible;font-size:80%}.vX .l,.vX .k{background-color:#fff1a8}.vX .p{background:#fff1a8}.vX .q{background:#fff1a8}.vX .i{background:url(rc?a=af&c=fff1a8&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=fff1a8&w=4&h=4) no-repeat -4px -4px}.v4{color:#222}.v2{color:#2a5db0}.vZ{padding-left:2px;white-space:nowrap}.v0{padding-right:2px;white-space:nowrap;text-align:right}.v1{font-weight:bold}.dF .dG,.d9,.nr{border:1px solid;border-color:#666666 #ccc #ccc #ccc;background-color:#fff;color:#000}.nr{padding:3px 0 3px 3px;margin:1px}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #6694e3!important;margin:0!important;outline:0!important}.ax{position:absolute;top:0;left:0;background-color:#808080;z-index:500}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#c3d9ff;border:1px solid #4E5766;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#e0ecff;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az{background-color:#fff;padding:4px;font:normal 80% arial,sans-serif}.az .e,.az a{color:#2a5db0!important}.ay{padding:8px;background-color:#fff;font:normal 90% arial,sans-serif;text-align:right}.ay button{margin-left:3px;font:normal 90% arial,sans-serif}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#e0ecff!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #c3d9ff!important}.tr_edit-link-dialog{border:2px solid #c3d9ff!important}.tr_image-dialog{border:2px solid #c3d9ff!important}.tr_dialog{background:#e0ecff!important;color:#000!important}.tr_pseudo-link{color:#2a5db0!important}.tr_dialog-tab-content-explanation-text a{color:#2a5db0!important}.tr_tabbed-pane-tab-content,.tr_tabbed-pane-tabs .tr_selected-tab-in-tabbed-pane{background-color:#fff!important;color:#000!important}.tr_tabbed-pane-tab-label{color:#2a5db0!important}.tr_selected-tab-in-tabbed-pane .tr_tabbed-pane-tab-label{color:#000!important}.ar{height:1.7em;padding:0 5px 1px 0;margin:0;font:9px verdana,arial,sans-serif;text-decoration:none;outline:none}.as{float:left}.at,.au{border-style:solid;font-weight:normal}.at{padding:0;border-width:1px 0;margin:0 1px}.au{padding:1px 0;border-width:0 1px;margin:0 -1px}.av{padding:0 5px}.as .at{overflow:visible}div.wa{left:4%;width:92%;top:5%;z-index:1002;color:#fff;position:fixed;text-align:center;text-shadow:#000 1px 1px 7px;font-family:arial,sans-serif;font-weight:bold;background:#000 none repeat scroll 0;overflow:hidden}.wa{opacity:0.85;-moz-opacity:0.85;-moz-border-radius-bottomleft:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px}div.wc{padding:1em}table.wf,table.wd{width:100%}table.wf td{padding-bottom:0.8ex}.wk{font-size:100%;white-space:nowrap;text-align:left}.wj{color:#dd0;text-align:right}.wi{cursor:pointer;text-decoration:underline;color:#dd0}table.wd{border-top:1px solid #999;font-size:80%}table.wd th{color:#dd0;padding-top:0.8em;text-align:left}table.wd td{vertical-align:top;padding-top:0.15em}table.wd td.wg{font-weight:bold;padding-right:0.3em;text-align:right;white-space:nowrap}table.wd td.we{font-weight:normal;text-align:left}span.wb{font-size:70%}span.wh{font-family:courier new;color:#dd0}.ad{color:#2a5db0}.ag{color:#2a5db0;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#2a5db0;text-decoration:underline;cursor:pointer;white-space:nowrap}.dJ{height:0;overflow:hidden;clear:both}.ph{overflow:hidden;height:100%}.p,.i{float:left}.q,.j{float:right}.o,.h{overflow:hidden;height:100%}.o,.p,.q{position:relative}.m{float:left;width:100%}.k{position:relative}.fZ,.f1{font-weight:bold}.f1,.f1 .f0{color:#2a5db0;cursor:pointer;text-decoration:underline}.fZ .f0{color:#000;cursor:text;outline:none;-moz-outline:none;text-decoration:none}.f2 .fZ,.f2 .f1{float:left;padding:3px 8px}.f3 .fZ,.f3 .f1{float:right;padding:3px;text-align:right}.AD{width:100%;bottom:0}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#fff1a8}.wZ{margin:0;padding-left:2ex;padding-top:3px}.w3{white-space:nowrap;list-style:circle}.w1{list-style:disc}.w0{display:none}.xb{font-weight:bold}.w2{font-size:80%;color:#777}.w5{color:#777;cursor:pointer}.w9{margin-left:5px;font:normal 80% arial,sans-serif;cursor:pointer}.w7{margin-left:5px;font:normal 80% arial,sans-serif;cursor:pointer}.w4{display:none}.w8{margin:2px;padding:2px;font:normal 80% arial,sans-serif;border:1px solid #ccc}.xa{z-index:1000;border:solid #c00 2px;position:relative}.no{float:left}.nn{min-height:1px;float:left}.T1HY1{position:relative;border-spacing:0;padding:0;border-collapse:collapse}.tELAdc{vertical-align:top;margin:0;padding:0}.VB6tt{height:0;overflow:hidden}.goog-imageless-button{margin:2px;border:0;padding:0;text-decoration:none;list-style:none;vertical-align:middle;cursor:default;outline:none}.goog-imageless-button-outer-box,.goog-imageless-button-inner-box{padding:0;border-style:solid}.goog-imageless-button-outer-box{margin:0;border-width:1px 0}.goog-imageless-button-inner-box{margin:0 -1px;border-width:0 1px}.goog-imageless-button-pos{position:relative;height:100%}.goog-imageless-button-top-shadow{position:absolute;left:0;right:0;top:0;height:0.90em;overflow:hidden}.goog-imageless-button-content{position:relative;padding:0 8px;text-align:center;vertical-align:middle;line-height:1.8em;white-space:nowrap}.goog-imageless-button-collapse-right,.goog-imageless-button-collapse-right .goog-imageless-button-inner-box,.goog-imageless-button-collapse-right .goog-imageless-button-outer-box{margin-right:0!important}.goog-imageless-button-collapse-left,.goog-imageless-button-collapse-left .goog-imageless-button-outer-box,.goog-imageless-button-collapse-left .goog-imageless-button-inner-box{margin-left:0!important}.mq{padding:.2em 8px;height:1.1em;background:#6694e3}.mv{font-size:80%;color:#fff;white-space:nowrap;overflow:hidden;padding-top:2px}.my{color:#fff}.mv .e{color:#fff}.mw{padding-top:1px}.mA{white-space:nowrap}.mB{float:right;font-size:70%;color:#D9E7FF;padding:0.3em 1ex 0 2ex}.ms,.mt,.mu{margin:0 0 0 4px;float:right;padding:0 3px;font-size:90%;font-weight:bold;-moz-user-select:none}.ms,.mu{cursor:pointer}.mx,.mz{color:#fff}.sX .mx{color:#000}.mr{color:#fff}.ms{background-color:#4C7CCF;color:#BFD7FF;border:1px solid #BFD7FF}.mu{background-color:#6694e3;color:#FFFFFF;border:1px solid #FFFFFF}.mt{background-color:#6694e3;color:#8BB5FD;border:1px solid #8BB5FD}.C .mq{background:#ccc}.C .mB{color:#000}.C .ms{background:#B8B8B8;color:#FFFFFF;border-color:#FFFFFF}.C .mu{background:#ccc;color:#FFFFFF;border-color:#FFFFFF}.C .mt{background:#ccc;color:#E6E6E6;border-color:#E6E6E6}.B .mq{background:#69c17d}.B .mB{color:#F1FFF4}.B .ms{background:#50AD65;color:#D7FFE0;border-color:#D7FFE0}.B .mu{background:#69c17d;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#69c17d;color:#8DDB9E;border-color:#8DDB9E}.mq{padding:0 0 5px 2px;margin:-2px 0 0 0}.mB{padding-left:2px}.B .mv{color:#fff}.C .mv{color:#2a5db0}.B .mv .e,.B .mz{color:#fff}.B .my{color:#fff}.B .mr{color:#fff}.B .mx{color:#fff}.C .mv .e,.C .mz{color:#2a5db0}.C .my{color:#2a5db0}.C .mr{color:#2a5db0}.C .mx{color:#2a5db0}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#fff;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/chrome/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#fff;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#fff;line-height:105%}.b3{text-indent:0;padding-left:4px;color:#777}.b4{color:#777}.b6{background:#ffc;color:#222}.A1,.AY{padding:3px 0 3px 0}.AN{font-size:70%;float:left;margin:0 8px 0 0;cursor:default}.AO,.AQ{float:left;font:bold 80% arial,sans-serif;margin-right:4px;padding:2px 3px 0 3px}.AO{text-decoration:underline;cursor:pointer}.AP{text-decoration:underline;float:left;margin-left:0.5ex;padding:3px 0.5ex 0 0;cursor:pointer;font:normal 80% arial,sans-serif}.z .AQ{color:#000}.z .AO{color:#2a5db0}.z .AP{color:#2a5db0}.C .AQ{color:#000}.C .AO{color:#2a5db0}.C .AP{color:#2a5db0}.B .AQ{color:#000}.B .AO{color:#2a5db0}.B .AP{color:#2a5db0}.A .AQ{color:#000}.A .AO{color:#2a5db0}.A .AP{color:#2a5db0}.z .l,.y .l{background:#6694e3}.z .o,.y .o{background:#6694e3;height:4px;top:inherit}.z .h,.y .h{background:#6694e3;height:4px}.z .m,.y .m{background:#6694e3}.z .n,.y .n{background:#6694e3;padding:inherit;margin:inherit}.z .p,.y .p,.z .q,.y .q{height:4px;margin-top:inherit}.z .p,.y .p{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i,.z .j,.y .j{height:4px}.z .i,.y .i{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#ccc}.C .o{background:#ccc;height:4px;top:inherit}.C .h{background:#ccc;height:4px}.C .m{background:#ccc}.C .n{background:#ccc;padding:inherit;margin:inherit}.C .p,.C .q{height:4px;margin-top:inherit}.C .p{background:url(rc?a=af&c=ccc&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=ccc&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i,.C .j{height:4px}.C .i{background:url(rc?a=af&c=ccc&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=ccc&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#69c17d}.B .o{background:#69c17d;height:4px;top:inherit}.B .h{background:#69c17d;height:4px}.B .m{background:#69c17d}.B .n{background:#69c17d;padding:inherit;margin:inherit}.B .p,.B .q{height:4px;margin-top:inherit}.B .p{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i,.B .j{height:4px}.B .i{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#fad163}.A .o{background:#fad163;height:4px;top:inherit}.A .h{background:#fad163;height:4px}.A .m{background:#fad163}.A .n{background:#fad163;padding:inherit;margin:inherit}.A .p,.A .q{height:4px;margin-top:inherit}.A .p{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i,.A .j{height:4px}.A .i{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#6694e3}.x .o,.AL .o{background:#6694e3;height:4px;top:inherit}.x .h{background:#6694e3;height:4px}.x .m{background:#6694e3}.x .n{background:#6694e3;padding:inherit;margin:inherit}.x .p{display:inherit;background:#6694e3}.x .q{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AR{border:1px solid #888;margin:0 3px;padding:5px}.AX,.AR{background:#fff;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#fff}.AW .lT{border-top:1px solid #ccc}.D .goog-menu{position:absolute;cursor:default;outline:none;z-index:7}.D .goog-menuitem,.D .goog-tristatemenuitem,.D .goog-filterobsmenuitem{padding:2px 2.5ex 2px 0;margin:0;white-space:nowrap}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#ffc;color:#222}.D .goog-menuitem-disabled,.D .goog-tristatemenuitem-disabled,.D .goog-filterobsmenuitem-disabled{color:#777}.D .goog-menuseparator{margin:2px 0;border-top:1px solid #ccc;padding:0;outline:none}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/chrome/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.D .goog-tristatemenuitem-partially-checked .goog-tristatemenuitem-checkbox{background-position:-72px 50%}.D .goog-tristatemenuitem-fully-checked .goog-tristatemenuitem-checkbox{background-position:-60px 50%}.AU{z-index:6}.AS .lJ,.AS .lN{background:#6694e3}.AS{margin:-5px 0 0 -5px}.AT{background:#e0ecff;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AS .goog-menu-filter,.AS .goog-filterobsmenuitem,.AS .A0{margin:5px}.AS .goog-menu-content{margin:0 5px}.AS .goog-menuseparator{display:none}.AV{color:#2a5db0;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-content{max-height:200px;overflow:auto;overflow-x:hidden;tab-index:-1}.D .goog-menu-filter{background:#fff;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/chrome/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.D .goog-menu-filter input{border:0;background:#fff;color:#000;font-size:100%;margin:0;width:100%;outline:0!important}.AP{float:none}.A1,.AY{padding-left:3px}.AZ{height:6px;width:7px;background:url(images/2/5/chrome/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button{margin:0 10px 2px 2px;font:70% arial,sans-serif}.D .goog-imageless-button-primary{font-weight:bold}.D .goog-imageless-button-outer-box,.D .goog-imageless-button-inner-box{border-color:#bbb}.D .goog-imageless-button-inner-box{background:#e3e3e3}.D .goog-imageless-button-top-shadow{background:#f9f9f9;border-bottom:0.2em solid #EEEEEE}.D .goog-imageless-button-disabled .goog-imageless-button-content{color:#888}.D .goog-imageless-button-content{color:#000}.D .goog-imageless-button-hover .goog-imageless-button-outer-box,.D .goog-imageless-button-hover .goog-imageless-button-inner-box{border-color:#939393}.D .goog-imageless-button-focused .goog-imageless-button-outer-box,.D .goog-imageless-button-focused .goog-imageless-button-inner-box{border-color:#444}.D .goog-imageless-button-active .goog-imageless-button-inner-box{background:#f9f9f9}.D .goog-imageless-button-active .goog-imageless-button-top-shadow{background:#e3e3e3;border-color:#EEEEEE}.D .goog-imageless-button-open .goog-imageless-button-outer-box,.D .goog-imageless-button-open .goog-imageless-button-inner-box{border-color:#888}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#fff}.D .goog-imageless-button-open .AZ{background:url(images/2/5/chrome/vimages7.png) no-repeat -24px 50%}.D .goog-imageless-button-checked .goog-imageless-button-inner-box,.D .goog-imageless-button-open .goog-imageless-button-inner-box{background:#999}.D .goog-imageless-button-checked .goog-imageless-button-top-shadow,.D .goog-imageless-button-open .goog-imageless-button-top-shadow{background:#777;border-color:#888888}.D .goog-imageless-button-checked .goog-imageless-button-content,.D .goog-imageless-button-open .goog-imageless-button-content{color:#fff}.D .goog-imageless-button-collapse-left .goog-imageless-button-inner-box{border-left:1px solid #fff}.D .goog-imageless-button-collapse-left.goog-imageless-button-checked .goog-imageless-button-inner-box,.D .goog-imageless-button-collapse-left.goog-imageless-button-open .goog-imageless-button-inner-box{border-left:1px solid #999}.D .goog-imageless-button-collapse-left.goog-imageless-button-checked .goog-imageless-button-inner-box{border-left:1px solid #999}.D .goog-imageless-button-collapse-left.goog-imageless-button-open .goog-imageless-button-inner-box{border-left:1px solid #888}.D .goog-imageless-button-collapse-right .goog-imageless-button-inner-box{border-right-color:#bbb!important}.AN{cursor:pointer;font-family:arial,sans-serif}.A1{background:#e0ecff;padding:6px 0 3px 6px;border-bottom:1px solid #CAD4E6}.AY{background:#e0ecff;padding:3px 0 6px 6px;border-top:1px solid #CAD4E6}.C .A1{background:#eee}.C .AY{background:#eee}.B .A1{background:#c9edcc}.B .AY{background:#c9edcc}.A .A1{background:#fff7d7}.A .AY{background:#fff7d7}.ow{background-color:#fff;font-size:70%}.oL{text-align:right;padding:4px 7px 4px;cursor:pointer}.oJ{text-decoration:underline;color:#2a5db0}.oD{left:9px;padding:4px 5px 4px 7px;top:0;cursor:pointer;width:auto}.oD .oJ{padding-right:1px}.oG{float:left;height:100%}.oH,.oI{background:#ffc;padding:3px 4px 3px 6px;border:1px solid #ffc!important}.oE{background:url(images/2/5/chrome/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/chrome/icons7.png) no-repeat -140px 0;width:7px;height:7px}.ox{position:relative;zoom:1}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #e0ecff;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oA,.oC{height:1.5em;line-height:1.5em;vertical-align:middle;margin:2px;position:relative;white-space:nowrap}.oA{text-indent:16px;cursor:pointer}.oC{text-indent:3px;color:#777}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/chrome/icons7.png) no-repeat -100px -80px}.oB{background:#ffc}.oK{border-top:1px solid #e0ecff}.p7{padding-left:5px;width:13px;vertical-align:top}.pM{cursor:pointer;outline:none;border-style:solid;border-width:1px 0;margin:0 1px}.p6{margin:0 -1px;font:9px verdana,arial,sans-serif}.p8{text-align:center;height:11px;line-height:11px}.pO .p5{padding-bottom:4px}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#e0ecff;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem{position:relative;white-space:nowrap;padding:3px 10px;cursor:pointer}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#ffc;color:#222}.css-np-clw-palette{outline:none;cursor:default;padding:6px 8px 0 6px}.css-np-clw-palette-table{border-collapse:collapse}.css-np-clw-palette-cell{margin:0;padding:2px;border:0;text-align:center;vertical-align:middle;font-size:90%;font-family:arial,sans-serif;cursor:pointer}.css-np-clw-palette-colorswatch{position:relative;height:13px;width:13px;border:1px solid #888;line-height:11px}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #ffc}.pR .css-np-clw-palette-cell-selected .css-np-clw-palette-colorswatch{background-image:url(images/2/checkmarks.gif)}.qb .css-np-clw-palette-cell-selected .css-np-clw-palette-colorswatch{background-image:url(images/2/checkmarks.gif);background-position:0 13px}.qk{color:#2a5db0;font-size:80%}.ql{color:#c00}.pA{font-weight:bold}.pk{background:inherit}.pk .q{display:inherit}.pk .j{display:inherit}.pk .p{display:inherit}.pk .i{display:inherit}.pk .qk .p9{font-weight:bold;color:#fff;text-decoration:underline}.pk .qk .qh{font-weight:bold;color:#2a5db0;text-decoration:underline}.pk .qk{color:#fff}.pz .k{background:#6694e3}.qj .k{background:#6694e3}div.qi .k{background:#ccc}.qk .p9,.qk .qh{color:#2a5db0}.pO .p9{color:#2a5db0}.pT{color:#2a5db0}.pz .o{background:#6694e3;height:4px;top:inherit}.pz .n{background:#6694e3}.pz .h{background:#6694e3;height:4px}.pz .m{background:#6694e3}.pz .q{background:#6694e3;height:4px;margin-top:inherit}.pz .j{background:#6694e3;height:4px}.pz .i{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#6694e3;height:4px;top:inherit}.qj .n{background:#6694e3}.qj .h{background:#6694e3;height:4px}.qj .m{background:#6694e3}.qj .q{background:#6694e3;height:4px;margin-top:inherit}.qj .j{background:#6694e3;height:4px}.qj .i{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=6694e3&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#ccc;height:4px;top:inherit}.qi .n{background:#ccc}.qi .h{background:#ccc;height:4px}.qi .m{background:#ccc}.qi .q{background:#ccc;height:4px;margin-top:inherit}.qi .j{background:#ccc;height:4px}.qi .i{background:url(rc?a=af&c=ccc&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=ccc&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .l,div.pX .k{background:none}.pX .ph{display:none}.p5{overflow:hidden;text-overflow:ellipsis}.p5 a{text-decoration:underline}.p9,.pU{cursor:pointer;text-decoration:underline}.qa{font-weight:bold}.pW,.pV{margin-left:4px}.pW{background:url(images/2/5/chrome/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.pV{background:url(images/2/icons_ns5.png) no-repeat 0 0;height:16px;width:16px;margin-bottom:-4px}.pp{margin-top:10px}.ps{margin-right:8px;padding-right:0}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden}.pw{font-size:100%;font-weight:normal;display:inline}.px{color:#2a5db0;text-decoration:underline}.pt{background-color:#fff}.m{background-color:#e0ecff}.xE .l,.xE .ph{background-color:#6694e3}.pU{text-align:right;font-size:70%;color:#2a5db0;padding:2px}.r .p{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat -4px 0}.pS .l{background:#e0ecff}.pS .i{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff}.t .l{background:#e0ecff}.t .pU{color:#2a5db0}.t .r .p{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat -3px -3px}.pP{width:100%;overflow:hidden}.pO{color:#2a5db0;font-size:80%;padding:3px 5px;white-space:nowrap;overflow:hidden}.pQ{table-layout:fixed;width:100%}.s .pt{background-color:#fff}.s .l{background-color:#e0ecff}.s .ow{background:#fff}.s .oK,.s .oy{border-color:#888}.s .oy{background:#fff;color:#000}.s .oB{background:#ffc;color:#222}.s .r .p{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat -3px -3px}.qe{position:relative;margin-left:-5px}.qf{position:absolute;left:20px;white-space:nowrap}.qg{position:absolute;left:0;width:15px;height:15px;top:50%;margin-top:-8px}.pY .pt{background-color:#fff}.pY .l{background-color:#e0ecff}.pY .p4{color:#000;font-size:80%}.pY .p2{padding:3px 4px}.pZ,.p0{font-size:80%;margin-bottom:3px}.pZ{padding:1px;vertical-align:middle}.p0{margin-top:3px;width:97%}.pY table{border-spacing:0}.pY td{padding:0;vertical-align:middle;font-size:70%}.p1{padding-top:4px!important;padding-bottom:4px!important}.p3{white-space:nowrap;vertical-align:middle}.pY .r .p{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=e0ecff&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=e0ecff&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#fff}.qo .l{background-color:#e0ecff}.aw{overflow:auto}.qd{margin:4px}.qc{width:430px;margin:4px;type:text}.pq{height:11px;width:11px}.pv .pq{background:url(images/2/5/chrome/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/chrome/icons7.png) no-repeat -60px -20px}.qn{position:absolute;top:0;right:0}.qm{float:left;height:14px;width:9px}.qk{padding-left:22px}div.pX .qk{background-color:transparent}.py{padding:1px 0 1px 4px;vertical-align:middle}.pw{padding-left:3px}.dI{border:1px solid #e0ecff;background-color:#fff}.pO{padding-left:5px;padding-top:3px;padding-bottom:3px}.pU{background-color:#fff;padding:4px 7px 4px 0;margin:0}.pq{height:10px;width:10px}.r .m{float:none}.r .l,.r .k{background:#e0ecff}.r .o{background:#e0ecff;height:4px;top:inherit}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .m{background:#e0ecff}.r .n{background:#e0ecff}.t .r .l,.t .r .k{background:#e0ecff}.t .r .o{background:#e0ecff;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#e0ecff}.t .r .n{background:#e0ecff}.s .r .l,.s .r .k{background:#e0ecff}.s .r .o{background:#e0ecff;height:4px;top:inherit}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .m{background:#e0ecff}.s .r .n{background:#e0ecff}.t .pU{background-color:#fff}.t .oy{background-color:#fff;border-color:#e0ecff}.t .oB{background-color:#ffc}.t .oK{border-top-color:#e0ecff}.pt{border:#e0ecff 1px solid;border-top:none}.s .pt{border-color:#e0ecff}.t .pt{border-color:#e0ecff}.pu{padding-bottom:3px;background:none}.s .pu{padding-bottom:3px;background:none}.t .pu{padding-bottom:3px;background:none}.gb1{color:#000}a.gb1.qq,a.gb3.qq{color:#2a5db0!important}div#gbi{background:#fff!important;border-color:#888!important}a.gb2.qq{color:#2a5db0!important}a.gb2.qq:hover{color:#222!important;background:#ffc!important}div.gbd{border-top:1px solid #ccc!important}.gbh{display:none}.qp{background:transparent;border-bottom:1px solid #ccc;margin-bottom:2px}div#guser{padding-bottom:5px!important}div#gbar{height:20px}.aC{min-height:inherit}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 0}.aZ{background:#fff;color:#000;padding:0 6px}.a0{background:#fff1a8;color:#000;padding:0 6px}.bJ{float:left}.d{margin-top:10px;height:auto}.bN{vertical-align:middle}.bQ,.a8,.bF,.aH{font-size:80%}.bM{margin:0 2px}.a5{font-size:70%;color:#fff;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#fff}.aJ .a5{color:#fff}.bR{font:9px verdana,arial,sans-serif;color:#2a5db0;text-decoration:underline;cursor:pointer}.a8{color:#000;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#2a5db0}.aL{clear:both}.a2{margin:5px auto;width:90%}.aE{margin:2px 0 0 0}.aI{font-size:100%;font-weight:bold;margin:0;padding:0}.aK .aI{color:#F1FFF4}.l0{margin:5px auto}.aJ .aI{color:#000}.aM{padding:5px}.bE{color:#c00}.aN,.aP{margin-top:5px}.aN{text-align:center}.aP{text-align:left}.aO{float:left}.aQ{margin:0 2px}.bF{visibility:hidden;float:left;clear:left}.aH{padding:4px;color:#000;background:#fff1a8;border:1px solid #ccc;font-weight:bold}.aH .e{color:#2a5db0}.bU{float:right}.bA{color:#2a5db0;cursor:default}.bB{color:#2a5db0;text-decoration:none}.bA .goog-menu{background:#fff none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#2a5db0;text-decoration:none}.bC{text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#2a5db0}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#ffc none repeat scroll 0!important}.bA .goog-menuitem-highlight .e{text-decoration:none;color:#222}.bM{padding:0 8px}.d .goog-imageless-button{margin:0;font:70% arial,sans-serif;color:#000}.d .goog-imageless-button-outer-box,.d .goog-imageless-button-inner-box{border-color:#bbb}.d .goog-imageless-button-inner-box{background:#e3e3e3}.d .goog-imageless-button-top-shadow{background:#f9f9f9;border-bottom:0.2em solid #EEEEEE}.d .goog-imageless-button-content{color:#000}.d .goog-imageless-button-hover .goog-imageless-button-outer-box,.d .goog-imageless-button-hover .goog-imageless-button-inner-box{border-color:#939393}.d .goog-imageless-button-focused .goog-imageless-button-outer-box,.d .goog-imageless-button-focused .goog-imageless-button-inner-box{border-color:#444}.d .goog-imageless-button-active .goog-imageless-button-inner-box{background:#f9f9f9}.d .goog-imageless-button-active .goog-imageless-button-top-shadow{background:#e3e3e3;border-color:#EEEEEE}.a9{margin:1px 10px 10px 10px}.nG{margin-bottom:-1px}.bT{font-size:80%;color:#c00}.a1{font-weight:normal}.aF{margin:8px;padding:10px 10px 10px 0;background-color:#ffdddd;border:1px solid #990000;font-size:80%}.aG{margin:8px;padding:4px;background-color:#fae5b0;border:1px solid #fad163;font-size:80%}.bV{text-align:center;width:42px}.bW{background:url(images/2/icons_ns5.png) no-repeat -80px 0;width:16px;height:16px}.b,.a{font-size:90%}.b th,.a th{font-size:90%;font-weight:bold;text-align:right!important;padding-right:0.5ex;white-space:nowrap;vertical-align:top;padding-top:3px}.b td,.a td{font-size:90%;white-space:nowrap}.lY{padding:0 0 5px 0}.lZ{padding:5px}.a3{font-weight:bold}.aS{width:15%}.aR{width:30%}.aW{width:10%}.aY{font-size:90%;width:100%}.aY{margin:2px 1px!important}.aY:focus{margin:1px 0!important}select.aY{width:32ex}.aV{font-size:90%;width:100px}.a4{font-size:80%;text-align:right}.aU{font-weight:bold}.aD{font-weight:bold}.bY{white-space:normal!important}.bG{font-weight:bold}.aX{white-space:normal!important;padding-bottom:1ex}.aT{font-weight:bold}.aK .k{background:#69c17d;margin:0!important}.aK .o{background:#69c17d;height:4px;top:inherit}.aK .m,.b .m{background:#69c17d}.aK .n{margin-left:5px!important;background:#69c17d;padding-top:inherit}.aK .q,.aK .p{height:4px;margin-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat -4px 0}.b .o{background:#69c17d;height:4px;top:inherit}.b .h{background:#69c17d;height:4px}.b .m{background:#69c17d}.b .n{background:#69c17d}.b .p{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat 0 0}.b .q{background:#69c17d}.b .i{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=69c17d&w=4&h=4) no-repeat -4px -4px}.b{color:#000}.b .e{color:#2a5db0}.b .k{background-color:#c9edcc}.aJ .k{background:#fad163;margin:0!important}.aJ .o{background:#fad163;height:4px;top:inherit}.aJ .m,.a .m{background:#fad163}.aJ .n{background:#fad163;margin-left:5px!important;padding-top:inherit}.aJ .q,.aJ .p{height:4px;margin-top:inherit}.aJ .p{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat -4px 0}.a{color:#000}.a .e{color:#2a5db0}.a .o{background:#fad163;height:4px;top:inherit}.a .h{background:#fad163;height:4px}.a .k{background-color:#fff7d7}.a .m{background:#fad163}.a .n{background:#fad163}.a .p{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat 0 0}.a .q{background:#fad163}.a .i{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat -4px -4px}div.yi{overflow:visible}.y6{white-space:nowrap}.xT{white-space:nowrap;width:200%;overflow:hidden}.xS{white-space:nowrap}.xT{width:300%}.zt td{padding-bottom:1px}.yV{font-size:80%;white-space:nowrap;padding:3px 0 3px 2px}.yU{cursor:pointer}.yS{padding-right:3px;font-weight:normal}.yT{color:#000;font-weight:bold}.zw{white-space:nowrap}.zx{font-weight:bold}.yC{white-space:nowrap;font-size:80%;padding:.3em 8px 0 0}.xK{padding:3px 0 0 0}.xJ{height:0;overflow:hidden;clear:both}.yD{float:right}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #D6D6D6 solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #D6D6D6 solid;padding:3px 8px}.yd{background-color:#f7f7f7}.yb{background-color:#ffc;color:#222}.yc{background-color:#f7f7f7}.x8{text-decoration:underline;cursor:pointer;color:#2a5db0}.yb .x8{color:#2a5db0}.ya .e,.x9{color:#2a5db0}.yd .x8,.yd .x9{color:#2a5db0}.x2{color:#2a5db0;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yV{color:#000}.z .yU{color:#2a5db0}.z .yC .zw{color:#000}.z .yC .e{color:#2a5db0}.B .yV{color:#000}.B .yU{color:#2a5db0}.B .yC .zw{color:#000}.B .yC .e{color:#2a5db0}.A .yV{color:#000}.A .yU{color:#2a5db0}.A .yC .zw{color:#000}.A .yC .e{color:#2a5db0}.C .yV{color:#000}.C .yU{color:#2a5db0}.C .yC .zw{color:#000}.C .yC .e{color:#2a5db0}.zq{table-layout:fixed;cursor:default;width:100%;border-spacing:0;padding:0;background-color:#fff;color:#000}.zs{background:inherit;height:inherit;padding:4 1ex}.zr{font-size:80%;border-bottom:1px #fff solid;vertical-align:middle;padding:1px;empty-cells:show}.x0{color:#2a5db0;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#2a5db0}.xI{background-color:#eee}.xG{border-bottom:1px solid #ccc;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#2a5db0;text-decoration:underline;cursor:pointer;white-space:nowrap}.zv{position:relative}.zt{table-layout:fixed;cursor:pointer;width:100%;border-spacing:0;padding:0}.zt td{font-size:80%;border-bottom:1px #D6D6D6 solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.yW,.y6,.xS,.as{white-space:nowrap;overflow:hidden}.xQ{width:29px}.y5{width:20px}.yY{width:22ex}.yF{width:2ex}.yg{width:17px}.xX{width:10ex}.zA{color:#000;cursor:pointer;padding:4 1ex}.zB td{padding-bottom:1px}.yO{background:#efefef;color:#444}.yO b{font-weight:normal}.zE{color:#000;background:#fff}.x7{color:#222;background:#ffc}.zF{font-weight:bold}.yP{font-weight:normal}td.xO,td.xP{text-align:right;padding:1px 0 0 2px;width:27px}.xR{background:url(images/2/5/chrome/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:-2px;left:-2px}.xN{vertical-align:middle;margin:-1px 0 0 3px}td.xO,td.xP{padding:3px 0 0 2px}.xR{margin-top:0}.xR{margin-top:-1px}td.y4,td.zy{padding:0 0 0 5px}td.yX{padding:2px 6px 0 3px}.y3,.zG,.zz,.Ab,.xL{width:15px;height:15px}.yE{width:15px;height:15px}.xM{width:16px;height:16px}.y3{background:url(images/2/5/chrome/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/chrome/icons7.png) no-repeat 0 -20px}.zz{background:url(images/2/icons_ns5.png) no-repeat -20px -100px}.yE{background:url(images/2/5/chrome/icons7.png) no-repeat -120px -40px}.Ab{background:url(images/2/icons_ns5.png) no-repeat -60px 0}.xM{background:url(images/2/icons_ns5.png) no-repeat 0 0}.xL{background:url(images/2/icons_ns5.png) no-repeat -42px -23px}.yi{font-size:80%;color:#063}.y2{color:#777}.x7 .y2{color:#777}.yg{width:25px}.yf{text-align:right}.xW{text-align:right}.zt .xW{padding:2px 8px 3px 8px}.xR{margin-top:1px}.xN{margin:0 0 0 2px}.xR{margin-top:-1px}.xQ{width:22px}td.xP{width:24px}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}.xK{padding:0}.xK{padding:0;float:left}.yQ{background:#ffc}.xD{color:#777}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#fff1a8;border:1px solid #ccc;font-size:80%;color:#000;padding:10px}.ck .Ac{position:fixed}.Ad{color:#2a5db0;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#f7f7f7}.Ae{padding:2px 0 0 2px;overflow:hidden}.Ae{padding:3px;text-align:center}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#f7f7f7;border:1px solid #ccc;width:250px;padding:4px;z-index:10}.Af textarea{width:98%;height:36px;font-size:80%;border:1px solid #ccc;padding:2px 0 0 1px;margin:0}.Af input{font-size:80%;padding:2px 4px}textarea.Ah{border:2px solid #6694e3}textarea.Ai{border:2px solid #f7f7f7}.Ag{font-size:70%;color:#777}.lJ{height:5px}.lN{width:5px}.lW{width:3px;overflow:hidden}.lO{background:url(images/2/horizontalimages2.png) repeat-x 0 -72px;height:6px}.lP{height:6px;width:8px;background:url(images/2/icons_ns5.png) no-repeat -80px -66px}.lQ{height:6px;width:8px;background:url(images/2/icons_ns5.png) no-repeat -89px -66px}.lR{background:url(images/2/5/chrome/vimages7.png) repeat-y 0 0}.lU{height:5px;width:3px;background:url(images/2/icons_ns5.png) no-repeat -80px -60px}.lS{background:url(images/2/5/chrome/vimages7.png) repeat-y -12px 0}.lV{height:5px;width:3px;background:url(images/2/icons_ns5.png) no-repeat -94px -60px}.de,.df,.c7,.o3,.wK{width:16px;height:16px}.df{background:url(images/2/icons_ns5.png) no-repeat -60px -80px}.c7{background:url(images/2/icons_ns5.png) no-repeat 0 0}.o3{background:url(images/2/icons_ns5.png) no-repeat -100px -20px}.wK{background:url(images/2/icons_ns5.png) no-repeat -80px -40px}.qs{vertical-align:middle;margin-left:4px;margin-right:4px}.l2{text-align:center;margin-top:0;margin-bottom:0}.mn{color:#000}.mn .l8{color:#2a5db0!important}.mn,.l4,.md{padding-top:12px;font-size:80%}.md{font-weight:bold}.mi{color:#c00}.mj{color:#006633}.mp,.ma{font-size:70%;color:#000}.mo,.l9{color:#000}.mp{padding-top:5px}.l8{color:#000;text-decoration:underline;cursor:pointer}.ma{padding-top:9px}.l3{color:#000}.mb{color:#000;padding-top:4px}.mc{vertical-align:middle;width:54px;height:20px;border:0}.l6{font-size:70%;color:#000;padding-top:12px}.l6 .e{color:#2a5db0}.l7{background:#fff1a8;color:#000;font-weight:bold}.l5{font-size:90%;margin:0 auto;margin-bottom:6px}.me,.mf{margin:0 6px 0 2px;font-size:100%;height:8px;line-height:8px;border-collapse:separate}.me{border:1px solid black}.mf{border:1px solid #4b7cd2}.mk{background-color:#d40000}.ml{background-color:#bad8fd}.mg{background-color:#f6f6f6}.mh{color:#000;font-weight:bold}.mm{color:#000}.tq{position:absolute;padding:0;font:90% arial,sans-serif;z-index:8}.tq,.tG,.tC,.t5,.tB,.tL,.t4,.tF,.tq .goog-menuitem,.tq .goog-menuitem-opened,.tD{font-size:90%}.u{background-color:#fff}.t6,.t7{padding:0}.t6{min-width:300px}.t7{min-width:175px}.tE{text-decoration:underline;color:#2a5db0;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tv,.tN{vertical-align:top}.tN{width:98px}.tM,.tR{width:96px;height:96px}.tM,.tr{margin:1px;position:relative}.ts{width:50px}.tt,.tr{width:48px;height:48px}.tr{padding:24px 24px 24px 0}.tS{background-image:url(images/blue_ghost.jpg)}.tP,.tQ{display:none;font:90% arial,sans-serif}.tO{border:1px solid #2a5db0;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#2a5db0;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tP{top:40px}.tQ{top:0}.ty,.tx,.tw,.tA{width:16px;height:16px;margin-right:3px}.ty{background:url(images/2/icons_ns5.png) no-repeat 0 -40px}.tx{background:url(images/2/icons_ns5.png) no-repeat 0 0}.tw{background:url(images/2/icons_ns5.png) no-repeat -40px -40px}.tA{background:url(images/2/icons_ns5.png) no-repeat -80px -40px}.tz{background:url(images/2/5/chrome/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.goog-menuitem-disabled .ty{background:url(images/2/icons_ns5.png) no-repeat -20px -40px}.goog-menuitem-disabled .tx{background:url(images/2/icons_ns5.png) no-repeat -20px 0}.goog-menuitem-disabled .tw{background:url(images/2/icons_ns5.png) no-repeat -60px -40px}.tW{width:9px;height:9px;margin:0 5px;vertical-align:middle}.tX{background:url(images/2/icons_ns5.png) no-repeat -4px -84px}.tY{background:url(images/2/icons_ns5.png) no-repeat -24px -84px}.tZ{background:url(images/2/icons_ns5.png) no-repeat -44px -84px}.t3,.t0{background:url(images/2/icons_ns5.png) no-repeat -64px -84px}.t1{background:url(images/2/icons_ns5.png) no-repeat -41px -62px;width:14px;height:12px}.t2{visibility:hidden}.tK{background:url(images/2/icons_ns5.png) no-repeat -60px -60px;width:16px;height:16px;margin-top:3px;vertical-align:bottom;text-align:center}.tL,.t4{height:20px;margin-top:5px;vertical-align:bottom}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#fff;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem{padding:2px 5px;white-space:nowrap}.tV{border-top:1px solid #888;margin-top:2px}.tT .goog-menuitem-highlight{background-color:#ffc;color:#222}.tT .goog-menuitem-disabled{color:#777}.tT .goog-option .tU{height:12px;width:12px}.tT .goog-option-selected .tU{background:url(images/2/5/chrome/icons7.png) no-repeat -100px -80px}.u .goog-menu{-moz-user-select:none;outline:0}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#f7f7f7;color:#000;border-bottom:1px solid #ccc;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem{cursor:pointer}.u .goog-menuitem img,.u .goog-menuitem-disabled img,.u .goog-menuitem-active img,.u .goog-menuitem-opened img{vertical-align:middle;margin-bottom:2px}.u .goog-menuitem-highlight{background-position:0 -24px}.u .goog-menuitem-disabled{background-color:#f7f7f7;color:#777}.u .goog-menuitem-active,.u .goog-menuitem-opened{background-position:0 -48px}.u .goog-menuitem-opened{padding:0;border-width:1px 1px 0 1px}.u .goog-menuitem-opened .tF{background:#fff;background-position:0 -48px;color:#000;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #fff;background:#ccc;width:1px;height:23px;padding:0;margin:0}.tu{margin:2px}.t6 .tu th,.t6 .tu td{padding:1px 0!important}.t7 .tu td{padding:3px 5px 6px 10px!important}.tu th{text-align:left;vertical-align:middle}.t7 th{display:none}.tu td{vertical-align:top;margin:0;color:#000}.tG{font-weight:bold;overflow:hidden;text-overflow:ellipsis;border:1px solid #fff;margin:1px;padding:3px 0 3px 3px}.t6 .tG,.t6 .t5,.t6 .tD,.t6 .tB{width:173px}.t7 .tG,.t7 .t5,.t7 .tD,.t7 .tB{width:150px}.tJ{border-color:#666666 #ccc #ccc #ccc}.tH{background:#fff}.tI{font-weight:bold;background:transparent;border:0;padding:0;outline:0}.t6 .tI{width:174px}.t7 .tI{width:149x}.t5{margin-bottom:3px;padding-left:2px}.tB,.tC{color:#777;padding-left:2px}.tC{margin-top:3px}.tq .lJ{background-color:#6694e3}.tq .lN{background-color:#6694e3}.iH{padding-bottom:3px}.iG{float:right;padding-top:3px}.iF{height:0;overflow:hidden;clear:both}.iI{padding:3px 0 3px 0}.iE{padding:8px 0 3px 6px}.iE .AM{padding:0}.hx{padding:4px 8px 4px 8px}.hx .k{background-color:transparent}.hx .pi{display:inherit}.hx .m{margin-top:inherit;border-left:inherit}.g .hx .n{margin-right:inherit;border-right:inherit;padding:inherit}.iY{background:#fff}.if{padding:0 0 1px 0}.iC{padding:0 0 1ex 0;background:#fff}.hF{position:absolute;top:4px;left:-12px;z-index:1}.hH{display:none}.hG{background:url(images/2/5/chrome/icons7.png) no-repeat -41px -21px;width:5px;height:9px}.g2{vertical-align:top}.gt{font-size:80%}.gu{font-family:Courier New,courier,monospace}.gt a{color:#2a5db0}.gs li{margin-left:15px}.gs pre{white-space:pre-wrap;white-space:-moz-pre-wrap;word-wrap:break-word;white-space:-pre-wrap;white-space:-o-pre-wrap}.gE{padding-left:4px;padding-bottom:3px}.hI,.ig,.iv{cursor:pointer}.hI,.ig{padding-right:4px}.iv,.ib{padding-right:0}.gJ{width:100%}.gF{text-align:left;white-space:nowrap;padding-right:8px;vertical-align:top;width:100%}.gH{text-align:right;white-space:nowrap;vertical-align:top}.ix{table-layout:fixed;width:100%}.iw{overflow:hidden;white-space:nowrap}.gK{padding-top:4px}.gH .gK{padding-right:4px}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#ffc}.h8,.gX,.gR{white-space:nowrap;text-decoration:underline;cursor:pointer}.h1,.iD{color:#2a5db0;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#2a5db0}.ia{padding-left:10px}.gY,.hg,.he{position:relative;margin:0 3px 0 4px;padding:5px 5px 5px 10px}.gY,.gS{overflow:hidden;font-size:80%;font-weight:bold}.gY{color:#fff;background:#c00}.gX{color:#c3d9ff}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#ffc}.gR{margin:1px 0 0 0;color:#2a5db0}.gT{padding-left:10px}.hg{width:auto;overflow:hidden;background:#ffc}.he{overflow:visible;background:#eee}.he table{border-collapse:separate;border-spacing:5px}.ie .gE{cursor:auto}.g7{padding-right:4px;width:0;vertical-align:top}.f img.g9,.f img.g8{cursor:pointer}.gG{text-align:right;color:#777;white-space:nowrap;vertical-align:top;width:0}.gL{white-space:normal;vertical-align:top;width:100%}.gI{cursor:auto}.gG .gI{white-space:nowrap}.h1{padding-left:4px;font-size:70%}.f{margin-top:1px;vertical-align:top}.hf,.gp,.hd{height:15px;width:15px}.gp{background:url(images/2/icons_ns5.png) no-repeat -42px -23px}.g8,.g9{height:15px;width:15px}.g8{background:url(images/2/5/chrome/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/chrome/icons7.png) no-repeat -20px -20px}.hd{background:url(images/2/icons_ns5.png) no-repeat -20px -100px}.gW{background:url(images/2/5/chrome/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.hf{background:url(images/2/icons_ns5.png) no-repeat -60px 0}.gZ,.g1,.gx,.gq,.gC,.gM{height:16px;width:16px}.gZ{background:url(images/2/5/chrome/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/chrome/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/chrome/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/chrome/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/chrome/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/chrome/icons7.png) no-repeat -100px -60px}.gD{font-size:100%;font-weight:bold;white-space:nowrap;display:inline}.gE .ik{vertical-align:top;position:relative;top:3px}.ig .gD,.hI .gD,.iv .gD{vertical-align:top}.iv .hb{vertical-align:top}.ig .g6,.hI .g6{vertical-align:top}.ig .g3,.hI .g3,.iv .g3,.ib .g3{vertical-align:top;margin-right:3px}.iv .iD,.ib .iD{vertical-align:top}.go{color:#777}.gv{visibility:hidden;position:absolute;color:#000;background:#fff;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gN,.gv .gP{padding:2px}.gv .gO{background:#ffc;color:#222}.gv .gN{cursor:pointer}.gv .gP{display:none}.gw .gN,.gw .gO{zoom:1}.gU{vertical-align:text-top;margin-right:3px}.g6{padding-left:5px;color:#777}.ii{margin:5px 15px;padding-bottom:20px}.ii a{color:#2a5db0}.hq{margin:5px 15px 15px 15px;clear:both}.hp{width:50%;height:0;border-top:2px solid #ccc}.ho{margin:5px 0 0 5px}.ho a{color:#2a5db0}.hr{border-collapse:collapse;margin:8px 0 0 5px}.hr a{color:#2a5db0}.hw{vertical-align:middle;padding-right:7px}.hv{float:left;border:2px solid #6694e3;padding:5px}.hu{float:left;border:0;width:16px;height:16px}.hs{margin:0}.hs .goog-menu-button{color:#000;background:transparent;border:1px solid #888;white-space:nowarp;padding:2px 4px}.hs .goog-menu-button-dropdown{padding:1px 4px}.h6{height:7px;width:7px;background:url(images/2/5/chrome/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#fff;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem{padding:2px 1.5em 2px 5px;margin:0;white-space:nowarp;list-style:none}.ht .goog-menuitem-disabled{color:#777}.ht .goog-menuitem-highlight{background:#ffc;color:#222}.hy{vertical-align:middle;cursor:pointer;height:3ex}.h2{overflow:visible;background:#f7f7f7;border-left:solid 1px #bcbcbc;margin:2px 3px 0 0}.h3{margin:0 0 0 -1px;background:url('images/2/cv/card-bt-b.gif') repeat-x bottom left}.hC{padding-left:5px;background:url('images/2/cv/card-bt-bl.gif') no-repeat bottom left}.hD{border-left:solid 1px #999;height:2ex;width:1px}.hz{background:url('images/2/cv/card-bt-tr.gif') no-repeat top right;padding:0 7px 0 5px}.hA{height:7px;width:7px;background:url(images/2/5/chrome/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/chrome/icons7.png) no-repeat 0 -40px}.hE{color:#2a5db0;padding-right:4px;padding-left:4px;white-space:nowrap}.g{color:#000}.g .o{background:#fff url('images/2/cv/card-ex-tm.gif') repeat-x top;height:inherit;top:inherit;left:inherit;margin-right:inherit}.g .q,.g .p{height:10px;margin-top:inherit}.g .h{background:#f7f7f7 url('images/2/cv/card-ex-bm.gif') repeat-x top}.g .pi .h,.g .pi .i,.g .pi .j{height:13px;margin:inherit;padding:inherit}.g .m{background:#fff url('images/2/cv/card-ex-lm.gif') repeat-y top left}.g .n{background:url('images/2/cv/card-ex-rm.gif') repeat-y top right}.g .p{background:#fff url('images/2/cv/card-ex-tl.gif') no-repeat top left}.g .hn .p{background:#fff url('images/2/cv/card-ex-tlc.gif') no-repeat top left}.g .q{background:#fff url('images/2/cv/card-ex-tr.gif') no-repeat top right;margin:inherit;padding:inherit}.g .hn .q{background:#fff url('images/2/cv/card-ex-trc.gif') no-repeat top right}.g .j{background:#f7f7f7 url('images/2/card-ex-br.gif') no-repeat top left}.g .i{background:#f7f7f7 url('images/2/card-ex-bl.gif') no-repeat top right}.iz{padding:4px 8px}.iz .o{background:#e0ecff url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#e0ecff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#e0ecff url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#e0ecff url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#e0ecff url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#e0ecff url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#e0ecff url('images/2/card-ex-br.gif') no-repeat top right}.iz .h,.iz .i,.iz .j{height:inherit}.ij .i,.iz .i{background:#e0ecff url('images/2/card-ex-bl.gif') no-repeat top left}.ha{font-family:arial,sans-serif;font-size:100%;margin:12px 5px 5px 10px;padding:0;color:#000;background:inherit;border-right:inherit}.ha img{position:relative;top:-0.2ex}.id .il,.iW{background:#ffc}.gA,.hi{background:#f7f7f7 url('images/2/cv/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.gB,.hh{background:url('images/2/cv/card-ex-rm.gif') repeat-y top right}.hh{padding-left:10px;padding-right:14px}.A9{font-size:80%;color:#c00}.qr .gA{background:#e0ecff url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#e0ecff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gz{margin-bottom:-1px;width:100%}.g4{cursor:pointer;padding:3px 8px 3px 20px;background-repeat:no-repeat;background-position:5% center;white-space:nowrap}.io{text-align:right;width:100%;padding-right:4px}.in{font-size:80%}.iq{clear:both;padding-left:6px}.iq textarea{margin:5px 0 0 0}.g5{clear:both}.ir{width:60%;height:60px;overflow:hidden}.gQ{color:#063;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#2a5db0}.gQ span{cursor:pointer;text-decoration:underline}.gV{position:absolute;right:0;top:2px;padding:5px 8px}.hj{font-size:80%}.iC .hj{padding-top:6px;float:right;white-space:nowrap;padding-right:6px;font-weight:normal}.hk{padding-top:1ex}.iC .hk{padding-right:1ex;display:inline;padding-left:14px}.iC .hl{display:inline}.hk span{cursor:pointer;color:#2a5db0;white-space:nowrap}.iC .hk span{color:#2a5db0}.hk img{width:16;height:16;vertical-align:middle}.h0{white-space:nowrap;text-align:right;font-size:80%;padding-right:8px}.h0 .e{font-weight:bold}.z .h0{color:#000}.z .h0 .e{color:#2a5db0}.C .h0{color:#000}.C .h0 .e{color:#2a5db0}.B .h0{color:#000}.B .h0 .e{color:#2a5db0}.A .h0{color:#000}.A .h0 .e{color:#2a5db0}.iS{text-align:center;background:#eee;margin:0 8px 0 16px}.iU{font-size:80%;color:#000}.iV{height:13px;width:12px;background:url(images/2/icons_ns5.png) no-repeat -22px -101px}.iT{color:#2a5db0;cursor:pointer}.h4{cursor:pointer;color:#500050;font-size:9px}.h5{display:none;color:#500050}.im{color:#500050}.iX{color:#fff}.gr{font-size:70%}.iu{position:absolute;z-index:2;color:#fff;font-size:80%;bottom:1px;right:16px;position:absolute}.it{font-weight:bold;padding:1}.g0{white-space:normal!important;padding-right:10px}.hm{color:#777}.hI .iB{table-layout:fixed;white-space:nowrap;width:100%}.hI .iA{overflow:hidden;text-overflow:ellipses;white-space:nowrap}.u5{background:inherit;padding-top:10px;position:relative}.va{position:absolute;left:-10000px}.oM,.u8{font-size:80%}.wr .oM{font-size:70%}.u9,.u8{padding-top:10px;color:#000;text-align:center}.u7{color:#2a5db0;text-decoration:underline;cursor:pointer}.u6:visited{color:#2a5db0}.vb{color:#000;margin:12px 0}.vc{padding-top:2px}a.u6{color:#2a5db0}.vd{color:#063;text-decoration:none}.fO{font-size:80%;margin-right:5px;padding-bottom:10px;border-bottom:1px solid #ccc}.fO .u9{text-align:left}.fO .vb{padding-top:9px;margin:0}.fW{padding:1px 0 4px}.fO .u6{top:0}.fP{margin-left:26px}.fQ{float:left;height:20px;width:20px}.fR{background:url(images/2/icons_ns5.png) no-repeat 0 -20px}.fU{background:url(images/2/icons_ns5.png) no-repeat -20px -20px}.fS{background:url(images/2/icons_ns5.png) no-repeat -40px -20px}.fV{background:url(images/2/icons_ns5.png) no-repeat -60px -20px}.fT{background:url(images/2/icons_ns5.png) no-repeat -100px -40px;height:16px;width:16px}.u4 .u9{font-weight:bold;text-align:left;padding-top:0;margin-bottom:4px}.u4 .vb{margin:0}.o1{font-weight:bold}.o1,.o2{padding-bottom:5px}.hY .hM,.hQ .hM{height:1px}.hR .hM{padding-bottom:1px}.hT,.hW,.hS{width:1px}.hX{cursor:pointer;display:inline;margin-right:4px;margin-top:3px}.hX{display:inline-table;vertical-align:top}.hP{padding-right:10px}.hU{font:9px verdana,arial,sans-serif}.hV{font:9px verdana,arial,sans-serif}.hN{padding-left:4px;padding-right:6px}.hO{padding:1px 4px 1px 4px}.iH{padding:0;float:left}.h7{padding-bottom:10px}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.iI{background:#e0ecff;padding:6px 0 5px 6px}.iE{background:#e0ecff;padding:7px 0 5px 6px}.C .iI{background:#eee}.C .iE{background:#eee}.B .iI{background:#c9edcc}.B .iE{background:#c9edcc}.hG{margin:4px 0 0 2px}.tr_dialog{background:#e8eef7;font-family:arial;font-size:10pt}.tr_dialog body{font-size:10pt}.tr_dialog .tr_dialog-title{margin:0;padding:0 5px 3px 5px;background:#c3d9ff;color:#000;font-weight:bold;font-size:10pt}.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{margin:0 0 0 0;padding:0 0 0 0;background:#c3d9ff;color:#000;font-weight:bold;font-size:10pt}.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table td{padding-top:5px}.tr_button-region-lhs{float:left;padding:0 7px 5px 0}.tr_dialog .tr_button-region-rhs{float:right;clear:both;padding:0 7px 5px 0}.tr_dialog .tr_button-region-rhs input,.tr_button-region-lhs{padding:.25ex .3ex;margin:6px 0 1px 1.2ex}.tr_dialog .tr_dialog-section{border-bottom:solid 2px #c3d9ff;font-size:10pt}.tr_pseudo-link{color:#00c;text-decoration:underline;cursor:pointer}.tr_dialog-tab-content-explanation-text{font-size:83%;margin-top:15px}.tr_external-input-div{margin:1ex 0}.tr_backgroundMask{position:absolute;display:none;top:0;left:0;opacity:.4;filter:alpha(opacity=40);background-color:#ffffff}.tr_resource-list div{padding-bottom:2px;margin-bottom:1px;border-bottom:solid #ccc 1px;cursor:pointer;font-size:10pt}.tr_resource-list-icons img{margin-left:1px;margin-right:4px;top:2px}.tr_resource-list-size{overflow:auto;height:200px;font-size:10pt}.tr_edit-link-dialog{position:absolute;border:2px solid #99c0ff;width:650px}.tr_edit-link-dialog-body{margin:0;padding:5px 10px 0 10px;line-height:1.3;font-size:10pt}#tr_on-the-web-tab-input,#tr_email-address-tab-input{width:100%;direction:ltr}#tr_email-warning-div{text-align:center;visibility:hidden;color:#c00;font-weight:bold}.tr_tabbed-pane-tabs{line-height:1.3;vertical-align:top;font-size:10pt}.tr_tabbed-pane-tabs p{margin-bottom:.7ex;font-size:10pt}.tr_tabbed-pane-tabs div{cursor:pointer;width:148px}.tr_tabbed-pane-tabs .tr_tabbed-pane-tab-label{color:blue;text-decoration:underline}.tr_tabbed-pane-tabs td{font-size:13px}.tr_vertical-tab div{padding:.5ex 0 .5ex .7ex}.tr_horizontal-tab div{padding:.7ex;border-top:2px solid #99c0ff;border-left:2px solid #99c0ff;border-right:2px solid #99c0ff;margin-left:2px}.tr_tabbed-pane{padding:1.3ex 0;font-size:10pt}.tr_tabbed-pane-tabs .tr_selected-tab-in-tabbed-pane{background:white}.tr_tabbed-pane-tabs .tr_selected-tab-in-tabbed-pane .tr_tabbed-pane-tab-label{color:black;font-weight:bold;text-decoration:none}.tr_tabbed-pane-tab-content{width:100%;vertical-align:top;padding:5px 7px 1px 7px;background:white;font-size:10pt}div.tr_bubble{position:absolute}.tr_bubble_link{color:#00c;text-decoration:underline;cursor:pointer;font-size:inherit}.tr_bubble .tr_option-link,.tr_bubble #tr_delete-image,.tr_bubble #tr_module-options-link{font-size:80%}.tr_bubble .tr_body,.tr_bubble .tr_t,.tr_bubble .tr_l,.tr_bubble .tr_r,.tr_bubble .tr_b{background-color:#e0ecff}.tr_bubble .tr_body{padding:0 19px 4px 4px;white-space:nowrap}.tr_bubble .tr_spacer{padding:1px}.tr_bubble .tr_body,.tr_bubble .tr_td,.tr_bubble .tr_th{font:80% arial,sans-serif}.tr_bubble .tr_tr,.tr_bubble .tr_tl,.tr_bubble .tr_bl,.tr_bubble .tr_br{background-repeat:no-repeat;height:0;width:2px}.tr_bubble .tr_tr{background-image:url(images/compose/bubble2_tr.gif)}.tr_bubble .tr_tl{background-image:url(images/compose/bubble2_tl.gif)}.tr_bubble .tr_bl{background-image:url(images/compose/bubble2_bl.gif)}.tr_bubble .tr_br{background-image:url(images/compose/bubble2_br.gif)}.tr_bubble .tr_t{border-top:1px solid #99c0ff}.tr_bubble .tr_b{border-bottom:1px solid #99c0ff}.tr_bubble .tr_l{border-left:1px solid #99c0ff}.tr_bubble .tr_r{border-right:1px solid #99c0ff}.tr_bubble_closebox{position:absolute;cursor:default;background:url(images/compose/bubble_closebox.gif) top left no-repeat;padding:0;margin:0;width:10px;height:10px;top:3px;right:8px}.container .imageOnly,.containerhover .imageOnly,.containeron .imageOnly{margin-left:-0.8ex!important}.tr_dialog input.tr_radio{margin:3px 3px 0 5px}.eN{background-position:0 0}.e3{background-position:-18px 0}.fu{background-position:-36px 0}.eX{background-position:-54px 0}.eY{background-position:-72px 0}.eS{background-position:-90px 0}.e0{background-position:-108px 0}.e5{background-position:-126px 0}.e6{background-position:-144px 0}.eO{background-position:-162px 0}.e8{background-position:-180px 0}.e2{background-position:-198px 0}.fa{background-position:-216px 0}.e4{background-position:-234px 0}.eP{background-position:-252px 0}.fc{background-position:-270px 0}.fb{background-position:-288px 0}.eU{background-position:-324px 0}.eT{background-position:-306px 0}.Yklqtb{background-image:url(images/emojibutton.gif)!important}.nN8jRb .goog-tabpane{background-color:#fff;padding-left:1px}.YXCXSb .goog-tabpane{background-color:#e0ecff;padding:0 4px}.x .YXCXSb{margin:inherit}.ip .YXCXSb{margin:inherit}.nN8jRb .goog-tabpane-clear{clear:both}.nN8jRb .goog-tabpane-tabs{list-style:none;margin:0;padding:0}.nN8jRb .goog-tabpane-cont{padding:2px;border:1px solid #ccc;background-color:#fff}.nN8jRb .goog-tabpane-tab,.nN8jRb .goog-tabpane-tab-selected{display:block;float:left;padding:0;margin:0;position:relative;width:40px;text-align:center;left:5px}.nN8jRb .goog-tabpane-tab-selected{background-color:#fff}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#f7f7f7;border:1px solid #ccc}.YXCXSb .goog-tabpane-top{background-color:#fff}.LE6Bud .goog-tabpane-top{background:none}.u5cA3e{border:1px solid #ccc}.LE6Bud .goog-tabpane-tab-selected{top:1px;border-bottom:1px solid #fff;border-top:1px solid #ccc;border-left:1px solid #ccc;border-right:1px solid #ccc}.YXCXSb .goog-tabpane-tab-selected{top:-1px;border-top:1px solid #fff;border-bottom:1px solid #ccc;border-left:1px solid #ccc;border-right:1px solid #ccc}.nN8jRb table{border-collapse:separate}.nN8jRb{-moz-outline:0;outline:0}.LE6Bud{visibility:hidden}.YXCXSb{visibility:visible;border:none}.LE6Bud{position:absolute;top:0}.nN8jRb .goog-palette-cell{padding:2px;background:#fff}.nN8jRb .goog-palette-cell-wrapper{min-width:25px;min-height:25px}.nN8jRb .goog-palette-cell-wrapper,.nN8jRb .goog-palette-cell-extra{vertical-align:middle;text-align:center;margin:auto}.nN8jRb .goog-palette-cell-hover{background:#ffc}.cJ{vertical-align:top;font-size:80%}.cI{padding-right:10px;font-size:80%}.cH{width:60%}.cG .cK{width:80px}.ej{font-size:medium}.ei{display:none}.el,.dP,.dU{color:#2a5db0;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#e0ecff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.dW{width:100%}.xE .dW,.x .dW{background-color:#e0ecff}.x .eh{padding:inherit}.eh{background:#e0ecff}.dW button{font-size:70%;padding:0 10px;margin:6px 0 6px 6px}.d2{position:relative;color:#000;font-size:80%;margin-left:6px}.eH{float:right;cursor:pointer;margin-top:8px;margin-right:6px}.eI{background:url(images/2/5/chrome/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#e0ecff;font-size:medium;padding-bottom:2px}.fN form{margin:0;padding-top:2px}.ej .fN form{padding:0 4px 0 0}.eb{position:absolute}.eA{width:100%;padding:0;margin-bottom:8px}.eD{padding-left:6px}.eD,.eE{width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;padding-right:3px;color:#000;white-space:nowrap}.eE{vertical-align:middle}.eC{padding-top:2px;padding-bottom:2px}.eF{font-size:80%}.ee .eE,.ee .eD,.ee .eB{padding-top:10px}.eB{vertical-align:top;font-size:80%}.eG{width:13px}.en{background:url(images/2/5/chrome/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.dY{background:url(images/2/icons_ns5.png) no-repeat -42px -22px;width:15px;height:15px}.ez,.dK,.dV{font-size:80%;width:100%}.dK{overflow:auto}.dV{border:0;outline:0;overflow:auto}.dV{padding:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.ej .dV{height:250px}.ef{font-size:80%}.ed{vertical-align:text-bottom}.d0{font:9px verdana,arial,sans-serif;color:#2a5db0}.dL{margin-bottom:2px}.dM{margin-top:2px}.ea{position:absolute;visibility:hidden}.dO,a.dO{color:#2a5db0}.dT{color:#000}.dN{color:#c00;font-weight:bold}.dP,.dU{margin-left:5px}.dQ{border:solid 1px #999;background:#fff;width:100px;height:0.8em;padding:1px;overflow:hidden}.dR{background:#6787e3;height:100%;font-size:0;width:0}.dK.ek{border:2px solid #fff1a8!important;margin:0!important}.ec td{padding:0 2px}.fM table{margin:2px auto 0 0}.fM .vi{background:#c00}.fM .vh{background:#c00;color:#fff;font-weight:bold;padding:0;margin:0}.fM .vh table{margin:-2px 0}.fM .vh span{text-decoration:underline;cursor:pointer;margin-left:5px}.fM td{padding:0}.fM .vj{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat 0 0;background-color:transparent}.fM .vk{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat -4px 0;background-color:transparent}.fM .vf{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat 0 -4px;background-color:transparent}.fM .vg{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat -4px -4px;background-color:transparent}.eJ{width:auto;padding:2px 4px}.x .eJ{margin:inherit}.ip .eJ{margin:inherit}.eJ table{width:100%;background:#f7f7f7}.fw{font-size:80%;padding-top:3px}.fA{font-size:80%;text-align:right;padding-top:6px;padding-right:8px;white-space:nowrap}.fB{width:3px;height:18px}.eL,.eM,.eK{border:1px solid #f7f7f7;width:18px;height:18px;margin-left:1px;margin-right:2px}.eL{background-image:url(images/toolbar1.gif)}.eM{background-image:url(images/toolbar1_bidi3.gif)}.eK{background-image:url(images/bidi_controls.gif)}.eZ{margin:0 3px}.e9{border:1px solid;border-color:#e0ecff #9daecd #9daecd #e0ecff}.eW,.e7{border:1px solid;border-color:#9daecd #e0ecff #e0ecff #9daecd}.e7{background-color:#e0ecff}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#2a5db0;white-space:nowrap}.es{margin-left:0}.eo{margin-left:8px}.wX{padding-left:4px;cursor:default}.wY{background:url(images/2/5/chrome/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu,.ew,.ev{text-decoration:underline;font-weight:bold}.eu{color:#2a5db0;cursor:pointer}.ew{color:#c00}.ev{color:#070}.ey{font-size:80%;width:100%;height:250px;border:0;padding:0;margin:0;overflow:auto;line-height:1.25em}.ey input{font-weight:bold}.d1{background-color:#fff!important}.ex{position:absolute;border:1px solid #888;background-color:#fff;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem{padding:2px 5px 2px 3px;position:relative;direction:ltr;zoom:1}.ex .goog-menuitem-highlight{background-color:#ffc;color:#222}.ex .goog-menuitem-disabled{color:#777}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/chrome/icons7.png) no-repeat -100px -80px}.ex .goog-option .goog-menuitem-checkbox{height:12px;width:12px;float:left;overflow:hidden}.ex hr{background-color:#888;height:1px;border:0;margin:0}.d5{width:100%;table-layout:fixed}.d8{width:4px}.d7{width:100%}.d7 .et{zoom:1}.d9{padding:4px 1px 4px 4px;display:none}.d6{border:2px solid;border-color:#6694e3;padding:3px 0 3px 3px}.x .d9{margin:inherit}.ip .d9{margin:inherit}.eq{width:100%}.d4{font:normal 80% arial,sans-serif}.ej .d4{height:266px}.d3{width:100%;overflow:visible;border:0}.fx,.fv .goog-palette,.fv{-moz-user-select:none;-khtml-user-select:none;-moz-outline:0;outline:0}.fx{position:absolute;background:#fff;border:2px solid;border-color:#e0ecff #9daecd #9daecd #e0ecff;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#fff;color:#000;padding:3px}.fx .goog-menuitem-highlight{background:#ffc;color:#222}.fx .goog-option .goog-menuitem-checkbox{width:12px;height:12px;margin-right:3px;overflow:hidden}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/chrome/icons7.png) no-repeat -100px -80px}.fv{position:absolute;visibility:hidden;top:0}.fv .goog-palette{cursor:default}.fv .goog-palette-table{border:1px solid #ccc;border-collapse:collapse}.fv .goog-palette-cell{height:13px;width:15px;margin:0;border:0;text-align:center;vertical-align:middle;border-right:1px solid #ccc;font-size:100%}.fv .goog-palette-colorswatch{position:relative;height:12px;width:14px;border:1px solid #ccc}.fv .goog-palette-cell-hover .goog-palette-colorswatch{border:1px solid #fff}.fv .goog-palette-cell-selected .goog-palette-colorswatch{border:1px solid #000;color:#fff}.fy{margin-top:2px;background-color:#ffc;border-width:1px 0;font-size:80%}.fz{color:#2a5db0;text-decoration:underline;font-weight:bold}.dZ{color:red;padding-left:10px}.mE{font-size:80%;background-color:#f7f7f7}.mH{background-color:#f7f7f7;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#2a5db0;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#000}.mG{text-decoration:underline}.mL,.mI{height:13px;width:14px}.mJ{height:16px;width:16px}.mK{height:13px;width:15px}.mL{background:url(images/2/5/chrome/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/chrome/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/chrome/icons7.png) no-repeat -80px -40px}.mJ{background:url(images/2/icons_ns5.png) no-repeat 0 0}.mC{background-color:#e0ecff}.mC .mG{text-decoration:none;color:#2a5db0}.mD .c6,.mD .dc,.mD .c8,.mD .df{vertical-align:-3px}.dK{height:3em}.fx{border:1px solid;border-color:#888}.eD{padding-right:5px;padding-left:11px}.eE{padding-right:5px;padding-left:5px}.eD{padding-top:6px}.ef{margin-top:1px}.eg{margin-top:2px}.eF,.eB{padding-bottom:10px}.eA{margin-bottom:0}.dS{font-size:inherit}.en{margin-top:2px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.dL{padding-bottom:1px}.dQ{margin:1px 0 0 3px}.dW{width:auto;padding:4px 4px 2px 4px}.manager-page-holder{overflow-x:hidden;overflow-y:hidden}.manager-page * td,.manager-page * input,.manager-page * textarea,.manager-page * textarea,.manager-page * select{margin:0}.manager-page * td{padding:0}.manager-page input,.manager-page textarea,.manager-page select{font-size:100%}.cmgr-link,.cmgr-subtle{text-decoration:none}.manager-page a:hover{text-decoration:underline}.manager-page{background-color:#fff}.manager-page body,.manager-page td,.manager-page div,.manager-page textarea{font-family:arial,sans-serif}.manager-page .frame{background-color:#e0ecff;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #e0ecff}.manager-page .input-default{color:#777;padding-left:3px}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #6694e3;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .add-to-group-box img{padding-left:2px;margin-left:5px;margin-bottom:2px;width:8px;height:16px}.manager-page .add-to-group-box.disabled{filter:alpha(opacity=30);-moz-opacity:.3;opacity:.3}.manager-page .add-to-group-box .inner:disabled{background-color:#fff}.manager-page select{height:1.6em}.manager-page .panel-el{padding-bottom:12px}.manager-page .line2-action{padding-top:3px}.manager-page .message{padding:2px 7px;font-weight:bold;-moz-border-radius:4px;font-size:80%}.manager-page .message.info{background-color:#fff1a8;color:#000}.manager-page .message.error{background-color:#c00;color:#fff}.manager-page .loading{background-color:#fff1a8;color:#000;font-size:80%;padding:1px}.manager-page .contact th{text-align:right;font-weight:bold;font-size:80%}.manager-page .contact td{font-size:80%}.manager-page .address-edit{padding-top:2px;padding-bottom:4px}.manager-page .menu{position:absolute;color:#000;background-color:#fff;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#fff;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#ffc}.cmgr-toolbar{height:32px;background-color:#e0ecff;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar span{color:#000}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #6694e3;text-align:left;font-size:80%}.cmgr-toolbar .search-input{width:260px;padding:2px 2px 0;margin-top:2px;background-color:#fff;text-align:left}.cmgr-toolbar .search-button{font-size:80%}.cmgr-toolbar button{vertical-align:baseline}.cmgr-toolbar .cmgr-link{font-size:80%;color:#2a5db0}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #6694e3;padding:10px 0 5px}.cmgr-editbar{background-color:#f7f7f7;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;overflow-x:visible}.cmgr-toolbar td,.cmgr-editbar td{line-height:18px}.cmgr-contacts-list-actions{background-color:#f7f7f7;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#2a5db0}.manager-page .contacts-and-details{display:block}.manager-page .hide-contacts .contacts-and-details{display:none}.manager-page .details-only{display:none}.manager-page .hide-contacts .details-only{display:block}.scrollable{position:relative;height:100%;width:100%;overflow-x:hidden;overflow-y:auto;background-color:#fff}.fillcontainer{position:relative;overflow:hidden;width:100%;height:100%}.fillcontainer>.fill{position:absolute;top:0;bottom:0;left:0;right:0}.scroll-content{position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}.scrollable>.scroll-content{position:absolute;left:0;right:0;top:0;bottom:0;width:auto;height:auto}.group-list{font-family:arial,sans-serif;color:#000}.checkable-list{padding:3px;font-family:arial,sans-serif;color:#000}.checkable-list>div>.row{line-height:1.5em;height:1.5em;max-height:1.5em}.checkable-list .text{overflow-x:hidden}.checkable-list .row>.check{padding:3px 0 3px 4px}.cmgr-contact-pane{font-family:arial,sans-serif;font-size:80%;background-color:#fff;color:#000}.cmgr-contact-pane .base-panel{padding:8px}.cmgr-contact-pane td{font-size:80%}.cmgr-contact-pane .group-detail{color:#000}.cmgr-contact-pane .desc{color:#000;font-weight:bold}.cmgr-contact-pane .name{font-size:110%;font-weight:bold}.cmgr-contact-pane .picture-div{float:right;margin-left:4px}.cmgr-contact-pane .cmgr-link{color:#2a5db0}.cmgr-contact-pane .cmgr-subtle{font-size:80%}.cmgr-contact-pane .contact-banner{border-top:1px solid #e0ecff;border-bottom:1px solid #e0ecff}.cmgr-contact-pane .presence-icon{float:left;margin-left:-2px;padding-right:2px;width:16px;height:16px}.cmgr-contact-pane .contact-picture{float:right;padding-left:8px;padding-bottom:5px}.cmgr-domain-contact-label{padding:5px 7px;color:#000;border-bottom:1px solid #ccc;font-weight:bold;background-color:#fff1a8}.cmgr-domain-contact-label .link{color:#2a5db0}.cmgr-edit-interleave-label{padding:7px;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#fff1a8}.modal-dialog{position:absolute}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#e0ecff}.manager-page .picture-grid{padding-right:8px;padding-bottom:8px}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #777;background:#e0ecff;color:#2a5db0;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div{margin:2px;cursor:pointer;padding:0 10px;font-size:83%}.manager-page .ac-renderer div.active{color:#2a5db0;background:#c3d9ff}.manager-page .dim{color:#777}.manager-page hr{background-color:#e0ecff}.background *{overflow:hidden}hr.grandcentral{background-color:#e0ecff;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.gc-th{text-align:right;width:10%;white-space:nowrap;padding:12px 12px 12px 12px;vertical-align:top}.gc-td{white-space:nowrap;padding:12px 12px 12px 12px;vertical-align:top}.gc-settings{padding:0 10px 0 10px;font-size:80%;color:#222}.gc-padding{padding:12px}.gc-top-panel-small{margin-top:.5em}.gc-top-panel-medium{margin-top:1em}.gc-left-panel-small{margin-left:1em}.gc-left-panel-medium{margin-left:2em}.gc-phone-example{font-size:80%;color:#777}.gc-muted-text{color:#777}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#fff;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.cmgr-toolbar .goog-flat-button,.cmgr-editbar .goog-flat-button{font-size:80%}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#fff;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#2a5db0;color:#000;background-color:#fff}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#fff}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#000;background-color:#fff1a8}.manager-page .goog-inline-block{display:block!important}.cmgr-logo{width:150px;height:55px;margin:0 20px 0 10px;background:no-repeat center center;overflow:hidden}.cmgr-new-label{font-size:70%;position:relative;top:-.35em}.manager-page .goog-menu{background-color:#fff;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem{color:#000;list-style:none;margin:0;padding:4px 4px 4px 4px;white-space:nowrap}.manager-page .goog-menuitem-disabled{color:#777}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#ffc;color:#222}.cmgr-hr-divider{background-color:#e0ecff;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .row{font-size:80%;clear:both;overflow:hidden;cursor:pointer;height:1.5em;max-height:1.5em;white-space:nowrap}.checkable-list .text{display:inline;overflow:hidden;white-space:nowrap;height:1.5em;padding:2px;width:100%}.checkable-list .check{float:left;margin-right:2px;margin-top:0;margin-bottom:0}.checkable-list .row>.check{float:none;display:inline}.checkable-list .active{background-color:#ffc}.checkable-list .active .text{color:#222}.checkable-list .selected{background-color:#6694e3;overflow:hidden}.checkable-list .selected .text{color:#fff;font-weight:bold}.checkable-list .preselect{background-color:#ffc}.checkable-list .preselect .text{color:#222;font-weight:bold}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #e0ecff;padding:2px;margin-bottom:8px;margin-top:2px}.group-list{height:306px}.group-list .row{font-size:80%;clear:both;cursor:pointer;padding:1px 6px 1px 8px;overflow:hidden;height:1.5em;max-height:1.5em}.group-list .row .text{overflow:hidden;white-space:nowrap;height:1.5em;width:100%}.group-list .row>.text{width:auto;line-height:1.5em}.group-list .count{color:#777;padding-left:5px;padding-right:2px;float:right}.group-list .row>.count{line-height:1.5em}.group-list .active{background-color:#ffc}.group-list .active .text{color:#222}.group-list .active .count{color:#222}.group-list .preselect{background-color:#ffc}.group-list .preselect .text{color:#222;font-weight:bold}.group-list .preselect .count{color:#222}.group-list .selected{background-color:#6694e3}.group-list .selected .text{font-weight:bold;color:#fff}.group-list .selected .count{color:#fff}.group-list-secondary .selected{background-color:#ccc}.group-list-secondary .selected .text{color:#777}.group-list-secondary .selected .count{color:#777}.group-list hr.header{background-color:#e0ecff;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.le{width:100%;margin:0;border-collapse:collapse;cursor:pointer;font-size:80%}.lk .le{cursor:auto}.lo .k{background:#83AEF7}.lo .o{background:#83AEF7;height:3px;top:inherit}.lo .n{background:#83AEF7}.lo .m{background:#83AEF7}.lo .q{background:url(rc?a=af&c=83AEF7&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=83AEF7&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#ff8a00}.lp .o{background:#ff8a00;height:3px;top:inherit}.lp .n{background:#ff8a00}.lp .m{background:#ff8a00}.lp .q{background:url(rc?a=af&c=ff8a00&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=ff8a00&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lo .ph{display:inherit}.lm{background:#83AEF7;padding:2px}.ln{background:#ff8a00}.kr{width:16px;height:16px}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#fff;font-weight:bold;margin-left:2px}.lp .kQ{color:#fff}.kX{border-right:1px solid #ccc;border-left:1px solid #ccc;border-top:none;border-bottom:1px solid #f7f7f7}.kv{background:url(images/2/5/chrome/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/chrome/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/chrome/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/chrome/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#BAD4FF}.ky,.kW,.jc{background-color:#FFA133}.jd{visibility:visible}.kt,.jA,.nl{color:#2a5db0;text-decoration:underline;cursor:pointer}.ks{width:16px}.kw{width:60px;text-align:right}.ko{color:#000;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #ccc;border-right:1px solid #ccc;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#2a5db0}.kf{padding-left:5px;padding-right:5px}.km{margin-left:1em}.kn{font-weight:bold;margin-left:-1em;zoom:1}.kk,.kl,.kq,.kg{margin-bottom:.2em}.kl{text-align:left}.kq{color:#777;margin-left:1em}.kp{text-indent:-1em}.kg{color:#c00}.kd{padding-left:5px;color:#777}.dx{background-color:#fff}.jp{border-left:solid #ccc 1px;border-right:solid #ccc 1px;background-color:#fff;text-align:center;padding-bottom:4px}.jq{clear:both}.jr{padding:4px 0;color:#000;font-size:70%;overflow:auto}.jt{height:8px;overflow:hidden}.jS{width:96%;margin-left:auto;margin-right:auto}.jT{position:relative;border:1px solid;border-color:#666666 #ccc #ccc #ccc;margin:1px;color:#000;background-color:#fff;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #6694e3}.jW{margin:0;border:2px solid #fff1a8}.ju,.js,.jw,.jx{width:100%;text-align:center}.js{color:#c00}.jw{color:#777}.jx{color:#000}.jG{float:left}.jH{float:right}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#2a5db0;text-decoration:none}.jE{border:1px solid #6694e3}.jF{border:solid 1px #ccc;background-color:#f7f7f7;color:#2a5db0}.jB{background:url(images/2/5/chrome/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/chrome/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#f7f7f7;color:#000;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jK{margin-top:.25em;margin-bottom:.25em;vertical-align:middle;padding:4px 2px 0 2px;white-space:normal}.jL{cursor:pointer}.jM{color:#777}.jN{background-color:#ffc;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jP{border-top:1px solid #888}.jI{width:16px;height:16px;left:3px}.jO{background-color:#ffc;color:#222}.jR{background:url(images/2/5/chrome/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/chrome/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.kT{height:100%;width:100%}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #e0ecff;padding-top:1px;padding-bottom:4px}.nf{background-color:#fff}.ni{color:#777;padding-left:3px;padding-bottom:1px}.nl{white-space:nowrap}.nm{color:#777;font-weight:normal;white-space:nowrap}.nj{font-size:90%;padding-left:2px}.nj input{width:97%;margin:1px;border:1px solid #666666 #ccc #ccc #ccc}.nk input{margin:0;border:2px solid #6694e3}.nh{text-align:right;font-weight:bold;padding-right:10px;float:right}.ng{text-align:right;padding-right:5px;float:right}.kG{font-size:80%;color:#000;width:192px}.kC{background-color:#fff;background-position:top right;background-repeat:no-repeat;width:16px;height:16px}.kH,.kK{background-repeat:repeat-y;width:4px}.kH{background-position:left}.kK{background-position:right}.kM,.kO,.kN,.kB,.kA{background-position:center;background-repeat:no-repeat;width:200px}.kM,.kO{height:19px}.kN{height:7px}.kz,.kB{height:27px}.kA{height:14px}.kH{background-image:url(images/muc_bubble_left.png)}.kK{background-image:url(images/muc_bubble_right.png)}.kM{background-image:url(images/muc_left_anchor_bubble_top.png)}.kO{background-image:url(images/muc_right_anchor_bubble_top.png)}.kN{background-image:url(images/muc_no_anchor_bubble_top.png)}.kz{background-image:url(images/muc_left_anchor_bubble_bot.png)}.kB{background-image:url(images/muc_right_anchor_bubble_bot.png)}.kA{background-image:url(images/muc_no_anchor_bubble_bot.png)}.kP{z-index:7}.kI{color:#000;margin-left:4px}.kD{color:#ccc;white-space:nowrap}.kJ{height:16px;width:16px;cursor:pointer;margin-left:4px}.kE{margin-left:24px}.kF{position:relative;bottom:3px}.kL{margin-left:6px}.jn{background:no-repeat url(im/emoticons/1/s2.png) -22px -25px;width:14px;height:14px}.jo{position:relative;background-color:#fff;border-right:1px solid #ccc;border-left:1px solid #ccc;border-bottom:1px solid #ccc;border-top:none;z-index:1}.jm{position:absolute;-moz-outline:0;outline:0;visibility:hidden}.jm .goog-icon-picker-iconitem{text-align:center;background-repeat:no-repeat}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#fff}.jm .goog-icon-picker-highlighted{background-color:#ffc}.jm .goog-icon-picker{background-color:#fff}.lf{left:1px}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #ccc;bottom:-1px;z-index:0}.goog-tabpane-tabs:focus{-moz-outline-style:none}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #ccc;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-cont{overflow:hidden;padding:0}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#f7f7f7;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab{margin-top:3px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#fff;border:solid #ccc;border-width:1px 1px 0;position:relative;bottom:-3px}.xv{vertical-align:middle;text-align:center;width:28px;height:25px}.lg{width:28px;height:25px;background:no-repeat url(im/emoticons/1/s2.png) -22px 0}.lh{width:22px;height:20px;background:no-repeat url(im/emoticons/1/s2.png) -36px -25px;margin:2px 3px}.li{width:22px;height:20px;background:no-repeat url(im/emoticons/1/s2.png) 0 0;margin:2px 3px}.lj{width:22px;height:20px;background:no-repeat url(im/emoticons/1/s2.png) 0 -20px;margin:2px 3px}.jm .item-position{left:9px;position:relative}.k7,.j6,.lv,.jj,.kZ,.k3,.i0,.j2,.jf,.lr,.ka,.lb{height:12px;width:13px}.k7{background:no-repeat url(im/emoticons/1/s1.png) 0 -120px}.j6{background:no-repeat url(im/emoticons/1/s1.png) 0 -84px}.lv{background:no-repeat url(im/emoticons/1/s1.png) 0 -36px}.jj{background:no-repeat url(im/emoticons/1/s1.png) 0 -96px}.kZ{background:no-repeat url(im/emoticons/1/s1.png) 0 0}.k3{background:no-repeat url(im/emoticons/1/s1.png) 0 -60px}.i0{background:no-repeat url(im/emoticons/1/s1.png) 0 -24px}.j2{background:no-repeat url(im/emoticons/1/s1.png) 0 -72px}.jf{background:no-repeat url(im/emoticons/1/s1.png) 0 -108px}.lr{background:no-repeat url(im/emoticons/1/s1.png) 0 -48px}.ka{background:no-repeat url(im/emoticons/1/s1.png) 0 -132px}.lb{background:no-repeat url(im/emoticons/1/s1.png) 0 -12px}.k9,.j8,.lx,.jl,.k1,.k5,.i2,.j4,.jh,.lt,.kc,.ld{height:14px;width:14px}.k9{background:no-repeat url(im/emoticons/1/s.png) -56px -28px}.j8{background:no-repeat url(im/emoticons/1/s.png) -98px 0}.lx{background:no-repeat url(im/emoticons/1/s.png) -28px 0}.jl{background:no-repeat url(im/emoticons/1/s.png) -112px -14px}.k1{background:no-repeat url(im/emoticons/1/s.png) -14px 0}.k5{background:no-repeat url(im/emoticons/1/s.png) -84px 0}.i2{background:no-repeat url(im/emoticons/1/s.png) -42px 0}.j4{background:no-repeat url(im/emoticons/1/s.png) 0 0}.jh{background:no-repeat url(im/emoticons/1/s.png) -70px -28px}.lt{background:no-repeat url(im/emoticons/1/s.png) -112px 0}.kc{background:no-repeat url(im/emoticons/1/s.png) -42px -14px}.ld{background:no-repeat url(im/emoticons/1/s.png) -56px 0}.k8,.j7,.lw,.jk,.k0,.k4,.i1,.j3,.jg,.ls,.kb,.lc{height:14px;width:14px}.k8{background:no-repeat url(im/emoticons/1/s.png) -28px -28px}.j7{background:no-repeat url(im/emoticons/1/s.png) 0 -28px}.lw{background:no-repeat url(im/emoticons/1/s.png) -98px -28px}.jk{background:no-repeat url(im/emoticons/1/s.png) -56px -14px}.k0{background:no-repeat url(im/emoticons/1/s.png) -84px -14px}.k4{background:no-repeat url(im/emoticons/1/s.png) -14px -28px}.i1{background:no-repeat url(im/emoticons/1/s.png) -70px -14px}.j3{background:no-repeat url(im/emoticons/1/s.png) -98px -14px}.jg{background:no-repeat url(im/emoticons/1/s.png) 0 -14px}.ls{background:no-repeat url(im/emoticons/1/s.png) -84px -28px}.kb{background:no-repeat url(im/emoticons/1/s.png) -42px -14px}.lc{background:no-repeat url(im/emoticons/1/s.png) -70px 0}.k6{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -28px -27px}.j5{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -27px 0}.lu{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -36px -15px}.ji{width:16px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) 0 -27px}.kY{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) 0 -15px}.k2{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -39px 0}.iZ{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -15px 0}.j1{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -40px -27px}.je{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -16px -27px}.lq{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -12px -15px}.j9{width:15px;height:15px;background:no-repeat url(im/emoticons/1/s3.png) 0 0}.la{width:12px;height:12px;background:no-repeat url(im/emoticons/1/s3.png) -24px -15px}.jX,.jY{background-color:#f7f7f7;height:30px}.jX{border-left:1px solid #ccc;border-right:1px solid #ccc}.j0{margin:2px;float:left}.jY{width:30px;background-position:center;background-repeat:no-repeat;border-left:#fff 2px groove;float:right;cursor:pointer}.jZ{background-color:#ffc}.jX .goog-imageless-button{margin:2px 10px 2px 2px;font:70% arial,sans-serif}.jX .goog-imageless-button-outer-box,.jX .goog-imageless-button-inner-box{border-color:#bbb}.jX .goog-imageless-button-inner-box{background:#e3e3e3;cursor:pointer}.jX .goog-imageless-button-top-shadow{background:#f9f9f9;border-bottom:0.2em solid #EEEEEE}.jX .goog-imageless-button-content{color:#000}.jX .goog-imageless-button-hover .goog-inline-block{border-color:#939393}.jX .goog-imageless-button-active .goog-imageless-button-inner-box{background:#f9f9f9}.jX .goog-imageless-button-active .goog-imageless-button-top-shadow{background:#e3e3e3;border-color:#EEEEEE}.ll{color:#c00;font-weight:bold}.jX .i8{background-image:url(im/mic.png)}.jX .i9{background-image:url(im/mute_mic.png)}.i6 .goog-imageless-button-content{color:#008000;font-weight:bold}.i7 .goog-imageless-button-content{color:#a03;font-weight:bold}.i3{background:url(im/camera.png) center no-repeat}.i5{background:url(im/mic.png) center no-repeat}.i4{background:url(im/camera.png) center no-repeat}.kR{border-left:solid #ccc 1px;border-right:solid #ccc 1px;background-color:#fff;text-align:center;overflow:hidden;padding:4px;clear:both}.kS{color:#777;font-size:70%;width:100%}.fX{background-color:#ccc}.fX .goog-flat-button{color:#2a5db0;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.fX .goog-flat-button-hover{cursor:pointer}.fX .icon{margin-right:8px;margin-bottom:1px;vertical-align:middle}.fX .videomail{width:14px;height:15px;background:url('im/camera_small.png') no-repeat center}.fX .voicemail{width:11px;height:15px;margin-left:2px;margin-right:9px;background:url('im/mic_small.png') no-repeat center}.fX .email{width:14px;height:15px;background:url('im/email_small.png') no-repeat center}.fX .text{line-height:middle}.dy{color:#2a5db0}.c6,.dc,.c8,.dg,.c5,.dd,.c4{width:16px;height:16px}.uj,.ue,.uM,.vr,.uf{overflow:hidden;white-space:nowrap}.c6{background:url(images/2/icons_ns5.png) no-repeat 0 -80px}.dc{background:url(images/2/icons_ns5.png) no-repeat -40px -80px}.c8{background:url(images/2/icons_ns5.png) no-repeat -20px -80px}.c5{background:url(images/2/icons_ns5.png) no-repeat 0 -60px}.dd{background:url(images/2/icons_ns5.png) no-repeat -40px -60px}.c4{background:url(images/2/icons_ns5.png) no-repeat -20px -60px}.vz{overflow-y:auto}.vB{width:100%;overflow:hidden;font-size:80%}.vC{white-space:nowrap;color:#000;cursor:pointer;background-color:#fff;width:100%;line-height:1.4em}.vI td{border-top:1px solid #fff}.vD{color:#222;background-color:#ffc}.vE{background:#ff8a00 url(im/pulse_200.gif)}.vx{height:1.4em}.vH,.uJ{table-layout:fixed;border-collapse:collapse}.vA{width:18px}.vw{width:100%}.vo{width:18px;height:100%}.vp{width:0;height:100%}.vt{margin-left:2px}.vr{text-indent:4px;text-overflow:ellipsis}.vs{color:#fff;font-weight:bold}td.vn{text-indent:4px;overflow:hidden;text-overflow:ellipsis}.vm{color:#777}.vl,.vl .vG,.vl .vG a{color:#fff}.vG{color:#777}.vF .vn .vG{color:#222}.vG a{color:#2a5db0}.vu{color:#777}.uk{width:100%;border-bottom:solid #e0ecff 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.t8{float:right;margin-right:3px;cursor:pointer;width:11px}.uF{width:100%;position:relative}.uJ{width:100%;margin-bottom:3px}.t9{width:16px}.ub{width:20px}.uE{position:absolute;left:2px;vertical-align:middle}.uD,.uc{position:relative;width:114px;overflow:hidden;left:22px}.uC{color:#000;white-space:nowrap;text-overflow:ellipsis;margin-top:5px}.uc{color:#777;margin-bottom:4px}.uI{height:1.3em;vertical-align:middle}.uK{position:relative;overflow:hidden}.ul,.ud,.um{padding:3px;font-size:80%}.ul .cg{color:#2a5db0}.ul{background-color:#ffc;border-top:1px solid #ffc;border-bottom:1px solid #ffc}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #e0ecff;border-bottom:1px solid #e0ecff}.uq{margin:2px;cursor:pointer}.ur{font-weight:bold}.ut{width:100%;line-height:2em}.us{float:right}.un{padding:2px;margin:2px}.up{border:1px solid #777;background-color:#ccc;cursor:pointer}.uo{border:1px solid #e0ecff;color:#e0ecff}.uB{height:100%;color:#777;text-align:right}td.uK{border-right:#fff solid 1px}td.uL{border-right:#ccc solid 1px}td.uh,td.uO{border:#fff solid 1px}.uO{text-align:center}td.ui,td.uP{border:#ccc solid 1px}.ue{height:100%;padding:1px 0 1px 5px;color:#777}.ue a{color:#2a5db0}.uf{color:#777;text-align:left;padding:0}.ug{text-decoration:underline}.uM{background:url(images/2/5/chrome/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/chrome/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#e0ecff solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#e0ecff solid 1px;font-size:80%}.uA{position:absolute;visibility:hidden;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;overflow:hidden;z-index:7}.uv{color:#000;background-color:#fff;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.ux{position:relative;height:1.5em;line-height:1.5em;vertical-align:middle;margin:2px;cursor:pointer;cursor:hand}.uw{width:16px;height:100%;float:left}.uz{position:absolute;left:20px;white-space:nowrap}.uy{background-color:#ffc;color:#222}.uv hr{margin:0;border:none;height:1px;background-color:#888}.uu{color:#2a5db0;text-decoration:underline;cursor:pointer}.dw{visibility:hidden;position:absolute;left:0;top:0;width:100%;height:100%}.dw{z-index:3}div.np{z-index:-1}.dF{background-color:#fff}.dI{font-size:80%;margin:0 1px}.dH{padding:6px 5px 4px}.dI{width:96%}.dF .dG{margin:1px}input.dI{padding:3px 0 3px 3px;background-color:#fff}.uR{padding:0;left:0}.u2{clear:both;overflow-y:hidden}.uT{width:16px;float:right;margin-top:5px;text-align:center}.uS{width:7px;height:7px}.ac-active img.uS{background:url(images/2/5/chrome/icons7.png) no-repeat -160px 0}.u1{float:left}.uZ{float:left;padding-top:1px;width:auto}.u2 .al{float:left}.u2 .ai{margin-right:5px}.uX{float:left;padding-right:15px}.u0{background:url(images/2/5/chrome/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #e0ecff;padding-left:2px;padding-top:1px}.uV{background-color:#c3d9ff;color:#2a5db0}.u3{background-color:#f7f7f7;color:#777}.uW{background-color:#e0ecff;color:#2a5db0}.uY{border-top:1px solid #e0ecff;padding-top:0}.uQ{position:absolute;margin-top:-9px;top:50%;left:-1px;width:16px;height:16px}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #e0ecff}.dz .cg{color:#2a5db0}.dA{float:right;width:15px;margin-top:6px;margin-right:3px;cursor:pointer}.dC{padding-top:3px}.dB{padding-left:10px;width:35px}.dE{white-space:normal;padding:7px 4px 9px 4px}.dD{white-space:normal;font-weight:bold}.c3{color:#777}.dp{font-size:80%;color:#777}.do{background:#fff url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.dq{background:url(images/aim_bubble_left.gif) repeat-y left;width:4px}.dr{background:url(images/aim_bubble_right.gif) repeat-y right;width:4px}.du,.ds,.dt,.dn,.dl,.dm{background-position:center;background-repeat:no-repeat;width:132px}.du{background-image:url(images/aim_right_anchor_bubble_top.gif);height:16px}.ds{background-image:url(images/aim_left_anchor_bubble_top.gif);height:16px}.dt{background-image:url(images/aim_no_anchor_bubble_top.gif);height:5px}.dn{background-image:url(images/aim_right_anchor_bubble_bot.gif);height:16px}.dl{background-image:url(images/aim_left_anchor_bubble_bot.gif);height:16px}.dm{background-image:url(images/aim_no_anchor_bubble_bot.gif);height:8px}.c2{font-size:80%;padding-left:2px;vertical-align:top}.dI{border:solid 1px #e0ecff}.jU{padding-left:3px;padding-right:3px}.dv{vertical-align:super;color:#c00;font-size:80%}.A3{position:absolute;background-color:white;border:6px solid #c1d9ff;color:#000;font:80% arial,sans-serif;width:440px;z-index:501;-moz-outline:none;outline:none}.A7{position:relative;background-color:#e0edfe;color:#000;cursor:pointer;font-size:160%;margin:8px;padding:6px 1em;vertical-align:middle}.A5{background-color:#fff;padding:0 0 0 2em;font:90% arial,sans-serif;font-size:140%;min-height:200px}.A5 td{vertical-align:top}.A5 a{color:#2a5db0}.A5 p{margin-bottom:0}.A5 ul{margin:0;padding-left:1.5em}.A4{border-top:1px solid #bbb;padding:8px}.A8 .A4{border-top:0;padding-top:9px}.A4 button{margin-right:0.5em;padding:0 0.5em;overflow:visible}.A6{padding-right:8px;width:120px;height:97px;background:url(pimages/2/gmail_icon.png) no-repeat}.dk{width:16px;height:16px;background-position:center;background-repeat:no-repeat}.is .dk{height:13px;margin-right:2px}.ik .dk{margin:0 2px 0 2px}.tu .dk{margin:0 5px}.dh{background:url(images/2/icons_ns5.png) no-repeat -40px -100px}.dj{background:url(images/2/icons_ns5.png) no-repeat -60px -100px}.di{background:url(images/2/icons_ns5.png) no-repeat -80px -100px}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #6694e3;background:#fff;color:#000;font-size:80%}.goog-date-picker-date{padding:3px 4px}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#6694e3;color:#000;padding:3px 0}.goog-date-picker-btn{padding:0;border:0;cursor:pointer}.goog-date-picker-head,.goog-date-picker-btn{color:#2a5db0;background:#6694e3;font-weight:bold;padding:3px 4px}.goog-date-picker-workday{cursor:pointer}.goog-date-picker-weekend{background:#f7f7f7;color:#000;cursor:pointer}.goog-date-picker-other-month{color:#ccc}.goog-date-picker-today{font-weight:bold}.goog-date-picker-selected{background:#e0ecff;color:#000}.goog-date-picker-foot{display:none}.modal-dialog{position:absolute}.modal-dialog-bg{position:absolute;top:0;left:0;background-color:#000}.v .l{background-color:#fad163}.v .k{color:#000;background:#fad163}.v .o{background:#fad163;height:4px;top:inherit}.v .n{background:#fad163;padding:inherit;margin:inherit}.v .h{background:#fad163;height:4px}.v .m{background:#fad163}.v .q{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=fad163&w=4&h=4) no-repeat 0 0}.v .p,.v .q{height:4px;margin-top:inherit}.v .i,.v .j{height:4px}.sA,.sv,.r4 .e{text-decoration:underline;color:#2a5db0;cursor:pointer;white-space:nowrap}.qZ{background:#fad163;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#fff7d7;padding:4px}.v7 .r4{padding:0}.v9{padding:inherit}.v9 .fZ{background:#fff7d7;font-size:80%;padding:3px 8px}.v9 .f1{color:#2a5db0;background:#fad163;font-size:80%}.v9 .fY{background:#fad163;padding:0}.v7 .fY{background:#fae5b0}.v7 .fZ,.v7 .f1{padding-left:7px;padding-right:9px;clear:both}.v7 .fZ{background-color:#fff7d7;border:1px solid #fad163;border-right:none}.v7 .f1{background:#fae5b0}.tf{background-color:#fff7d7;border:1px solid #fad163;border-right:none}.v8{padding:20px 0}.r7{font-size:80%}.r7 select{vertical-align:middle}.v6 select{vertical-align:top}.r8{padding-left:8px;vertical-align:top;width:20%}.r9{padding-right:8px;vertical-align:top}.r7 td{padding-top:8px;padding-bottom:8px}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #fad163;padding:8px}.r7 td.r8,.r7 td.q7{padding-right:5%}.r7 td.r6{border:none}.r7 td.r5{border-top:2px solid #fad163}td.sa{width:5%;padding:8px}.r7 a{color:#2a5db0}.r7 .e{color:#2a5db0}.rR td{padding:1px 2px}.rR tr{vertical-align:top}.rS{font-weight:bold}.rT{font-weight:normal;color:#777}.v9 input{font-weight:normal}.v9 textarea{vertical-align:middle}.rV{padding-left:6px}.rU{text-align:center}td.sG{padding:2px 0 0 8px}.sG input,.sG textarea{width:25em;font-weight:normal}.sF td{padding-top:3px;padding-bottom:0;vertical-align:top;text-align:left;font-weight:bold}td.sD{padding:0 0 0 4px;vertical-align:top}.sD input{vertical-align:middle;margin:0 4px}.sD label{font-weight:bold}.rZ{background-color:#fad163;padding:0;height:2px}.rc{font-weight:bold}.ra{font-size:70%}.rA{width:4em}.rX{white-space:nowrap;font-weight:bold}.qC{padding-bottom:5px}.rJ{width:96px;height:96px;border:1px solid #ccc}td.rK{vertical-align:top;padding-left:5px}.qV,.q7,.rH{padding-left:16px}.qW{font-weight:bold}.qS,.q6{text-align:right;white-space:nowrap;padding-right:8px}.rG{text-align:center;font-size:80%;padding:8px}.rI{font-weight:bold}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#2a5db0}.rb{font-size:80%}.q9{text-align:center;padding:8px}.qT{color:#c00}.qv{width:100%;margin-top:-6px}.qv td{padding-right:10px;padding-bottom:10px;vertical-align:top}.qy{width:9%;text-align:left}.qw{width:10%;text-align:left;padding-right:12px}.qx{padding-top:6px}.qF{font-weight:bold;color:#777}.qG{color:#777}.qY td{margin-top:-6px}.rP{padding-right:3px}.rM .vi,.rM .vh{background-color:#c00}.rM .vj{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat 0 0}.rM .vk{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat -4px 0}.rM .vf{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat 0 -4px}.rM .vg{background:url(rc?a=af&c=c00&w=4&h=4) no-repeat -4px -4px}.rM td{border-style:none;padding:0}.rO{color:#fff}.rM{font-weight:bold;width:100%;margin-top:-6px}.rN{padding-left:6px;padding-right:6px;display:block}.rQ{font-weight:bold}.rL{font-weight:bold;color:#070}.th{padding:16px}.sO{white-space:nowrap}.sX{clear:left}.s0{padding:6px;border-bottom:2px solid #fad163;font-size:80%}.s7{color:#777}.tc{float:right;white-space:nowrap}.tb{white-space:nowrap}.sS .tb{font:9px verdana,arial,sans-serif}.sS p{margin:3px 0}.ti{color:#000;float:right;padding:8px;font-size:80%}.sT{font-weight:bold;padding:6px 24px 12px}.sP{padding:2ex 3ex 0 3ex;vertical-align:top;text-align:center}.sP button{font-size:70%;font-weight:bold;padding:0 3px;position:relative;top:-0.3ex}.sQ{font-size:80%;padding-top:2ex}.sR{font-weight:bold}.sY{font-size:80%;font-weight:bold;color:#070}.s8{position:relative;top:1px;cursor:pointer;padding-right:2px;border:0 none;width:12px;height:12px;background-repeat:no-repeat;background-position:center center;float:left}.s9{background-image:url(images/triangle.gif)}.ta{background-image:url(images/opentriangle.gif)}.td{padding:4px 0 0 12px}.sV{font-size:80%;color:#777;margin:20px 0 0 24px}.s1{border-color:#fad163;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s2{float:right;margin:0 1px;font-size:70%}.s4{margin:2px 0;width:100%;font-size:80%}.s3{color:#777;font:9px verdana,arial,sans-serif}.s6{margin:10px 0 0 24px;font-size:80%}.s5{color:#000;font-size:80%}.qE{vertical-align:middle;float:left}.sU{font-weight:bold}.sW{font-size:80%;float:left;padding:0 4px}.sW a{color:#2a5db0}.tg{padding:3px 0 6px 0}.te{padding-bottom:12px;width:453px;height:66px}.qz{font-size:80%;padding-left:2px;vertical-align:top}.sv{font-weight:bold}.qD{margin-right:5px}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #c3d9ff;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.lpcd-bg{position:absolute;top:0;left:0;background-color:#808080}.lpcd td{padding:10px}.lpcd-buttons{margin-top:15px}.lpcd button{padding:0 10px;margin:0 5px}.qJ{width:200px;margin-left:4px}.qH,.qI{margin:4px 4px 4px 0;vertical-align:middle}.qI{font-weight:bold}.sH{width:224px;height:140px;margin:0 5px 5px 5px}.sN{text-decoration:underline;color:#2a5db0;cursor:pointer}.sI{font-size:70%}.sM{background-color:#fae5b0;padding:5px}.sJ{font-weight:bold}.sK{margin:0 5px}.sL{margin:5px 0}.sp{vertical-align:bottom;padding:2px 16px}.sn{border:2px solid #fad163;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.so{vertical-align:middle}.sm{color:#2a5db0;text-decoration:underline}.rf{padding:12px 8px 8px}.ri{color:#2a5db0}.rj{font-weight:bold}.rk{vertical-align:middle;margin-left:10px;padding-bottom:2px}.rg{font-size:80%;padding-top:8px}.rh{font-weight:bold;color:#c00}.rn{padding-left:8px;vertical-align:top;width:180px}.ro{border:1px solid #777}.rm{padding-left:10px;vertical-align:top;width:40%}.rl{padding-left:15px;padding-right:15px;vertical-align:top}.re{padding-left:8px}.sb{font-size:80%;width:100%}.su{padding-left:15px}.qN{padding-top:10px}.rp{padding:8px 0 8px 15px}.rv{text-align:right}.rt{padding:6px 10px 4px 10px}.rq{padding:0 0 6px 10px}.aw .rp{padding:15px 0}.aw .rv{text-align:right}.aw .rt{width:70%;padding-left:5px}.rw{display:inline;padding:3px;width:24px;height:24px}.rs{width:200px;vertical-align:middle}.rr{color:#c00}.ru{color:#000}.rx{vertical-align:middle;margin-bottom:5px}.ry{background:url(images/2/icons_ns5.png) -80px -80px}.rz{background:url(images/2/icons_ns5.png) -100px -80px}.sc{margin:15px 0}.ss{display:inline;margin:0}.sr{display:inline;margin:5px 0}.sj{padding:0 5px;vertical-align:bottom}.sk{border:solid 2px #2a5db0}.sl{border:solid 2px #fff7d7}.sd,.sq{position:relative}.st{position:absolute;opacity:0.6;-moz-opacity:0.6;filter:Alpha(Opacity=60);top:6px;left:4px}.si{background-color:#fff7d7;border:solid 2px #fff7d7;padding:5px;cursor:pointer}.sh{background-color:#f7f7f7;border:solid 2px #ccc;padding:5px}.se{width:65px;text-align:center;margin:5px 3px 3px 3px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#2a5db0}.sf{color:#000}.sq{width:65px;height:65px;border:1px solid #ccc;margin:5px 3px 3px 3px}.rd{color:#2a5db0}.cB{position:relative;margin:0 3px 0 0;border:solid #ccc;border-width:1px 0;font-size:80%}.cC{width:100%;height:100%}.cA{position:relative;width:100%}.cz{height:100%;vertical-align:top;background-color:#e0ecff;padding:4px 0}.cz a{color:#2a5db0}.cw{white-space:nowrap;text-align:right;vertical-align:top;padding:3px 3px 3px 15px;color:#777}.cx{width:100%;text-align:left;padding:3px}.cD{color:#777}.cE{padding:10px 0 5px 0}.cF{zoom:1;border:1px solid #6694e3;background:#fff;padding:4px;white-space:nowrap}.cF .e{color:#2a5db0}.cy{width:50%;height:100%;padding:0 0 4ex 0;vertical-align:top;background:url('images/eventheader_border.gif') repeat-y left}.cy a{color:#2a5db0}.cl{padding:6px 10px;font-weight:bold}tr.cn td{border-top:1px dotted #ccc}tr.cm td{border-bottom:1px dotted #ccc}tr td.cs{border-top:none;border-bottom:none}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#e0ecff}.cq{width:5px}.cp,.co{padding:3px 0 3px 10px}.cp{white-space:nowrap;text-align:right;color:#777}.co{width:100%;text-align:left}.ct{position:absolute;left:50%;bottom:0;padding:1ex 0 1ex 10px}.cu{width:70%;height:100%;background:#e0ecff;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #6694e3;text-align:center;background:#e0ecff;padding:4px}.o0{background-color:#fff7d7;border:9px solid #fad163}.oR{background:#fad163;color:#000;padding-bottom:8px;font-weight:bold}.oQ{font-size:80%;color:#000;padding:24px 12px 12px 12px}.oW{padding:6px 0}.oS{color:#777;padding:6px 0}.oX{font-weight:bold}.oY{position:relative;top:3px}.oO{font-weight:bold}.oT{margin-top:12px;font-weight:bold}.oV{padding-left:12px}.oU{margin-right:24px}.oP{color:#c00;padding-top:6px;padding-bottom:12px;font-weight:bold}.oZ{color:#777;padding-top:20px}.oN{padding-top:24px}.vO{font-size:small;position:relative;overflow:auto;padding:8px 2px;text-align:center;background:#fff}.vP{width:60%;margin-right:10px}.wL{border:1px solid #69c17d}.wN .k{background:#69c17d}.wN .o{background:#69c17d;height:3px;top:inherit}.wN .o{margin-bottom:inherit}.wN .n{background:#69c17d}.wN .m{background:#69c17d}.wN .q{background:url(rc?a=af&c=69c17d&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=69c17d&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#69c17d}.wO .o{background:#69c17d;height:3px;top:inherit}.wO .o{margin-bottom:inherit}.wM{background:#69c17d;padding:2px}.vT{background:#69c17d;overflow:auto}.vR{width:100%}.vJ{background:rgb(255,249,221);width:100%;overflow:hidden}.vU{float:right;font-size:70%}.vS{width:100%;background:#c9edcc;overflow:hidden}div.vQ{width:100%;text-align:center;font-size:small;cursor:pointer;height:1.3em;background:#fff}a.vQ{color:#fff}.vL,.vV{color:#000;padding:4px 6px;font-size:80%;position:relative}.vV{background:#fff}.vW{color:#008000;text-decoration:none}.vK{color:#008000;text-decoration:none}.vM{background:#c00;color:#fff}.vN{color:#c3d9ff}.pj{text-align:center}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#69c17d;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-hover{opacity:1}.vT .goog-menu-button-dropdown{background:url(images/2/5/chrome/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#fff;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#ffc}.sam .goog-menuitem-content{color:#000}.sam .goog-menuitem{cursor:pointer;font-size:80%;white-space:nowrap;padding:2px 4px}",
logo: "background-image: url(images/2/5/logo.png); background-position: left top; background-repeat: no-repeat;"
},
c: {
name: "Classic",
id: "c",
css: ".aB,.e,.cg{color:#00c;cursor:pointer}.b8 .b9{color:#00c}.cc .vi{background:#b5edbc}.cc .vh{background:#b5edbc}.cc .ca,.cc .b9{color:#00c}.cc .vj{background:url(rc?a=af&c=b5edbc&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=b5edbc&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=b5edbc&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=b5edbc&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#00c;background-color:#e0ecff;font:normal 80% arial,sans-serif;border:1px solid #555;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#c3d9ff;color:#00c}.ap{border-top:1px solid #555}.lz{font:70% arial,sans-serif;color:#00c}.ly{color:#00c;text-decoration:underline;cursor:pointer;white-space:nowrap}.v2{color:#00c}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #73a6ff!important;margin:0!important;outline:0!important}.az .e,.az a{color:#00c!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#c3d9ff!important;color:#000!important}.tr_dialog{background:#c3d9ff!important;color:#000!important}.tr_pseudo-link{color:#00c!important}.tr_dialog-tab-content-explanation-text a{color:#00c!important}.tr_tabbed-pane-tab-label{color:#00c!important}span.wh{font-family:courier new;color:#8d0}.ad{color:#00c}.ag{color:#00c;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#00c;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#00c;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#ff9900}.w8{margin:2px;padding:2px;font:normal 80% arial,sans-serif;border:1px solid #888}.mq{padding:.2em 8px;height:1.1em;background:#c3d9ff}.mv{font-size:80%;color:#444;white-space:nowrap;overflow:hidden;padding-top:2px}.my{color:#444}.mv .e{color:#444}.mB{float:right;font-size:70%;color:#888;padding:0.3em 1ex 0 2ex}.mx,.mz{color:#888}.mr{color:#063}.ms{background-color:#c7dbff;color:#669eff;border:1px solid #adcbff}.mu{background-color:#b8d1ff;color:#1a6dff;border:1px solid #7aabff}.mt{background-color:#c3d9ff;color:#DDE9FF;border:1px solid #DDE9FF}.C .ms{background:#e0e0e0;color:#999;border-color:#bfbfbf}.C .mu{background:#d2d2d2;color:#737373;border-color:#a2a2a2}.B .mq{background:#74dd82}.B .mB{color:#000}.B .ms{background:#95e59f;color:#00b015;border-color:#62d971}.B .mu{background:#77d983;color:#008c10;border-color:#30be43}.B .mt{background:#74dd82;color:#9AF7A6;border-color:#9AF7A6}.B .mv{color:#00c}.C .mv{color:#00c}.B .mv .e,.B .mz{color:#00c}.B .my{color:#00c}.B .mr{color:#00c}.B .mx{color:#00c}.C .mv .e,.C .mz{color:#00c}.C .my{color:#00c}.C .mr{color:#00c}.C .mx{color:#00c}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #999;background-color:#fff;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/c/icons6.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#fff;color:#000;border:1px solid #999;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3{text-indent:0;padding-left:4px;color:#999}.b4{color:#999}.b6{background:#c3d9ff;color:#222}.z .AO{color:#00c}.z .AP{color:#00c}.C .AO{color:#00c}.C .AP{color:#00c}.B .AO{color:#00c}.B .AP{color:#00c}.A .AO{color:#00c}.A .AP{color:#00c}.z .l,.y .l{background:#c3d9ff}.z .o,.y .o{background:#c3d9ff;height:4px;top:inherit}.z .h,.y .h{background:#c3d9ff;height:4px}.z .m,.y .m{background:#c3d9ff}.z .n,.y .n{background:#c3d9ff;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#74dd82}.B .o{background:#74dd82;height:4px;top:inherit}.B .h{background:#74dd82;height:4px}.B .m{background:#74dd82}.B .n{background:#74dd82;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#c3d9ff}.x .o,.AL .o{background:#c3d9ff;height:4px;top:inherit}.x .h{background:#c3d9ff;height:4px}.x .m{background:#c3d9ff}.x .n{background:#c3d9ff;padding:inherit;margin:inherit}.x .p{display:inherit;background:#c3d9ff}.x .q{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AR{border:1px solid #999;margin:0 3px;padding:5px}.D .goog-menuitem-disabled,.D .goog-tristatemenuitem-disabled,.D .goog-filterobsmenuitem-disabled{color:#999}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/c/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#c3d9ff}.AV{color:#00c;font-size:70%;text-decoration:underline;cursor:pointer}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/c/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/c/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .AZ{background:url(images/2/5/c/vimages7.png) no-repeat -24px 50%}.B .A1{background:#b5edbc}.B .AY{background:#b5edbc}.oJ{text-decoration:underline;color:#00c}.oH,.oI{background:#c3d9ff;padding:3px 4px 3px 6px;border:1px solid #ccc!important}.oE{background:url(images/2/5/c/icons6.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/c/icons6.png) no-repeat -140px 0;width:7px;height:7px}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/c/icons6.png) no-repeat -100px -80px}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #b5b6b5;background-color:#e0ecff;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.css-np-clw-palette-cell{margin:0;padding:2px;border:0;text-align:center;vertical-align:middle;font-size:11px;font-family:arial,sans-serif;cursor:pointer}.css-np-clw-palette-colorswatch{position:relative;height:13px;width:13px;border:1px solid #fff;line-height:11px}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #000}.qk{color:#00c;font-size:80%}.pk .qk .p9{font-weight:bold;color:#00c;text-decoration:underline}.pk .qk .qh{font-weight:bold;color:#00c;text-decoration:underline}.pk .qk{color:#00c}.pz .k{background:#c3d9ff}.qj .k{background:#c3d9ff}.qk .p9,.qk .qh{color:#00c}.pO .p9{color:#063}.pT{color:#063}.pz .o{background:#c3d9ff;height:4px;top:inherit}.pz .n{background:#c3d9ff}.pz .h{background:#c3d9ff;height:4px}.pz .m{background:#c3d9ff}.pz .q{background:#c3d9ff;height:4px;margin-top:inherit}.pz .j{background:#c3d9ff;height:4px}.pz .i{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#c3d9ff;height:4px;top:inherit}.qj .n{background:#c3d9ff}.qj .h{background:#c3d9ff;height:4px}.qj .m{background:#c3d9ff}.qj .q{background:#c3d9ff;height:4px;margin-top:inherit}.qj .j{background:#c3d9ff;height:4px}.qj .i{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.pW{background:url(images/2/5/c/icons6.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.px{color:#00c;text-decoration:underline}.xE .l,.xE .ph{background-color:#c3d9ff}.pU{text-align:right;font-size:70%;color:#00c;padding:2px}.t .l{background:#b5edbc}.t .pU{color:#063}.t .r .p{background:url(rc?a=af&c=b5edbc&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=b5edbc&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=b5edbc&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=b5edbc&w=3&h=3) no-repeat -3px -3px}.pO{color:#063;font-size:80%;padding:3px 5px;white-space:nowrap;overflow:hidden}.s .l{background-color:#c3d9ff}.s .ow{background:#c3d9ff}.s .oK,.s .oy{border-color:#c3d9ff}.s .oy{background:#e0ecff;color:#000}.s .oB{background:#c3d9ff;color:#222}.s .r .p{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=c3d9ff&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=c3d9ff&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=c3d9ff&w=3&h=3) no-repeat -3px -3px}.pv .pq{background:url(images/2/5/c/icons6.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/c/icons6.png) no-repeat -60px -20px}.t .r .l,.t .r .k{background:#b5edbc}.t .r .o{background:#b5edbc;height:4px;top:inherit}.t .r .m{background:#b5edbc}.t .r .n{background:#b5edbc}.s .r .l,.s .r .k{background:#c3d9ff}.s .r .o{background:#c3d9ff;height:4px;top:inherit}.s .r .m{background:#c3d9ff}.s .r .n{background:#c3d9ff}.t .oy{background-color:#fff;border-color:#b5edbc}.t .oB{background-color:#c3d9ff}.t .oK{border-top-color:#b5edbc}.pt{border:#e0ecff none;border-top:none}.s .pt{border-color:#c3d9ff}.t .pt{border-color:#b5edbc}a.gb1.qq,a.gb3.qq{color:#00c!important}div#gbi{background:#fff!important;border-color:#c9d7f1 #36c #36c #a2bae7!important}a.gb2.qq{color:#00c!important}a.gb2.qq:hover{color:#fff!important;background:#36c!important}.qp{background:transparent;border-bottom:1px solid #c9d7f1;margin-bottom:2px}.a5{font-size:70%;color:#00c;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#00c}.aJ .a5{color:#00c}.bR{font:9px verdana,arial,sans-serif;color:#00c;text-decoration:underline;cursor:pointer}.a7,.a8 .e{color:#00c}.aK .aI{color:#000}.aH{padding:4px;color:#222;background:#fae5b0;border:1px solid #fad163;font-weight:bold}.aH .e{color:#00c}.bA{color:#00c;cursor:default}.bB{color:#00c;text-decoration:none}.bA .goog-menu{background:#fff none repeat scroll 0!important;border-color:#c9d7f1 #36c #36c #a2bae7;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#00c;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#00c}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#fff;background:#36c none repeat scroll 0!important}.bA .goog-menuitem-highlight .e{text-decoration:none;color:#fff}.bT{font-size:85%;color:#c00}.aK .k{background:#74dd82;margin:0!important}.aK .o{background:#74dd82;height:4px;top:inherit}.aK .m,.b .m{background:#74dd82}.aK .n{margin-left:5px!important;background:#74dd82;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat -4px 0}.b .o{background:#74dd82;height:4px;top:inherit}.b .h{background:#74dd82;height:4px}.b .m{background:#74dd82}.b .n{background:#74dd82}.b .p{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat 0 0}.b .q{background:#74dd82}.b .i{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=74dd82&w=4&h=4) no-repeat -4px -4px}.b .e{color:#00c}.b .k{background-color:#b5edbc}.a .e{color:#00c}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #ccc solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #ccc solid;padding:3px 8px}.yd{background-color:#b5edbc}.yc{background-color:#ffff80}.x8{text-decoration:underline;cursor:pointer;color:#00c}.yb .x8{color:#00c}.ya .e,.x9{color:#00c}.yd .x8,.yd .x9{color:#00c}.x2{color:#00c;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#00c}.z .yC .e{color:#00c}.B .yU{color:#00c}.B .yC .e{color:#00c}.A .yU{color:#00c}.A .yC .e{color:#00c}.C .yU{color:#00c}.C .yC .e{color:#00c}.x0{color:#00c;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#00c}.xG{border-bottom:1px solid #bbb;color:#888;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#7777de;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt td{font-size:80%;border-bottom:1px #ccc solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.yO{background:#e8eef7;color:#000}.xR{background:url(images/2/5/c/icons6.png) no-repeat -40px -20px;vertical-align:middle;width:9px;height:11px;visibility:hidden;margin-top:-2px;left:-2px}.y3{background:url(images/2/5/c/icons6.png) no-repeat -20px -20px}.zG{background:url(images/2/5/c/icons6.png) no-repeat 0 -20px}.yE{background:url(images/2/icons_ns5.png) no-repeat 0 -100px}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#fffccf;border:1px solid #000;font-size:80%;color:#222;padding:10px}.Ad{color:#00c;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #73a6ff}.lR{background:url(images/2/5/c/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/c/vimages7.png) repeat-y -12px 0}.mn .l8{color:#00c!important}.mi{color:#980303}.mo,.l9{color:#00c}.l8{color:#00c;text-decoration:underline;cursor:pointer}.l3{color:#444}.mb{color:#888;padding-top:4px}.l6 .e{color:#00c}.l7{background:#ffff88;color:#000;font-weight:bold}.me,.mf{margin:0 6px 0 2px;font-size:8px;height:8px;line-height:8px;border-collapse:separate}.tq{position:absolute;padding:0;font:13px arial,sans-serif;z-index:8}.tq,.tG,.tC,.t5,.tB,.tL,.t4,.tF,.tq .goog-menuitem,.tq .goog-menuitem-opened,.tD{font-size:13px}.tE{text-decoration:underline;color:#00c;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tP,.tQ{display:none;font:13px arial,sans-serif}.tO{border:1px solid #00c;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#00c;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/c/icons6.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #777;background-color:#e0ecff;cursor:default;font:13px arial,sans-serif;outline:0;z-index:9}.tV{border-top:1px solid #777;margin-top:2px}.tT .goog-menuitem-highlight{background-color:#c3d9ff;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/c/icons6.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:url(images/2/horizontalimages2.png);color:#000;border-bottom:1px solid #e0ecff;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#f3f3f7;color:#999}.u .goog-menuitem-opened .tF{background:url(images/2/horizontalimages2.png);background-position:0 -48px;color:#000;position:relative;z-index:100;border:1px solid #777;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #fff;background:#c3d9ff;width:1px;height:23px;padding:0;margin:0}.tB,.tC{color:#676767;padding-left:2px}.tq .lJ{background-color:#c3d9ff}.tq .lN{background-color:#c3d9ff}.hG{background:url(images/2/5/c/icons6.png) no-repeat -40px -20px;width:9px;height:11px}.gt a{color:#00c}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#b5edbc}.h1,.iD{color:#84aaff;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#00c}.gR{margin:1px 0 0 0;color:#00c}.hg{width:auto;overflow:hidden;background:#b5edbc}.he{overflow:visible;background:#efefef}.gG{text-align:right;color:#888;white-space:nowrap;vertical-align:top;width:0}.g8{background:url(images/2/5/c/icons6.png) no-repeat 0 -20px}.g9{background:url(images/2/5/c/icons6.png) no-repeat -20px -20px}.gW{background:url(images/2/icons_ns5.png) no-repeat 0 -100px;width:15px;height:15px}.gZ{background:url(images/2/5/c/icons6.png) no-repeat 0 -60px}.g1{background:url(images/2/5/c/icons6.png) no-repeat -20px -60px}.gx{background:url(images/2/5/c/icons6.png) no-repeat -40px -60px}.gq{background:url(images/2/5/c/icons6.png) no-repeat -60px -60px}.gM{background:url(images/2/5/c/icons6.png) no-repeat -80px -60px}.gC{background:url(images/2/5/c/icons6.png) no-repeat -100px -60px}.go{color:#888}.gv{visibility:hidden;position:absolute;color:#496397;background:#eee;border:1px solid #ccc;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#ccc;color:#222}.g6{padding-left:5px;color:#bbb}.ii a{color:#00c}.hp{width:50%;height:0;border-top:2px solid #bbb}.ho a{color:#00c}.hr a{color:#00c}.hv{float:left;border:2px solid #c3d9ff;padding:5px}.hs .goog-menu-button{color:#000;background:transparent;border:1px solid #ccc;white-space:nowarp;padding:2px 4px}.h6{height:7px;width:7px;background:url(images/2/5/c/icons6.png) no-repeat -120px 0}.ht{position:absolute;color:#496397;background:#eee;border:1px solid #ccc;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#ccc;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/c/icons6.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/c/icons6.png) no-repeat 0 -40px}.hE{color:#0045c6;padding-right:4px;padding-left:4px;white-space:nowrap}.iz .o{background:#c3d9ff url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#c3d9ff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#c3d9ff url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#c3d9ff url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#c3d9ff url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#c3d9ff url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#c3d9ff url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#c3d9ff url('images/2/card-ex-bl.gif') no-repeat top left}.ha{font-family:arial,sans-serif;font-size:large;margin:12px 5px 5px 10px;padding:0;color:#000;background:inherit;border-right:inherit}.id .il,.iW{background:#ff8}.qr .gA{background:#c3d9ff url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#c3d9ff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.iC .gQ{color:#063}.hk span{cursor:pointer;color:#00c;white-space:nowrap}.iC .hk span{color:#00c}.z .h0 .e{color:#00c}.C .h0 .e{color:#00c}.B .h0 .e{color:#00c}.A .h0 .e{color:#00c}.iT{color:#7777de;cursor:pointer}.h4{cursor:pointer;color:#500050;font-size:x-small}.iX{color:#f00}.u7{color:#00c;text-decoration:underline;cursor:pointer}.u6:visited{color:#00c}a.u6{color:#00c}.fO{font-size:80%;margin-right:5px;padding-bottom:10px;border-bottom:1px solid #e8e8e8}.B .iI{background:#b5edbc}.B .iE{background:#b5edbc}.YXCXSb .goog-tabpane{background-color:#c3d9ff;padding:0 4px}.nN8jRb .goog-tabpane-cont{padding:2px;border:1px solid #bebebe;background-color:#fff}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#e0ecff;border:1px solid #c3d9ff}.u5cA3e{border:1px solid #bebebe}.LE6Bud .goog-tabpane-tab-selected{top:1px;border-bottom:1px solid #fff;border-top:1px solid #bebebe;border-left:1px solid #bebebe;border-right:1px solid #bebebe}.YXCXSb .goog-tabpane-tab-selected{top:-1px;border-top:1px solid #fff;border-bottom:1px solid #bebebe;border-left:1px solid #bebebe;border-right:1px solid #bebebe}.nN8jRb .goog-palette-cell-hover{background:#5570cc}.el,.dP,.dU{color:#00c;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#c3d9ff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#c3d9ff}.eh{background:#c3d9ff}.eI{background:url(images/2/5/c/icons6.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#c3d9ff;font-size:medium;padding-bottom:2px}.en{background:url(images/2/icons_ns5.png) no-repeat 0 -100px;width:15px;height:15px}.d0{font:9px verdana,arial,sans-serif;color:#00c}.dO,a.dO{color:#00c}.dK.ek{border:2px solid #fad163!important;margin:0!important}.eJ table{width:100%;background:#c3d9ff}.eL,.eM,.eK{border:1px solid #c3d9ff;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#e8f1ff #9daecd #9daecd #e8f1ff}.eW,.e7{border:1px solid;border-color:#9daecd #e8f1ff #e8f1ff #9daecd}.e7{background-color:#e8f1ff}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#00c;white-space:nowrap}.wY{background:url(images/2/5/c/icons6.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#00c;cursor:pointer}.ew{color:#f00}.d1{background-color:#e0ecff!important}.ex{position:absolute;border:1px solid #777;background-color:#e0ecff;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#c3d9ff;color:#fff}.ex .goog-menuitem-disabled{color:#888}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/c/icons6.png) no-repeat -100px -80px}.ex hr{background-color:#777;height:1px;border:0;margin:0}.d6{border:2px solid;border-color:#73a6ff;padding:3px 0 3px 3px}.fx{position:absolute;background:#e0ecff;border:2px solid;border-color:#e8f1ff #9daecd #9daecd #e8f1ff;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#e0ecff;color:#000;padding:3px}.fx .goog-menuitem-highlight{background:#5570cc;color:#fff}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/c/icons6.png) no-repeat -100px -80px}.fv .goog-palette-table{border:1px solid #666;border-collapse:collapse}.fv .goog-palette-cell{height:13px;width:15px;margin:0;border:0;text-align:center;vertical-align:middle;border-right:1px solid #666;font-size:1px}.fv .goog-palette-colorswatch{position:relative;height:12px;width:14px;border:1px solid #666}.fz{color:#00c;text-decoration:underline;font-weight:bold}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#0547c0;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#444}.mL{background:url(images/2/5/c/icons6.png) no-repeat 0 -40px}.mK{background:url(images/2/5/c/icons6.png) no-repeat -40px -40px}.mI{background:url(images/2/5/c/icons6.png) no-repeat -80px -40px}.mC{background-color:#c3d9ff}.mC .mG{text-decoration:none;color:#000}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #c3d9ff;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .menu{position:absolute;color:#000;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #c3d9ff;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#00c}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #c3d9ff;padding:10px 0 5px}.cmgr-contacts-list-actions .cmgr-link{color:#00c}.cmgr-contact-pane .cmgr-link{color:#00c}.cmgr-domain-contact-label{padding:5px 7px;color:#222;border-bottom:1px solid #fad163;font-weight:bold;background-color:#fae5b0}.cmgr-domain-contact-label .link{color:#00c}.cmgr-edit-interleave-label{padding:7px;color:#222;border-top:1px solid #fad163;border-bottom:1px solid #fad163;background-color:#fae5b0}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #555;background:#e0ecff;color:#00c;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#00c;background:#c3d9ff}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#00c;color:#000;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#f7f7f7}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.checkable-list .selected{background-color:#c3d9ff;overflow:hidden}.checkable-list .selected .text{color:#00c;font-weight:bold}.group-list .selected{background-color:#c3d9ff}.group-list .selected .text{font-weight:bold;color:#00c}.group-list .selected .count{color:#00c}.lo .k{background:#73a6ff}.lo .o{background:#73a6ff;height:3px;top:inherit}.lo .n{background:#73a6ff}.lo .m{background:#73a6ff}.lo .q{background:url(rc?a=af&c=73a6ff&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=73a6ff&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#73a6ff;padding:2px}.kX{border-right:1px solid #bbb;border-left:1px solid #bbb;border-top:none;border-bottom:1px solid #eee}.kv{background:url(images/2/5/c/icons6.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/c/icons6.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/c/icons6.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/c/icons6.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#3072fe}.ky,.kW,.jc{background-color:#ffa600}.kt,.jA,.nl{color:#00c;text-decoration:underline;cursor:pointer}.ko{color:#000;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #bbb;border-right:1px solid #bbb;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#00c}.jp{border-left:solid #bbb 1px;border-right:solid #bbb 1px;background-color:#fff;text-align:center;padding-bottom:4px}.jV{margin:0;border:2px solid #73a6ff}.jW{margin:0;border:2px solid #fad163}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #73a6ff}.jF{border:solid 1px #777;background-color:#e0ecff;color:#000}.jB{background:url(images/2/5/c/icons6.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/c/icons6.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#e0ecff;color:#000;visibility:hidden;width:30ex;font-size:80%;border:1px solid #999;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jP{border-top:1px solid #999}.jO{background-color:#c3d9ff;color:#222}.jR{background:url(images/2/5/c/icons6.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/c/icons6.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #bbb;border-right:1px solid #bbb;border-bottom:1px solid #e0ecff;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #73a6ff}.kG{font-size:9.6pt;color:#000;width:192px}.jo{position:relative;background-color:#fff;border-right:1px solid #777;border-left:1px solid #777;border-bottom:1px solid #777;border-top:none;z-index:1}.jm .goog-icon-picker-highlighted{background-color:#e0ecff}.jm .goog-tabpane{background-color:#e0ecff;padding-left:1px;position:relative;width:136px;border:1px solid #777;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #777;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#e0ecff;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#fff;border:solid #777;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#e0ecff;height:30px}.jX{border-left:1px solid #bbb;border-right:1px solid #bbb}.jZ{background-color:#c3d9ff}.kR{border-left:solid #bbb 1px;border-right:solid #bbb 1px;background-color:#fff;text-align:center;overflow:hidden;padding:4px;clear:both}.fX .goog-flat-button{color:#00c;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#00c}.vI td{border-top:1px solid #e0ecff}.vD{color:#222;background-color:#e0ecff}.vG a{color:#00c}.uk{width:100%;border-bottom:solid #c3d9ff 1px;background-color:#e0ecff;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#00c}.ud,.um{color:#000;background-color:#ddd;border-top:1px solid #999;border-bottom:1px solid #999}.up{border:1px solid #000;background-color:#bbb;cursor:pointer}.uo{border:1px solid #999;color:#999}td.uK{border-right:#e0ecff solid 1px}td.uh,td.uO{border:#e0ecff solid 1px}.ue a{color:#00c}.uM{background:url(images/2/5/c/icons6.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/c/icons6.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#c3d9ff solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#c3d9ff solid 1px;font-size:80%}.uA{position:absolute;visibility:hidden;border:1px solid #c3d9ff;vertical-align:bottom;padding:0;margin:0;overflow:hidden;z-index:7}.uv{color:#000;background-color:#e0ecff;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#c3d9ff;color:#222}.uv hr{margin:0;border:none;height:1px;background-color:#c3d9ff}.uu{color:#00c;text-decoration:underline;cursor:pointer}.dF{background-color:#e0ecff}.ac-active img.uS{background:url(images/2/5/c/icons6.png) no-repeat -160px 0}.u0{background:url(images/2/5/c/icons6.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#eee;color:#777;float:right;border-left:1px solid #c3d9ff;padding-left:2px;padding-top:1px}.uV{background-color:#c3d9ff;color:#00c}.u3{background-color:#eee;color:#777}.uW{background-color:#e0ecff;color:#00c}.uY{border-top:1px solid #c3d9ff;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #c3d9ff}.dz .cg{color:#00c}.dp{font-size:9.6pt;color:#777}.A5 a{color:#00c}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #c3d9ff;background:#fff;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#c3d9ff;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#00c;background:#c3d9ff;font-weight:bold;padding:3px 4px}.sA,.sv,.r4 .e{text-decoration:underline;color:#00c;cursor:pointer;white-space:nowrap}.v9 .f1{color:#00c;background:#fad163;font-size:80%}.r7 a{color:#00c}.r7 .e{color:#00c}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#063}.rb{font-size:85%}.qT{color:#a00}.rL{font-weight:bold;color:#063}.sY{font-size:80%;font-weight:bold;color:#063}.sW a{color:#00c}.sN{text-decoration:underline;color:#00c;cursor:pointer}.sm{color:#00c;text-decoration:underline}.ri{color:#00c}.sk{border:solid 2px #00c}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#00c}.rd{color:#00c}.cz a{color:#00c}.cw{white-space:nowrap;text-align:right;vertical-align:top;padding:3px 3px 3px 15px;color:#444}.cD{color:#444}.cF{zoom:1;border:1px solid #73a6ff;background:#fff;padding:4px;white-space:nowrap}.cF .e{color:#00c}.cy a{color:#00c}.cp{white-space:nowrap;text-align:right;color:#444}.cv{width:30%;height:100%;border:1px solid #73a6ff;text-align:center;background:#e0ecff;padding:4px}.wL{border:1px solid #74dd82}.wN .k{background:#74dd82}.wN .o{background:#74dd82;height:3px;top:inherit}.wN .n{background:#74dd82}.wN .m{background:#74dd82}.wN .q{background:url(rc?a=af&c=74dd82&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=74dd82&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#74dd82}.wO .o{background:#74dd82;height:3px;top:inherit}.wM{background:#74dd82;padding:2px}.vT{background:#74dd82;overflow:auto}.vS{width:100%;background:#b5edbc;overflow:hidden}a.vQ{color:#00c}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#74dd82;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/c/icons6.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.xR{margin-top:0;left:-2px}.hG{margin-left:0}td.xO,td.xP{text-align:right;padding:1px 0 0 2px}.xQ{width:29px}",
logo: null
},
newblue: {
name: "New Blue",
id: "newblue",
css: ".cP{overflow:visible;background-color:#79b}.aB,.e,.cg{color:#fff;cursor:pointer}.cP{background:#79b}.b8 .vi,.b8 .vh{background:#fff1a8;color:#666}.b8 .b9{color:#1a3764}.cc .vi{background:#e8eef7}.cc .vh{background:#e8eef7}.cc .ca,.cc .b9{color:#1a3764}.cc .vj{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#ffc;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#fff}.ly{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.v2{color:#79b}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #ffc!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#7799bb;border:1px solid #161C22;padding:8px;z-index:501}.aA{position:relative;color:#666;background-color:#e8eef7;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#79b!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#e8eef7!important;color:#666!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #7799bb!important}.tr_edit-link-dialog{border:2px solid #7799bb!important}.tr_image-dialog{border:2px solid #7799bb!important}.tr_dialog{background:#e8eef7!important;color:#666!important}.tr_pseudo-link{color:#79b!important}.tr_dialog-tab-content-explanation-text a{color:#79b!important}.tr_tabbed-pane-tab-label{color:#1a3764!important}.ad{color:#1a3764}.ag{color:#1a3764;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#1a3764;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#336;cursor:pointer;text-decoration:underline}.mq{padding:0 0 5px 2px;height:1.1em;background:#fff;margin:-2px 0 0 0}.mv{font-size:80%;color:#666;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#1a3764}.my{color:#666}.mB{float:right;font-size:70%;color:#666;padding:0.3em 1ex 0 2px}.mx,.mz{color:#666}.mr{color:#666}.ms{background-color:#FFFFFF;color:#7589B3;border:1px solid #7589B3}.mu{background-color:#fff;color:#243A66;border:1px solid #243A66}.mt{background-color:#fff;color:#C4CFE6;border:1px solid #C4CFE6}.C .mv{color:#000}.C .mv .e,.C .mz{color:#1a3764}.C .my{color:#000}.C .mr{color:#000}.C .mx{color:#000}.B .mq{background:#336}.B .mB{color:#e8eef7}.B .ms{background:#222252;color:#8F8FB3;border-color:#8F8FB3}.B .mu{background:#336;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#336;color:#4D4D80;border-color:#4D4D80}.B .mv{color:#e8eef7}.B .my{color:#e8eef7}.B .mr{color:#e8eef7}.B .mx{color:#e8eef7}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/newblue/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.A1{padding:6px 0 3px 6px;background:#e8eef7;border-bottom:1px solid #D0D5DE}.AY{padding:3px 0 6px 6px;background:#e8eef7;border-top:1px solid #D0D5DE}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AQ{color:#666}.z .AO{color:#1a3764}.z .AP{color:#1a3764}.C .AO{color:#1a3764}.C .AP{color:#1a3764}.C .A1{background:#efefef}.C .AY{background:#efefef}.B .AQ{color:#666}.B .AO{color:#1a3764}.B .AP{color:#1a3764}.B .A1{background:#e8eef7}.B .AY{background:#e8eef7}.A .AO{color:#336}.A .AP{color:#336}.A .A1{background:#faf3dc}.A .AY{background:#faf3dc}.z .l,.y .l{background:#fff}.z .o,.y .o{background:#fff;height:4px;top:inherit}.z .h,.y .h{background:#fff;height:4px}.z .m,.y .m{background:#fff}.z .n,.y .n{background:#fff;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#336}.B .o{background:#336;height:4px;top:inherit}.B .h{background:#336;height:4px}.B .m{background:#336}.B .n{background:#336;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=336&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=336&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=336&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=336&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#fac8a5}.A .o{background:#fac8a5;height:4px;top:inherit}.A .h{background:#fac8a5;height:4px}.A .m{background:#fac8a5}.A .n{background:#fac8a5;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#fff}.x .o,.AL .o{background:#fff;height:4px;top:inherit}.x .h{background:#fff;height:4px}.x .m{background:#fff}.x .n{background:#fff;padding:inherit;margin:inherit}.x .p{display:inherit;background:#fff}.x .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f7f7f7;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/newblue/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#fff}.AT{background:#e8eef7;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#1a3764;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/newblue/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/newblue/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/newblue/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#1a3764}.oE{background:url(images/2/5/newblue/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/newblue/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #e8eef7;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/newblue/icons7.png) no-repeat -100px -80px}.oK{border-top:1px solid #e8eef7}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.qk{color:#fff;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#1a3764;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#1a3764;text-decoration:none}.pk .qk{color:#1a3764}.pz .k{background:#fff}.qj .k{background:#fff}.qk .p9,.qk .qh{color:#fff}.pO .p9{color:#1a3764}.pT{color:#1a3764}.pz .o{background:#fff;height:4px;top:inherit}.pz .n{background:#fff}.pz .h{background:#fff;height:4px}.pz .m{background:#fff}.pz .q{background:#fff;height:4px;margin-top:inherit}.pz .j{background:#fff;height:4px}.pz .i{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#fff;height:4px;top:inherit}.qj .n{background:#fff}.qj .h{background:#fff;height:4px}.qj .m{background:#fff}.qj .q{background:#fff;height:4px;margin-top:inherit}.qj .j{background:#fff;height:4px}.qj .i{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/newblue/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#666;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#1a3764;text-decoration:none}.pt{background-color:#fff;border:#e8eef7 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#e8eef7}.xE .l,.xE .ph{background-color:#fff}.pU{text-align:right;font-size:70%;color:#1a3764;padding:4px 7px 4px 0;background-color:#fff;margin:0}.r .l,.r .k{background:#e8eef7}.r .o{background:#e8eef7;height:4px;top:inherit}.r .n{background:#e8eef7}.r .m{background:#e8eef7;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat -4px 0}.pS .h{background:#e8eef7}.pS .i{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff;border-color:#e8eef7}.t .pu{padding-bottom:3px;background:none}.t .l{background:#e8eef7}.t .pU{color:#1a3764;background-color:#fff}.t .r .l,.t .r .k{background:#e8eef7}.t .r .o{background:#e8eef7;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#e8eef7}.t .r .n{background:#e8eef7}.t .r .p{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#fff;border-color:#e8eef7}.t .oB{background-color:#ffc}.t .oK{border-top-color:#e8eef7}.pO{color:#1a3764;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#e8eef7}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#e8eef7}.s .oy{background:#f7f7f7;color:#000}.s .r .l,.s .r .k{background:#e8eef7}.s .r .o{background:#e8eef7;height:4px;top:inherit}.s .r .m{background:#e8eef7}.s .r .n{background:#e8eef7}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #e8eef7;background-color:#fff}.pY .h{background:#e8eef7}.pY .r .p{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=e8eef7&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=e8eef7&w=3&h=3) no-repeat -3px -3px}.qo .l{background-color:#e8eef7}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/newblue/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/newblue/icons7.png) no-repeat -60px -20px}.gb1{color:#e8eef7}a.gb1.qq,a.gb3.qq{color:#fff!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#1a3764!important}.qp{background:transparent;border-bottom:1px solid #577CA2;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#79b;color:#e8eef7;padding:0 6px}.a0{background:#fff1a8;color:#666;padding:0 6px}.aJ .a5{color:#336}.bR{font:9px verdana,arial,sans-serif;color:#fff;text-decoration:underline;cursor:pointer}.a8{color:#e8eef7;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#fff}.aK .aI{color:#e8eef7}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#666;background:#fff1a8;border:1px solid #ccc;font-weight:bold}.aH .e{color:#1a3764}.bA{color:#fff;cursor:default}.bB{color:#fff;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#1a3764;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#1a3764}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#336;margin:0!important}.aK .o{background:#336;height:4px;top:inherit}.aK .m,.b .m{background:#336}.aK .n{margin-left:5px!important;background:#336;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=336&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=336&w=4&h=4) no-repeat -4px 0}.b .o{background:#336;height:4px;top:inherit}.b .h{background:#336;height:4px}.b .m{background:#336}.b .n{background:#336}.b .p{background:url(rc?a=af&c=336&w=4&h=4) no-repeat 0 0}.b .q{background:#336}.b .i{background:url(rc?a=af&c=336&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=336&w=4&h=4) no-repeat -4px -4px}.b{color:#666}.b .e{color:#1a3764}.b .k{background-color:#e8eef7}.aJ .k{background:#fac8a5;margin:0!important}.aJ .o{background:#fac8a5;height:4px;top:inherit}.aJ .m,.a .m{background:#fac8a5}.aJ .n{background:#fac8a5;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px 0}.a .e{color:#336}.a .o{background:#fac8a5;height:4px;top:inherit}.a .h{background:#fac8a5;height:4px}.a .k{background-color:#faf3dc}.a .m{background:#fac8a5}.a .n{background:#fac8a5}.a .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0}.a .q{background:#fac8a5}.a .i{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px -4px}.yT{color:#666;font-weight:bold}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.x8{text-decoration:underline;cursor:pointer;color:#79b}.yb .x8{color:#79b}.ya .e,.x9{color:#79b}.yd .x8,.yd .x9{color:#1a3764}.x2{color:#79b;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yV{color:#666}.z .yU{color:#1a3764}.z .yC .zw{color:#666}.z .yC .e{color:#1a3764}.B .yV{color:#666}.B .yU{color:#1a3764}.B .yC .zw{color:#666}.B .yC .e{color:#1a3764}.A .yU{color:#336}.A .yC .e{color:#336}.C .yU{color:#1a3764}.C .yC .e{color:#1a3764}.x0{color:#79b;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#79b}.xI{background-color:#efefef}.xH{color:#1a3764;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DEDEDE solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#f7f7f7;color:#444}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/newblue/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/newblue/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/newblue/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/newblue/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#79b}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#fff1a8;border:1px solid #ccc;font-size:80%;color:#666;padding:10px}.Ad{color:#1a3764;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #ffc}.lR{background:url(images/2/5/newblue/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/newblue/vimages7.png) repeat-y -12px 0}.mn{color:#e8eef7}.mn .l8{color:#fff!important}.mj{color:#e8eef7}.mp,.ma{font-size:70%;color:#e8eef7}.mo,.l9{color:#fff}.l8{color:#fff;text-decoration:underline;cursor:pointer}.l3{color:#e8eef7}.mb{color:#e8eef7;padding-top:4px}.l6{font-size:70%;color:#e8eef7;padding-top:12px}.l6 .e{color:#fff}.l7{background:#fff1a8;color:#666;font-weight:bold}.mh{color:#e8eef7;font-weight:bold}.mm{color:#e8eef7}.tE{text-decoration:underline;color:#79b;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #79b;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#79b;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/newblue/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-option-selected .tU{background:url(images/2/5/newblue/icons7.png) no-repeat -100px -80px}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tq .lJ{background-color:#e8eef7}.tq .lN{background-color:#e8eef7}.iI{background:#e8eef7;padding:6px 0 5px 6px}.iE{background:#e8eef7;padding:7px 0 5px 6px}.C .iI{background:#efefef}.C .iE{background:#efefef}.B .iI{background:#e8eef7}.B .iE{background:#e8eef7}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/newblue/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#79b}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h1,.iD{color:#79b;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#79b}.gR{margin:1px 0 0 0;color:#79b}.he{overflow:visible;background:#efefef}.g8{background:url(images/2/5/newblue/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/newblue/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/newblue/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/newblue/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/newblue/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/newblue/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/newblue/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/newblue/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/newblue/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.ii a{color:#79b}.ho a{color:#79b}.hr a{color:#79b}.hv{float:left;border:2px solid #fff;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/newblue/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.hA{height:7px;width:7px;background:url(images/2/5/newblue/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/newblue/icons7.png) no-repeat 0 -40px}.hE{color:#1a3764;padding-right:4px;padding-left:4px;white-space:nowrap}.iz .o{background:#e8eef7 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#e8eef7 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#e8eef7 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#e8eef7 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#e8eef7 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#e8eef7 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#e8eef7 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#e8eef7 url('images/2/card-ex-bl.gif') no-repeat top left}.qr .gA{background:#e8eef7 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#e8eef7 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#79b;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#79b}.hk span{cursor:pointer;color:#79b;white-space:nowrap}.iC .hk span{color:#79b}.z .h0{color:#666}.z .h0 .e{color:#1a3764}.C .h0 .e{color:#1a3764}.B .h0{color:#666}.B .h0 .e{color:#1a3764}.A .h0 .e{color:#336}.iS{text-align:center;background:#efefef;margin:0 8px 0 16px}.iT{color:#1a3764;cursor:pointer}.u7{color:#79b;text-decoration:underline;cursor:pointer}.u6:visited{color:#79b}a.u6{color:#79b}.vd{color:#79b;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#e8eef7;padding:0 4px}.el,.dP,.dU{color:#1a3764;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#e8eef7 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#e8eef7}.eh{background:#e8eef7}.d2{position:relative;color:#666;font-size:80%;margin-left:6px}.eI{background:url(images/2/5/newblue/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#e8eef7;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#666;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/newblue/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#1a3764}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#1a3764}.dQ{border:solid 1px #999;background:#79b;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.e9{border:1px solid;border-color:#e8eef7 #ccc #ccc #e8eef7}.eW,.e7{border:1px solid;border-color:#ccc #e8eef7 #e8eef7 #ccc}.e7{background-color:#ffc}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#1a3764;white-space:nowrap}.wY{background:url(images/2/5/newblue/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#1a3764;cursor:pointer}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/newblue/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#ffc;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#000;padding:3px}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/newblue/icons7.png) no-repeat -100px -80px}.fz{color:#79b;text-decoration:underline;font-weight:bold}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#1a3764;vertical-align:baseline}.mL{background:url(images/2/5/newblue/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/newblue/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/newblue/icons7.png) no-repeat -80px -40px}.mC{background-color:#e8eef7}.mC .mG{text-decoration:none;color:#1a3764}.manager-page .frame{background-color:#e8eef7;color:#666;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #e8eef7}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #fff;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#fff1a8;color:#666}.manager-page .loading{background-color:#fff1a8;color:#666;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#000;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.cmgr-toolbar{height:32px;background-color:#e8eef7;color:#666;vertical-align:middle;overflow-x:visible}.cmgr-toolbar span{color:#666}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #fff;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#1a3764}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #fff;padding:10px 0 5px}.cmgr-contacts-list-actions .cmgr-link{color:#1a3764}.cmgr-contact-pane .cmgr-link{color:#79b}.cmgr-contact-pane .contact-banner{border-top:1px solid #e8eef7;border-bottom:1px solid #e8eef7}.cmgr-domain-contact-label{padding:5px 7px;color:#666;border-bottom:1px solid #ccc;font-weight:bold;background-color:#fff1a8}.cmgr-domain-contact-label .link{color:#1a3764}.cmgr-edit-interleave-label{padding:7px;color:#666;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#fff1a8}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#e8eef7}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#ffc}.manager-page hr{background-color:#e8eef7}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#1a3764;color:#000;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#f7f7f7}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#666;background-color:#fff1a8}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.cmgr-hr-divider{background-color:#e8eef7;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .selected{background-color:#fff;overflow:hidden}.checkable-list .selected .text{color:#1a3764;font-weight:bold}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #e8eef7;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .selected{background-color:#fff}.group-list .selected .text{font-weight:bold;color:#1a3764}.group-list .selected .count{color:#1a3764}.group-list hr.header{background-color:#e8eef7;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#336}.lo .o{background:#336;height:3px;top:inherit}.lo .n{background:#336}.lo .m{background:#336}.lo .q{background:url(rc?a=af&c=336&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=336&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#fac8a5}.lp .o{background:#fac8a5;height:3px;top:inherit}.lp .n{background:#fac8a5}.lp .m{background:#fac8a5}.lp .q{background:url(rc?a=af&c=fac8a5&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=fac8a5&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#336;padding:2px}.ln{background:#fac8a5}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#e8eef7;font-weight:bold;margin-left:2px}.lp .kQ{color:#000}.kv{background:url(images/2/5/newblue/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/newblue/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/newblue/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/newblue/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#6B6B99}.ky,.kW,.jc{background-color:#FFEADB}.kt,.jA,.nl{color:#79b;text-decoration:underline;cursor:pointer}.kk a,.kq a{color:#79b}.jV{margin:0;border:2px solid #ffc}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #ffc}.jF{border:solid 1px #888;background-color:#f7f7f7;color:#000}.jB{background:url(images/2/5/newblue/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/newblue/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jR{background:url(images/2/5/newblue/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/newblue/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #e8eef7;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #ffc}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.fX .goog-flat-button{color:#1a3764;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#79b}.vE{background:#fac8a5}.vs{color:#000;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#000}.vG a{color:#79b}.uk{width:100%;border-bottom:solid #e8eef7 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#79b}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #e8eef7;border-bottom:1px solid #e8eef7}.uo{border:1px solid #e8eef7;color:#e8eef7}.ue a{color:#79b}.uM{background:url(images/2/5/newblue/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/newblue/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#e8eef7 solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#e8eef7 solid 1px;font-size:80%}.uv{color:#000;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uu{color:#79b;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #e8eef7;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/newblue/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/newblue/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#ffc;color:#222}.uW{background-color:#f7f7f7;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #e8eef7}.dz .cg{color:#79b}.jU{padding:0 3px}.A5 a{color:#fff}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #fff;background:#79b;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#fff;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#fff;background:#fff;font-weight:bold;padding:3px 4px}.goog-date-picker-selected{background:#e8eef7;color:#000}.v .l{background-color:#fac8a5}.v .k{color:#000;background:#fac8a5}.v .o{background:#fac8a5;height:4px;top:inherit}.v .n{background:#fac8a5;padding:inherit;margin:inherit}.v .h{background:#fac8a5;height:4px}.v .m{background:#fac8a5}.v .q{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#336;cursor:pointer;white-space:nowrap}.qZ{background:#fac8a5;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#faf3dc;padding:4px}.v9 .fZ{background:#faf3dc;font-size:80%;padding:3px 8px}.v9 .f1{color:#336;background:#fac8a5;font-size:80%}.v9 .fY{background:#fac8a5;padding:0}.v7 .fY{background:#fac8a5}.v7 .fZ{background-color:#faf3dc;border:1px solid #fac8a5;border-right:none}.v7 .f1{background:#fac8a5}.tf{background-color:#faf3dc;border:1px solid #fac8a5;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #fac8a5;padding:8px}.r7 td.r5{border-top:2px solid #fac8a5}.r7 a{color:#336}.r7 .e{color:#336}.rZ{background-color:#fac8a5;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#336}.s0{padding:6px;border-bottom:2px solid #fac8a5;font-size:80%}.s1{border-color:#fac8a5;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.sW a{color:#336}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #7799bb;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#336;cursor:pointer}.sM{background-color:#fac8a5;padding:5px}.sn{border:2px solid #fac8a5;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#336;text-decoration:underline}.ri{color:#336}.sk{border:solid 2px #336}.sl{border:solid 2px #faf3dc}.si{background-color:#faf3dc;border:solid 2px #faf3dc;padding:5px;cursor:pointer}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#336}.rd{color:#336}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#1a3764}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#1a3764}.cy a{color:#79b}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#faf3dc;border:9px solid #fac8a5}.oR{background:#fac8a5;color:#000;padding-bottom:8px;font-weight:bold}.wL{border:1px solid #336}.wN .k{background:#336}.wN .o{background:#336;height:3px;top:inherit}.wN .n{background:#336}.wN .m{background:#336}.wN .q{background:url(rc?a=af&c=336&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=336&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#336}.wO .o{background:#336;height:3px;top:inherit}.wM{background:#336;padding:2px}.vT{background:#336;overflow:auto}.vS{width:100%;background:#e8eef7;overflow:hidden}.vL,.vV{color:#666;padding:4px 6px;font-size:80%;position:relative}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#336;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/newblue/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}",
logo: "background-image: url(images/2/5/newblue/gmail_solid_white_beta.png); background-position: left top; background-repeat: no-repeat;",
},
coldshower: {
name: "Cold Shower",
id: "coldshower",
css: ".cP{overflow:visible;background-color:#99b1c3}.aB,.e,.cg{color:#333944;cursor:pointer}.cP{background:#99b1c3 url(images/2/5/coldshower/blue-tile.png) 0 0 repeat}.b8 .vi,.b8 .vh{background:#ffcc00;color:#001}.b8 .b9{color:#333944}.b8 .vj{background:url(rc?a=af&c=ffcc00&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=ffcc00&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=ffcc00&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=ffcc00&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#ffe5de}.cc .vh{background:#ffe5de}.cc .ca,.cc .b9{color:#333944}.cc .vj{background:url(rc?a=af&c=ffe5de&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=ffe5de&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=ffe5de&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=ffe5de&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#406480;background-color:#f3f6f9;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#fff2e6;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#333944}.ly{color:#333944;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#ffcc00}.vX .p{background:#ffcc00}.vX .q{background:#ffcc00}.vX .i{background:url(rc?a=af&c=ffcc00&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=ffcc00&w=4&h=4) no-repeat -4px -4px}.v2{color:#333944}.dF .dG,.d9,.nr{border:1px solid;border-color:#6F736D #cfdce6 #cfdce6 #cfdce6;background-color:#fff;color:#000}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #fff2e6!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#406480;border:1px solid #000000;padding:8px;z-index:501}.aA{position:relative;color:#406480;background-color:#cfdce6;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#406480!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#cfdce6!important;color:#406480!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #406480!important}.tr_edit-link-dialog{border:2px solid #406480!important}.tr_image-dialog{border:2px solid #406480!important}.tr_dialog{background:#cfdce6!important;color:#406480!important}.tr_pseudo-link{color:#406480!important}.tr_dialog-tab-content-explanation-text a{color:#406480!important}.tr_tabbed-pane-tab-label{color:#406480!important}.ad{color:#333944}.ag{color:#333944;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#333944;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#fff;cursor:pointer;text-decoration:underline}.fZ .f0{color:#333944;cursor:text;outline:none;-moz-outline:none;text-decoration:none}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#ffcc00}.w8{margin:2px;padding:2px;font:normal 80% arial,sans-serif;border:1px solid #cfdce6}.mq{padding:0 0 5px 2px;height:1.1em;background:#406480;margin:-2px 0 0 0}.mv{font-size:80%;color:#eee;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#eee}.my{color:#eee}.mB{float:right;font-size:70%;color:#eee;padding:0.3em 1ex 0 2px}.mx,.mz{color:#eee}.sX .mx{color:#333944}.mr{color:#eee}.ms{background-color:#2D506C;color:#A4BBCD;border:1px solid #A4BBCD}.mu{background-color:#406480;color:#FFFFFF;border:1px solid #FFFFFF}.mt{background-color:#406480;color:#5C7F9A;border:1px solid #5C7F9A}.C .mq{background:#777}.C .mB{color:#fff}.C .ms{background:#636363;color:#C4C4C4;border-color:#C4C4C4}.C .mu{background:#777;color:#FFFFFF;border-color:#FFFFFF}.C .mt{background:#777;color:#919191;border-color:#919191}.C .mv{color:#c3d9ff}.C .mv .e,.C .mz{color:#c3d9ff}.C .my{color:#c3d9ff}.C .mr{color:#c3d9ff}.C .mx{color:#c3d9ff}.B .mq{background:#96776f}.B .mB{color:#fff}.B .ms{background:#825F56;color:#E3E3E3;border-color:#E3E3E3}.B .mu{background:#96776f;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#96776f;color:#B09993;border-color:#B09993}.B .mv{color:#ffe5de}.B .mv .e,.B .mz{color:#ffe5de}.B .my{color:#ffe5de}.B .mr{color:#ffe5de}.B .mx{color:#ffe5de}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f3f6f9;color:#333944;cursor:default;margin-right:4px}.b2{background:url(images/2/5/coldshower/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f3f6f9;color:#333944;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#333944;padding:2px 4px 2px 22px;background:#f3f6f9;line-height:105%}.b6{background:#fff2e6;color:#222}.A1{padding:6px 0 3px 6px;background:#cfdce6;border-bottom:1px solid #B8C4CD}.AY{padding:3px 0 6px 6px;background:#cfdce6;border-top:1px solid #B8C4CD}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AQ{color:#406480}.z .AO{color:#406480}.z .AP{color:#406480}.C .AQ{color:#777}.C .AO{color:#406480}.C .AP{color:#406480}.C .A1{background:#eee}.C .AY{background:#eee}.B .AQ{color:#333944}.B .AO{color:#333944}.B .AP{color:#333944}.B .A1{background:#ffe5de}.B .AY{background:#ffe5de}.A .AQ{color:#333944}.A .AO{color:#406480}.A .AP{color:#406480}.A .A1{background:#d6c59f}.A .AY{background:#d6c59f}.z .l,.y .l{background:#406480}.z .o,.y .o{background:#406480;height:4px;top:inherit}.z .h,.y .h{background:#406480;height:4px}.z .m,.y .m{background:#406480}.z .n,.y .n{background:#406480;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#777}.C .o{background:#777;height:4px;top:inherit}.C .h{background:#777;height:4px}.C .m{background:#777}.C .n{background:#777;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=777&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=777&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=777&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=777&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#96776f}.B .o{background:#96776f;height:4px;top:inherit}.B .h{background:#96776f;height:4px}.B .m{background:#96776f}.B .n{background:#96776f;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#968a6f}.A .o{background:#968a6f;height:4px;top:inherit}.A .h{background:#968a6f;height:4px}.A .m{background:#968a6f}.A .n{background:#968a6f;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#406480}.x .o,.AL .o{background:#406480;height:4px;top:inherit}.x .h{background:#406480;height:4px}.x .m{background:#406480}.x .n{background:#406480;padding:inherit;margin:inherit}.x .p{display:inherit;background:#406480}.x .q{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f3f6f9;color:#333944;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f3f6f9}.AW .lT{border-top:1px solid #cfdce6}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#fff2e6;color:#222}.D .goog-menuseparator{margin:2px 0;border-top:1px solid #cfdce6;padding:0;outline:none}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/coldshower/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#406480}.AT{background:#cfdce6;border-top:1px solid #cfdce6;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#406480;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f3f6f9;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #cfdce6 #cfdce6 #cfdce6;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/coldshower/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/coldshower/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f3f6f9}.D .goog-imageless-button-open .AZ{background:url(images/2/5/coldshower/vimages7.png) no-repeat -24px 50%}.ow{background-color:#EEF1F3;font-size:70%}.oJ{text-decoration:underline;color:#406480}.oH,.oI{background:#fff2e6;padding:3px 4px 3px 6px;border:1px solid #fff2e6!important}.oE{background:url(images/2/5/coldshower/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/coldshower/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#EEF1F3;color:#000;visibility:hidden;font-size:100%;border:1px solid #5C7F9A;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/coldshower/icons7.png) no-repeat -100px -80px}.oB{background:#fff2e6}.oK{border-top:1px solid #5C7F9A}.pN .goog-menu{position:absolute;z-index:13;color:#406480;border:1px solid #888;background-color:#f3f6f9;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#fff2e6;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #fff2e6}.qk{color:#333944;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#eee;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#c3d9ff;text-decoration:none}.pk .qk{color:#eee}.pz .k{background:#406480}.qj .k{background:#406480}div.qi .k{background:#777}.qk .p9,.qk .qh{color:#333944}.pO .p9{color:#406480}.pT{color:#406480}.pz .o{background:#406480;height:4px;top:inherit}.pz .n{background:#406480}.pz .h{background:#406480;height:4px}.pz .m{background:#406480}.pz .q{background:#406480;height:4px;margin-top:inherit}.pz .j{background:#406480;height:4px}.pz .i{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#406480;height:4px;top:inherit}.qj .n{background:#406480}.qj .h{background:#406480;height:4px}.qj .m{background:#406480}.qj .q{background:#406480;height:4px;margin-top:inherit}.qj .j{background:#406480;height:4px}.qj .i{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=406480&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#777;height:4px;top:inherit}.qi .n{background:#777}.qi .h{background:#777;height:4px}.qi .m{background:#777}.qi .q{background:#777;height:4px;margin-top:inherit}.qi .j{background:#777;height:4px}.qi .i{background:url(rc?a=af&c=777&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=777&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/coldshower/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#fff;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#406480;text-decoration:none}.pt{background-color:#EEF1F3;border:#5C7F9A 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#5C7F9A}.xE .l,.xE .ph{background-color:#406480}.pU{text-align:right;font-size:70%;color:#406480;padding:4px 7px 4px 0;background-color:#EEF1F3;margin:0}.r .l,.r .k{background:#5C7F9A}.r .o{background:#5C7F9A;height:4px;top:inherit}.r .n{background:#5C7F9A}.r .m{background:#5C7F9A;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat -4px 0}.pS .h{background:#5C7F9A}.pS .i{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#EEF1F3;border-color:#5C7F9A}.t .pu{padding-bottom:3px;background:none}.t .l{background:#5C7F9A}.t .pU{color:#406480;background-color:#EEF1F3}.t .r .l,.t .r .k{background:#5C7F9A}.t .r .o{background:#5C7F9A;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#5C7F9A}.t .r .n{background:#5C7F9A}.t .r .p{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#EEF1F3;border-color:#5C7F9A}.t .oB{background-color:#fff2e6}.t .oK{border-top-color:#5C7F9A}.pO{color:#406480;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#EEF1F3;border-color:#5C7F9A}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#5C7F9A}.s .ow{background:#EEF1F3}.s .oy{background:#f3f6f9;color:#406480}.s .oB{background:#fff2e6;color:#222}.s .r .l,.s .r .k{background:#5C7F9A}.s .r .o{background:#5C7F9A;height:4px;top:inherit}.s .r .m{background:#5C7F9A}.s .r .n{background:#5C7F9A}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #5C7F9A;background-color:#fff}.pY .pt{background-color:#EEF1F3}.pY .h{background:#5C7F9A}.pY .r .p{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=5C7F9A&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=5C7F9A&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#EEF1F3}.qo .l{background-color:#5C7F9A}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/coldshower/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/coldshower/icons7.png) no-repeat -60px -20px}.gb1{color:#001}a.gb1.qq,a.gb3.qq{color:#333944!important}div#gbi{background:#f3f6f9!important;border-color:#888!important}a.gb2.qq{color:#406480!important}a.gb2.qq:hover{color:#222!important;background:#fff2e6!important}div.gbd{border-top:1px solid #cfdce6!important}.qp{background:transparent;border-bottom:1px solid #7790a1;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#99b1c3 url(images/2/5/coldshower/blue-tile.png) 0 0 repeat;color:#001;padding:0 6px}.a0{background:#ffcc00;color:#001;padding:0 6px}.a5{font-size:70%;color:#ffe5de;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#ffe5de}.aJ .a5{color:#c3d9ff}.bR{font:9px verdana,arial,sans-serif;color:#333944;text-decoration:underline;cursor:pointer}.a8{color:#001;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#333944}.aK .aI{color:#fff}.aJ .aI{color:#fff}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#001;background:#ffcc00;border:1px solid #cfdce6;font-weight:bold}.aH .e{color:#333944}.bA{color:#333944;cursor:default}.bB{color:#333944;text-decoration:none}.bA .goog-menu{background:#f3f6f9 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#406480;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#406480}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#fff2e6 none repeat scroll 0!important}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#96776f;margin:0!important}.aK .o{background:#96776f;height:4px;top:inherit}.aK .m,.b .m{background:#96776f}.aK .n{margin-left:5px!important;background:#96776f;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat -4px 0}.b .o{background:#96776f;height:4px;top:inherit}.b .h{background:#96776f;height:4px}.b .m{background:#96776f}.b .n{background:#96776f}.b .p{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat 0 0}.b .q{background:#96776f}.b .i{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=96776F&w=4&h=4) no-repeat -4px -4px}.b{color:#333944}.b .e{color:#333944}.b .k{background-color:#ffe5de}.aJ .k{background:#968a6f;margin:0!important}.aJ .o{background:#968a6f;height:4px;top:inherit}.aJ .m,.a .m{background:#968a6f}.aJ .n{background:#968a6f;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat -4px 0}.a{color:#333944}.a .e{color:#406480}.a .o{background:#968a6f;height:4px;top:inherit}.a .h{background:#968a6f;height:4px}.a .k{background-color:#d6c59f}.a .m{background:#968a6f}.a .n{background:#968a6f}.a .p{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat 0 0}.a .q{background:#968a6f}.a .i{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat -4px -4px}.yT{color:#333944;font-weight:bold}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DADDE0 solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DADDE0 solid;padding:3px 8px}.yd{background-color:#f3f6f9}.yb{background-color:#fff2e6;color:#222}.yc{background-color:#f3f6f9}.x8{text-decoration:underline;cursor:pointer;color:#406480}.yb .x8{color:#333944}.ya .e,.x9{color:#406480}.yd .x8,.yd .x9{color:#406480}.x2{color:#406480;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yV{color:#406480}.z .yU{color:#406480}.z .yC .zw{color:#406480}.z .yC .e{color:#406480}.B .yV{color:#333944}.B .yU{color:#333944}.B .yC .zw{color:#333944}.B .yC .e{color:#333944}.A .yV{color:#333944}.A .yU{color:#406480}.A .yC .zw{color:#333944}.A .yC .e{color:#406480}.C .yV{color:#777}.C .yU{color:#406480}.C .yC .zw{color:#777}.C .yC .e{color:#406480}.x0{color:#406480;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#406480}.xG{border-bottom:1px solid #777;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#406480;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DADDE0 solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#f3f6f9;color:#444}.x7{color:#222;background:#fff2e6}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/coldshower/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/coldshower/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/coldshower/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#406480}.yQ{background:#fff2e6}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#ffcc00;border:1px solid #cfdce6;font-size:80%;color:#001;padding:10px}.Ad{color:#333944;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#f3f6f9}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#f3f6f9;border:1px solid #cfdce6;width:250px;padding:4px;z-index:10}.Af textarea{width:98%;height:36px;font-size:80%;border:1px solid #cfdce6;padding:2px 0 0 1px;margin:0}textarea.Ah{border:2px solid #fff2e6}textarea.Ai{border:2px solid #f3f6f9}.lR{background:url(images/2/5/coldshower/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/coldshower/vimages7.png) repeat-y -12px 0}.mn{color:#001}.mn .l8{color:#333944!important}.mj{color:#fff}.mp,.ma{font-size:70%;color:#001}.mo,.l9{color:#333944}.l8{color:#333944;text-decoration:underline;cursor:pointer}.l3{color:#001}.mb{color:#001;padding-top:4px}.l6{font-size:70%;color:#001;padding-top:12px}.l6 .e{color:#333944}.l7{background:#ffcc00;color:#001;font-weight:bold}.mh{color:#001;font-weight:bold}.mm{color:#001}.tE{text-decoration:underline;color:#406480;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #406480;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#406480;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/coldshower/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#406480;border:1px solid #888;background-color:#f3f6f9;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#fff2e6;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/coldshower/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#f3f6f9;color:#406480;border-bottom:1px solid #cfdce6;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#f3f6f9;color:#777}.u .goog-menuitem-opened .tF{background:#f3f6f9;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #fff;background:#cfdce6;width:1px;height:23px;padding:0;margin:0}.tJ{border-color:#6F736D #cfdce6 #cfdce6 #cfdce6}.tq .lJ{background-color:#406480}.tq .lN{background-color:#406480}.iI{background:#cfdce6;padding:6px 0 5px 6px}.iE{background:#cfdce6;padding:7px 0 5px 6px}.C .iI{background:#eee}.C .iE{background:#eee}.B .iI{background:#ffe5de}.B .iE{background:#ffe5de}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/coldshower/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#406480}.gy{border-top:1px solid #cfdce6;border-bottom:1px solid #cfdce6}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#fff2e6}.h1,.iD{color:#406480;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#333944}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#fff2e6}.gR{margin:1px 0 0 0;color:#333944}.hg{width:auto;overflow:hidden;background:#fff2e6}.g8{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/coldshower/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/coldshower/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/coldshower/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/coldshower/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/coldshower/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/coldshower/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/coldshower/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#406480;background:#f3f6f9;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#fff2e6;color:#222}.ii a{color:#406480}.hp{width:50%;height:0;border-top:2px solid #777}.ho a{color:#406480}.hr a{color:#406480}.hv{float:left;border:2px solid #406480;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/coldshower/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#406480;background:#f3f6f9;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#fff2e6;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/coldshower/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/coldshower/icons7.png) no-repeat 0 -40px}.hE{color:#406480;padding-right:4px;padding-left:4px;white-space:nowrap}.g .h{background:#f3f6f9 url('images/2/cv/card-ex-bm.gif') repeat-x top}.g .j{background:#f3f6f9 url('images/2/card-ex-br.gif') no-repeat top left}.g .i{background:#f3f6f9 url('images/2/card-ex-bl.gif') no-repeat top right}.iz .o{background:#cfdce6 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#cfdce6 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#cfdce6 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#cfdce6 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#cfdce6 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#cfdce6 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#cfdce6 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#cfdce6 url('images/2/card-ex-bl.gif') no-repeat top left}.id .il,.iW{background:#fff2e6}.gA,.hi{background:#f3f6f9 url('images/2/cv/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.qr .gA{background:#cfdce6 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#cfdce6 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#406480;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#406480}.hk span{cursor:pointer;color:#406480;white-space:nowrap}.iC .hk span{color:#406480}.z .h0{color:#406480}.z .h0 .e{color:#406480}.C .h0{color:#777}.C .h0 .e{color:#406480}.B .h0{color:#333944}.B .h0 .e{color:#333944}.A .h0{color:#333944}.A .h0 .e{color:#406480}.iU{font-size:80%;color:#777}.iT{color:#406480;cursor:pointer}.u7{color:#406480;text-decoration:underline;cursor:pointer}.u6:visited{color:#406480}a.u6{color:#406480}.vd{color:#406480;text-decoration:none}.fO{font-size:80%;margin-right:5px;padding-bottom:10px;border-bottom:1px solid #cfdce6}.YXCXSb .goog-tabpane{background-color:#cfdce6;padding:0 4px}.nN8jRb .goog-tabpane-cont{padding:2px;border:1px solid #cfdce6;background-color:#fff}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#f3f6f9;border:1px solid #cfdce6}.u5cA3e{border:1px solid #cfdce6}.LE6Bud .goog-tabpane-tab-selected{top:1px;border-bottom:1px solid #fff;border-top:1px solid #cfdce6;border-left:1px solid #cfdce6;border-right:1px solid #cfdce6}.YXCXSb .goog-tabpane-tab-selected{top:-1px;border-top:1px solid #fff;border-bottom:1px solid #cfdce6;border-left:1px solid #cfdce6;border-right:1px solid #cfdce6}.nN8jRb .goog-palette-cell-hover{background:#fff2e6}.el,.dP,.dU{color:#406480;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#cfdce6 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#cfdce6}.eh{background:#cfdce6}.d2{position:relative;color:#406480;font-size:80%;margin-left:6px}.eI{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#cfdce6;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#406480;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/coldshower/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#406480}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#406480}.dQ{border:solid 1px #999;background:#99b1c3;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #ffcc00!important;margin:0!important}.eJ table{width:100%;background:#f3f6f9}.eL,.eM,.eK{border:1px solid #f3f6f9;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#cfdce6 #cfdce6 #cfdce6 #cfdce6}.eW,.e7{border:1px solid;border-color:#cfdce6 #cfdce6 #cfdce6 #cfdce6}.e7{background-color:#fff2e6}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#406480;white-space:nowrap}.wY{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#406480;cursor:pointer}.d1{background-color:#f3f6f9!important}.ex{position:absolute;border:1px solid #888;background-color:#f3f6f9;color:#406480;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#fff2e6;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/coldshower/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#fff2e6;padding:3px 0 3px 3px}.fx{position:absolute;background:#f3f6f9;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f3f6f9;color:#406480;padding:3px}.fx .goog-menuitem-highlight{background:#fff2e6;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/coldshower/icons7.png) no-repeat -100px -80px}.fv .goog-palette-table{border:1px solid #cfdce6;border-collapse:collapse}.fv .goog-palette-cell{height:13px;width:15px;margin:0;border:0;text-align:center;vertical-align:middle;border-right:1px solid #cfdce6;font-size:100%}.fv .goog-palette-colorswatch{position:relative;height:12px;width:14px;border:1px solid #cfdce6}.fy{margin-top:2px;background-color:#fff2e6;border-width:1px 0;font-size:80%}.fz{color:#333944;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#f3f6f9}.mH{background-color:#f3f6f9;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#406480;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#406480}.mL{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/coldshower/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/coldshower/icons7.png) no-repeat -80px -40px}.mC{background-color:#cfdce6}.mC .mG{text-decoration:none;color:#406480}.manager-page .frame{background-color:#cfdce6;color:#406480;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #cfdce6}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #406480;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#ffcc00;color:#001}.manager-page .loading{background-color:#ffcc00;color:#001;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#406480;background-color:#f3f6f9;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#406480;background-color:#f3f6f9;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#fff2e6}.cmgr-toolbar{height:32px;background-color:#cfdce6;color:#406480;vertical-align:middle;overflow-x:visible}.cmgr-toolbar span{color:#406480}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #406480;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#406480}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #406480;padding:10px 0 5px}.cmgr-editbar{background-color:#f3f6f9;color:#406480;border-top:1px solid #cfdce6;border-bottom:1px solid #cfdce6;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#f3f6f9;color:#406480;border-top:1px solid #cfdce6;border-bottom:1px solid #cfdce6;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#406480}.cmgr-contact-pane .cmgr-link{color:#406480}.cmgr-contact-pane .contact-banner{border-top:1px solid #cfdce6;border-bottom:1px solid #cfdce6}.cmgr-domain-contact-label{padding:5px 7px;color:#001;border-bottom:1px solid #cfdce6;font-weight:bold;background-color:#ffcc00}.cmgr-domain-contact-label .link{color:#333944}.cmgr-edit-interleave-label{padding:7px;color:#001;border-top:1px solid #cfdce6;border-bottom:1px solid #cfdce6;background-color:#ffcc00}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#cfdce6}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f3f6f9;color:#406480;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#fff2e6}.manager-page hr{background-color:#cfdce6}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#406480;background-color:#f3f6f9;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f3f6f9;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#406480;color:#406480;background-color:#f3f6f9}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#406480;background-color:#f3f6f9}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#001;background-color:#ffcc00}.manager-page .goog-menu{background-color:#f3f6f9;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem{color:#406480;list-style:none;margin:0;padding:4px 4px 4px 4px;white-space:nowrap}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#fff2e6;color:#222}.cmgr-hr-divider{background-color:#cfdce6;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#fff2e6}.checkable-list .selected{background-color:#406480;overflow:hidden}.checkable-list .selected .text{color:#eee;font-weight:bold}.checkable-list .preselect{background-color:#fff2e6}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #cfdce6;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#fff2e6}.group-list .preselect{background-color:#fff2e6}.group-list .selected{background-color:#406480}.group-list .selected .text{font-weight:bold;color:#eee}.group-list .selected .count{color:#eee}.group-list-secondary .selected{background-color:#cfdce6}.group-list hr.header{background-color:#cfdce6;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#406480}.lo .o{background:#406480;height:3px;top:inherit}.lo .n{background:#406480}.lo .m{background:#406480}.lo .q{background:url(rc?a=af&c=406480&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=406480&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#968a6f}.lp .o{background:#968a6f;height:3px;top:inherit}.lp .n{background:#968a6f}.lp .m{background:#968a6f}.lp .q{background:url(rc?a=af&c=968a6f&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=968a6f&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#406480;padding:2px}.ln{background:#968a6f}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#eee;font-weight:bold;margin-left:2px}.kX{border-right:1px solid #cfdce6;border-left:1px solid #cfdce6;border-top:none;border-bottom:1px solid #f3f6f9}.kv{background:url(images/2/5/coldshower/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/coldshower/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/coldshower/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#7D9CB3}.ky,.kW,.jc{background-color:#C9C5BD}.kt,.jA,.nl{color:#406480;text-decoration:underline;cursor:pointer}.ko{color:#000;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #cfdce6;border-right:1px solid #cfdce6;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#406480}.jp{border-left:solid #cfdce6 1px;border-right:solid #cfdce6 1px;background-color:#fff;text-align:center;padding-bottom:4px}.jT{position:relative;border:1px solid;border-color:#6F736D #cfdce6 #cfdce6 #cfdce6;margin:1px;color:#000;background-color:#fff;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #fff2e6}.jW{margin:0;border:2px solid #ffcc00}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:black;text-decoration:none}.jE{border:1px solid #fff2e6}.jF{border:solid 1px #888;background-color:#f3f6f9;color:#406480}.jB{background:url(images/2/5/coldshower/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/coldshower/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#f3f6f9;color:#406480;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jN{background-color:#fff2e6;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#fff2e6;color:#222}.jR{background:url(images/2/5/coldshower/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/coldshower/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #cfdce6;border-right:1px solid #cfdce6;border-bottom:1px solid #cfdce6;padding-top:1px;padding-bottom:4px}.nj input{width:97%;margin:1px;border:1px solid #6F736D #cfdce6 #cfdce6 #cfdce6}.nk input{margin:0;border:2px solid #fff2e6}.jo{position:relative;background-color:#f3f6f9;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f3f6f9}.jm .goog-icon-picker-highlighted{background-color:#fff2e6}.jm .goog-icon-picker{background-color:#f3f6f9}.jm .goog-tabpane{background-color:#f3f6f9;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#f3f6f9;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f3f6f9;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#f3f6f9;height:30px}.jX{border-left:1px solid #cfdce6;border-right:1px solid #cfdce6}.jZ{background-color:#fff2e6}.kR{border-left:solid #cfdce6 1px;border-right:solid #cfdce6 1px;background-color:#fff;text-align:center;overflow:hidden;padding:4px;clear:both}.fX{background-color:#777}.fX .goog-flat-button{color:#333944;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#406480}.vC{white-space:nowrap;color:#000;cursor:pointer;background-color:#EEF1F3;width:100%;line-height:1.4em}.vI td{border-top:1px solid #EEF1F3}.vD{color:#222;background-color:#fff2e6}.vE{background:#968a6f}.vG a{color:#406480}.uk{width:100%;border-bottom:solid #cfdce6 1px;background-color:#EEF1F3;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#333944}.ul{background-color:#fff2e6;border-top:1px solid #fff2e6;border-bottom:1px solid #fff2e6}.ud,.um{color:#000;background-color:#EEF1F3;border-top:1px solid #5C7F9A;border-bottom:1px solid #5C7F9A}.up{border:1px solid #777;background-color:#cfdce6;cursor:pointer}.uo{border:1px solid #5C7F9A;color:#5C7F9A}td.uK{border-right:#EEF1F3 solid 1px}td.uL{border-right:#9fbfd6 solid 1px}td.uh,td.uO{border:#EEF1F3 solid 1px}td.ui,td.uP{border:#9fbfd6 solid 1px}.ue a{color:#406480}.uM{background:url(images/2/5/coldshower/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#5C7F9A solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#5C7F9A solid 1px;font-size:80%}.uv{color:#406480;background-color:#f3f6f9;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#fff2e6;color:#222}.uu{color:#406480;text-decoration:underline;cursor:pointer}.dF{background-color:#EEF1F3}.dI{border:solid 1px #5C7F9A;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/coldshower/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/coldshower/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f3f6f9;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#fff2e6;color:#222}.u3{background-color:#f3f6f9;color:#777}.uW{background-color:#f3f6f9;color:#406480}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#EEF1F3;font-size:80%;border-bottom:1px solid #cfdce6}.dz .cg{color:#406480}.do{background:#EEF1F3 url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.jU{padding:0 3px}.A5 a{color:#333944}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #406480;background:#99b1c3;color:#fff;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#406480;color:#fff;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#333944;background:#406480;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#f3f6f9;color:#fff;cursor:pointer}.goog-date-picker-other-month{color:#cfdce6}.goog-date-picker-selected{background:#cfdce6;color:#fff}.modal-dialog-bg{position:absolute;top:0;left:0;background-color:#fff}.v .l{background-color:#968a6f}.v .k{color:#333944;background:#968a6f}.v .o{background:#968a6f;height:4px;top:inherit}.v .n{background:#968a6f;padding:inherit;margin:inherit}.v .h{background:#968a6f;height:4px}.v .m{background:#968a6f}.v .q{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=968a6f&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#406480;cursor:pointer;white-space:nowrap}.qZ{background:#968a6f;color:#fff;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#d6c59f;padding:4px}.v9 .fZ{background:#d6c59f;font-size:80%;padding:3px 8px}.v9 .f1{color:#fff;background:#968a6f;font-size:80%}.v9 .fY{background:#968a6f;padding:0}.v7 .fY{background:#968a6f}.v7 .fZ{background-color:#d6c59f;border:1px solid #968a6f;border-right:none}.v7 .f1{background:#968a6f}.tf{background-color:#d6c59f;border:1px solid #968a6f;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #968a6f;padding:8px}.r7 td.r5{border-top:2px solid #968a6f}.r7 a{color:#406480}.r7 .e{color:#406480}.rZ{background-color:#968a6f;padding:0;height:2px}.rJ{width:96px;height:96px;border:1px solid #cfdce6}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#406480}.s0{padding:6px;border-bottom:2px solid #968a6f;font-size:80%}.ti{color:#fff;float:right;padding:8px;font-size:80%}.s1{border-color:#968a6f;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s5{color:#fff;font-size:80%}.sW a{color:#406480}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #406480;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#406480;cursor:pointer}.sM{background-color:#968a6f;padding:5px}.sn{border:2px solid #968a6f;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#406480;text-decoration:underline}.ri{color:#406480}.ru{color:#333944}.sk{border:solid 2px #406480}.sl{border:solid 2px #d6c59f}.si{background-color:#d6c59f;border:solid 2px #d6c59f;padding:5px;cursor:pointer}.sh{background-color:#f3f6f9;border:solid 2px #cfdce6;padding:5px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#406480}.sf{color:#406480}.sq{width:65px;height:65px;border:1px solid #cfdce6;margin:5px 3px 3px 3px}.rd{color:#406480}.cB{position:relative;margin:0 3px 0 0;border:solid #cfdce6;border-width:1px 0;font-size:80%}.cz{height:100%;vertical-align:top;background-color:#cfdce6;padding:4px 0}.cz a{color:#333944}.cF{zoom:1;border:1px solid #cfdce6;background:#f3f6f9;padding:4px;white-space:nowrap}.cF .e{color:#406480}.cy a{color:#406480}tr.cn td{border-top:1px dotted #cfdce6}tr.cm td{border-bottom:1px dotted #cfdce6}tr.cr td{border-top:1px #cfdce6 solid;border-bottom:1px #cfdce6 solid;background:#cfdce6}.cu{width:70%;height:100%;background:#cfdce6;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #cfdce6;text-align:center;background:#cfdce6;padding:4px}.o0{background-color:#d6c59f;border:9px solid #968a6f}.oR{background:#968a6f;color:#fff;padding-bottom:8px;font-weight:bold}.oQ{font-size:80%;color:#333944;padding:24px 12px 12px 12px}.wL{border:1px solid #96776f}.wN .k{background:#96776f}.wN .o{background:#96776f;height:3px;top:inherit}.wN .n{background:#96776f}.wN .m{background:#96776f}.wN .q{background:url(rc?a=af&c=96776F&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=96776F&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#96776f}.wO .o{background:#96776f;height:3px;top:inherit}.wM{background:#96776f;padding:2px}.vT{background:#96776f;overflow:auto}.vS{width:100%;background:#ffe5de;overflow:hidden}a.vQ{color:#ffe5de}.vL,.vV{color:#333944;padding:4px 6px;font-size:80%;position:relative}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#96776f;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/coldshower/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f3f6f9;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#fff2e6}.sam .goog-menuitem-content{color:#406480}",
logo: "background-image: url(images/2/5/coldshower/gmail_solid_white_beta.png); background-position: left top; background-repeat: no-repeat;"
},
steel: {
name: "Steel",
id: "steel",
css: ".aB,.e,.cg{color:#4263ab;cursor:pointer}.cP{background:url(images/2/5/steel/bg-main.png) 0 0 repeat-x}.b8 .vi,.b8 .vh{background:#9fbfd6;color:#000}.b8 .b9{color:#0d3d5e}.b8 .vj{background:url(rc?a=af&c=9fbfd6&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=9fbfd6&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=9fbfd6&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=9fbfd6&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#f5f5f5}.cc .vh{background:#f5f5f5}.cc .ca,.cc .b9{color:#0d3d5e}.cc .vj{background:url(rc?a=af&c=f5f5f5&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=f5f5f5&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=f5f5f5&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=f5f5f5&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#fafafc;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#fbee99;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#4263ab}.ly{color:#4263ab;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#9fbfd6}.vX .p{background:#9fbfd6}.vX .q{background:#9fbfd6}.vX .i{background:url(rc?a=af&c=9fbfd6&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=9fbfd6&w=4&h=4) no-repeat -4px -4px}.v2{color:#4263ab}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #fbee99!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#69748c;border:1px solid #000000;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#e6e8ed;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#4263ab!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#e6e8ed!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #69748c!important}.tr_edit-link-dialog{border:2px solid #69748c!important}.tr_image-dialog{border:2px solid #69748c!important}.tr_dialog{background:#e6e8ed!important;color:#000!important}.tr_pseudo-link{color:#4263ab!important}.tr_dialog-tab-content-explanation-text a{color:#4263ab!important}.tr_tabbed-pane-tab-label{color:#4263ab!important}.ad{color:#0d3d5e}.ag{color:#0d3d5e;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#0d3d5e;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#f3f0ed;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#9fbfd6}.mq{padding:0 0 5px 2px;height:1.1em;background:#69748c;margin:-2px 0 0 0}.mv{font-size:80%;color:#e6e8ed;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#e6e8ed}.my{color:#e6e8ed}.mB{float:right;font-size:70%;color:#bcbfc7;padding:0.3em 1ex 0 2px}.mx,.mz{color:#e6e8ed}.mr{color:#e6e8ed}.ms{background-color:#505D78;color:#D9D9D9;border:1px solid #D9D9D9}.mu{background-color:#69748c;color:#FFFFFF;border:1px solid #FFFFFF}.mt{background-color:#69748c;color:#8D94A6;border:1px solid #8D94A6}.C .mq{background:#9a9fa8}.C .mB{color:#e4e5e9}.C .ms{background:#878C94;color:#F5F5F5;border-color:#F5F5F5}.C .mu{background:#9a9fa8;color:#FFFFFF;border-color:#FFFFFF}.C .mt{background:#9a9fa8;color:#C2C2C2;border-color:#C2C2C2}.C .mv{color:#fff}.C .mv .e,.C .mz{color:#fff}.C .my{color:#fff}.C .mr{color:#fff}.C .mx{color:#fff}.B .mq{background:#65635c}.B .mB{color:#d9d5c7}.B .ms{background:#514E43;color:#B2B2B2;border-color:#B2B2B2}.B .mu{background:#65635c;color:#FEFEFE;border-color:#FEFEFE}.B .mt{background:#65635c;color:#7F7F7F;border-color:#7F7F7F}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#fafafc;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/steel/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#fafafc;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#fafafc;line-height:105%}.b6{background:#fbee99;color:#222}.A1{padding:6px 0 3px 6px;background:#e6e8ed;border-bottom:1px solid #CDCFD4}.AY{padding:3px 0 6px 6px;background:#e6e8ed;border-top:1px solid #CDCFD4}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#4263ab}.z .AP{color:#4263ab}.C .AO{color:#4263ab}.C .AP{color:#4263ab}.C .A1{background:#e4e5e9}.C .AY{background:#e4e5e9}.B .AO{color:#4263ab}.B .AP{color:#4263ab}.B .A1{background:#f5f5f5}.B .AY{background:#f5f5f5}.A .AO{color:#4263ab}.A .AP{color:#4263ab}.A .A1{background:#f3f0ed}.A .AY{background:#f3f0ed}.z .l,.y .l{background:#69748c}.z .o,.y .o{background:#69748c;height:4px;top:inherit}.z .h,.y .h{background:#69748c;height:4px}.z .m,.y .m{background:#69748c}.z .n,.y .n{background:#69748c;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#9a9fa8}.C .o{background:#9a9fa8;height:4px;top:inherit}.C .h{background:#9a9fa8;height:4px}.C .m{background:#9a9fa8}.C .n{background:#9a9fa8;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=9a9fa8&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=9a9fa8&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=9a9fa8&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=9a9fa8&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#65635c}.B .o{background:#65635c;height:4px;top:inherit}.B .h{background:#65635c;height:4px}.B .m{background:#65635c}.B .n{background:#65635c;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#ad8f77}.A .o{background:#ad8f77;height:4px;top:inherit}.A .h{background:#ad8f77;height:4px}.A .m{background:#ad8f77}.A .n{background:#ad8f77;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#69748c}.x .o,.AL .o{background:#69748c;height:4px;top:inherit}.x .h{background:#69748c;height:4px}.x .m{background:#69748c}.x .n{background:#69748c;padding:inherit;margin:inherit}.x .p{display:inherit;background:#69748c}.x .q{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#fafafc;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#fafafc}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#fbee99;color:#222}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/steel/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#69748c}.AT{background:#e6e8ed;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#4263ab;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#fafafc;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/steel/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/steel/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#fafafc}.D .goog-imageless-button-open .AZ{background:url(images/2/5/steel/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#4263ab}.oH,.oI{background:#fbee99;padding:3px 4px 3px 6px;border:1px solid #fbee99!important}.oE{background:url(images/2/5/steel/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/steel/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #e6e8ed;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/steel/icons7.png) no-repeat -100px -80px}.oB{background:#fbee99}.oK{border-top:1px solid #e6e8ed}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#fafafc;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#fbee99;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #fbee99}.qk{color:#4263ab;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#e6e8ed;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#fff;text-decoration:none}.pk .qk{color:#e6e8ed}.pz .k{background:#69748c}.qj .k{background:#69748c}div.qi .k{background:#9a9fa8}.qk .p9,.qk .qh{color:#4263ab}.pO .p9{color:#65635c}.pT{color:#4263ab}.pz .o{background:#69748c;height:4px;top:inherit}.pz .n{background:#69748c}.pz .h{background:#69748c;height:4px}.pz .m{background:#69748c}.pz .q{background:#69748c;height:4px;margin-top:inherit}.pz .j{background:#69748c;height:4px}.pz .i{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#69748c;height:4px;top:inherit}.qj .n{background:#69748c}.qj .h{background:#69748c;height:4px}.qj .m{background:#69748c}.qj .q{background:#69748c;height:4px;margin-top:inherit}.qj .j{background:#69748c;height:4px}.qj .i{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=69748c&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#9a9fa8;height:4px;top:inherit}.qi .n{background:#9a9fa8}.qi .h{background:#9a9fa8;height:4px}.qi .m{background:#9a9fa8}.qi .q{background:#9a9fa8;height:4px;margin-top:inherit}.qi .j{background:#9a9fa8;height:4px}.qi .i{background:url(rc?a=af&c=9a9fa8&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=9a9fa8&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/steel/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#4263ab;text-decoration:none}.pt{background-color:#fff;border:#e6e8ed 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#e6e8ed}.xE .l,.xE .ph{background-color:#69748c}.pU{text-align:right;font-size:70%;color:#4263ab;padding:4px 7px 4px 0;background-color:#fff;margin:0}.r .l,.r .k{background:#e6e8ed}.r .o{background:#e6e8ed;height:4px;top:inherit}.r .n{background:#e6e8ed}.r .m{background:#e6e8ed;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=e6e8ed&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=e6e8ed&w=4&h=4) no-repeat -4px 0}.pS .h{background:#e6e8ed}.pS .i{background:url(rc?a=af&c=e6e8ed&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=e6e8ed&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff;border-color:#d8d6d0}.t .pu{padding-bottom:3px;background:none}.t .l{background:#d8d6d0}.t .pU{color:#4263ab;background-color:#fff}.t .r .l,.t .r .k{background:#d8d6d0}.t .r .o{background:#d8d6d0;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#d8d6d0}.t .r .n{background:#d8d6d0}.t .r .p{background:url(rc?a=af&c=d8d6d0&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=d8d6d0&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=d8d6d0&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=d8d6d0&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#fff;border-color:#d8d6d0}.t .oB{background-color:#fbee99}.t .oK{border-top-color:#d8d6d0}.pO{color:#65635c;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#e6e8ed}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#e6e8ed}.s .oy{background:#fafafc;color:#000}.s .oB{background:#fbee99;color:#222}.s .r .l,.s .r .k{background:#e6e8ed}.s .r .o{background:#e6e8ed;height:4px;top:inherit}.s .r .m{background:#e6e8ed}.s .r .n{background:#e6e8ed}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=e6e8ed&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=e6e8ed&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=e6e8ed&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=e6e8ed&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #e6e8ed;background-color:#fff}.pY .h{background:#e6e8ed}.pY .r .p{background:url(rc?a=af&c=e6e8ed&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=e6e8ed&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=e6e8ed&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=e6e8ed&w=3&h=3) no-repeat -3px -3px}.qo .l{background-color:#e6e8ed}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/steel/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/steel/icons7.png) no-repeat -60px -20px}a.gb1.qq,a.gb3.qq{color:#4263ab!important}div#gbi{background:#fafafc!important;border-color:#888!important}a.gb2.qq{color:#4263ab!important}a.gb2.qq:hover{color:#222!important;background:#fbee99!important}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:url(images/2/5/steel/bg-main.png) 0 0 repeat-x;color:#000;padding:0 6px}.a0{background:#9fbfd6;color:#000;padding:0 6px}.aJ .a5{color:#f3f0ed}.bR{font:9px verdana,arial,sans-serif;color:#4263ab;text-decoration:underline;cursor:pointer}.a7,.a8 .e{color:#4263ab}.aK .aI{color:#d9d5c7}.aJ .aI{color:#5a4b3e}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#000;background:#9fbfd6;border:1px solid #ccc;font-weight:bold}.aH .e{color:#0d3d5e}.bA{color:#4263ab;cursor:default}.bB{color:#4263ab;text-decoration:none}.bA .goog-menu{background:#fafafc none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#4263ab;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#4263ab}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#fbee99 none repeat scroll 0!important}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#65635c;margin:0!important}.aK .o{background:#65635c;height:4px;top:inherit}.aK .m,.b .m{background:#65635c}.aK .n{margin-left:5px!important;background:#65635c;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat -4px 0}.b .o{background:#65635c;height:4px;top:inherit}.b .h{background:#65635c;height:4px}.b .m{background:#65635c}.b .n{background:#65635c}.b .p{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat 0 0}.b .q{background:#65635c}.b .i{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=65635c&w=4&h=4) no-repeat -4px -4px}.b .e{color:#4263ab}.b .k{background-color:#f5f5f5}.aJ .k{background:#ad8f77;margin:0!important}.aJ .o{background:#ad8f77;height:4px;top:inherit}.aJ .m,.a .m{background:#ad8f77}.aJ .n{background:#ad8f77;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat -4px 0}.a .e{color:#4263ab}.a .o{background:#ad8f77;height:4px;top:inherit}.a .h{background:#ad8f77;height:4px}.a .k{background-color:#f3f0ed}.a .m{background:#ad8f77}.a .n{background:#ad8f77}.a .p{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat 0 0}.a .q{background:#ad8f77}.a .i{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=ad8f77&w=4&h=4) no-repeat -4px -4px}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #E1E1E3 solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #E1E1E3 solid;padding:3px 8px}.yd{background-color:#fafafc}.yb{background-color:#fbee99;color:#222}.yc{background-color:#fafafc}.x8{text-decoration:underline;cursor:pointer;color:#4263ab}.yb .x8{color:#4263ab}.ya .e,.x9{color:#4263ab}.yd .x8,.yd .x9{color:#4263ab}.x2{color:#4263ab;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#4263ab}.z .yC .e{color:#4263ab}.B .yU{color:#4263ab}.B .yC .e{color:#4263ab}.A .yU{color:#4263ab}.A .yC .e{color:#4263ab}.C .yU{color:#4263ab}.C .yC .e{color:#4263ab}.x0{color:#4263ab;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#4263ab}.xI{background-color:#e4e5e9}.xG{border-bottom:1px solid #9a9fa8;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#4263ab;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #E1E1E3 solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#fafafc;color:#444}.x7{color:#222;background:#fbee99}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/steel/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/steel/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/steel/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/steel/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#4263ab}.yQ{background:#fbee99}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#9fbfd6;border:1px solid #ccc;font-size:80%;color:#000;padding:10px}.Ad{color:#0d3d5e;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#fafafc}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#fafafc;border:1px solid #ccc;width:250px;padding:4px;z-index:10}textarea.Ah{border:2px solid #fbee99}textarea.Ai{border:2px solid #fafafc}.lR{background:url(images/2/5/steel/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/steel/vimages7.png) repeat-y -12px 0}.mn .l8{color:#4263ab!important}.mo,.l9{color:#4263ab}.l8{color:#4263ab;text-decoration:underline;cursor:pointer}.l6 .e{color:#4263ab}.l7{background:#9fbfd6;color:#000;font-weight:bold}.tE{text-decoration:underline;color:#4263ab;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #4263ab;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#4263ab;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/steel/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#fafafc;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#fbee99;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/steel/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#fafafc;color:#000;border-bottom:1px solid #ccc;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#fafafc;color:#777}.u .goog-menuitem-opened .tF{background:#fafafc;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tq .lJ{background-color:#69748c}.tq .lN{background-color:#69748c}.iI{background:#e6e8ed;padding:6px 0 5px 6px}.iE{background:#e6e8ed;padding:7px 0 5px 6px}.C .iI{background:#e4e5e9}.C .iE{background:#e4e5e9}.B .iI{background:#f5f5f5}.B .iE{background:#f5f5f5}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/steel/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#4263ab}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#fbee99}.h1,.iD{color:#4263ab;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#4263ab}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#fbee99}.gR{margin:1px 0 0 0;color:#4263ab}.hg{width:auto;overflow:hidden;background:#fbee99}.he{overflow:visible;background:#e4e5e9}.g8{background:url(images/2/5/steel/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/steel/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/steel/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/steel/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/steel/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/steel/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/steel/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/steel/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/steel/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#000;background:#fafafc;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#fbee99;color:#222}.ii a{color:#4263ab}.hp{width:50%;height:0;border-top:2px solid #9a9fa8}.ho a{color:#4263ab}.hr a{color:#4263ab}.hv{float:left;border:2px solid #69748c;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/steel/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#fafafc;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#fbee99;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/steel/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/steel/icons7.png) no-repeat 0 -40px}.hE{color:#4263ab;padding-right:4px;padding-left:4px;white-space:nowrap}.g .h{background:#fafafc url('images/2/cv/card-ex-bm.gif') repeat-x top}.g .j{background:#fafafc url('images/2/card-ex-br.gif') no-repeat top left}.g .i{background:#fafafc url('images/2/card-ex-bl.gif') no-repeat top right}.iz .o{background:#e6e8ed url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#e6e8ed url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#e6e8ed url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#e6e8ed url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#e6e8ed url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#e6e8ed url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#e6e8ed url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#e6e8ed url('images/2/card-ex-bl.gif') no-repeat top left}.id .il,.iW{background:#fbee99}.gA,.hi{background:#fafafc url('images/2/cv/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.qr .gA{background:#e6e8ed url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#e6e8ed url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#4263ab;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#4263ab}.hk span{cursor:pointer;color:#4263ab;white-space:nowrap}.iC .hk span{color:#4263ab}.z .h0 .e{color:#4263ab}.C .h0 .e{color:#4263ab}.B .h0 .e{color:#4263ab}.A .h0 .e{color:#4263ab}.iS{text-align:center;background:#e4e5e9;margin:0 8px 0 16px}.iT{color:#4263ab;cursor:pointer}.u7{color:#4263ab;text-decoration:underline;cursor:pointer}.u6:visited{color:#4263ab}a.u6{color:#4263ab}.vd{color:#4263ab;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#e6e8ed;padding:0 4px}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#fafafc;border:1px solid #ccc}.nN8jRb .goog-palette-cell-hover{background:#fbee99}.el,.dP,.dU{color:#4263ab;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#e6e8ed url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#e6e8ed}.eh{background:#e6e8ed}.eI{background:url(images/2/5/steel/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#e6e8ed;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/steel/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#4263ab}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#4263ab}.dQ{border:solid 1px #999;background:#fff;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #9fbfd6!important;margin:0!important}.eJ table{width:100%;background:#fafafc}.eL,.eM,.eK{border:1px solid #fafafc;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#e6e8ed #ccc #ccc #e6e8ed}.eW,.e7{border:1px solid;border-color:#ccc #e6e8ed #e6e8ed #ccc}.e7{background-color:#fbee99}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#4263ab;white-space:nowrap}.wY{background:url(images/2/5/steel/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#4263ab;cursor:pointer}.d1{background-color:#fafafc!important}.ex{position:absolute;border:1px solid #888;background-color:#fafafc;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#fbee99;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/steel/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#fbee99;padding:3px 0 3px 3px}.fx{position:absolute;background:#fafafc;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#fafafc;color:#000;padding:3px}.fx .goog-menuitem-highlight{background:#fbee99;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/steel/icons7.png) no-repeat -100px -80px}.fy{margin-top:2px;background-color:#fbee99;border-width:1px 0;font-size:80%}.fz{color:#4263ab;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#fafafc}.mH{background-color:#fafafc;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#4263ab;vertical-align:baseline}.mL{background:url(images/2/5/steel/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/steel/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/steel/icons7.png) no-repeat -80px -40px}.mC{background-color:#e6e8ed}.mC .mG{text-decoration:none;color:#4263ab}.manager-page .frame{background-color:#e6e8ed;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #e6e8ed}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #69748c;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#9fbfd6;color:#000}.manager-page .loading{background-color:#9fbfd6;color:#000;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#000;background-color:#fafafc;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#fafafc;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#fbee99}.cmgr-toolbar{height:32px;background-color:#e6e8ed;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #69748c;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#4263ab}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #69748c;padding:10px 0 5px}.cmgr-editbar{background-color:#fafafc;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#fafafc;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#4263ab}.cmgr-contact-pane .cmgr-link{color:#4263ab}.cmgr-contact-pane .contact-banner{border-top:1px solid #e6e8ed;border-bottom:1px solid #e6e8ed}.cmgr-domain-contact-label{padding:5px 7px;color:#000;border-bottom:1px solid #ccc;font-weight:bold;background-color:#9fbfd6}.cmgr-domain-contact-label .link{color:#0d3d5e}.cmgr-edit-interleave-label{padding:7px;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#9fbfd6}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#e6e8ed}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#fafafc;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#fbee99}.manager-page hr{background-color:#e6e8ed}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#fafafc;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#fafafc;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#4263ab;color:#000;background-color:#fafafc}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#fafafc}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#000;background-color:#9fbfd6}.manager-page .goog-menu{background-color:#fafafc;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#fbee99;color:#222}.cmgr-hr-divider{background-color:#e6e8ed;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#fbee99}.checkable-list .selected{background-color:#69748c;overflow:hidden}.checkable-list .selected .text{color:#e6e8ed;font-weight:bold}.checkable-list .preselect{background-color:#fbee99}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #e6e8ed;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#fbee99}.group-list .preselect{background-color:#fbee99}.group-list .selected{background-color:#69748c}.group-list .selected .text{font-weight:bold;color:#e6e8ed}.group-list .selected .count{color:#e6e8ed}.group-list hr.header{background-color:#e6e8ed;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#69748c}.lo .o{background:#69748c;height:3px;top:inherit}.lo .n{background:#69748c}.lo .m{background:#69748c}.lo .q{background:url(rc?a=af&c=69748c&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=69748c&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#a75832}.lp .o{background:#a75832;height:3px;top:inherit}.lp .n{background:#a75832}.lp .m{background:#a75832}.lp .q{background:url(rc?a=af&c=a75832&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=a75832&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#69748c;padding:2px}.ln{background:#a75832}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#F2F2F2;font-weight:bold;margin-left:2px}.lp .kQ{color:#FFEEE5}.kX{border-right:1px solid #ccc;border-left:1px solid #ccc;border-top:none;border-bottom:1px solid #fafafc}.kv{background:url(images/2/5/steel/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/steel/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/steel/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/steel/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#B5B8BF}.ky,.kW,.jc{background-color:#DA906D}.kt,.jA,.nl{color:#4263ab;text-decoration:underline;cursor:pointer}.kk a,.kq a{color:#4263ab}.jV{margin:0;border:2px solid #fbee99}.jW{margin:0;border:2px solid #9fbfd6}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #fbee99}.jF{border:solid 1px #888;background-color:#fafafc;color:#000}.jB{background:url(images/2/5/steel/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/steel/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#fafafc;color:#000;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jN{background-color:#fbee99;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#fbee99;color:#222}.jR{background:url(images/2/5/steel/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/steel/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #e6e8ed;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #fbee99}.jo{position:relative;background-color:#fafafc;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#fafafc}.jm .goog-icon-picker-highlighted{background-color:#fbee99}.jm .goog-icon-picker{background-color:#fafafc}.jm .goog-tabpane{background-color:#fafafc;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#fafafc;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#fafafc;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#fafafc;height:30px}.jZ{background-color:#fbee99}.fX{background-color:#9a9fa8}.fX .goog-flat-button{color:#4263ab;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#65635c}.vD{color:#222;background-color:#fbee99}.vE{background:#a75832}.vs{color:#FFEEE5;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#FFEEE5}.vG a{color:#65635c}.uk{width:100%;border-bottom:solid #e6e8ed 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#4263ab}.ul{background-color:#fbee99;border-top:1px solid #fbee99;border-bottom:1px solid #fbee99}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #e6e8ed;border-bottom:1px solid #e6e8ed}.uo{border:1px solid #e6e8ed;color:#e6e8ed}.ue a{color:#65635c}.uM{background:url(images/2/5/steel/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/steel/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#e6e8ed solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#e6e8ed solid 1px;font-size:80%}.uv{color:#000;background-color:#fafafc;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#fbee99;color:#222}.uu{color:#65635c;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #e6e8ed;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/steel/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/steel/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#fafafc;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#fbee99;color:#222}.u3{background-color:#fafafc;color:#777}.uW{background-color:#fafafc;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #e6e8ed}.dz .cg{color:#65635c}.jU{padding:0 3px}.A5 a{color:#4263ab}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #69748c;background:#fff;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#69748c;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#4263ab;background:#69748c;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#fafafc;color:#000;cursor:pointer}.goog-date-picker-selected{background:#e6e8ed;color:#000}.v .l{background-color:#a75832}.v .k{color:#000;background:#a75832}.v .o{background:#a75832;height:4px;top:inherit}.v .n{background:#a75832;padding:inherit;margin:inherit}.v .h{background:#a75832;height:4px}.v .m{background:#a75832}.v .q{background:url(rc?a=af&c=a75832&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=a75832&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=a75832&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=a75832&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#4263ab;cursor:pointer;white-space:nowrap}.qZ{background:#a75832;color:#d6b5a0;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#f3f0ed;padding:4px}.v9 .fZ{background:#f3f0ed;font-size:80%;padding:3px 8px}.v9 .f1{color:#f3f0ed;background:#a75832;font-size:80%}.v9 .fY{background:#a75832;padding:0}.v7 .fY{background:#a75832}.v7 .fZ{background-color:#f3f0ed;border:1px solid #a75832;border-right:none}.v7 .f1{background:#a75832}.tf{background-color:#f3f0ed;border:1px solid #a75832;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #a75832;padding:8px}.r7 td.r5{border-top:2px solid #a75832}.r7 a{color:#4263ab}.r7 .e{color:#4263ab}.rZ{background-color:#a75832;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#4263ab}.s0{padding:6px;border-bottom:2px solid #a75832;font-size:80%}.ti{color:#d6b5a0;float:right;padding:8px;font-size:80%}.s1{border-color:#a75832;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s5{color:#d6b5a0;font-size:80%}.sW a{color:#4263ab}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #69748c;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#4263ab;cursor:pointer}.sM{background-color:#a75832;padding:5px}.sn{border:2px solid #a75832;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#4263ab;text-decoration:underline}.ri{color:#4263ab}.sk{border:solid 2px #4263ab}.sl{border:solid 2px #f3f0ed}.si{background-color:#f3f0ed;border:solid 2px #f3f0ed;padding:5px;cursor:pointer}.sh{background-color:#fafafc;border:solid 2px #ccc;padding:5px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#4263ab}.rd{color:#4263ab}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#4263ab}.cF{zoom:1;border:1px solid #ccc;background:#fafafc;padding:4px;white-space:nowrap}.cF .e{color:#4263ab}.cy a{color:#4263ab}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#f3f0ed;border:9px solid #a75832}.oR{background:#a75832;color:#d6b5a0;padding-bottom:8px;font-weight:bold}.wL{border:1px solid #65635c}.wN .k{background:#65635c}.wN .o{background:#65635c;height:3px;top:inherit}.wN .n{background:#65635c}.wN .m{background:#65635c}.wN .q{background:url(rc?a=af&c=65635c&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=65635c&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#65635c}.wO .o{background:#65635c;height:3px;top:inherit}.wM{background:#65635c;padding:2px}.vT{background:#65635c;overflow:auto}.vS{width:100%;background:#f5f5f5;overflow:hidden}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#65635c;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/steel/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#fafafc;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#fbee99}",
logo: null
},
lightbright: {
name: "Minimalist",
id: "lightbright",
css: ".aB,.e,.cg{color:#222;cursor:pointer}.cP{background:url(images/2/5/lightbright/bg-main.png) 0 0 repeat-x}.b8 .vi,.b8 .vh{background:#aaa;color:#333}.b8 .b9{color:#fff}.b8 .vj{background:url(rc?a=af&c=aaa&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=aaa&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=aaa&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=aaa&w=4&h=4) no-repeat -4px -4px}.cd .ca,.cd .b9{color:#fff}.cc .vi{background:#e3e5e6}.cc .vh{background:#e3e5e6}.cc .ca,.cc .b9{color:#fff}.cc .vj{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#444;background-color:#f6f6f6;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#c7cacc;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#222}.ly{color:#222;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#aaa}.vX .p{background:#aaa}.vX .q{background:#aaa}.vX .i{background:url(rc?a=af&c=aaa&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=aaa&w=4&h=4) no-repeat -4px -4px}.v2{color:#222}.dF .dG,.d9,.nr{border:1px solid;border-color:#585858 #b0b0b0 #b0b0b0 #b0b0b0;background-color:#fff;color:#444}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #c7cacc!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#444;background-color:#c7cacc;border:1px solid #323333;padding:8px;z-index:501}.aA{position:relative;color:#444;background-color:#e3e5e6;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#222!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#e3e5e6!important;color:#444!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #c7cacc!important}.tr_edit-link-dialog{border:2px solid #c7cacc!important}.tr_image-dialog{border:2px solid #c7cacc!important}.tr_dialog{background:#e3e5e6!important;color:#444!important}.tr_pseudo-link{color:#222!important}.tr_dialog-tab-content-explanation-text a{color:#222!important}.tr_tabbed-pane-tab-content,.tr_tabbed-pane-tabs .tr_selected-tab-in-tabbed-pane{background-color:#fff!important;color:#444!important}.tr_tabbed-pane-tab-label{color:#222!important}.tr_selected-tab-in-tabbed-pane .tr_tabbed-pane-tab-label{color:#444!important}.ad{color:#fff}.ag{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#222;cursor:pointer;text-decoration:underline}.fZ .f0{color:#444;cursor:text;outline:none;-moz-outline:none;text-decoration:none}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#aaa}.w8{margin:2px;padding:2px;font:normal 80% arial,sans-serif;border:1px solid #b0b0b0}.mq{padding:0 0 5px 2px;height:1.1em;background:#c7cacc;margin:-2px 0 0 0}.mv{font-size:80%;color:#333;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#222}.my{color:#333}.mB{float:right;font-size:70%;color:#333;padding:0.3em 1ex 0 2px}.mx,.mz{color:#333}.sX .mx{color:#444}.mr{color:#333}.ms{background-color:#E6E6E6;color:#707980;border:1px solid #707980}.mu{background-color:#c7cacc;color:#132633;border:1px solid #132633}.mt{background-color:#c7cacc;color:#9CAAB3;border:1px solid #9CAAB3}.C .mq{background:#888}.C .mB{color:#e2e2e2}.C .ms{background:#747474;color:#D5D5D5;border-color:#D5D5D5}.C .mu{background:#888;color:#FFFFFF;border-color:#FFFFFF}.C .mt{background:#888;color:#A2A2A2;border-color:#A2A2A2}.C .mv{color:#e2e2e2}.C .mv .e,.C .mz{color:#fff}.C .my{color:#e2e2e2}.C .mr{color:#e2e2e2}.C .mx{color:#e2e2e2}.B .mq{background:#c7cacc}.B .mB{color:#333}.B .ms{background:#E6E6E6;color:#707980;border-color:#707980}.B .mu{background:#c7cacc;color:#132633;border-color:#132633}.B .mt{background:#c7cacc;color:#9CAAB3;border-color:#9CAAB3}.B .mv{color:#333}.B .mv .e,.B .mz{color:#222}.B .my{color:#333}.B .mr{color:#333}.B .mx{color:#333}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f6f6f6;color:#444;cursor:default;margin-right:4px}.b2{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f6f6f6;color:#444;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#444;padding:2px 4px 2px 22px;background:#f6f6f6;line-height:105%}.b6{background:#c7cacc;color:#222}.A1{padding:6px 0 3px 6px;background:#e3e5e6;border-bottom:1px solid #CACCCD}.AY{padding:3px 0 6px 6px;background:#e3e5e6;border-top:1px solid #CACCCD}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AQ{color:#444}.z .AO{color:#222}.z .AP{color:#222}.C .AQ{color:#444}.C .AO{color:#222}.C .AP{color:#222}.C .A1{background:#e2e2e2}.C .AY{background:#e2e2e2}.B .AQ{color:#444}.B .AO{color:#222}.B .AP{color:#222}.B .A1{background:#e3e5e6}.B .AY{background:#e3e5e6}.A .AQ{color:#444}.A .AO{color:#222}.A .AP{color:#222}.A .A1{background:#fff}.A .AY{background:#fff}.z .l,.y .l{background:#c7cacc}.z .o,.y .o{background:#c7cacc;height:4px;top:inherit}.z .h,.y .h{background:#c7cacc;height:4px}.z .m,.y .m{background:#c7cacc}.z .n,.y .n{background:#c7cacc;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#888}.C .o{background:#888;height:4px;top:inherit}.C .h{background:#888;height:4px}.C .m{background:#888}.C .n{background:#888;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=888&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=888&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=888&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=888&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#c7cacc}.B .o{background:#c7cacc;height:4px;top:inherit}.B .h{background:#c7cacc;height:4px}.B .m{background:#c7cacc}.B .n{background:#c7cacc;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#bbb}.A .o{background:#bbb;height:4px;top:inherit}.A .h{background:#bbb;height:4px}.A .m{background:#bbb}.A .n{background:#bbb;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#c7cacc}.x .o,.AL .o{background:#c7cacc;height:4px;top:inherit}.x .h{background:#c7cacc;height:4px}.x .m{background:#c7cacc}.x .n{background:#c7cacc;padding:inherit;margin:inherit}.x .p{display:inherit;background:#c7cacc}.x .q{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f6f6f6;color:#444;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f6f6f6}.AW .lT{border-top:1px solid #b0b0b0}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#c7cacc;color:#222}.D .goog-menuseparator{margin:2px 0;border-top:1px solid #b0b0b0;padding:0;outline:none}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/lightbright/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#c7cacc}.AT{background:#e3e5e6;border-top:1px solid #b0b0b0;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#222;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f6f6f6;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #b0b0b0 #b0b0b0 #b0b0b0;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/lightbright/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.D .goog-menu-filter input{border:0;background:#fff;color:#444;font-size:100%;margin:0;width:100%;outline:0!important}.AZ{height:6px;width:7px;background:url(images/2/5/lightbright/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f6f6f6}.D .goog-imageless-button-open .AZ{background:url(images/2/5/lightbright/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#222}.oH,.oI{background:#c7cacc;padding:3px 4px 3px 6px;border:1px solid #c7cacc!important}.oE{background:url(images/2/5/lightbright/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/lightbright/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#444;visibility:hidden;font-size:100%;border:1px solid #e3e5e6;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/lightbright/icons7.png) no-repeat -100px -80px}.oB{background:#c7cacc}.oK{border-top:1px solid #e3e5e6}.pN .goog-menu{position:absolute;z-index:13;color:#444;border:1px solid #888;background-color:#f6f6f6;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#c7cacc;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #c7cacc}.qk{color:#222;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#222;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#fff;text-decoration:none}.pk .qk{color:#222}.pz .k{background:#c7cacc}.qj .k{background:#c7cacc}div.qi .k{background:#888}.qk .p9,.qk .qh{color:#222}.pO .p9{color:#222}.pT{color:#222}.pz .o{background:#c7cacc;height:4px;top:inherit}.pz .n{background:#c7cacc}.pz .h{background:#c7cacc;height:4px}.pz .m{background:#c7cacc}.pz .q{background:#c7cacc;height:4px;margin-top:inherit}.pz .j{background:#c7cacc;height:4px}.pz .i{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#c7cacc;height:4px;top:inherit}.qj .n{background:#c7cacc}.qj .h{background:#c7cacc;height:4px}.qj .m{background:#c7cacc}.qj .q{background:#c7cacc;height:4px;margin-top:inherit}.qj .j{background:#c7cacc;height:4px}.qj .i{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#888;height:4px;top:inherit}.qi .n{background:#888}.qi .h{background:#888;height:4px}.qi .m{background:#888}.qi .q{background:#888;height:4px;margin-top:inherit}.qi .j{background:#888;height:4px}.qi .i{background:url(rc?a=af&c=888&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=888&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/lightbright/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#444;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#222;text-decoration:none}.pt{background-color:#fff;border:#e3e5e6 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#e3e5e6}.xE .l,.xE .ph{background-color:#c7cacc}.pU{text-align:right;font-size:70%;color:#222;padding:4px 7px 4px 0;background-color:#fff;margin:0}.r .l,.r .k{background:#e3e5e6}.r .o{background:#e3e5e6;height:4px;top:inherit}.r .n{background:#e3e5e6}.r .m{background:#e3e5e6;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat -4px 0}.pS .h{background:#e3e5e6}.pS .i{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff;border-color:#e3e5e6}.t .pu{padding-bottom:3px;background:none}.t .l{background:#e3e5e6}.t .pU{color:#222;background-color:#fff}.t .r .l,.t .r .k{background:#e3e5e6}.t .r .o{background:#e3e5e6;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#e3e5e6}.t .r .n{background:#e3e5e6}.t .r .p{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#fff;border-color:#e3e5e6}.t .oB{background-color:#c7cacc}.t .oK{border-top-color:#e3e5e6}.pO{color:#222;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#e3e5e6}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#e3e5e6}.s .oy{background:#f6f6f6;color:#444}.s .oB{background:#c7cacc;color:#222}.s .r .l,.s .r .k{background:#e3e5e6}.s .r .o{background:#e3e5e6;height:4px;top:inherit}.s .r .m{background:#e3e5e6}.s .r .n{background:#e3e5e6}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #e3e5e6;background-color:#fff}.pY .p4{color:#444;font-size:80%}.pY .h{background:#e3e5e6}.pY .r .p{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=e3e5e6&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=e3e5e6&w=3&h=3) no-repeat -3px -3px}.qo .l{background-color:#e3e5e6}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/lightbright/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/lightbright/icons7.png) no-repeat -60px -20px}.gb1{color:#444}a.gb1.qq,a.gb3.qq{color:#222!important}div#gbi{background:#f6f6f6!important;border-color:#888!important}a.gb2.qq{color:#222!important}a.gb2.qq:hover{color:#222!important;background:#c7cacc!important}div.gbd{border-top:1px solid #b0b0b0!important}.qp{background:transparent;border-bottom:1px solid #b0b0b0;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:url(images/2/5/lightbright/bg-main.png) 0 0 repeat-x;color:#444;padding:0 6px}.a0{background:#aaa;color:#333;padding:0 6px}.a5{font-size:70%;color:#222;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#222}.aJ .a5{color:#222}.bR{font:9px verdana,arial,sans-serif;color:#222;text-decoration:underline;cursor:pointer}.a8{color:#444;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#222}.aK .aI{color:#333}.aJ .aI{color:#444}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#333;background:#aaa;border:1px solid #b0b0b0;font-weight:bold}.aH .e{color:#fff}.bA{color:#222;cursor:default}.bB{color:#222;text-decoration:none}.bA .goog-menu{background:#f6f6f6 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#222;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#222}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#c7cacc none repeat scroll 0!important}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#c7cacc;margin:0!important}.aK .o{background:#c7cacc;height:4px;top:inherit}.aK .m,.b .m{background:#c7cacc}.aK .n{margin-left:5px!important;background:#c7cacc;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px 0}.b .o{background:#c7cacc;height:4px;top:inherit}.b .h{background:#c7cacc;height:4px}.b .m{background:#c7cacc}.b .n{background:#c7cacc}.b .p{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 0}.b .q{background:#c7cacc}.b .i{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=c7cacc&w=4&h=4) no-repeat -4px -4px}.b{color:#444}.b .e{color:#222}.b .k{background-color:#fff}.aJ .k{background:#bbb;margin:0!important}.aJ .o{background:#bbb;height:4px;top:inherit}.aJ .m,.a .m{background:#bbb}.aJ .n{background:#bbb;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat -4px 0}.a{color:#444}.a .e{color:#222}.a .o{background:#bbb;height:4px;top:inherit}.a .h{background:#bbb;height:4px}.a .k{background-color:#fff}.a .m{background:#bbb}.a .n{background:#bbb}.a .p{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat 0 0}.a .q{background:#bbb}.a .i{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat -4px -4px}.yT{color:#444;font-weight:bold}.xK{padding:0}.yR{font-size:80%;color:#444;background-color:#fff;border-bottom:1px #DDDDDD solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#444;background-color:#fff;border-bottom:1px #DDDDDD solid;padding:3px 8px}.yd{background-color:#f6f6f6}.yb{background-color:#c7cacc;color:#222}.yc{background-color:#f6f6f6}.x8{text-decoration:underline;cursor:pointer;color:#222}.yb .x8{color:#222}.ya .e,.x9{color:#222}.yd .x8,.yd .x9{color:#222}.x2{color:#222;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yV{color:#444}.z .yU{color:#222}.z .yC .zw{color:#444}.z .yC .e{color:#222}.B .yV{color:#444}.B .yU{color:#222}.B .yC .zw{color:#444}.B .yC .e{color:#222}.A .yV{color:#444}.A .yU{color:#222}.A .yC .zw{color:#444}.A .yC .e{color:#222}.C .yV{color:#444}.C .yU{color:#222}.C .yC .zw{color:#444}.C .yC .e{color:#222}.zq{table-layout:fixed;cursor:default;width:100%;border-spacing:0;padding:0;background-color:#fff;color:#444}.x0{color:#222;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#222}.xI{background-color:#e2e2e2}.xG{border-bottom:1px solid #888;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#222;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DDDDDD solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.zA{color:#444;cursor:pointer;padding:4 1ex}.yO{background:#f6f6f6;color:#444}.zE{color:#444;background:#fff}.x7{color:#222;background:#c7cacc}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/lightbright/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/lightbright/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/lightbright/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#222}.yQ{background:#c7cacc}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#aaa;border:1px solid #b0b0b0;font-size:80%;color:#333;padding:10px}.Ad{color:#fff;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#f6f6f6}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#f6f6f6;border:1px solid #b0b0b0;width:250px;padding:4px;z-index:10}.Af textarea{width:98%;height:36px;font-size:80%;border:1px solid #b0b0b0;padding:2px 0 0 1px;margin:0}textarea.Ah{border:2px solid #c7cacc}textarea.Ai{border:2px solid #f6f6f6}.lR{background:url(images/2/5/lightbright/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/lightbright/vimages7.png) repeat-y -12px 0}.mn{color:#444}.mn .l8{color:#222!important}.mj{color:#888}.mp,.ma{font-size:70%;color:#444}.mo,.l9{color:#222}.l8{color:#222;text-decoration:underline;cursor:pointer}.l3{color:#444}.mb{color:#444;padding-top:4px}.l6{font-size:70%;color:#444;padding-top:12px}.l6 .e{color:#222}.l7{background:#aaa;color:#333;font-weight:bold}.mh{color:#444;font-weight:bold}.mm{color:#444}.tE{text-decoration:underline;color:#222;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #222;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#222;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/lightbright/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#444;border:1px solid #f6f6f6;background-color:#f6f6f6;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tV{border-top:1px solid #f6f6f6;margin-top:2px}.tT .goog-menuitem-highlight{background-color:#c7cacc;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/lightbright/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#f6f6f6;color:#444;border-bottom:1px solid #e3e5e6;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#f6f6f6;color:#777}.u .goog-menuitem-opened .tF{background:#f6f6f6;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #f6f6f6;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #fff;background:#e3e5e6;width:1px;height:23px;padding:0;margin:0}.tu td{vertical-align:top;margin:0;color:#444}.tJ{border-color:#585858 #b0b0b0 #b0b0b0 #b0b0b0}.tB,.tC{color:#222;padding-left:2px}.tq .lJ{background-color:#e3e5e6}.tq .lN{background-color:#e3e5e6}.iI{background:#e3e5e6;padding:6px 0 5px 6px}.iE{background:#e3e5e6;padding:7px 0 5px 6px}.C .iI{background:#e2e2e2}.C .iE{background:#e2e2e2}.B .iI{background:#e3e5e6}.B .iE{background:#e3e5e6}.hx{color:#444;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/lightbright/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#222}.gy{border-top:1px solid #b0b0b0;border-bottom:1px solid #b0b0b0}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#c7cacc}.h1,.iD{color:#222;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#222}.gX{color:#fff}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#c7cacc}.gR{margin:1px 0 0 0;color:#222}.hg{width:auto;overflow:hidden;background:#c7cacc}.he{overflow:visible;background:#e2e2e2}.g8{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/lightbright/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/lightbright/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/lightbright/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/lightbright/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/lightbright/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/lightbright/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/lightbright/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#444;background:#f6f6f6;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#c7cacc;color:#222}.ii a{color:#222}.hp{width:50%;height:0;border-top:2px solid #888}.ho a{color:#222}.hr a{color:#222}.hv{float:left;border:2px solid #c7cacc;padding:5px}.hs .goog-menu-button{color:#444;background:transparent;border:1px solid #888;white-space:nowarp;padding:2px 4px}.h6{height:7px;width:7px;background:url(images/2/5/lightbright/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#444;background:#f6f6f6;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#c7cacc;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/lightbright/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/lightbright/icons7.png) no-repeat 0 -40px}.hE{color:#222;padding-right:4px;padding-left:4px;white-space:nowrap}.g{color:#444}.g .h{background:#f6f6f6 url('images/2/cv/card-ex-bm.gif') repeat-x top}.g .j{background:#f6f6f6 url('images/2/card-ex-br.gif') no-repeat top left}.g .i{background:#f6f6f6 url('images/2/card-ex-bl.gif') no-repeat top right}.iz .o{background:#e3e5e6 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#e3e5e6 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#e3e5e6 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#e3e5e6 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#e3e5e6 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#e3e5e6 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#e3e5e6 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#e3e5e6 url('images/2/card-ex-bl.gif') no-repeat top left}.ha{font-family:arial,sans-serif;font-size:100%;margin:12px 5px 5px 10px;padding:0;color:#444;background:inherit;border-right:inherit}.id .il,.iW{background:#c7cacc}.gA,.hi{background:#f6f6f6 url('images/2/cv/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.qr .gA{background:#e3e5e6 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#e3e5e6 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#222;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#222}.hk span{cursor:pointer;color:#333;white-space:nowrap}.iC .hk span{color:#333}.z .h0{color:#444}.z .h0 .e{color:#222}.C .h0{color:#444}.C .h0 .e{color:#222}.B .h0{color:#444}.B .h0 .e{color:#222}.A .h0{color:#444}.A .h0 .e{color:#222}.iS{text-align:center;background:#e2e2e2;margin:0 8px 0 16px}.iU{font-size:80%;color:#444}.iT{color:#222;cursor:pointer}.h4{cursor:pointer;color:#333;font-size:9px}.h5{display:none;color:#333}.im{color:#333}.u9,.u8{padding-top:10px;color:#444;text-align:center}.u7{color:#222;text-decoration:underline;cursor:pointer}.u6:visited{color:#222}.vb{color:#444;margin:12px 0}a.u6{color:#222}.vd{color:#222;text-decoration:none}.fO{font-size:80%;margin-right:5px;padding-bottom:10px;border-bottom:1px solid #b0b0b0}.YXCXSb .goog-tabpane{background-color:#e3e5e6;padding:0 4px}.nN8jRb .goog-tabpane-cont{padding:2px;border:1px solid #b0b0b0;background-color:#fff}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#f6f6f6;border:1px solid #b0b0b0}.u5cA3e{border:1px solid #b0b0b0}.LE6Bud .goog-tabpane-tab-selected{top:1px;border-bottom:1px solid #fff;border-top:1px solid #b0b0b0;border-left:1px solid #b0b0b0;border-right:1px solid #b0b0b0}.YXCXSb .goog-tabpane-tab-selected{top:-1px;border-top:1px solid #fff;border-bottom:1px solid #b0b0b0;border-left:1px solid #b0b0b0;border-right:1px solid #b0b0b0}.nN8jRb .goog-palette-cell-hover{background:#c7cacc}.el,.dP,.dU{color:#222;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#e3e5e6 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#e3e5e6}.eh{background:#e3e5e6}.d2{position:relative;color:#444;font-size:80%;margin-left:6px}.eI{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#e3e5e6;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#444;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/lightbright/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#222}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#222}.dT{color:#444}.dQ{border:solid 1px #999;background:#fff;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #aaa!important;margin:0!important}.eJ table{width:100%;background:#f6f6f6}.eL,.eM,.eK{border:1px solid #f6f6f6;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#e3e5e6 #b0b0b0 #b0b0b0 #e3e5e6}.eW,.e7{border:1px solid;border-color:#b0b0b0 #e3e5e6 #e3e5e6 #b0b0b0}.e7{background-color:#c7cacc}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#222;white-space:nowrap}.wY{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#222;cursor:pointer}.d1{background-color:#f6f6f6!important}.ex{position:absolute;border:1px solid #888;background-color:#f6f6f6;color:#444;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#c7cacc;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/lightbright/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#c7cacc;padding:3px 0 3px 3px}.fx{position:absolute;background:#f6f6f6;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f6f6f6;color:#444;padding:3px}.fx .goog-menuitem-highlight{background:#c7cacc;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/lightbright/icons7.png) no-repeat -100px -80px}.fv .goog-palette-table{border:1px solid #b0b0b0;border-collapse:collapse}.fv .goog-palette-cell{height:13px;width:15px;margin:0;border:0;text-align:center;vertical-align:middle;border-right:1px solid #b0b0b0;font-size:100%}.fv .goog-palette-colorswatch{position:relative;height:12px;width:14px;border:1px solid #b0b0b0}.fv .goog-palette-cell-selected .goog-palette-colorswatch{border:1px solid #444;color:#fff}.fy{margin-top:2px;background-color:#c7cacc;border-width:1px 0;font-size:80%}.fz{color:#222;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#f6f6f6}.mH{background-color:#f6f6f6;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#222;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#444}.mL{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/lightbright/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/lightbright/icons7.png) no-repeat -80px -40px}.mC{background-color:#e3e5e6}.mC .mG{text-decoration:none;color:#222}.manager-page .frame{background-color:#e3e5e6;color:#444;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #e3e5e6}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#444;border:1px solid #c7cacc;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#aaa;color:#333}.manager-page .loading{background-color:#aaa;color:#333;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#444;background-color:#f6f6f6;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#444;background-color:#f6f6f6;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#c7cacc}.cmgr-toolbar{height:32px;background-color:#e3e5e6;color:#444;vertical-align:middle;overflow-x:visible}.cmgr-toolbar span{color:#444}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#444;border:1px solid #c7cacc;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#222}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #c7cacc;padding:10px 0 5px}.cmgr-editbar{background-color:#f6f6f6;color:#444;border-top:1px solid #b0b0b0;border-bottom:1px solid #b0b0b0;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#f6f6f6;color:#444;border-top:1px solid #b0b0b0;border-bottom:1px solid #b0b0b0;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#222}.group-list{font-family:arial,sans-serif;color:#444}.checkable-list{padding:3px;font-family:arial,sans-serif;color:#444}.cmgr-contact-pane{font-family:arial,sans-serif;font-size:80%;background-color:#fff;color:#444}.cmgr-contact-pane .group-detail{color:#444}.cmgr-contact-pane .desc{color:#444;font-weight:bold}.cmgr-contact-pane .cmgr-link{color:#222}.cmgr-contact-pane .contact-banner{border-top:1px solid #e3e5e6;border-bottom:1px solid #e3e5e6}.cmgr-domain-contact-label{padding:5px 7px;color:#333;border-bottom:1px solid #b0b0b0;font-weight:bold;background-color:#aaa}.cmgr-domain-contact-label .link{color:#fff}.cmgr-edit-interleave-label{padding:7px;color:#333;border-top:1px solid #b0b0b0;border-bottom:1px solid #b0b0b0;background-color:#aaa}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#e3e5e6}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f6f6f6;color:#444;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#c7cacc}.manager-page hr{background-color:#e3e5e6}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#444;background-color:#f6f6f6;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f6f6f6;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#222;color:#444;background-color:#f6f6f6}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#444;background-color:#f6f6f6}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#333;background-color:#aaa}.manager-page .goog-menu{background-color:#f6f6f6;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem{color:#444;list-style:none;margin:0;padding:4px 4px 4px 4px;white-space:nowrap}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#c7cacc;color:#222}.cmgr-hr-divider{background-color:#e3e5e6;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#c7cacc}.checkable-list .selected{background-color:#c7cacc;overflow:hidden}.checkable-list .selected .text{color:#222;font-weight:bold}.checkable-list .preselect{background-color:#c7cacc}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #e3e5e6;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#c7cacc}.group-list .preselect{background-color:#c7cacc}.group-list .selected{background-color:#c7cacc}.group-list .selected .text{font-weight:bold;color:#222}.group-list .selected .count{color:#222}.group-list-secondary .selected{background-color:#b0b0b0}.group-list hr.header{background-color:#e3e5e6;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#b0b0b0}.lo .o{background:#b0b0b0;height:3px;top:inherit}.lo .n{background:#b0b0b0}.lo .m{background:#b0b0b0}.lo .q{background:url(rc?a=af&c=B0B0B0&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=B0B0B0&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#C4C4C4}.lp .o{background:#C4C4C4;height:3px;top:inherit}.lp .n{background:#C4C4C4}.lp .m{background:#C4C4C4}.lp .q{background:url(rc?a=af&c=C4C4C4&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=C4C4C4&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#b0b0b0;padding:2px}.ln{background:#C4C4C4}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#333;font-weight:bold;margin-left:2px}.lp .kQ{color:#444}.kX{border-right:1px solid #b0b0b0;border-left:1px solid #b0b0b0;border-top:none;border-bottom:1px solid #f6f6f6}.kv{background:url(images/2/5/lightbright/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/lightbright/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/lightbright/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#E3E3E3}.ky,.kW,.jc{background-color:#F7F7F7}.kt,.jA,.nl{color:#222;text-decoration:underline;cursor:pointer}.ko{color:#444;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #b0b0b0;border-right:1px solid #b0b0b0;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#222}.jp{border-left:solid #b0b0b0 1px;border-right:solid #b0b0b0 1px;background-color:#fff;text-align:center;padding-bottom:4px}.jr{padding:4px 0;color:#444;font-size:70%;overflow:auto}.jT{position:relative;border:1px solid;border-color:#585858 #b0b0b0 #b0b0b0 #b0b0b0;margin:1px;color:#444;background-color:#fff;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #c7cacc}.jW{margin:0;border:2px solid #aaa}.jx{color:#444}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#444;text-decoration:none}.jE{border:1px solid #c7cacc}.jF{border:solid 1px #888;background-color:#f6f6f6;color:#444}.jB{background:url(images/2/5/lightbright/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/lightbright/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#f6f6f6;color:#444;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jN{background-color:#c7cacc;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#c7cacc;color:#222}.jR{background:url(images/2/5/lightbright/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/lightbright/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #b0b0b0;border-right:1px solid #b0b0b0;border-bottom:1px solid #e3e5e6;padding-top:1px;padding-bottom:4px}.nj input{width:97%;margin:1px;border:1px solid #585858 #b0b0b0 #b0b0b0 #b0b0b0}.nk input{margin:0;border:2px solid #c7cacc}.jo{position:relative;background-color:#f6f6f6;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f6f6f6}.jm .goog-icon-picker-highlighted{background-color:#c7cacc}.jm .goog-icon-picker{background-color:#f6f6f6}.jm .goog-tabpane{background-color:#f6f6f6;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#f6f6f6;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f6f6f6;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#f6f6f6;height:30px}.jX{border-left:1px solid #b0b0b0;border-right:1px solid #b0b0b0}.jZ{background-color:#c7cacc}.kR{border-left:solid #b0b0b0 1px;border-right:solid #b0b0b0 1px;background-color:#fff;text-align:center;overflow:hidden;padding:4px;clear:both}.fX{background-color:#888}.fX .goog-flat-button{color:#222;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#222}.vC{white-space:nowrap;color:#444;cursor:pointer;background-color:#fff;width:100%;line-height:1.4em}.vD{color:#222;background-color:#c7cacc}.vE{background:#C4C4C4}.vs{color:#444;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#444}.vG a{color:#222}.uk{width:100%;border-bottom:solid #e3e5e6 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.uC{color:#444;white-space:nowrap;text-overflow:ellipsis;margin-top:5px}.ul .cg{color:#222}.ul{background-color:#c7cacc;border-top:1px solid #c7cacc;border-bottom:1px solid #c7cacc}.ud,.um{color:#444;background-color:#fff;border-top:1px solid #e3e5e6;border-bottom:1px solid #e3e5e6}.up{border:1px solid #777;background-color:#b0b0b0;cursor:pointer}.uo{border:1px solid #e3e5e6;color:#e3e5e6}td.uL{border-right:#b0b0b0 solid 1px}td.ui,td.uP{border:#b0b0b0 solid 1px}.ue a{color:#222}.uM{background:url(images/2/5/lightbright/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#e3e5e6 solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#e3e5e6 solid 1px;font-size:80%}.uv{color:#444;background-color:#f6f6f6;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#c7cacc;color:#222}.uu{color:#222;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #e3e5e6;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/lightbright/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/lightbright/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f6f6f6;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#c7cacc;color:#222}.u3{background-color:#f6f6f6;color:#777}.uW{background-color:#f6f6f6;color:#444}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#444;background-color:#fff;font-size:80%;border-bottom:1px solid #e3e5e6}.dz .cg{color:#222}.jU{padding:0 3px}.A5 a{color:#222}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #c7cacc;background:#fff;color:#444;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#c7cacc;color:#444;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#222;background:#c7cacc;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#f6f6f6;color:#444;cursor:pointer}.goog-date-picker-other-month{color:#b0b0b0}.goog-date-picker-selected{background:#e3e5e6;color:#444}.modal-dialog-bg{position:absolute;top:0;left:0;background-color:#444}.v .l{background-color:#bbb}.v .k{color:#444;background:#bbb}.v .o{background:#bbb;height:4px;top:inherit}.v .n{background:#bbb;padding:inherit;margin:inherit}.v .h{background:#bbb;height:4px}.v .m{background:#bbb}.v .q{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=BBB&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#222;cursor:pointer;white-space:nowrap}.qZ{background:#bbb;color:#444;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#fff;padding:4px}.v9 .fZ{background:#fff;font-size:80%;padding:3px 8px}.v9 .f1{color:#222;background:#bbb;font-size:80%}.v9 .fY{background:#bbb;padding:0}.v7 .fY{background:#bbb}.v7 .fZ{background-color:#fff;border:1px solid #bbb;border-right:none}.v7 .f1{background:#bbb}.tf{background-color:#fff;border:1px solid #bbb;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #bbb;padding:8px}.r7 td.r5{border-top:2px solid #bbb}.r7 a{color:#222}.r7 .e{color:#222}.rZ{background-color:#bbb;padding:0;height:2px}.rJ{width:96px;height:96px;border:1px solid #b0b0b0}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#222}.s0{padding:6px;border-bottom:2px solid #bbb;font-size:80%}.ti{color:#444;float:right;padding:8px;font-size:80%}.s1{border-color:#bbb;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s5{color:#444;font-size:80%}.sW a{color:#222}.lpcd{padding:15px 20px;position:absolute;color:#444;border:2px solid #c7cacc;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#222;cursor:pointer}.sM{background-color:#bbb;padding:5px}.sn{border:2px solid #bbb;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#222;text-decoration:underline}.ri{color:#222}.ru{color:#444}.sk{border:solid 2px #222}.sl{border:solid 2px #fff}.si{background-color:#fff;border:solid 2px #fff;padding:5px;cursor:pointer}.sh{background-color:#f6f6f6;border:solid 2px #b0b0b0;padding:5px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#222}.sf{color:#444}.sq{width:65px;height:65px;border:1px solid #b0b0b0;margin:5px 3px 3px 3px}.rd{color:#222}.cB{position:relative;margin:0 3px 0 0;border:solid #b0b0b0;border-width:1px 0;font-size:80%}.cz{height:100%;vertical-align:top;background-color:#b0b0b0;padding:4px 0}.cz a{color:#222}.cF{zoom:1;border:1px solid #b0b0b0;background:#f6f6f6;padding:4px;white-space:nowrap}.cF .e{color:#222}.cy a{color:#222}tr.cn td{border-top:1px dotted #b0b0b0}tr.cm td{border-bottom:1px dotted #b0b0b0}tr.cr td{border-top:1px #b0b0b0 solid;border-bottom:1px #b0b0b0 solid;background:#b0b0b0}.cu{width:70%;height:100%;background:#b0b0b0;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #b0b0b0;text-align:center;background:#b0b0b0;padding:4px}.o0{background-color:#fff;border:9px solid #bbb}.oR{background:#bbb;color:#444;padding-bottom:8px;font-weight:bold}.oQ{font-size:80%;color:#444;padding:24px 12px 12px 12px}.wL{border:1px solid #c7cacc}.wN .k{background:#c7cacc}.wN .o{background:#c7cacc;height:3px;top:inherit}.wN .n{background:#c7cacc}.wN .m{background:#c7cacc}.wN .q{background:url(rc?a=af&c=c7cacc&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=c7cacc&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#c7cacc}.wO .o{background:#c7cacc;height:3px;top:inherit}.wM{background:#c7cacc;padding:2px}.vT{background:#c7cacc;overflow:auto}.vS{width:100%;background:#e3e5e6;overflow:hidden}a.vQ{color:#222}.vL,.vV{color:#444;padding:4px 6px;font-size:80%;position:relative}.vN{color:#fff}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#c7cacc;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/lightbright/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f6f6f6;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#c7cacc}.sam .goog-menuitem-content{color:#444}",
logo: "background-image: url(images/2/5/lightbright/logo_beta.png); background-position: left top; background-repeat: no-repeat;"
},
greensky: {
name: "Green Sky",
id: "greensky",
css: ".aB,.e,.cg{color:#33c;cursor:pointer}.b8 .b9{color:#33c}.cc .ca,.cc .b9{color:#33c}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#a9da92;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#33c}.ly{color:#33c;text-decoration:underline;cursor:pointer;white-space:nowrap}.v2{color:#33c}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #a9da92!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#a9da92;border:1px solid #32412C;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#d4edc9;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#33c!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#d4edc9!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #a9da92!important}.tr_edit-link-dialog{border:2px solid #a9da92!important}.tr_image-dialog{border:2px solid #a9da92!important}.tr_dialog{background:#d4edc9!important;color:#000!important}.tr_pseudo-link{color:#33c!important}.tr_dialog-tab-content-explanation-text a{color:#33c!important}.tr_tabbed-pane-tab-label{color:#33c!important}.ad{color:#33c}.ag{color:#33c;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#33c;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#33c;cursor:pointer;text-decoration:underline}.mq{padding:0 0 5px 2px;height:1.1em;background:#a9da92;margin:-2px 0 0 0}.mv{font-size:80%;color:#3A741F;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#333}.my{color:#3A741F}.mB{float:right;font-size:70%;color:#3A741F;padding:0.3em 1ex 0 2px}.mx,.mz{color:#3A741F}.mr{color:#3A741F}.ms{background-color:#8EC675;color:#FAFFF7;border:1px solid #FAFFF7}.mu{background-color:#a9da92;color:#FFFFFF;border:1px solid #FFFFFF}.mt{background-color:#a9da92;color:#CDF4BB;border:1px solid #CDF4BB}.C .mv{color:#000}.C .mv .e,.C .mz{color:#33c}.C .my{color:#000}.C .mr{color:#000}.C .mx{color:#000}.B .mq{background:#439b1e}.B .mB{color:#fff}.B .ms{background:#33870F;color:#95E872;border-color:#95E872}.B .mu{background:#439b1e;color:#DAFFCA;border-color:#DAFFCA}.B .mt{background:#439b1e;color:#5BB535;border-color:#5BB535}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/greensky/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.b6{background:#a9da92;color:#222}.A1{padding:6px 0 3px 6px;background:#d4edc9;border-bottom:1px solid #BDD4B3}.AY{padding:3px 0 6px 6px;background:#d4edc9;border-top:1px solid #BDD4B3}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#33c}.z .AP{color:#33c}.C .AO{color:#33c}.C .AP{color:#33c}.C .A1{background:#efefef}.C .AY{background:#efefef}.B .AO{color:#33c}.B .AP{color:#33c}.B .A1{background:#c9edcc}.B .AY{background:#c9edcc}.A .AO{color:#33c}.A .AP{color:#33c}.A .A1{background:#faeac3}.A .AY{background:#faeac3}.z .l,.y .l{background:#a9da92}.z .o,.y .o{background:#a9da92;height:4px;top:inherit}.z .h,.y .h{background:#a9da92;height:4px}.z .m,.y .m{background:#a9da92}.z .n,.y .n{background:#a9da92;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#439b1e}.B .o{background:#439b1e;height:4px;top:inherit}.B .h{background:#439b1e;height:4px}.B .m{background:#439b1e}.B .n{background:#439b1e;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#eeb939}.A .o{background:#eeb939;height:4px;top:inherit}.A .h{background:#eeb939;height:4px}.A .m{background:#eeb939}.A .n{background:#eeb939;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#a9da92}.x .o,.AL .o{background:#a9da92;height:4px;top:inherit}.x .h{background:#a9da92;height:4px}.x .m{background:#a9da92}.x .n{background:#a9da92;padding:inherit;margin:inherit}.x .p{display:inherit;background:#a9da92}.x .q{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f7f7f7;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#a9da92;color:#222}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/greensky/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#a9da92}.AT{background:#d4edc9;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#33c;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/greensky/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/greensky/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/greensky/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#33c}.oH,.oI{background:#a9da92;padding:3px 4px 3px 6px;border:1px solid #a9da92!important}.oE{background:url(images/2/5/greensky/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/greensky/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #d4edc9;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/greensky/icons7.png) no-repeat -100px -80px}.oB{background:#a9da92}.oK{border-top:1px solid #d4edc9}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#a9da92;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #a9da92}.qk{color:#33c;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#333;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#33c;text-decoration:none}.pk .qk{color:#333}.pz .k{background:#a9da92}.qj .k{background:#a9da92}.qk .p9,.qk .qh{color:#33c}.pO .p9{color:#33c}.pT{color:#33c}.pz .o{background:#a9da92;height:4px;top:inherit}.pz .n{background:#a9da92}.pz .h{background:#a9da92;height:4px}.pz .m{background:#a9da92}.pz .q{background:#a9da92;height:4px;margin-top:inherit}.pz .j{background:#a9da92;height:4px}.pz .i{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#a9da92;height:4px;top:inherit}.qj .n{background:#a9da92}.qj .h{background:#a9da92;height:4px}.qj .m{background:#a9da92}.qj .q{background:#a9da92;height:4px;margin-top:inherit}.qj .j{background:#a9da92;height:4px}.qj .i{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=a9da92&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/greensky/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#33c;text-decoration:none}.pt{background-color:#fff;border:#d4edc9 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#d4edc9}.xE .l,.xE .ph{background-color:#a9da92}.pU{text-align:right;font-size:70%;color:#33c;padding:4px 7px 4px 0;background-color:#fff;margin:0}.r .l,.r .k{background:#d4edc9}.r .o{background:#d4edc9;height:4px;top:inherit}.r .n{background:#d4edc9}.r .m{background:#d4edc9;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat -4px 0}.pS .h{background:#d4edc9}.pS .i{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff;border-color:#d4edc9}.t .pu{padding-bottom:3px;background:none}.t .l{background:#d4edc9}.t .pU{color:#33c;background-color:#fff}.t .r .l,.t .r .k{background:#d4edc9}.t .r .o{background:#d4edc9;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#d4edc9}.t .r .n{background:#d4edc9}.t .r .p{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#fff;border-color:#d4edc9}.t .oB{background-color:#a9da92}.t .oK{border-top-color:#d4edc9}.pO{color:#33c;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#d4edc9}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#d4edc9}.s .oy{background:#f7f7f7;color:#000}.s .oB{background:#a9da92;color:#222}.s .r .l,.s .r .k{background:#d4edc9}.s .r .o{background:#d4edc9;height:4px;top:inherit}.s .r .m{background:#d4edc9}.s .r .n{background:#d4edc9}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #d4edc9;background-color:#fff}.pY .h{background:#d4edc9}.pY .r .p{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=d4edc9&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=d4edc9&w=3&h=3) no-repeat -3px -3px}.qo .l{background-color:#d4edc9}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/greensky/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/greensky/icons7.png) no-repeat -60px -20px}a.gb1.qq,a.gb3.qq{color:#33c!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#33c!important}a.gb2.qq:hover{color:#222!important;background:#a9da92!important}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aJ .a5{color:#33c}.bR{font:9px verdana,arial,sans-serif;color:#33c;text-decoration:underline;cursor:pointer}.a7,.a8 .e{color:#33c}.aK .aI{color:#fff}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH .e{color:#33c}.bA{color:#33c;cursor:default}.bB{color:#33c;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#33c;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#33c}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#a9da92 none repeat scroll 0!important}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#439b1e;margin:0!important}.aK .o{background:#439b1e;height:4px;top:inherit}.aK .m,.b .m{background:#439b1e}.aK .n{margin-left:5px!important;background:#439b1e;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat -4px 0}.b .o{background:#439b1e;height:4px;top:inherit}.b .h{background:#439b1e;height:4px}.b .m{background:#439b1e}.b .n{background:#439b1e}.b .p{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat 0 0}.b .q{background:#439b1e}.b .i{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=439b1e&w=4&h=4) no-repeat -4px -4px}.b .e{color:#33c}.aJ .k{background:#eeb939;margin:0!important}.aJ .o{background:#eeb939;height:4px;top:inherit}.aJ .m,.a .m{background:#eeb939}.aJ .n{background:#eeb939;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat -4px 0}.a .e{color:#33c}.a .o{background:#eeb939;height:4px;top:inherit}.a .h{background:#eeb939;height:4px}.a .k{background-color:#faeac3}.a .m{background:#eeb939}.a .n{background:#eeb939}.a .p{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat 0 0}.a .q{background:#eeb939}.a .i{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat -4px -4px}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.yb{background-color:#a9da92;color:#222}.x8{text-decoration:underline;cursor:pointer;color:#33c}.yb .x8{color:#33c}.ya .e,.x9{color:#33c}.yd .x8,.yd .x9{color:#33c}.x2{color:#33c;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#33c}.z .yC .e{color:#33c}.B .yU{color:#33c}.B .yC .e{color:#33c}.A .yU{color:#33c}.A .yC .e{color:#33c}.C .yU{color:#33c}.C .yC .e{color:#33c}.x0{color:#33c;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#33c}.xI{background-color:#efefef}.xH{color:#33c;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DEDEDE solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#f7f7f7;color:#444}.x7{color:#222;background:#a9da92}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/greensky/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/greensky/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/greensky/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/greensky/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#33c}.yQ{background:#a9da92}.Ad{color:#33c;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #a9da92}.lR{background:url(images/2/5/greensky/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/greensky/vimages7.png) repeat-y -12px 0}.mn .l8{color:#33c!important}.mo,.l9{color:#33c}.l8{color:#33c;text-decoration:underline;cursor:pointer}.l6 .e{color:#33c}.tE{text-decoration:underline;color:#33c;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #33c;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#33c;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/greensky/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#a9da92;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/greensky/icons7.png) no-repeat -100px -80px}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tq .lJ{background-color:#a9da92}.tq .lN{background-color:#a9da92}.iI{background:#d4edc9;padding:6px 0 5px 6px}.iE{background:#d4edc9;padding:7px 0 5px 6px}.C .iI{background:#efefef}.C .iE{background:#efefef}.B .iI{background:#c9edcc}.B .iE{background:#c9edcc}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/greensky/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#33c}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#a9da92}.h1,.iD{color:#33c;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#33c}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#a9da92}.gR{margin:1px 0 0 0;color:#33c}.hg{width:auto;overflow:hidden;background:#a9da92}.he{overflow:visible;background:#efefef}.g8{background:url(images/2/5/greensky/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/greensky/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/greensky/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/greensky/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/greensky/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/greensky/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/greensky/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/greensky/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/greensky/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#a9da92;color:#222}.ii a{color:#33c}.ho a{color:#33c}.hr a{color:#33c}.hv{float:left;border:2px solid #a9da92;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/greensky/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#a9da92;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/greensky/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/greensky/icons7.png) no-repeat 0 -40px}.hE{color:#33c;padding-right:4px;padding-left:4px;white-space:nowrap}.iz .o{background:#d4edc9 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#d4edc9 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#d4edc9 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#d4edc9 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#d4edc9 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#d4edc9 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#d4edc9 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#d4edc9 url('images/2/card-ex-bl.gif') no-repeat top left}.id .il,.iW{background:#a9da92}.qr .gA{background:#d4edc9 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#d4edc9 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#33c;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#33c}.hk span{cursor:pointer;color:#33c;white-space:nowrap}.iC .hk span{color:#33c}.z .h0 .e{color:#33c}.C .h0 .e{color:#33c}.B .h0 .e{color:#33c}.A .h0 .e{color:#33c}.iS{text-align:center;background:#efefef;margin:0 8px 0 16px}.iT{color:#33c;cursor:pointer}.u7{color:#33c;text-decoration:underline;cursor:pointer}.u6:visited{color:#33c}a.u6{color:#33c}.vd{color:#33c;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#d4edc9;padding:0 4px}.nN8jRb .goog-palette-cell-hover{background:#a9da92}.el,.dP,.dU{color:#33c;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#d4edc9 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#d4edc9}.eh{background:#d4edc9}.eI{background:url(images/2/5/greensky/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#d4edc9;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/greensky/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#33c}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#33c}.dQ{border:solid 1px #999;background:#fff;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.e9{border:1px solid;border-color:#d4edc9 #ccc #ccc #d4edc9}.eW,.e7{border:1px solid;border-color:#ccc #d4edc9 #d4edc9 #ccc}.e7{background-color:#a9da92}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#33c;white-space:nowrap}.wY{background:url(images/2/5/greensky/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#33c;cursor:pointer}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#a9da92;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/greensky/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#a9da92;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#000;padding:3px}.fx .goog-menuitem-highlight{background:#a9da92;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/greensky/icons7.png) no-repeat -100px -80px}.fy{margin-top:2px;background-color:#a9da92;border-width:1px 0;font-size:80%}.fz{color:#33c;text-decoration:underline;font-weight:bold}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#33c;vertical-align:baseline}.mL{background:url(images/2/5/greensky/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/greensky/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/greensky/icons7.png) no-repeat -80px -40px}.mC{background-color:#d4edc9}.mC .mG{text-decoration:none;color:#33c}.manager-page .frame{background-color:#d4edc9;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #d4edc9}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #a9da92;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .menu{position:absolute;color:#000;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#a9da92}.cmgr-toolbar{height:32px;background-color:#d4edc9;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #a9da92;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#33c}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #a9da92;padding:10px 0 5px}.cmgr-contacts-list-actions .cmgr-link{color:#33c}.cmgr-contact-pane .cmgr-link{color:#33c}.cmgr-contact-pane .contact-banner{border-top:1px solid #d4edc9;border-bottom:1px solid #d4edc9}.cmgr-domain-contact-label .link{color:#33c}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#d4edc9}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#a9da92}.manager-page hr{background-color:#d4edc9}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#33c;color:#000;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#f7f7f7}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#a9da92;color:#222}.cmgr-hr-divider{background-color:#d4edc9;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#a9da92}.checkable-list .selected{background-color:#a9da92;overflow:hidden}.checkable-list .selected .text{color:#333;font-weight:bold}.checkable-list .preselect{background-color:#a9da92}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #d4edc9;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#a9da92}.group-list .preselect{background-color:#a9da92}.group-list .selected{background-color:#a9da92}.group-list .selected .text{font-weight:bold;color:#333}.group-list .selected .count{color:#333}.group-list hr.header{background-color:#d4edc9;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#a9da92}.lo .o{background:#a9da92;height:3px;top:inherit}.lo .n{background:#a9da92}.lo .m{background:#a9da92}.lo .q{background:url(rc?a=af&c=a9da92&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=a9da92&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#eeb939}.lp .o{background:#eeb939;height:3px;top:inherit}.lp .n{background:#eeb939}.lp .m{background:#eeb939}.lp .q{background:url(rc?a=af&c=eeb939&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=eeb939&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#a9da92;padding:2px}.ln{background:#eeb939}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#3A741F;font-weight:bold;margin-left:2px}.lp .kQ{color:#000}.kv{background:url(images/2/5/greensky/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/greensky/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/greensky/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/greensky/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#E8FFDE}.ky,.kW,.jc{background-color:#FFD570}.kt,.jA,.nl{color:#33c;text-decoration:underline;cursor:pointer}.kk a,.kq a{color:#33c}.jV{margin:0;border:2px solid #a9da92}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #a9da92}.jF{border:solid 1px #888;background-color:#f7f7f7;color:#000}.jB{background:url(images/2/5/greensky/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/greensky/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jN{background-color:#a9da92;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#a9da92;color:#222}.jR{background:url(images/2/5/greensky/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/greensky/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #d4edc9;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #a9da92}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker-highlighted{background-color:#a9da92}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jZ{background-color:#a9da92}.fX .goog-flat-button{color:#33c;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#33c}.vD{color:#222;background-color:#a9da92}.vE{background:#eeb939}.vs{color:#000;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#000}.vG a{color:#33c}.uk{width:100%;border-bottom:solid #d4edc9 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#33c}.ul{background-color:#a9da92;border-top:1px solid #a9da92;border-bottom:1px solid #a9da92}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #d4edc9;border-bottom:1px solid #d4edc9}.uo{border:1px solid #d4edc9;color:#d4edc9}.ue a{color:#33c}.uM{background:url(images/2/5/greensky/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/greensky/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#d4edc9 solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#d4edc9 solid 1px;font-size:80%}.uv{color:#000;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#a9da92;color:#222}.uu{color:#33c;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #d4edc9;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/greensky/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/greensky/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#a9da92;color:#222}.uW{background-color:#f7f7f7;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #d4edc9}.dz .cg{color:#33c}.jU{padding:0 3px}.A5 a{color:#33c}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #a9da92;background:#fff;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#a9da92;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#33c;background:#a9da92;font-weight:bold;padding:3px 4px}.goog-date-picker-selected{background:#d4edc9;color:#000}.v .l{background-color:#eeb939}.v .k{color:#000;background:#eeb939}.v .o{background:#eeb939;height:4px;top:inherit}.v .n{background:#eeb939;padding:inherit;margin:inherit}.v .h{background:#eeb939;height:4px}.v .m{background:#eeb939}.v .q{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=eeb939&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#33c;cursor:pointer;white-space:nowrap}.qZ{background:#eeb939;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#faeac3;padding:4px}.v9 .fZ{background:#faeac3;font-size:80%;padding:3px 8px}.v9 .f1{color:#33c;background:#eeb939;font-size:80%}.v9 .fY{background:#eeb939;padding:0}.v7 .fY{background:#eeb939}.v7 .fZ{background-color:#faeac3;border:1px solid #eeb939;border-right:none}.v7 .f1{background:#eeb939}.tf{background-color:#faeac3;border:1px solid #eeb939;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #eeb939;padding:8px}.r7 td.r5{border-top:2px solid #eeb939}.r7 a{color:#33c}.r7 .e{color:#33c}.rZ{background-color:#eeb939;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#33c}.s0{padding:6px;border-bottom:2px solid #eeb939;font-size:80%}.s1{border-color:#eeb939;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.sW a{color:#33c}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #a9da92;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#33c;cursor:pointer}.sM{background-color:#eeb939;padding:5px}.sn{border:2px solid #eeb939;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#33c;text-decoration:underline}.ri{color:#33c}.sk{border:solid 2px #33c}.sl{border:solid 2px #faeac3}.si{background-color:#faeac3;border:solid 2px #faeac3;padding:5px;cursor:pointer}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#33c}.rd{color:#33c}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#33c}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#33c}.cy a{color:#33c}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#faeac3;border:9px solid #eeb939}.oR{background:#eeb939;color:#000;padding-bottom:8px;font-weight:bold}.wL{border:1px solid #439b1e}.wN .k{background:#439b1e}.wN .o{background:#439b1e;height:3px;top:inherit}.wN .n{background:#439b1e}.wN .m{background:#439b1e}.wN .q{background:url(rc?a=af&c=439b1e&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=439b1e&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#439b1e}.wO .o{background:#439b1e;height:3px;top:inherit}.wM{background:#439b1e;padding:2px}.vT{background:#439b1e;overflow:auto}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#439b1e;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/greensky/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#a9da92}",
logo: null
},
lightsoft: {
name: "Bubble Gum",
id: "lightsoft",
css: ".aB,.e,.cg{color:#0065cc;cursor:pointer}.b8 .vi,.b8 .vh{background:#c8f0f0;color:#033}.b8 .b9{color:#f3c}.b8 .vj{background:url(rc?a=af&c=C8F0F0&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=C8F0F0&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=C8F0F0&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=C8F0F0&w=4&h=4) no-repeat -4px -4px}.cd .vi,.cd .vh{background:#f3c;color:#fff}.cd .ca,.cd .b9{color:#ffd6f5}.cd .vj{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat 0 0}.cd .vk{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat -4px 0}.cd .vf{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat 0 -4px}.cd .vg{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#fdeffa}.cc .vh{background:#fdeffa}.cc .ca,.cc .b9{color:#f3c}.cc .vj{background:url(rc?a=af&c=fdeffa&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=fdeffa&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=fdeffa&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=fdeffa&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#fff;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#decaff;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#0065cc}.ly{color:#0065cc;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#c8f0f0}.vX .p{background:#c8f0f0}.vX .q{background:#c8f0f0}.vX .i{background:url(rc?a=af&c=C8F0F0&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=C8F0F0&w=4&h=4) no-repeat -4px -4px}.v2{color:#0065cc}.dF .dG,.d9,.nr{border:1px solid;border-color:#999;background-color:#fff;color:#000}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #decaff!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#decaff;border:1px solid #595166;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#efe5ff;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#0065cc!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#efe5ff!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #decaff!important}.tr_edit-link-dialog{border:2px solid #decaff!important}.tr_image-dialog{border:2px solid #decaff!important}.tr_dialog{background:#efe5ff!important;color:#000!important}.tr_pseudo-link{color:#0065cc!important}.tr_dialog-tab-content-explanation-text a{color:#0065cc!important}.tr_tabbed-pane-tab-label{color:#0065cc!important}.ad{color:#f3c}.ag{color:#f3c;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#f3c;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#0065cc;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#c8f0f0}.w8{margin:2px;padding:2px;font:normal 80% arial,sans-serif;border:1px solid #bebeeb}.xa{z-index:1000;border:solid #f3c 2px;position:relative}.mq{padding:0 0 5px 2px;height:1.1em;background:#decaff;margin:-2px 0 0 0}.mv{font-size:80%;color:#5F3C99;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#0065cc}.my{color:#5F3C99}.mB{float:right;font-size:70%;color:#5F3C99;padding:0.3em 1ex 0 2px}.mx,.mz{color:#5F3C99}.mr{color:#5F3C99}.ms{background-color:#C1A7EB;color:#EEE4FF;border:1px solid #EEE4FF}.mu{background-color:#decaff;color:#FFFFFF;border:1px solid #FFFFFF}.mt{background-color:#decaff;color:#EEE4FF;border:1px solid #EEE4FF}.C .mq{background:#999}.C .ms{background:#858585;color:#E6E6E6;border-color:#E6E6E6}.C .mu{background:#999;color:#FFFFFF;border-color:#FFFFFF}.C .mt{background:#999;color:#B3B3B3;border-color:#B3B3B3}.C .mv{color:#000}.C .mv .e,.C .mz{color:#fff}.C .my{color:#000}.C .mr{color:#000}.C .mx{color:#000}.B .mq{background:#ffd6f5}.B .mB{color:#000}.B .ms{background:#EBB2DD;color:#FFFFFF;border-color:#FFFFFF}.B .mu{background:#ffd6f5;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#ffd6f5;color:#FFF0FB;border-color:#FFF0FB}.B .mv{color:#000}.B .mv .e,.B .mz{color:#e537ba}.B .my{color:#000}.B .mr{color:#000}.B .mx{color:#000}.b2{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.b6{background:#decaff;color:#222}.A1{padding:6px 0 3px 6px;background:#efe5ff;border-bottom:1px solid #D7CEE6}.AY{padding:3px 0 6px 6px;background:#efe5ff;border-top:1px solid #D7CEE6}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#0065cc}.z .AP{color:#0065cc}.C .AO{color:#0065cc}.C .AP{color:#0065cc}.C .A1{background:#eee}.C .AY{background:#eee}.B .AO{color:#0065cc}.B .AP{color:#0065cc}.B .A1{background:#fdeffa}.B .AY{background:#fdeffa}.A .AO{color:#0065cc}.A .AP{color:#0065cc}.A .A1{background:#fff}.A .AY{background:#fff}.z .l,.y .l{background:#decaff}.z .o,.y .o{background:#decaff;height:4px;top:inherit}.z .h,.y .h{background:#decaff;height:4px}.z .m,.y .m{background:#decaff}.z .n,.y .n{background:#decaff;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#999}.C .o{background:#999;height:4px;top:inherit}.C .h{background:#999;height:4px}.C .m{background:#999}.C .n{background:#999;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=999&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=999&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=999&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=999&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#ffd6f5}.B .o{background:#ffd6f5;height:4px;top:inherit}.B .h{background:#ffd6f5;height:4px}.B .m{background:#ffd6f5}.B .n{background:#ffd6f5;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#c9ffbb}.A .o{background:#c9ffbb;height:4px;top:inherit}.A .h{background:#c9ffbb;height:4px}.A .m{background:#c9ffbb}.A .n{background:#c9ffbb;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#decaff}.x .o,.AL .o{background:#decaff;height:4px;top:inherit}.x .h{background:#decaff;height:4px}.x .m{background:#decaff}.x .n{background:#decaff;padding:inherit;margin:inherit}.x .p{display:inherit;background:#decaff}.x .q{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AW .lT{border-top:1px solid #bebeeb}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#decaff;color:#222}.D .goog-menuseparator{margin:2px 0;border-top:1px solid #bebeeb;padding:0;outline:none}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/lightsoft/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#decaff}.AT{background:#efe5ff;border-top:1px solid #bebeeb;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#0065cc;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#fff;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #bebeeb #bebeeb #bebeeb;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/lightsoft/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/lightsoft/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .AZ{background:url(images/2/5/lightsoft/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#8c8cd9}.oH,.oI{background:#decaff;padding:3px 4px 3px 6px;border:1px solid #decaff!important}.oE{background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/lightsoft/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #efe5ff;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/lightsoft/icons7.png) no-repeat -100px -80px}.oB{background:#decaff}.oK{border-top:1px solid #efe5ff}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#fff;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#decaff;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #decaff}.qk{color:#0065cc;font-size:80%;padding-left:22px}.ql{color:#f3c}.pk .qk .p9{font-weight:bold;color:#0065cc;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#fff;text-decoration:none}.pk .qk{color:#0065cc}.pz .k{background:#decaff}.qj .k{background:#decaff}div.qi .k{background:#999}.qk .p9,.qk .qh{color:#0065cc}.pO .p9{color:#0065cc}.pT{color:#8c8cd9}.pz .o{background:#decaff;height:4px;top:inherit}.pz .n{background:#decaff}.pz .h{background:#decaff;height:4px}.pz .m{background:#decaff}.pz .q{background:#decaff;height:4px;margin-top:inherit}.pz .j{background:#decaff;height:4px}.pz .i{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#decaff;height:4px;top:inherit}.qj .n{background:#decaff}.qj .h{background:#decaff;height:4px}.qj .m{background:#decaff}.qj .q{background:#decaff;height:4px;margin-top:inherit}.qj .j{background:#decaff;height:4px}.qj .i{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=decaff&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#999;height:4px;top:inherit}.qi .n{background:#999}.qi .h{background:#999;height:4px}.qi .m{background:#999}.qi .q{background:#999;height:4px;margin-top:inherit}.qi .j{background:#999;height:4px}.qi .i{background:url(rc?a=af&c=999&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=999&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/lightsoft/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#0065cc;text-decoration:none}.pt{background-color:#fff;border:#efe5ff 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#efe5ff}.xE .l,.xE .ph{background-color:#decaff}.pU{text-align:right;font-size:70%;color:#8c8cd9;padding:4px 7px 4px 0;background-color:#fff;margin:0}.r .l,.r .k{background:#efe5ff}.r .o{background:#efe5ff;height:4px;top:inherit}.r .n{background:#efe5ff}.r .m{background:#efe5ff;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat -4px 0}.pS .h{background:#efe5ff}.pS .i{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff;border-color:#efe5ff}.t .pu{padding-bottom:3px;background:none}.t .l{background:#efe5ff}.t .pU{color:#8c8cd9;background-color:#fff}.t .r .l,.t .r .k{background:#efe5ff}.t .r .o{background:#efe5ff;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#efe5ff}.t .r .n{background:#efe5ff}.t .r .p{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#fff;border-color:#efe5ff}.t .oB{background-color:#decaff}.t .oK{border-top-color:#efe5ff}.pO{color:#0065cc;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#efe5ff}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#efe5ff}.s .oB{background:#decaff;color:#222}.s .r .l,.s .r .k{background:#efe5ff}.s .r .o{background:#efe5ff;height:4px;top:inherit}.s .r .m{background:#efe5ff}.s .r .n{background:#efe5ff}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #efe5ff;background-color:#fff}.pY .h{background:#efe5ff}.pY .r .p{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=efe5ff&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=efe5ff&w=3&h=3) no-repeat -3px -3px}.qo .l{background-color:#efe5ff}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/lightsoft/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/lightsoft/icons7.png) no-repeat -60px -20px}a.gb1.qq,a.gb3.qq{color:#0065cc!important}a.gb2.qq{color:#000!important}a.gb2.qq:hover{color:#222!important;background:#decaff!important}div.gbd{border-top:1px solid #bebeeb!important}.qp{background:transparent;border-bottom:1px solid #bebeeb;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.a0{background:#c8f0f0;color:#033;padding:0 6px}.a5{font-size:70%;color:#e537ba;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#e537ba}.aJ .a5{color:#0065cc}.bR{font:9px verdana,arial,sans-serif;color:#0065cc;text-decoration:underline;cursor:pointer}.a7,.a8 .e{color:#0065cc}.aK .aI{color:#000}.bE{color:#f3c}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#033;background:#c8f0f0;border:1px solid #bebeeb;font-weight:bold}.aH .e{color:#f3c}.bA{color:#0065cc;cursor:default}.bB{color:#0065cc;text-decoration:none}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#000;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#000}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#decaff none repeat scroll 0!important}.bT{font-size:80%;color:#f3c}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#ffd6f5;margin:0!important}.aK .o{background:#ffd6f5;height:4px;top:inherit}.aK .m,.b .m{background:#ffd6f5}.aK .n{margin-left:5px!important;background:#ffd6f5;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat -4px 0}.b .o{background:#ffd6f5;height:4px;top:inherit}.b .h{background:#ffd6f5;height:4px}.b .m{background:#ffd6f5}.b .n{background:#ffd6f5}.b .p{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat 0 0}.b .q{background:#ffd6f5}.b .i{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=FFD6F5&w=4&h=4) no-repeat -4px -4px}.b .e{color:#0065cc}.b .k{background-color:#fff}.aJ .k{background:#c9ffbb;margin:0!important}.aJ .o{background:#c9ffbb;height:4px;top:inherit}.aJ .m,.a .m{background:#c9ffbb}.aJ .n{background:#c9ffbb;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat -4px 0}.a .e{color:#0065cc}.a .o{background:#c9ffbb;height:4px;top:inherit}.a .h{background:#c9ffbb;height:4px}.a .k{background-color:#fff}.a .m{background:#c9ffbb}.a .n{background:#c9ffbb}.a .p{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat 0 0}.a .q{background:#c9ffbb}.a .i{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat -4px -4px}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #D5D5D5 solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #D5D5D5 solid;padding:3px 8px}.yd{background-color:#fff}.yb{background-color:#decaff;color:#222}.yc{background-color:#fff}.x8{text-decoration:underline;cursor:pointer;color:#0065cc}.yb .x8{color:#0065cc}.ya .e,.x9{color:#0065cc}.yd .x8,.yd .x9{color:#000}.x2{color:#0065cc;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#0065cc}.z .yC .e{color:#0065cc}.B .yU{color:#0065cc}.B .yC .e{color:#0065cc}.A .yU{color:#0065cc}.A .yC .e{color:#0065cc}.C .yU{color:#0065cc}.C .yC .e{color:#0065cc}.x0{color:#0065cc;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#0065cc}.xG{border-bottom:1px solid #999;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#0065cc;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #D5D5D5 solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#eee;color:#444}.x7{color:#222;background:#decaff}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/lightsoft/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/lightsoft/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#0065cc}.yQ{background:#decaff}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#c8f0f0;border:1px solid #bebeeb;font-size:80%;color:#033;padding:10px}.Ad{color:#f3c;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#fff}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#fff;border:1px solid #bebeeb;width:250px;padding:4px;z-index:10}.Af textarea{width:98%;height:36px;font-size:80%;border:1px solid #bebeeb;padding:2px 0 0 1px;margin:0}textarea.Ah{border:2px solid #decaff}textarea.Ai{border:2px solid #fff}.lR{background:url(images/2/5/lightsoft/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/lightsoft/vimages7.png) repeat-y -12px 0}.mn .l8{color:#0065cc!important}.mi{color:#f3c}.mj{color:#f3c}.mo,.l9{color:#0065cc}.l8{color:#0065cc;text-decoration:underline;cursor:pointer}.l6 .e{color:#0065cc}.l7{background:#c8f0f0;color:#033;font-weight:bold}.tE{text-decoration:underline;color:#0caabb;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #0caabb;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#0caabb;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #eee;background-color:#fff;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tV{border-top:1px solid #eee;margin-top:2px}.tT .goog-menuitem-highlight{background-color:#ffd6f5;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/lightsoft/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#c9ffbb;color:#000;border-bottom:1px solid #fff;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#c9ffbb;color:#777}.u .goog-menuitem-opened .tF{background:#fff;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #eee;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #fff;background:#c9ffbb;width:1px;height:23px;padding:0;margin:0}.tJ{border-color:#999}.tB,.tC{color:#0caabb;padding-left:2px}.tq .lJ{background-color:#A3E691}.tq .lN{background-color:#A3E691}.iI{background:#efe5ff;padding:6px 0 5px 6px}.iE{background:#efe5ff;padding:7px 0 5px 6px}.C .iI{background:#eee}.C .iE{background:#eee}.B .iI{background:#fdeffa}.B .iE{background:#fdeffa}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/lightsoft/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#0065cc}.gy{border-top:1px solid #bebeeb;border-bottom:1px solid #bebeeb}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#decaff}.h1,.iD{color:#0065cc;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#0065cc}.gY{color:#fff;background:#f3c}.gX{color:#ffd6f5}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#decaff}.gR{margin:1px 0 0 0;color:#0065cc}.hg{width:auto;overflow:hidden;background:#decaff}.g8{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/lightsoft/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/lightsoft/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/lightsoft/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/lightsoft/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/lightsoft/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/lightsoft/icons7.png) no-repeat -100px -60px}.gv .gO{background:#decaff;color:#222}.ii a{color:#0065cc}.hp{width:50%;height:0;border-top:2px solid #999}.ho a{color:#0065cc}.hr a{color:#0065cc}.hv{float:left;border:2px solid #decaff;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px 0}.ht .goog-menuitem-highlight{background:#decaff;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 -40px}.hE{color:#000;padding-right:4px;padding-left:4px;white-space:nowrap}.g .h{background:#fffff6 url('images/2/cv/card-ex-bm.gif') repeat-x top}.g .j{background:#fffff6 url('images/2/card-ex-br.gif') no-repeat top left}.g .i{background:#fffff6 url('images/2/card-ex-bl.gif') no-repeat top right}.iz .o{background:#efe5ff url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#efe5ff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#efe5ff url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#efe5ff url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#efe5ff url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#efe5ff url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#efe5ff url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#efe5ff url('images/2/card-ex-bl.gif') no-repeat top left}.id .il,.iW{background:#decaff}.gA,.hi{background:#fffff6 url('images/2/cv/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.A9{font-size:80%;color:#f3c}.qr .gA{background:#efe5ff url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#efe5ff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#0065cc;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#0065cc}.hk span{cursor:pointer;color:#666;white-space:nowrap}.iC .hk span{color:#666}.z .h0 .e{color:#0065cc}.C .h0 .e{color:#0065cc}.B .h0 .e{color:#0065cc}.A .h0 .e{color:#0065cc}.iT{color:#0065cc;cursor:pointer}.h4{cursor:pointer;color:#666;font-size:9px}.h5{display:none;color:#666}.im{color:#666}.u7{color:#0065cc;text-decoration:underline;cursor:pointer}.u6:visited{color:#0065cc}a.u6{color:#0065cc}.vd{color:#0065cc;text-decoration:none}.fO{font-size:80%;margin-right:5px;padding-bottom:10px;border-bottom:1px solid #bebeeb}.YXCXSb .goog-tabpane{background-color:#efe5ff;padding:0 4px}.nN8jRb .goog-tabpane-cont{padding:2px;border:1px solid #bebeeb;background-color:#fff}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#fff;border:1px solid #bebeeb}.u5cA3e{border:1px solid #bebeeb}.LE6Bud .goog-tabpane-tab-selected{top:1px;border-bottom:1px solid #fff;border-top:1px solid #bebeeb;border-left:1px solid #bebeeb;border-right:1px solid #bebeeb}.YXCXSb .goog-tabpane-tab-selected{top:-1px;border-top:1px solid #fff;border-bottom:1px solid #bebeeb;border-left:1px solid #bebeeb;border-right:1px solid #bebeeb}.nN8jRb .goog-palette-cell-hover{background:#decaff}.el,.dP,.dU{color:#0065cc;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#efe5ff url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#efe5ff}.eh{background:#efe5ff}.eI{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#efe5ff;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#0065cc}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#0065cc}.dN{color:#f3c;font-weight:bold}.dQ{border:solid 1px #999;background:#fff;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #c8f0f0!important;margin:0!important}.fM .vi{background:#f3c}.fM .vh{background:#f3c;color:#fff;font-weight:bold;padding:0;margin:0}.fM .vj{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat 0 0;background-color:transparent}.fM .vk{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat -4px 0;background-color:transparent}.fM .vf{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat 0 -4px;background-color:transparent}.fM .vg{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat -4px -4px;background-color:transparent}.eJ table{width:100%;background:#fff}.eL,.eM,.eK{border:1px solid #fff;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#efe5ff #bebeeb #bebeeb #efe5ff}.eW,.e7{border:1px solid;border-color:#bebeeb #efe5ff #efe5ff #bebeeb}.e7{background-color:#decaff}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#000;white-space:nowrap}.wY{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#000;cursor:pointer}.ew{color:#f3c}.ex .goog-menuitem-highlight{background-color:#decaff;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/lightsoft/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#decaff;padding:3px 0 3px 3px}.fx{position:absolute;background:#fff;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem-highlight{background:#decaff;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/lightsoft/icons7.png) no-repeat -100px -80px}.fv .goog-palette-table{border:1px solid #bebeeb;border-collapse:collapse}.fv .goog-palette-cell{height:13px;width:15px;margin:0;border:0;text-align:center;vertical-align:middle;border-right:1px solid #bebeeb;font-size:100%}.fv .goog-palette-colorswatch{position:relative;height:12px;width:14px;border:1px solid #bebeeb}.fy{margin-top:2px;background-color:#decaff;border-width:1px 0;font-size:80%}.fz{color:#0065cc;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#fffff6}.mH{background-color:#fffff6;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#000;vertical-align:baseline}.mL{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/lightsoft/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/lightsoft/icons7.png) no-repeat -80px -40px}.mC{background-color:#efe5ff}.mC .mG{text-decoration:none;color:#0065cc}.manager-page .frame{background-color:#efe5ff;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #efe5ff}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #decaff;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#c8f0f0;color:#033}.manager-page .message.error{background-color:#f3c;color:#fff}.manager-page .loading{background-color:#c8f0f0;color:#033;font-size:80%;padding:1px}.manager-page .menu .menu-item-selected{color:#222;background-color:#decaff}.cmgr-toolbar{height:32px;background-color:#efe5ff;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #decaff;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#0065cc}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #decaff;padding:10px 0 5px}.cmgr-editbar{background-color:#fff;color:#000;border-top:1px solid #bebeeb;border-bottom:1px solid #bebeeb;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#fff;color:#000;border-top:1px solid #bebeeb;border-bottom:1px solid #bebeeb;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#000}.cmgr-contact-pane .cmgr-link{color:#0065cc}.cmgr-contact-pane .contact-banner{border-top:1px solid #efe5ff;border-bottom:1px solid #efe5ff}.cmgr-domain-contact-label{padding:5px 7px;color:#033;border-bottom:1px solid #bebeeb;font-weight:bold;background-color:#c8f0f0}.cmgr-domain-contact-label .link{color:#f3c}.cmgr-edit-interleave-label{padding:7px;color:#033;border-top:1px solid #bebeeb;border-bottom:1px solid #bebeeb;background-color:#c8f0f0}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#efe5ff}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#fff;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#decaff}.manager-page hr{background-color:#efe5ff}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#0065cc;color:#000;background-color:#fff}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#033;background-color:#c8f0f0}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#decaff;color:#222}.cmgr-hr-divider{background-color:#efe5ff;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#decaff}.checkable-list .selected{background-color:#decaff;overflow:hidden}.checkable-list .selected .text{color:#0065cc;font-weight:bold}.checkable-list .preselect{background-color:#decaff}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #efe5ff;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#decaff}.group-list .preselect{background-color:#decaff}.group-list .selected{background-color:#decaff}.group-list .selected .text{font-weight:bold;color:#0065cc}.group-list .selected .count{color:#0065cc}.group-list-secondary .selected{background-color:#bebeeb}.group-list hr.header{background-color:#efe5ff;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#bebeeb}.lo .o{background:#bebeeb;height:3px;top:inherit}.lo .n{background:#bebeeb}.lo .m{background:#bebeeb}.lo .q{background:url(rc?a=af&c=BEBEEB&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=BEBEEB&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#ffd6f5}.lp .o{background:#ffd6f5;height:3px;top:inherit}.lp .n{background:#ffd6f5}.lp .m{background:#ffd6f5}.lp .q{background:url(rc?a=af&c=FFD6F5&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=FFD6F5&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#bebeeb;padding:2px}.ln{background:#ffd6f5}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#5F3C99;font-weight:bold;margin-left:2px}.lp .kQ{color:#000}.kX{border-right:1px solid #bebeeb;border-left:1px solid #bebeeb;border-top:none;border-bottom:1px solid #bebeeb}.kv{background:url(images/2/5/lightsoft/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/lightsoft/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/lightsoft/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#FFFFFF}.ky,.kW,.jc{background-color:#FFFFFF}.kt,.jA,.nl{color:#0065cc;text-decoration:underline;cursor:pointer}.ko{color:#000;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #bebeeb;border-right:1px solid #bebeeb;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#0065cc}.kg{color:#f3c}.jp{border-left:solid #bebeeb 1px;border-right:solid #bebeeb 1px;background-color:#fff;text-align:center;padding-bottom:4px}.jT{position:relative;border:1px solid;border-color:#999;margin:1px;color:#000;background-color:#fff;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #decaff}.jW{margin:0;border:2px solid #c8f0f0}.js{color:#f3c}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #decaff}.jF{border:solid 1px #bebeeb;background-color:#fff;color:#000}.jB{background:url(images/2/5/lightsoft/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/lightsoft/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#fff;color:#000;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jN{background-color:#decaff;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#decaff;color:#222}.jR{background:url(images/2/5/lightsoft/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/lightsoft/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #bebeeb;border-right:1px solid #bebeeb;border-bottom:1px solid #efe5ff;padding-top:1px;padding-bottom:4px}.nj input{width:97%;margin:1px;border:1px solid #999}.nk input{margin:0;border:2px solid #decaff}.jo{position:relative;background-color:#fff;border-right:1px solid #bebeeb;border-left:1px solid #bebeeb;border-bottom:1px solid #bebeeb;border-top:none;z-index:1}.jm .goog-icon-picker-highlighted{background-color:#decaff}.jm .goog-tabpane{background-color:#f1f1ff;padding-left:1px;position:relative;width:136px;border:1px solid #bebeeb;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #bebeeb;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#f1f1ff;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#fff;border:solid #bebeeb;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#fff;height:30px}.jX{border-left:1px solid #bebeeb;border-right:1px solid #bebeeb}.jZ{background-color:#decaff}.ll{color:#f3c;font-weight:bold}.kR{border-left:solid #bebeeb 1px;border-right:solid #bebeeb 1px;background-color:#fff;text-align:center;overflow:hidden;padding:4px;clear:both}.fX{background-color:#999}.fX .goog-flat-button{color:#0065cc;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#0065cc}.vD{color:#222;background-color:#decaff}.vE{background:#ffd6f5}.vs{color:#000;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#000}.vG a{color:#0065cc}.uk{width:100%;border-bottom:solid #efe5ff 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#0065cc}.ul{background-color:#decaff;border-top:1px solid #decaff;border-bottom:1px solid #decaff}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #efe5ff;border-bottom:1px solid #efe5ff}.up{border:1px solid #777;background-color:#bebeeb;cursor:pointer}.uo{border:1px solid #efe5ff;color:#efe5ff}td.uL{border-right:#bebeeb solid 1px}td.ui,td.uP{border:#bebeeb solid 1px}.ue a{color:#0065cc}.uM{background:url(images/2/5/lightsoft/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#efe5ff solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#efe5ff solid 1px;font-size:80%}.uy{background-color:#decaff;color:#222}.uu{color:#0065cc;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #efe5ff;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/lightsoft/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/lightsoft/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#fff;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#decaff;color:#222}.u3{background-color:#fff;color:#777}.uW{background-color:#fff;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #efe5ff}.dz .cg{color:#0065cc}.jU{padding:0 3px}.dv{vertical-align:super;color:#f3c;font-size:80%}.A5 a{color:#0065cc}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #decaff;background:#fff;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#decaff;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#0065cc;background:#decaff;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#fff;color:#000;cursor:pointer}.goog-date-picker-other-month{color:#bebeeb}.goog-date-picker-selected{background:#efe5ff;color:#000}.v .l{background-color:#c9ffbb}.v .k{color:#000;background:#c9ffbb}.v .o{background:#c9ffbb;height:4px;top:inherit}.v .n{background:#c9ffbb;padding:inherit;margin:inherit}.v .h{background:#c9ffbb;height:4px}.v .m{background:#c9ffbb}.v .q{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=C9FFBB&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#0065cc;cursor:pointer;white-space:nowrap}.qZ{background:#c9ffbb;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#fff;padding:4px}.v9 .fZ{background:#fff;font-size:80%;padding:3px 8px}.v9 .f1{color:#0065cc;background:#c9ffbb;font-size:80%}.v9 .fY{background:#c9ffbb;padding:0}.v7 .fY{background:#c9ffbb}.v7 .fZ{background-color:#fff;border:1px solid #c9ffbb;border-right:none}.v7 .f1{background:#c9ffbb}.tf{background-color:#fff;border:1px solid #c9ffbb;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #c9ffbb;padding:8px}.r7 td.r5{border-top:2px solid #c9ffbb}.r7 a{color:#0065cc}.r7 .e{color:#0065cc}.rZ{background-color:#c9ffbb;padding:0;height:2px}.rJ{width:96px;height:96px;border:1px solid #bebeeb}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#0065cc}.qT{color:#f3c}.rM .vi,.rM .vh{background-color:#f3c}.rM .vj{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat 0 0}.rM .vk{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat -4px 0}.rM .vf{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat 0 -4px}.rM .vg{background:url(rc?a=af&c=F3C&w=4&h=4) no-repeat -4px -4px}.s0{padding:6px;border-bottom:2px solid #c9ffbb;font-size:80%}.s1{border-color:#c9ffbb;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.sW a{color:#0065cc}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #decaff;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#0065cc;cursor:pointer}.sM{background-color:#c9ffbb;padding:5px}.sn{border:2px solid #c9ffbb;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#0065cc;text-decoration:underline}.ri{color:#0065cc}.rh{font-weight:bold;color:#f3c}.rr{color:#f3c}.sk{border:solid 2px #0065cc}.sl{border:solid 2px #fff}.si{background-color:#fff;border:solid 2px #fff;padding:5px;cursor:pointer}.sh{background-color:#fff;border:solid 2px #bebeeb;padding:5px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#0065cc}.sq{width:65px;height:65px;border:1px solid #bebeeb;margin:5px 3px 3px 3px}.rd{color:#0065cc}.cB{position:relative;margin:0 3px 0 0;border:solid #bebeeb;border-width:1px 0;font-size:80%}.cz{height:100%;vertical-align:top;background-color:#bebeeb;padding:4px 0}.cz a{color:#000}.cF{zoom:1;border:1px solid #bebeeb;background:#fff;padding:4px;white-space:nowrap}.cF .e{color:#000}.cy a{color:#0065cc}tr.cn td{border-top:1px dotted #bebeeb}tr.cm td{border-bottom:1px dotted #bebeeb}tr.cr td{border-top:1px #bebeeb solid;border-bottom:1px #bebeeb solid;background:#bebeeb}.cu{width:70%;height:100%;background:#bebeeb;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #bebeeb;text-align:center;background:#bebeeb;padding:4px}.o0{background-color:#fff;border:9px solid #c9ffbb}.oR{background:#c9ffbb;color:#000;padding-bottom:8px;font-weight:bold}.oP{color:#f3c;padding-top:6px;padding-bottom:12px;font-weight:bold}.wL{border:1px solid #ffd6f5}.wN .k{background:#ffd6f5}.wN .o{background:#ffd6f5;height:3px;top:inherit}.wN .n{background:#ffd6f5}.wN .m{background:#ffd6f5}.wN .q{background:url(rc?a=af&c=FFD6F5&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=FFD6F5&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#ffd6f5}.wO .o{background:#ffd6f5;height:3px;top:inherit}.wM{background:#ffd6f5;padding:2px}.vT{background:#ffd6f5;overflow:auto}.vS{width:100%;background:#fdeffa;overflow:hidden}a.vQ{color:#e537ba}.vM{background:#f3c;color:#fff}.vN{color:#ffd6f5}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#ffd6f5;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/lightsoft/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam .goog-menuitem-highlight{color:#222;background:#decaff}",
logo: null
},
cherry: {
name: "Cherry Blossom",
id: "cherry",
css: ".aB,.e,.cg{color:#942e06;cursor:pointer}.cP{background:#fff url(images/2/5/cherry/bg-main.png) 0 0 repeat}.b8 .vi,.b8 .vh{background:#ffe66b;color:#000}.b8 .b9{color:#942e06}.b8 .vj{background:url(rc?a=af&c=FFE66B&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=FFE66B&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=FFE66B&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=FFE66B&w=4&h=4) no-repeat -4px -4px}.cd .vi,.cd .vh{background:#ffa414;color:#000}.cd .ca,.cd .b9{color:#fff}.cd .vj{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat 0 0}.cd .vk{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat -4px 0}.cd .vf{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat 0 -4px}.cd .vg{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#efffd6}.cc .vh{background:#efffd6}.cc .ca,.cc .b9{color:#942e06}.cc .vj{background:url(rc?a=af&c=efffd6&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=efffd6&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=efffd6&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=efffd6&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#efffd6;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#942e06}.ly{color:#942e06;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#ffe66b}.vX .p{background:#ffe66b}.vX .q{background:#ffe66b}.vX .i{background:url(rc?a=af&c=FFE66B&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=FFE66B&w=4&h=4) no-repeat -4px -4px}.v2{color:#942e06}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #efffd6!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#ef575a;border:1px solid #561F20;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#ffe3e3;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#942e06!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#ffe3e3!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #ef575a!important}.tr_edit-link-dialog{border:2px solid #ef575a!important}.tr_image-dialog{border:2px solid #ef575a!important}.tr_dialog{background:#ffe3e3!important;color:#000!important}.tr_pseudo-link{color:#942e06!important}.tr_dialog-tab-content-explanation-text a{color:#942e06!important}.tr_tabbed-pane-tab-label{color:#942e06!important}.ad{color:#942e06}.ag{color:#942e06;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#942e06;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#942e06;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#ffe66b}.xa{z-index:1000;border:solid #ffa414 2px;position:relative}.mq{padding:0 0 5px 2px;height:1.1em;background:#ef575a;margin:-2px 0 0 0}.my{color:#fff}.mB{float:right;font-size:70%;color:#ffe3e3;padding:0.3em 1ex 0 2px}.ms{background-color:#DB3E41;color:#FFA9AB;border:1px solid #FFA9AB}.mu{background-color:#ef575a;color:#FFF6F6;border:1px solid #FFF6F6}.mt{background-color:#ef575a;color:#FF7679;border:1px solid #FF7679}.C .mv{color:#942e06}.C .mv .e,.C .mz{color:#942e06}.C .my{color:#942e06}.C .mr{color:#942e06}.C .mx{color:#942e06}.B .mq{background:#b4ef57}.B .mB{color:#000}.B .ms{background:#9EDB3E;color:#DEFFA9;border-color:#DEFFA9}.B .mu{background:#b4ef57;color:#FBFFF6;border-color:#FBFFF6}.B .mt{background:#b4ef57;color:#CAFF76;border-color:#CAFF76}.B .mv{color:#942e06}.B .mv .e,.B .mz{color:#942e06}.B .my{color:#942e06}.B .mr{color:#942e06}.B .mx{color:#942e06}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/cherry/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.b6{background:#efffd6;color:#222}.A1{padding:6px 0 3px 6px;background:#ffe3e3;border-bottom:1px solid #E6CCCC}.AY{padding:3px 0 6px 6px;background:#ffe3e3;border-top:1px solid #E6CCCC}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#942e06}.z .AP{color:#942e06}.C .AO{color:#942e06}.C .AP{color:#942e06}.C .A1{background:#eee}.C .AY{background:#eee}.B .AO{color:#942e06}.B .AP{color:#942e06}.B .A1{background:#efffd6}.B .AY{background:#efffd6}.A .AO{color:#942e06}.A .AP{color:#942e06}.A .A1{background:#faf3dc}.A .AY{background:#faf3dc}.z .l,.y .l{background:#ef575a}.z .o,.y .o{background:#ef575a;height:4px;top:inherit}.z .h,.y .h{background:#ef575a;height:4px}.z .m,.y .m{background:#ef575a}.z .n,.y .n{background:#ef575a;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#b4ef57}.B .o{background:#b4ef57;height:4px;top:inherit}.B .h{background:#b4ef57;height:4px}.B .m{background:#b4ef57}.B .n{background:#b4ef57;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#fac8a5}.A .o{background:#fac8a5;height:4px;top:inherit}.A .h{background:#fac8a5;height:4px}.A .m{background:#fac8a5}.A .n{background:#fac8a5;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#ef575a}.x .o,.AL .o{background:#ef575a;height:4px;top:inherit}.x .h{background:#ef575a;height:4px}.x .m{background:#ef575a}.x .n{background:#ef575a;padding:inherit;margin:inherit}.x .p{display:inherit;background:#ef575a}.x .q{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f7f7f7;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#efffd6;color:#222}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/cherry/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#ef575a}.AT{background:#ffe3e3;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#942e06;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/cherry/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/cherry/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/cherry/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#942e06}.oH,.oI{background:#efffd6;padding:3px 4px 3px 6px;border:1px solid #efffd6!important}.oE{background:url(images/2/5/cherry/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/cherry/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #ffe3e3;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/cherry/icons7.png) no-repeat -100px -80px}.oB{background:#efffd6}.oK{border-top:1px solid #ffe3e3}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#efffd6;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #efffd6}.qk{color:#942e06;font-size:80%;padding-left:22px}.ql{color:#ffa414}.pk .qk .p9{font-weight:bold;color:#fff;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#942e06;text-decoration:none}.pz .k{background:#ef575a}.qj .k{background:#ef575a}.qk .p9,.qk .qh{color:#942e06}.pO .p9{color:#942e06}.pT{color:#942e06}.pz .o{background:#ef575a;height:4px;top:inherit}.pz .n{background:#ef575a}.pz .h{background:#ef575a;height:4px}.pz .m{background:#ef575a}.pz .q{background:#ef575a;height:4px;margin-top:inherit}.pz .j{background:#ef575a;height:4px}.pz .i{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#ef575a;height:4px;top:inherit}.qj .n{background:#ef575a}.qj .h{background:#ef575a;height:4px}.qj .m{background:#ef575a}.qj .q{background:#ef575a;height:4px;margin-top:inherit}.qj .j{background:#ef575a;height:4px}.qj .i{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=ef575a&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/cherry/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#942e06;text-decoration:none}.pt{background-color:#fff;border:#ffe3e3 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#ffe3e3}.xE .l,.xE .ph{background-color:#ef575a}.pU{text-align:right;font-size:70%;color:#942e06;padding:4px 7px 4px 0;background-color:#fff;margin:0}.r .l,.r .k{background:#ffe3e3}.r .o{background:#ffe3e3;height:4px;top:inherit}.r .n{background:#ffe3e3}.r .m{background:#ffe3e3;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat -4px 0}.pS .h{background:#ffe3e3}.pS .i{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff;border-color:#ffe3e3}.t .pu{padding-bottom:3px;background:none}.t .l{background:#ffe3e3}.t .pU{color:#942e06;background-color:#fff}.t .r .l,.t .r .k{background:#ffe3e3}.t .r .o{background:#ffe3e3;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#ffe3e3}.t .r .n{background:#ffe3e3}.t .r .p{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#fff;border-color:#ffe3e3}.t .oB{background-color:#efffd6}.t .oK{border-top-color:#ffe3e3}.pO{color:#942e06;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#ffe3e3}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#ffe3e3}.s .oy{background:#f7f7f7;color:#000}.s .oB{background:#efffd6;color:#222}.s .r .l,.s .r .k{background:#ffe3e3}.s .r .o{background:#ffe3e3;height:4px;top:inherit}.s .r .m{background:#ffe3e3}.s .r .n{background:#ffe3e3}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #ffe3e3;background-color:#fff}.pY .h{background:#ffe3e3}.pY .r .p{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=ffe3e3&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=ffe3e3&w=3&h=3) no-repeat -3px -3px}.qo .l{background-color:#ffe3e3}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/cherry/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/cherry/icons7.png) no-repeat -60px -20px}a.gb1.qq,a.gb3.qq{color:#942e06!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#942e06!important}a.gb2.qq:hover{color:#222!important;background:#efffd6!important}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#fff url(images/2/5/cherry/bg-main.png) 0 0 repeat;color:#000;padding:0 6px}.a0{background:#ffe66b;color:#000;padding:0 6px}.a5{font-size:70%;color:#942e06;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#942e06}.aJ .a5{color:#942e06}.bR{font:9px verdana,arial,sans-serif;color:#942e06;text-decoration:underline;cursor:pointer}.a7,.a8 .e{color:#942e06}.aK .aI{color:#000}.bE{color:#ffa414}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#000;background:#ffe66b;border:1px solid #ccc;font-weight:bold}.aH .e{color:#942e06}.bA{color:#942e06;cursor:default}.bB{color:#942e06;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#942e06;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#942e06}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#efffd6 none repeat scroll 0!important}.bT{font-size:80%;color:#ffa414}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#b4ef57;margin:0!important}.aK .o{background:#b4ef57;height:4px;top:inherit}.aK .m,.b .m{background:#b4ef57}.aK .n{margin-left:5px!important;background:#b4ef57;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat -4px 0}.b .o{background:#b4ef57;height:4px;top:inherit}.b .h{background:#b4ef57;height:4px}.b .m{background:#b4ef57}.b .n{background:#b4ef57}.b .p{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat 0 0}.b .q{background:#b4ef57}.b .i{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=b4ef57&w=4&h=4) no-repeat -4px -4px}.b .e{color:#942e06}.b .k{background-color:#efffd6}.aJ .k{background:#fac8a5;margin:0!important}.aJ .o{background:#fac8a5;height:4px;top:inherit}.aJ .m,.a .m{background:#fac8a5}.aJ .n{background:#fac8a5;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px 0}.a .e{color:#942e06}.a .o{background:#fac8a5;height:4px;top:inherit}.a .h{background:#fac8a5;height:4px}.a .k{background-color:#faf3dc}.a .m{background:#fac8a5}.a .n{background:#fac8a5}.a .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0}.a .q{background:#fac8a5}.a .i{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px -4px}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.yb{background-color:#efffd6;color:#222}.x8{text-decoration:underline;cursor:pointer;color:#942e06}.yb .x8{color:#942e06}.ya .e,.x9{color:#942e06}.yd .x8,.yd .x9{color:#942e06}.x2{color:#942e06;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#942e06}.z .yC .e{color:#942e06}.B .yU{color:#942e06}.B .yC .e{color:#942e06}.A .yU{color:#942e06}.A .yC .e{color:#942e06}.C .yU{color:#942e06}.C .yC .e{color:#942e06}.x0{color:#942e06;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#942e06}.xH{color:#942e06;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DEDEDE solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#f7f7f7;color:#444}.x7{color:#222;background:#efffd6}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/cherry/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/cherry/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/cherry/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/cherry/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#942e06}.yQ{background:#efffd6}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#ffe66b;border:1px solid #ccc;font-size:80%;color:#000;padding:10px}.Ad{color:#942e06;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #efffd6}.lR{background:url(images/2/5/cherry/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/cherry/vimages7.png) repeat-y -12px 0}.mn .l8{color:#942e06!important}.mi{color:#ffa414}.mo,.l9{color:#942e06}.l8{color:#942e06;text-decoration:underline;cursor:pointer}.l6 .e{color:#942e06}.l7{background:#ffe66b;color:#000;font-weight:bold}.tE{text-decoration:underline;color:#942e06;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #942e06;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#942e06;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/cherry/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#efffd6;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/cherry/icons7.png) no-repeat -100px -80px}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tq .lJ{background-color:#ef575a}.tq .lN{background-color:#ef575a}.iI{background:#ffe3e3;padding:6px 0 5px 6px}.iE{background:#ffe3e3;padding:7px 0 5px 6px}.C .iI{background:#eee}.C .iE{background:#eee}.B .iI{background:#efffd6}.B .iE{background:#efffd6}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/cherry/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#942e06}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#efffd6}.h1,.iD{color:#942e06;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#942e06}.gY{color:#000;background:#ffa414}.gX{color:#fff}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#efffd6}.gR{margin:1px 0 0 0;color:#942e06}.hg{width:auto;overflow:hidden;background:#efffd6}.g8{background:url(images/2/5/cherry/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/cherry/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/cherry/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/cherry/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/cherry/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/cherry/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/cherry/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/cherry/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/cherry/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#efffd6;color:#222}.ii a{color:#942e06}.ho a{color:#942e06}.hr a{color:#942e06}.hv{float:left;border:2px solid #ef575a;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/cherry/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#efffd6;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/cherry/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/cherry/icons7.png) no-repeat 0 -40px}.hE{color:#942e06;padding-right:4px;padding-left:4px;white-space:nowrap}.iz .o{background:#ffe3e3 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#ffe3e3 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#ffe3e3 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#ffe3e3 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#ffe3e3 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#ffe3e3 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#ffe3e3 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#ffe3e3 url('images/2/card-ex-bl.gif') no-repeat top left}.id .il,.iW{background:#efffd6}.A9{font-size:80%;color:#ffa414}.qr .gA{background:#ffe3e3 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#ffe3e3 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#942e06;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#942e06}.hk span{cursor:pointer;color:#942e06;white-space:nowrap}.iC .hk span{color:#942e06}.z .h0 .e{color:#942e06}.C .h0 .e{color:#942e06}.B .h0 .e{color:#942e06}.A .h0 .e{color:#942e06}.iT{color:#942e06;cursor:pointer}.iX{color:#000}.u7{color:#942e06;text-decoration:underline;cursor:pointer}.u6:visited{color:#942e06}a.u6{color:#ef575a}.vd{color:#942e06;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#ffe3e3;padding:0 4px}.nN8jRb .goog-palette-cell-hover{background:#efffd6}.el,.dP,.dU{color:#942e06;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#ffe3e3 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#ffe3e3}.eh{background:#ffe3e3}.eI{background:url(images/2/5/cherry/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#ffe3e3;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/cherry/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#942e06}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#942e06}.dN{color:#ffa414;font-weight:bold}.dQ{border:solid 1px #999;background:#fff;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #ffe66b!important;margin:0!important}.fM .vi{background:#ffa414}.fM .vh{background:#ffa414;color:#fff;font-weight:bold;padding:0;margin:0}.fM .vj{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat 0 0;background-color:transparent}.fM .vk{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat -4px 0;background-color:transparent}.fM .vf{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat 0 -4px;background-color:transparent}.fM .vg{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat -4px -4px;background-color:transparent}.e9{border:1px solid;border-color:#ffe3e3 #ccc #ccc #ffe3e3}.eW,.e7{border:1px solid;border-color:#ccc #ffe3e3 #ffe3e3 #ccc}.e7{background-color:#efffd6}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#942e06;white-space:nowrap}.wY{background:url(images/2/5/cherry/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#942e06;cursor:pointer}.ew{color:#ffa414}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#efffd6;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/cherry/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#efffd6;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#000;padding:3px}.fx .goog-menuitem-highlight{background:#efffd6;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/cherry/icons7.png) no-repeat -100px -80px}.fy{margin-top:2px;background-color:#efffd6;border-width:1px 0;font-size:80%}.fz{color:#942e06;text-decoration:underline;font-weight:bold}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#942e06;vertical-align:baseline}.mL{background:url(images/2/5/cherry/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/cherry/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/cherry/icons7.png) no-repeat -80px -40px}.mC{background-color:#ffe3e3}.mC .mG{text-decoration:none;color:#942e06}.manager-page .frame{background-color:#ffe3e3;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #ffe3e3}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #ef575a;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#ffe66b;color:#000}.manager-page .message.error{background-color:#ffa414;color:#000}.manager-page .loading{background-color:#ffe66b;color:#000;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#000;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#efffd6}.cmgr-toolbar{height:32px;background-color:#ffe3e3;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #ef575a;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#942e06}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #ef575a;padding:10px 0 5px}.cmgr-contacts-list-actions .cmgr-link{color:#942e06}.cmgr-contact-pane .cmgr-link{color:#942e06}.cmgr-contact-pane .contact-banner{border-top:1px solid #ffe3e3;border-bottom:1px solid #ffe3e3}.cmgr-domain-contact-label{padding:5px 7px;color:#000;border-bottom:1px solid #ccc;font-weight:bold;background-color:#ffe66b}.cmgr-domain-contact-label .link{color:#942e06}.cmgr-edit-interleave-label{padding:7px;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#ffe66b}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#ffe3e3}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#efffd6}.manager-page hr{background-color:#ffe3e3}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#942e06;color:#000;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#f7f7f7}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#000;background-color:#ffe66b}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#efffd6;color:#222}.cmgr-hr-divider{background-color:#ffe3e3;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#efffd6}.checkable-list .selected{background-color:#ef575a;overflow:hidden}.checkable-list .preselect{background-color:#efffd6}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #ffe3e3;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#efffd6}.group-list .preselect{background-color:#efffd6}.group-list .selected{background-color:#ef575a}.group-list hr.header{background-color:#ffe3e3;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#E1AD89}.lo .o{background:#E1AD89;height:3px;top:inherit}.lo .n{background:#E1AD89}.lo .m{background:#E1AD89}.lo .q{background:url(rc?a=af&c=E1AD89&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=E1AD89&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#ef575a}.lp .o{background:#ef575a;height:3px;top:inherit}.lp .n{background:#ef575a}.lp .m{background:#ef575a}.lp .q{background:url(rc?a=af&c=ef575a&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=ef575a&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#E1AD89;padding:2px}.ln{background:#ef575a}.kv{background:url(images/2/5/cherry/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/cherry/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/cherry/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/cherry/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#FFE2CE}.ky,.kW,.jc{background-color:#FF9092}.kt,.jA,.nl{color:#942e06;text-decoration:underline;cursor:pointer}.kk a,.kq a{color:#942e06}.kg{color:#ffa414}.jV{margin:0;border:2px solid #efffd6}.jW{margin:0;border:2px solid #ffe66b}.js{color:#ffa414}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #efffd6}.jF{border:solid 1px #888;background-color:#f7f7f7;color:#000}.jB{background:url(images/2/5/cherry/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/cherry/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jN{background-color:#efffd6;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#efffd6;color:#222}.jR{background:url(images/2/5/cherry/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/cherry/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #ffe3e3;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #efffd6}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker-highlighted{background-color:#efffd6}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jZ{background-color:#efffd6}.ll{color:#ffa414;font-weight:bold}.fX .goog-flat-button{color:#942e06;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#942e06}.vD{color:#222;background-color:#efffd6}.vE{background:#ef575a}.vG a{color:#942e06}.uk{width:100%;border-bottom:solid #ffe3e3 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#942e06}.ul{background-color:#efffd6;border-top:1px solid #efffd6;border-bottom:1px solid #efffd6}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #ffe3e3;border-bottom:1px solid #ffe3e3}.uo{border:1px solid #ffe3e3;color:#ffe3e3}.ue a{color:#942e06}.uM{background:url(images/2/5/cherry/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/cherry/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#ffe3e3 solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#ffe3e3 solid 1px;font-size:80%}.uv{color:#000;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#efffd6;color:#222}.uu{color:#942e06;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #ffe3e3;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/cherry/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/cherry/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#efffd6;color:#222}.uW{background-color:#f7f7f7;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #ffe3e3}.dz .cg{color:#942e06}.jU{padding:0 3px}.dv{vertical-align:super;color:#ffa414;font-size:80%}.A5 a{color:#942e06}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #ef575a;background:#fff;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#ef575a;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#942e06;background:#ef575a;font-weight:bold;padding:3px 4px}.goog-date-picker-selected{background:#ffe3e3;color:#000}.v .l{background-color:#fac8a5}.v .k{color:#000;background:#fac8a5}.v .o{background:#fac8a5;height:4px;top:inherit}.v .n{background:#fac8a5;padding:inherit;margin:inherit}.v .h{background:#fac8a5;height:4px}.v .m{background:#fac8a5}.v .q{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=fac8a5&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#942e06;cursor:pointer;white-space:nowrap}.qZ{background:#fac8a5;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#faf3dc;padding:4px}.v9 .fZ{background:#faf3dc;font-size:80%;padding:3px 8px}.v9 .f1{color:#942e06;background:#fac8a5;font-size:80%}.v9 .fY{background:#fac8a5;padding:0}.v7 .fY{background:#fac8a5}.v7 .fZ{background-color:#faf3dc;border:1px solid #fac8a5;border-right:none}.v7 .f1{background:#fac8a5}.tf{background-color:#faf3dc;border:1px solid #fac8a5;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #fac8a5;padding:8px}.r7 td.r5{border-top:2px solid #fac8a5}.r7 a{color:#942e06}.r7 .e{color:#942e06}.rZ{background-color:#fac8a5;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#942e06}.qT{color:#ffa414}.rM .vi,.rM .vh{background-color:#ffa414}.rM .vj{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat 0 0}.rM .vk{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat -4px 0}.rM .vf{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat 0 -4px}.rM .vg{background:url(rc?a=af&c=ffa414&w=4&h=4) no-repeat -4px -4px}.rO{color:#000}.s0{padding:6px;border-bottom:2px solid #fac8a5;font-size:80%}.s1{border-color:#fac8a5;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.sW a{color:#942e06}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #ef575a;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#942e06;cursor:pointer}.sM{background-color:#fac8a5;padding:5px}.sn{border:2px solid #fac8a5;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#942e06;text-decoration:underline}.ri{color:#942e06}.rh{font-weight:bold;color:#ffa414}.rr{color:#ffa414}.sk{border:solid 2px #942e06}.sl{border:solid 2px #faf3dc}.si{background-color:#faf3dc;border:solid 2px #faf3dc;padding:5px;cursor:pointer}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#942e06}.rd{color:#942e06}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#942e06}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#942e06}.cy a{color:#942e06}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#faf3dc;border:9px solid #fac8a5}.oR{background:#fac8a5;color:#000;padding-bottom:8px;font-weight:bold}.oP{color:#ffa414;padding-top:6px;padding-bottom:12px;font-weight:bold}.wL{border:1px solid #b4ef57}.wN .k{background:#b4ef57}.wN .o{background:#b4ef57;height:3px;top:inherit}.wN .n{background:#b4ef57}.wN .m{background:#b4ef57}.wN .q{background:url(rc?a=af&c=b4ef57&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=b4ef57&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#b4ef57}.wO .o{background:#b4ef57;height:3px;top:inherit}.wM{background:#b4ef57;padding:2px}.vT{background:#b4ef57;overflow:auto}.vS{width:100%;background:#efffd6;overflow:hidden}a.vQ{color:#942e06}.vM{background:#ffa414;color:#000}.vN{color:#fff}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#b4ef57;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/cherry/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#efffd6}",
logo: null
},
nightshade: {
name: "Night Shade",
id: "nightshade",
css: ".cP{overflow:visible;background-color:#55688a}.aB,.e,.cg{color:#fff;cursor:pointer}.cP{background:#55688a url(images/2/5/nightshade/ns_bg.gif) repeat-x}.b8 .vi,.b8 .vh{background:#fff7d7;color:#222}.b8 .b9{color:#c60}.b8 .vj{background:url(rc?a=af&c=fff7d7&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=fff7d7&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=fff7d7&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=fff7d7&w=4&h=4) no-repeat -4px -4px}.cd .vi,.cd .vh{background:#f33;color:#fff}.cd .ca,.cd .b9{color:#fff}.cd .vj{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat 0 0}.cd .vk{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat -4px 0}.cd .vf{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat 0 -4px}.cd .vg{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#9eb0cf}.cc .vh{background:#9eb0cf}.cc .ca,.cc .b9{color:#c60}.cc .vj{background:url(rc?a=af&c=9eb0cf&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=9eb0cf&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=9eb0cf&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=9eb0cf&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#222;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#FFBD5D;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#fff}.ly{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#fff7d7}.vX .p{background:#fff7d7}.vX .q{background:#fff7d7}.vX .i{background:url(rc?a=af&c=fff7d7&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=fff7d7&w=4&h=4) no-repeat -4px -4px}.v2{color:#354258}.dF .dG,.d9,.nr{border:1px solid;border-color:#666666 #ccc #ccc #ccc;background-color:#fff;color:#222}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #FFBD5D!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#222;background-color:#f29000;border:1px solid #593500;padding:8px;z-index:501}.aA{position:relative;color:#222;background-color:#ffdca9;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#354258!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#ffdca9!important;color:#222!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #f29000!important}.tr_edit-link-dialog{border:2px solid #f29000!important}.tr_image-dialog{border:2px solid #f29000!important}.tr_dialog{background:#ffdca9!important;color:#222!important}.tr_pseudo-link{color:#354258!important}.tr_dialog-tab-content-explanation-text a{color:#354258!important}.tr_tabbed-pane-tab-content,.tr_tabbed-pane-tabs .tr_selected-tab-in-tabbed-pane{background-color:#fff!important;color:#222!important}.tr_tabbed-pane-tab-label{color:#354258!important}.tr_selected-tab-in-tabbed-pane .tr_tabbed-pane-tab-label{color:#222!important}.ad{color:#c60}.ag{color:#c60;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#c60;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#555;cursor:pointer;text-decoration:underline}.fZ .f0{color:#222;cursor:text;outline:none;-moz-outline:none;text-decoration:none}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#fff7d7}.xa{z-index:1000;border:solid #f33 2px;position:relative}.mq{padding:0 0 5px 2px;height:1.1em;background:#f29000;margin:-2px 0 0 0}.mv{font-size:80%;color:#444;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#354258}.my{color:#444}.mB{float:right;font-size:70%;color:#444;padding:0.3em 1ex 0 2px}.mx,.mz{color:#444}.sX .mx{color:#222}.mr{color:#444}.ms{background-color:#DE8400;color:#FFB74D;border:1px solid #FFB74D}.mu{background-color:#f29000;color:#FFD699;border:1px solid #FFD699}.mt{background-color:#f29000;color:#FFA21A;border:1px solid #FFA21A}.C .mB{color:#222}.C .mv{color:#222}.C .mv .e,.C .mz{color:#354258}.C .my{color:#222}.C .mr{color:#222}.C .mx{color:#222}.B .mq{background:#6f82a5}.B .mB{color:#ccc}.B .ms{background:#566A91;color:#EBEDF2;border-color:#EBEDF2}.B .mu{background:#6f82a5;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#6f82a5;color:#93A2BF;border-color:#93A2BF}.B .mv{color:#ccc}.B .my{color:#ccc}.B .mr{color:#ccc}.B .mx{color:#ccc}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#222;cursor:default;margin-right:4px}.b2{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#222;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#222;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.b6{background:#FFBD5D;color:#222}.A1{padding:6px 0 3px 6px;background:#ffdca9;border-bottom:1px solid #E6C698}.AY{padding:3px 0 6px 6px;background:#ffdca9;border-top:1px solid #E6C698}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AQ{color:#222}.z .AO{color:#354258}.z .AP{color:#354258}.C .AQ{color:#222}.C .AO{color:#354258}.C .AP{color:#354258}.C .A1{background:#eee}.C .AY{background:#eee}.B .AQ{color:#222}.B .AO{color:#354258}.B .AP{color:#354258}.B .A1{background:#9eb0cf}.B .AY{background:#9eb0cf}.A .AQ{color:#222}.A .AO{color:#555}.A .AP{color:#555}.A .A1{background:#fff7d7}.A .AY{background:#fff7d7}.z .l,.y .l{background:#f29000}.z .o,.y .o{background:#f29000;height:4px;top:inherit}.z .h,.y .h{background:#f29000;height:4px}.z .m,.y .m{background:#f29000}.z .n,.y .n{background:#f29000;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#6f82a5}.B .o{background:#6f82a5;height:4px;top:inherit}.B .h{background:#6f82a5;height:4px}.B .m{background:#6f82a5}.B .n{background:#6f82a5;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#ffdca9}.A .o{background:#ffdca9;height:4px;top:inherit}.A .h{background:#ffdca9;height:4px}.A .m{background:#ffdca9}.A .n{background:#ffdca9;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#f29000}.x .o,.AL .o{background:#f29000;height:4px;top:inherit}.x .h{background:#f29000;height:4px}.x .m{background:#f29000}.x .n{background:#f29000;padding:inherit;margin:inherit}.x .p{display:inherit;background:#f29000}.x .q{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f7f7f7;color:#222;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#FFBD5D;color:#222}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/nightshade/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#f29000}.AT{background:#ffdca9;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#354258;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/nightshade/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.D .goog-menu-filter input{border:0;background:#fff;color:#222;font-size:100%;margin:0;width:100%;outline:0!important}.AZ{height:6px;width:7px;background:url(images/2/5/nightshade/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/nightshade/vimages7.png) no-repeat -24px 50%}.ow{background-color:#DAE2F2;font-size:70%}.oJ{text-decoration:underline;color:#55688a}.oH,.oI{background:#FFBD5D;padding:3px 4px 3px 6px;border:1px solid #FFBD5D!important}.oE{background:url(images/2/5/nightshade/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/nightshade/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#DAE2F2;color:#222;visibility:hidden;font-size:100%;border:1px solid #6f82a5;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/nightshade/icons7.png) no-repeat -100px -80px}.oB{background:#FFBD5D}.oK{border-top:1px solid #6f82a5}.pN .goog-menu{position:absolute;z-index:13;color:#222;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#FFBD5D;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #FFBD5D}.qk{color:#fff;font-size:80%;padding-left:22px}.ql{color:#f33}.pk .qk .p9{font-weight:bold;color:#354258;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#354258;text-decoration:none}.pk .qk{color:#354258}.pz .k{background:#f29000}.qj .k{background:#f29000}.qk .p9,.qk .qh{color:#fff}.pO .p9{color:#354258}.pT{color:#55688a}.pz .o{background:#f29000;height:4px;top:inherit}.pz .n{background:#f29000}.pz .h{background:#f29000;height:4px}.pz .m{background:#f29000}.pz .q{background:#f29000;height:4px;margin-top:inherit}.pz .j{background:#f29000;height:4px}.pz .i{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#f29000;height:4px;top:inherit}.qj .n{background:#f29000}.qj .h{background:#f29000;height:4px}.qj .m{background:#f29000}.qj .q{background:#f29000;height:4px;margin-top:inherit}.qj .j{background:#f29000;height:4px}.qj .i{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=f29000&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/nightshade/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#fff;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#fff;text-decoration:none}.pt{background-color:#DAE2F2;border:#6f82a5 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#6f82a5}.xE .l,.xE .ph{background-color:#f29000}.pU{text-align:right;font-size:70%;color:#55688a;padding:4px 7px 4px 0;background-color:#DAE2F2;margin:0}.r .l,.r .k{background:#6f82a5}.r .o{background:#6f82a5;height:4px;top:inherit}.r .n{background:#6f82a5}.r .m{background:#6f82a5;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px 0}.pS .h{background:#6f82a5}.pS .i{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#DAE2F2;border-color:#6f82a5}.t .pu{padding-bottom:3px;background:none}.t .l{background:#6f82a5}.t .pU{color:#55688a;background-color:#DAE2F2}.t .r .l,.t .r .k{background:#6f82a5}.t .r .o{background:#6f82a5;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#6f82a5}.t .r .n{background:#6f82a5}.t .r .p{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#DAE2F2;border-color:#6f82a5}.t .oB{background-color:#FFBD5D}.t .oK{border-top-color:#6f82a5}.pO{color:#354258;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#DAE2F2;border-color:#6f82a5}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#6f82a5}.s .ow{background:#DAE2F2}.s .oy{background:#f7f7f7;color:#222}.s .oB{background:#FFBD5D;color:#222}.s .r .l,.s .r .k{background:#6f82a5}.s .r .o{background:#6f82a5;height:4px;top:inherit}.s .r .m{background:#6f82a5}.s .r .n{background:#6f82a5}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #6f82a5;background-color:#fff}.pY .pt{background-color:#DAE2F2}.pY .p4{color:#222;font-size:80%}.pY .h{background:#6f82a5}.pY .r .p{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#DAE2F2}.qo .l{background-color:#6f82a5}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/nightshade/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/nightshade/icons7.png) no-repeat -60px -20px}.gb1{color:#ccc}a.gb1.qq,a.gb3.qq{color:#f29000!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#55688a!important}a.gb2.qq:hover{color:#222!important;background:#FFBD5D!important}.qp{background:transparent;border-bottom:1px solid #6f82a5;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#55688a url(images/2/5/nightshade/ns_bg.gif) repeat-x;color:#ccc;padding:0 6px}.a0{background:#fff7d7;color:#222;padding:0 6px}.aJ .a5{color:#555}.bR{font:9px verdana,arial,sans-serif;color:#f29000;text-decoration:underline;cursor:pointer}.a8{color:#ccc;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#f29000}.aK .aI{color:#ccc}.aJ .aI{color:#222}.bE{color:#f33}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#222;background:#fff7d7;border:1px solid #ccc;font-weight:bold}.aH .e{color:#c60}.bA{color:#f29000;cursor:default}.bB{color:#f29000;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#55688a;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#55688a}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#FFBD5D none repeat scroll 0!important}.bT{font-size:80%;color:#f33}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#6f82a5;margin:0!important}.aK .o{background:#6f82a5;height:4px;top:inherit}.aK .m,.b .m{background:#6f82a5}.aK .n{margin-left:5px!important;background:#6f82a5;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px 0}.b .o{background:#6f82a5;height:4px;top:inherit}.b .h{background:#6f82a5;height:4px}.b .m{background:#6f82a5}.b .n{background:#6f82a5}.b .p{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 0}.b .q{background:#6f82a5}.b .i{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=6f82a5&w=4&h=4) no-repeat -4px -4px}.b{color:#222}.b .e{color:#354258}.b .k{background-color:#9eb0cf}.aJ .k{background:#ffdca9;margin:0!important}.aJ .o{background:#ffdca9;height:4px;top:inherit}.aJ .m,.a .m{background:#ffdca9}.aJ .n{background:#ffdca9;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat -4px 0}.a{color:#222}.a .e{color:#555}.a .o{background:#ffdca9;height:4px;top:inherit}.a .h{background:#ffdca9;height:4px}.a .m{background:#ffdca9}.a .n{background:#ffdca9}.a .p{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat 0 0}.a .q{background:#ffdca9}.a .i{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat -4px -4px}.yT{color:#222;font-weight:bold}.xK{padding:0}.yR{font-size:80%;color:#222;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#222;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.yb{background-color:#FFBD5D;color:#222}.x8{text-decoration:underline;cursor:pointer;color:#354258}.yb .x8{color:#354258}.ya .e,.x9{color:#354258}.yd .x8,.yd .x9{color:#55688a}.x2{color:#354258;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yV{color:#222}.z .yU{color:#354258}.z .yC .zw{color:#222}.z .yC .e{color:#354258}.B .yV{color:#222}.B .yU{color:#354258}.B .yC .zw{color:#222}.B .yC .e{color:#354258}.A .yV{color:#222}.A .yU{color:#555}.A .yC .zw{color:#222}.A .yC .e{color:#555}.C .yV{color:#222}.C .yU{color:#354258}.C .yC .zw{color:#222}.C .yC .e{color:#354258}.zq{table-layout:fixed;cursor:default;width:100%;border-spacing:0;padding:0;background-color:#fff;color:#222}.x0{color:#354258;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#354258}.xH{color:#354258;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DEDEDE solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.zA{color:#222;cursor:pointer;padding:4 1ex}.yO{background:#f7f7f7;color:#444}.zE{color:#222;background:#fff}.x7{color:#222;background:#FFBD5D}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/nightshade/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/nightshade/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/nightshade/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#354258}.x7 .y2{color:#222}.yQ{background:#FFBD5D}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#fff7d7;border:1px solid #ccc;font-size:80%;color:#222;padding:10px}.Ad{color:#c60;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #FFBD5D}.lR{background:url(images/2/5/nightshade/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/nightshade/vimages7.png) repeat-y -12px 0}.mn{color:#ccc}.mn .l8{color:#fff!important}.mi{color:#f33}.mj{color:#f29000}.mp,.ma{font-size:70%;color:#ccc}.mo,.l9{color:#fff}.l8{color:#fff;text-decoration:underline;cursor:pointer}.l3{color:#ccc}.mb{color:#ccc;padding-top:4px}.l6{font-size:70%;color:#ccc;padding-top:12px}.l6 .e{color:#fff}.l7{background:#fff7d7;color:#222;font-weight:bold}.mh{color:#ccc;font-weight:bold}.mm{color:#ccc}.tE{text-decoration:underline;color:#354258;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #354258;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#354258;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/nightshade/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#222;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#FFBD5D;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/nightshade/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#f7f7f7;color:#222;border-bottom:1px solid #ccc;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tu td{vertical-align:top;margin:0;color:#222}.tq .lJ{background-color:#f29000}.tq .lN{background-color:#f29000}.iI{background:#ffdca9;padding:6px 0 5px 6px}.iE{background:#ffdca9;padding:7px 0 5px 6px}.C .iI{background:#eee}.C .iE{background:#eee}.B .iI{background:#9eb0cf}.B .iE{background:#9eb0cf}.hx{color:#222;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/nightshade/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#354258}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#FFBD5D}.h1,.iD{color:#354258;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#354258}.gY{color:#fff;background:#f33}.gX{color:#fff}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#FFBD5D}.gR{margin:1px 0 0 0;color:#354258}.hg{width:auto;overflow:hidden;background:#FFBD5D}.g8{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/nightshade/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/nightshade/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/nightshade/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/nightshade/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/nightshade/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/nightshade/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/nightshade/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#222;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#FFBD5D;color:#222}.ii a{color:#354258}.ho a{color:#354258}.hr a{color:#354258}.hv{float:left;border:2px solid #f29000;padding:5px}.hs .goog-menu-button{color:#222;background:transparent;border:1px solid #888;white-space:nowarp;padding:2px 4px}.h6{height:7px;width:7px;background:url(images/2/5/nightshade/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#222;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#FFBD5D;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/nightshade/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/nightshade/icons7.png) no-repeat 0 -40px}.hE{color:#55688a;padding-right:4px;padding-left:4px;white-space:nowrap}.g{color:#222}.iz .o{background:#ffdca9 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#ffdca9 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#ffdca9 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#ffdca9 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#ffdca9 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#ffdca9 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#ffdca9 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#ffdca9 url('images/2/card-ex-bl.gif') no-repeat top left}.ha{font-family:arial,sans-serif;font-size:100%;margin:12px 5px 5px 10px;padding:0;color:#222;background:inherit;border-right:inherit}.id .il,.iW{background:#FFBD5D}.A9{font-size:80%;color:#f33}.qr .gA{background:#ffdca9 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#ffdca9 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#354258;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#354258}.hk span{cursor:pointer;color:#354258;white-space:nowrap}.iC .hk span{color:#354258}.z .h0{color:#222}.z .h0 .e{color:#354258}.C .h0{color:#222}.C .h0 .e{color:#354258}.B .h0{color:#222}.B .h0 .e{color:#354258}.A .h0{color:#222}.A .h0 .e{color:#555}.iU{font-size:80%;color:#222}.iT{color:#354258;cursor:pointer}.u9,.u8{padding-top:10px;color:#222;text-align:center}.u7{color:#354258;text-decoration:underline;cursor:pointer}.u6:visited{color:#354258}.vb{color:#222;margin:12px 0}a.u6{color:#354258}.vd{color:#354258;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#ffdca9;padding:0 4px}.nN8jRb .goog-palette-cell-hover{background:#FFBD5D}.el,.dP,.dU{color:#354258;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#ffdca9 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#ffdca9}.eh{background:#ffdca9}.d2{position:relative;color:#222;font-size:80%;margin-left:6px}.eI{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#ffdca9;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#222;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/nightshade/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#354258}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#354258}.dT{color:#222}.dN{color:#f33;font-weight:bold}.dQ{border:solid 1px #999;background:#55688a;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #fff7d7!important;margin:0!important}.fM .vi{background:#f33}.fM .vh{background:#f33;color:#fff;font-weight:bold;padding:0;margin:0}.fM .vj{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat 0 0;background-color:transparent}.fM .vk{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat -4px 0;background-color:transparent}.fM .vf{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat 0 -4px;background-color:transparent}.fM .vg{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat -4px -4px;background-color:transparent}.e9{border:1px solid;border-color:#ffdca9 #ccc #ccc #ffdca9}.eW,.e7{border:1px solid;border-color:#ccc #ffdca9 #ffdca9 #ccc}.e7{background-color:#FFBD5D}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#55688a;white-space:nowrap}.wY{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#55688a;cursor:pointer}.ew{color:#f33}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#222;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#FFBD5D;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/nightshade/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#FFBD5D;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#222;padding:3px}.fx .goog-menuitem-highlight{background:#FFBD5D;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/nightshade/icons7.png) no-repeat -100px -80px}.fv .goog-palette-cell-selected .goog-palette-colorswatch{border:1px solid #222;color:#fff}.fy{margin-top:2px;background-color:#FFBD5D;border-width:1px 0;font-size:80%}.fz{color:#354258;text-decoration:underline;font-weight:bold}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#55688a;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#222}.mL{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/nightshade/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/nightshade/icons7.png) no-repeat -80px -40px}.mC{background-color:#ffdca9}.mC .mG{text-decoration:none;color:#354258}.manager-page .frame{background-color:#ffdca9;color:#222;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #ffdca9}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#222;border:1px solid #f29000;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#fff7d7;color:#222}.manager-page .message.error{background-color:#f33;color:#fff}.manager-page .loading{background-color:#fff7d7;color:#222;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#222;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#222;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#FFBD5D}.cmgr-toolbar{height:32px;background-color:#ffdca9;color:#222;vertical-align:middle;overflow-x:visible}.cmgr-toolbar span{color:#222}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#222;border:1px solid #f29000;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#354258}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #f29000;padding:10px 0 5px}.cmgr-editbar{background-color:#f7f7f7;color:#222;border-top:1px solid #ccc;border-bottom:1px solid #ccc;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#f7f7f7;color:#222;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#55688a}.group-list{font-family:arial,sans-serif;color:#222}.checkable-list{padding:3px;font-family:arial,sans-serif;color:#222}.cmgr-contact-pane{font-family:arial,sans-serif;font-size:80%;background-color:#fff;color:#222}.cmgr-contact-pane .group-detail{color:#222}.cmgr-contact-pane .desc{color:#222;font-weight:bold}.cmgr-contact-pane .cmgr-link{color:#354258}.cmgr-contact-pane .contact-banner{border-top:1px solid #ffdca9;border-bottom:1px solid #ffdca9}.cmgr-domain-contact-label{padding:5px 7px;color:#222;border-bottom:1px solid #ccc;font-weight:bold;background-color:#fff7d7}.cmgr-domain-contact-label .link{color:#c60}.cmgr-edit-interleave-label{padding:7px;color:#222;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#fff7d7}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#ffdca9}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#222;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#FFBD5D}.manager-page hr{background-color:#ffdca9}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#222;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#354258;color:#222;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#222;background-color:#f7f7f7}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#222;background-color:#fff7d7}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem{color:#222;list-style:none;margin:0;padding:4px 4px 4px 4px;white-space:nowrap}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#FFBD5D;color:#222}.cmgr-hr-divider{background-color:#ffdca9;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#FFBD5D}.checkable-list .selected{background-color:#f29000;overflow:hidden}.checkable-list .selected .text{color:#354258;font-weight:bold}.checkable-list .preselect{background-color:#FFBD5D}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #ffdca9;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#FFBD5D}.group-list .preselect{background-color:#FFBD5D}.group-list .selected{background-color:#f29000}.group-list .selected .text{font-weight:bold;color:#354258}.group-list .selected .count{color:#354258}.group-list hr.header{background-color:#ffdca9;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#E6C18D}.lo .o{background:#E6C18D;height:3px;top:inherit}.lo .n{background:#E6C18D}.lo .m{background:#E6C18D}.lo .q{background:url(rc?a=af&c=E6C18D&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=E6C18D&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#f29000}.lp .o{background:#f29000;height:3px;top:inherit}.lp .n{background:#f29000}.lp .m{background:#f29000}.lp .q{background:url(rc?a=af&c=f29000&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=f29000&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#E6C18D;padding:2px}.ln{background:#f29000}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#000;font-weight:bold;margin-left:2px}.lp .kQ{color:#000}.kv{background:url(images/2/5/nightshade/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/nightshade/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/nightshade/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#FFEBCF}.ky,.kW,.jc{background-color:#FFAC33}.kt,.jA,.nl{color:#354258;text-decoration:underline;cursor:pointer}.ko{color:#222;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #ccc;border-right:1px solid #ccc;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#354258}.kg{color:#f33}.jr{padding:4px 0;color:#222;font-size:70%;overflow:auto}.jT{position:relative;border:1px solid;border-color:#666666 #ccc #ccc #ccc;margin:1px;color:#222;background-color:#fff;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #FFBD5D}.jW{margin:0;border:2px solid #fff7d7}.js{color:#f33}.jx{color:#222}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#222;text-decoration:none}.jE{border:1px solid #FFBD5D}.jF{border:solid 1px #888;background-color:#f7f7f7;color:#222}.jB{background:url(images/2/5/nightshade/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/nightshade/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#f7f7f7;color:#222;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jN{background-color:#FFBD5D;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#FFBD5D;color:#222}.jR{background:url(images/2/5/nightshade/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/nightshade/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #ffdca9;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #FFBD5D}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker-highlighted{background-color:#FFBD5D}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jZ{background-color:#FFBD5D}.ll{color:#f33;font-weight:bold}.fX .goog-flat-button{color:#354258;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#354258}.vC{white-space:nowrap;color:#222;cursor:pointer;background-color:#DAE2F2;width:100%;line-height:1.4em}.vI td{border-top:1px solid #DAE2F2}.vD{color:#222;background-color:#FFBD5D}.vE{background:#f29000}.vs{color:#000;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#000}.vG a{color:#354258}.uk{width:100%;border-bottom:solid #B8BECC 1px;background-color:#DAE2F2;font-size:80%;cursor:pointer;padding-top:5px}.uC{color:#222;white-space:nowrap;text-overflow:ellipsis;margin-top:5px}.ul .cg{color:#354258}.ul{background-color:#FFBD5D;border-top:1px solid #FFBD5D;border-bottom:1px solid #FFBD5D}.ud,.um{color:#222;background-color:#DAE2F2;border-top:1px solid #6f82a5;border-bottom:1px solid #6f82a5}.uo{border:1px solid #6f82a5;color:#6f82a5}td.uK{border-right:#DAE2F2 solid 1px}td.uh,td.uO{border:#DAE2F2 solid 1px}.ue a{color:#354258}.uM{background:url(images/2/5/nightshade/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#6f82a5 solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#6f82a5 solid 1px;font-size:80%}.uv{color:#222;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#FFBD5D;color:#222}.uu{color:#354258;text-decoration:underline;cursor:pointer}.dF{background-color:#DAE2F2}.dI{border:solid 1px #6f82a5;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/nightshade/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/nightshade/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#FFBD5D;color:#222}.uW{background-color:#f7f7f7;color:#222}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#222;background-color:#DAE2F2;font-size:80%;border-bottom:1px solid #B8BECC}.dz .cg{color:#354258}.do{background:#DAE2F2 url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.jU{padding:0 3px}.dv{vertical-align:super;color:#f33;font-size:80%}.A5 a{color:#354258}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #f29000;background:#55688a;color:#222;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#f29000;color:#222;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#354258;background:#f29000;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#f7f7f7;color:#222;cursor:pointer}.goog-date-picker-selected{background:#ffdca9;color:#222}.modal-dialog-bg{position:absolute;top:0;left:0;background-color:#222}.v .l{background-color:#ffdca9}.v .k{color:#222;background:#ffdca9}.v .o{background:#ffdca9;height:4px;top:inherit}.v .n{background:#ffdca9;padding:inherit;margin:inherit}.v .h{background:#ffdca9;height:4px}.v .m{background:#ffdca9}.v .q{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=ffdca9&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#555;cursor:pointer;white-space:nowrap}.qZ{background:#ffdca9;color:#222;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.v9 .f1{color:#555;background:#ffdca9;font-size:80%}.v9 .fY{background:#ffdca9;padding:0}.v7 .fY{background:#ffdca9}.v7 .fZ{background-color:#fff7d7;border:1px solid #ffdca9;border-right:none}.v7 .f1{background:#ffdca9}.tf{background-color:#fff7d7;border:1px solid #ffdca9;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #ffdca9;padding:8px}.r7 td.r5{border-top:2px solid #ffdca9}.r7 a{color:#555}.r7 .e{color:#555}.rZ{background-color:#ffdca9;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#555}.qT{color:#f33}.rM .vi,.rM .vh{background-color:#f33}.rM .vj{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat 0 0}.rM .vk{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat -4px 0}.rM .vf{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat 0 -4px}.rM .vg{background:url(rc?a=af&c=f33&w=4&h=4) no-repeat -4px -4px}.s0{padding:6px;border-bottom:2px solid #ffdca9;font-size:80%}.ti{color:#222;float:right;padding:8px;font-size:80%}.s1{border-color:#ffdca9;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s5{color:#222;font-size:80%}.sW a{color:#555}.lpcd{padding:15px 20px;position:absolute;color:#222;border:2px solid #f29000;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#555;cursor:pointer}.sM{background-color:#ffdca9;padding:5px}.sn{border:2px solid #ffdca9;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#555;text-decoration:underline}.ri{color:#555}.rh{font-weight:bold;color:#f33}.rr{color:#f33}.ru{color:#222}.sk{border:solid 2px #555}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#555}.sf{color:#222}.rd{color:#555}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#55688a}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#55688a}.cy a{color:#354258}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#fff7d7;border:9px solid #ffdca9}.oR{background:#ffdca9;color:#222;padding-bottom:8px;font-weight:bold}.oQ{font-size:80%;color:#222;padding:24px 12px 12px 12px}.oP{color:#f33;padding-top:6px;padding-bottom:12px;font-weight:bold}.wL{border:1px solid #6f82a5}.wN .k{background:#6f82a5}.wN .o{background:#6f82a5;height:3px;top:inherit}.wN .n{background:#6f82a5}.wN .m{background:#6f82a5}.wN .q{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=6f82a5&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#6f82a5}.wO .o{background:#6f82a5;height:3px;top:inherit}.wM{background:#6f82a5;padding:2px}.vT{background:#6f82a5;overflow:auto}.vS{width:100%;background:#9eb0cf;overflow:hidden}.vL,.vV{color:#222;padding:4px 6px;font-size:80%;position:relative}.vM{background:#f33;color:#fff}.vN{color:#fff}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#6f82a5;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/nightshade/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#FFBD5D}.sam .goog-menuitem-content{color:#222}",
logo: null
},
medsoft: {
name: "Marina",
id: "medsoft",
css: ".cP{overflow:visible;background-color:#82d0f4}.aB,.e,.cg{color:#00477b;cursor:pointer}.cP{background:#82d0f4 url(images/2/5/medsoft/bg-main.gif) repeat-x}.b8 .b9{color:#00477b}.cc .vi{background:#52adf0}.cc .vh{background:#52adf0}.cc .ca,.cc .b9{color:#00477b}.cc .vj{background:url(rc?a=af&c=52adf0&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=52adf0&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=52adf0&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=52adf0&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#b5dcf9;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#00477b}.ly{color:#00477b;text-decoration:underline;cursor:pointer;white-space:nowrap}.v2{color:#00477b}.dF .dG,.d9,.nr{border:1px solid;border-color:#666666 #ccc #ccc #ccc;background-color:#fff;color:#333}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #b5dcf9!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#333;background-color:#118eea;border:1px solid #063151;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#59b0f0;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#333!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#59b0f0!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #118eea!important}.tr_edit-link-dialog{border:2px solid #118eea!important}.tr_image-dialog{border:2px solid #118eea!important}.tr_dialog{background:#59b0f0!important;color:#000!important}.tr_pseudo-link{color:#333!important}.tr_dialog-tab-content-explanation-text a{color:#333!important}.tr_tabbed-pane-tab-content,.tr_tabbed-pane-tabs .tr_selected-tab-in-tabbed-pane{background-color:#fff!important;color:#333!important}.tr_tabbed-pane-tab-label{color:#DEF1FF!important}.tr_selected-tab-in-tabbed-pane .tr_tabbed-pane-tab-label{color:#333!important}.ad{color:#00477b}.ag{color:#00477b;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#00477b;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#00477b;cursor:pointer;text-decoration:underline}.mq{padding:0 0 5px 2px;height:1.1em;background:#118eea;margin:-2px 0 0 0}.mv{font-size:80%;color:#DEF1FF;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#DEF1FF}.my{color:#DEF1FF}.mB{float:right;font-size:70%;color:#ACDCFF;padding:0.3em 1ex 0 2px}.mx,.mz{color:#DEF1FF}.mr{color:#DEF1FF}.ms{background-color:#007BD6;color:#5FBBFF;border:1px solid #5FBBFF}.mu{background-color:#118eea;color:#ACDCFF;border:1px solid #ACDCFF}.mt{background-color:#118eea;color:#2CA6FF;border:1px solid #2CA6FF}.C .mq{background:#8f9ba1}.C .ms{background:#7D878D;color:#EEEEEE;border-color:#EEEEEE}.C .mu{background:#8f9ba1;color:#FFFFFF;border-color:#FFFFFF}.C .mt{background:#8f9ba1;color:#B8BABB;border-color:#B8BABB}.C .mv{color:#283c45}.C .mv .e,.C .mz{color:#283c45}.C .my{color:#283c45}.C .mr{color:#283c45}.C .mx{color:#283c45}.B .mq{background:#00477b}.B .mB{color:#fff}.B .ms{background:#003B67;color:#3C8CC8;border-color:#3C8CC8}.B .mu{background:#00477b;color:#99D4FF;border-color:#99D4FF}.B .mt{background:#00477b;color:#0F5C95;border-color:#0F5C95}.B .mv{color:#59b0f0}.B .mv .e,.B .mz{color:#59b0f0}.B .my{color:#59b0f0}.B .mr{color:#59b0f0}.B .mx{color:#59b0f0}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.b6{background:#b5dcf9;color:#222}.A1{padding:6px 0 3px 6px;background:#59b0f0;border-bottom:1px solid #509DD7}.AY{padding:3px 0 6px 6px;background:#59b0f0;border-top:1px solid #509DD7}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#DEF1FF}.z .AP{color:#DEF1FF}.C .AO{color:#00477b}.C .AP{color:#00477b}.C .A1{background:#fff}.C .AY{background:#fff}.B .AQ{color:#00477b}.B .AO{color:#fff}.B .AP{color:#fff}.B .A1{background:#52adf0}.B .AY{background:#52adf0}.A .AO{color:#00477b}.A .AP{color:#00477b}.A .A1{background:#f2eedd}.A .AY{background:#f2eedd}.z .l,.y .l{background:#118eea}.z .o,.y .o{background:#118eea;height:4px;top:inherit}.z .h,.y .h{background:#118eea;height:4px}.z .m,.y .m{background:#118eea}.z .n,.y .n{background:#118eea;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#8f9ba1}.C .o{background:#8f9ba1;height:4px;top:inherit}.C .h{background:#8f9ba1;height:4px}.C .m{background:#8f9ba1}.C .n{background:#8f9ba1;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=8f9ba1&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=8f9ba1&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=8f9ba1&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=8f9ba1&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#00477b}.B .o{background:#00477b;height:4px;top:inherit}.B .h{background:#00477b;height:4px}.B .m{background:#00477b}.B .n{background:#00477b;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#f2c88d}.A .o{background:#f2c88d;height:4px;top:inherit}.A .h{background:#f2c88d;height:4px}.A .m{background:#f2c88d}.A .n{background:#f2c88d;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#118eea}.x .o,.AL .o{background:#118eea;height:4px;top:inherit}.x .h{background:#118eea;height:4px}.x .m{background:#118eea}.x .n{background:#118eea;padding:inherit;margin:inherit}.x .p{display:inherit;background:#118eea}.x .q{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f7f7f7;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#b5dcf9;color:#222}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/medsoft/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#118eea}.AT{background:#59b0f0;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#DEF1FF;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/medsoft/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.D .goog-menu-filter input{border:0;background:#fff;color:#333;font-size:100%;margin:0;width:100%;outline:0!important}.AZ{height:6px;width:7px;background:url(images/2/5/medsoft/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/medsoft/vimages7.png) no-repeat -24px 50%}.ow{background-color:#D4F2FF;font-size:70%}.oJ{text-decoration:underline;color:#00477b}.oH,.oI{background:#b5dcf9;padding:3px 4px 3px 6px;border:1px solid #b5dcf9!important}.oE{background:url(images/2/5/medsoft/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/medsoft/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#D4F2FF;color:#333;visibility:hidden;font-size:100%;border:1px solid #59b0f0;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/medsoft/icons7.png) no-repeat -100px -80px}.oB{background:#b5dcf9}.oK{border-top:1px solid #59b0f0}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#b5dcf9;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #b5dcf9}.qk{color:#00477b;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#DEF1FF;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#283c45;text-decoration:none}.pk .qk{color:#DEF1FF}.pz .k{background:#118eea}.qj .k{background:#118eea}div.qi .k{background:#8f9ba1}.qk .p9,.qk .qh{color:#00477b}.pO .p9{color:#333}.pT{color:#00477b}.pz .o{background:#118eea;height:4px;top:inherit}.pz .n{background:#118eea}.pz .h{background:#118eea;height:4px}.pz .m{background:#118eea}.pz .q{background:#118eea;height:4px;margin-top:inherit}.pz .j{background:#118eea;height:4px}.pz .i{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#118eea;height:4px;top:inherit}.qj .n{background:#118eea}.qj .h{background:#118eea;height:4px}.qj .m{background:#118eea}.qj .q{background:#118eea;height:4px;margin-top:inherit}.qj .j{background:#118eea;height:4px}.qj .i{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=118eea&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#8f9ba1;height:4px;top:inherit}.qi .n{background:#8f9ba1}.qi .h{background:#8f9ba1;height:4px}.qi .m{background:#8f9ba1}.qi .q{background:#8f9ba1;height:4px;margin-top:inherit}.qi .j{background:#8f9ba1;height:4px}.qi .i{background:url(rc?a=af&c=8f9ba1&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=8f9ba1&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/medsoft/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#DEF1FF;text-decoration:none}.pt{background-color:#D4F2FF;border:#59b0f0 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#59b0f0}.xE .l,.xE .ph{background-color:#118eea}.pU{text-align:right;font-size:70%;color:#00477b;padding:4px 7px 4px 0;background-color:#D4F2FF;margin:0}.r .l,.r .k{background:#59b0f0}.r .o{background:#59b0f0;height:4px;top:inherit}.r .n{background:#59b0f0}.r .m{background:#59b0f0;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat -4px 0}.pS .h{background:#59b0f0}.pS .i{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#D4F2FF;border-color:#59b0f0}.t .pu{padding-bottom:3px;background:none}.t .l{background:#59b0f0}.t .pU{color:#00477b;background-color:#D4F2FF}.t .r .l,.t .r .k{background:#59b0f0}.t .r .o{background:#59b0f0;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#59b0f0}.t .r .n{background:#59b0f0}.t .r .p{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#D4F2FF;border-color:#59b0f0}.t .oB{background-color:#b5dcf9}.t .oK{border-top-color:#59b0f0}.pO{color:#333;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#D4F2FF;border-color:#59b0f0}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#59b0f0}.s .ow{background:#D4F2FF}.s .oy{background:#f7f7f7;color:#000}.s .oB{background:#b5dcf9;color:#222}.s .r .l,.s .r .k{background:#59b0f0}.s .r .o{background:#59b0f0;height:4px;top:inherit}.s .r .m{background:#59b0f0}.s .r .n{background:#59b0f0}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #59b0f0;background-color:#fff}.pY .pt{background-color:#D4F2FF}.pY .p4{color:#333;font-size:80%}.pY .h{background:#59b0f0}.pY .r .p{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=59b0f0&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=59b0f0&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#D4F2FF}.qo .l{background-color:#59b0f0}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/medsoft/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/medsoft/icons7.png) no-repeat -60px -20px}a.gb1.qq,a.gb3.qq{color:#00477b!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#00477b!important}a.gb2.qq:hover{color:#222!important;background:#b5dcf9!important}.qp{background:transparent;border-bottom:1px solid #82d0f4;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#82d0f4 url(images/2/5/medsoft/bg-main.gif) repeat-x;color:#000;padding:0 6px}.a5{font-size:70%;color:#59b0f0;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#59b0f0}.aJ .a5{color:#00477b}.bR{font:9px verdana,arial,sans-serif;color:#00477b;text-decoration:underline;cursor:pointer}.a7,.a8 .e{color:#00477b}.aK .aI{color:#fff}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH .e{color:#00477b}.bA{color:#00477b;cursor:default}.bB{color:#00477b;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#00477b;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#00477b}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#b5dcf9 none repeat scroll 0!important}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#00477b;margin:0!important}.aK .o{background:#00477b;height:4px;top:inherit}.aK .m,.b .m{background:#00477b}.aK .n{margin-left:5px!important;background:#00477b;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat -4px 0}.b .o{background:#00477b;height:4px;top:inherit}.b .h{background:#00477b;height:4px}.b .m{background:#00477b}.b .n{background:#00477b}.b .p{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat 0 0}.b .q{background:#00477b}.b .i{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=00477b&w=4&h=4) no-repeat -4px -4px}.b{color:#00477b}.b .e{color:#fff}.b .k{background-color:#52adf0}.aJ .k{background:#f2c88d;margin:0!important}.aJ .o{background:#f2c88d;height:4px;top:inherit}.aJ .m,.a .m{background:#f2c88d}.aJ .n{background:#f2c88d;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat -4px 0}.a .e{color:#00477b}.a .o{background:#f2c88d;height:4px;top:inherit}.a .h{background:#f2c88d;height:4px}.a .k{background-color:#f2eedd}.a .m{background:#f2c88d}.a .n{background:#f2c88d}.a .p{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat 0 0}.a .q{background:#f2c88d}.a .i{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat -4px -4px}.yT{color:#00477b;font-weight:bold}.xK{padding:0}.yR{font-size:80%;color:#333;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#333;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.yb{background-color:#b5dcf9;color:#222}.x8{text-decoration:underline;cursor:pointer;color:#333}.yb .x8{color:#00477b}.ya .e,.x9{color:#333}.yd .x8,.yd .x9{color:#00477b}.x2{color:#333;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#DEF1FF}.z .yC .e{color:#DEF1FF}.B .yV{color:#00477b}.B .yU{color:#fff}.B .yC .zw{color:#00477b}.B .yC .e{color:#fff}.A .yU{color:#00477b}.A .yC .e{color:#00477b}.C .yU{color:#00477b}.C .yC .e{color:#00477b}.zq{table-layout:fixed;cursor:default;width:100%;border-spacing:0;padding:0;background-color:#fff;color:#333}.x0{color:#333;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#333}.xI{background-color:#fff}.xG{border-bottom:1px solid #8f9ba1;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#00477b;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DEDEDE solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.zA{color:#333;cursor:pointer;padding:4 1ex}.yO{background:#f7f7f7;color:#444}.zE{color:#333;background:#fff}.x7{color:#222;background:#b5dcf9}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/medsoft/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/medsoft/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/medsoft/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#333}.yQ{background:#b5dcf9}.Ad{color:#00477b;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #b5dcf9}.lR{background:url(images/2/5/medsoft/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/medsoft/vimages7.png) repeat-y -12px 0}.mn .l8{color:#00477b!important}.mo,.l9{color:#00477b}.l8{color:#00477b;text-decoration:underline;cursor:pointer}.l6 .e{color:#00477b}.tE{text-decoration:underline;color:#333;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #333;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#333;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/medsoft/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#b5dcf9;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/medsoft/icons7.png) no-repeat -100px -80px}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tu td{vertical-align:top;margin:0;color:#333}.tq .lJ{background-color:#118eea}.tq .lN{background-color:#118eea}.iI{background:#59b0f0;padding:6px 0 5px 6px}.iE{background:#59b0f0;padding:7px 0 5px 6px}.C .iI{background:#fff}.C .iE{background:#fff}.B .iI{background:#52adf0}.B .iE{background:#52adf0}.hx{color:#333;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/medsoft/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#333}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#b5dcf9}.h1,.iD{color:#333;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#00477b}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#b5dcf9}.gR{margin:1px 0 0 0;color:#00477b}.hg{width:auto;overflow:hidden;background:#b5dcf9}.he{overflow:visible;background:#fff}.g8{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/medsoft/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/medsoft/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/medsoft/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/medsoft/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/medsoft/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/medsoft/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/medsoft/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#b5dcf9;color:#222}.ii a{color:#333}.hp{width:50%;height:0;border-top:2px solid #8f9ba1}.ho a{color:#333}.hr a{color:#333}.hv{float:left;border:2px solid #118eea;padding:5px}.hs .goog-menu-button{color:#333;background:transparent;border:1px solid #888;white-space:nowarp;padding:2px 4px}.h6{height:7px;width:7px;background:url(images/2/5/medsoft/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#b5dcf9;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/medsoft/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/medsoft/icons7.png) no-repeat 0 -40px}.hE{color:#00477b;padding-right:4px;padding-left:4px;white-space:nowrap}.g{color:#333}.iz .o{background:#59b0f0 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#59b0f0 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#59b0f0 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#59b0f0 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#59b0f0 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#59b0f0 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#59b0f0 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#59b0f0 url('images/2/card-ex-bl.gif') no-repeat top left}.ha{font-family:arial,sans-serif;font-size:100%;margin:12px 5px 5px 10px;padding:0;color:#333;background:inherit;border-right:inherit}.id .il,.iW{background:#b5dcf9}.qr .gA{background:#59b0f0 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#59b0f0 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#333;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#333}.hk span{cursor:pointer;color:#333;white-space:nowrap}.iC .hk span{color:#333}.z .h0 .e{color:#DEF1FF}.C .h0 .e{color:#00477b}.B .h0{color:#00477b}.B .h0 .e{color:#fff}.A .h0 .e{color:#00477b}.iS{text-align:center;background:#fff;margin:0 8px 0 16px}.iT{color:#00477b;cursor:pointer}.u9,.u8{padding-top:10px;color:#333;text-align:center}.u7{color:#333;text-decoration:underline;cursor:pointer}.u6:visited{color:#333}.vb{color:#333;margin:12px 0}a.u6{color:#333}.vd{color:#333;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#59b0f0;padding:0 4px}.nN8jRb .goog-palette-cell-hover{background:#b5dcf9}.el,.dP,.dU{color:#DEF1FF;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#59b0f0 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#59b0f0}.eh{background:#59b0f0}.eI{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#59b0f0;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/medsoft/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#DEF1FF}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#DEF1FF}.dT{color:#333}.dQ{border:solid 1px #999;background:#82d0f4;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.e9{border:1px solid;border-color:#59b0f0 #ccc #ccc #59b0f0}.eW,.e7{border:1px solid;border-color:#ccc #59b0f0 #59b0f0 #ccc}.e7{background-color:#b5dcf9}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#00477b;white-space:nowrap}.wY{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#00477b;cursor:pointer}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#b5dcf9;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/medsoft/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#b5dcf9;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#000;padding:3px}.fx .goog-menuitem-highlight{background:#b5dcf9;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/medsoft/icons7.png) no-repeat -100px -80px}.fv .goog-palette-cell-selected .goog-palette-colorswatch{border:1px solid #333;color:#fff}.fy{margin-top:2px;background-color:#b5dcf9;border-width:1px 0;font-size:80%}.fz{color:#00477b;text-decoration:underline;font-weight:bold}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#00477b;vertical-align:baseline}.mL{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/medsoft/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/medsoft/icons7.png) no-repeat -80px -40px}.mC{background-color:#59b0f0}.mC .mG{text-decoration:none;color:#DEF1FF}.manager-page .frame{background-color:#59b0f0;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #59b0f0}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#333;border:1px solid #118eea;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .menu{position:absolute;color:#000;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#b5dcf9}.cmgr-toolbar{height:32px;background-color:#59b0f0;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#333;border:1px solid #118eea;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#DEF1FF}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #118eea;padding:10px 0 5px}.cmgr-contacts-list-actions .cmgr-link{color:#00477b}.group-list{font-family:arial,sans-serif;color:#333}.checkable-list{padding:3px;font-family:arial,sans-serif;color:#333}.cmgr-contact-pane{font-family:arial,sans-serif;font-size:80%;background-color:#fff;color:#333}.cmgr-contact-pane .group-detail{color:#333}.cmgr-contact-pane .desc{color:#333;font-weight:bold}.cmgr-contact-pane .cmgr-link{color:#333}.cmgr-contact-pane .contact-banner{border-top:1px solid #59b0f0;border-bottom:1px solid #59b0f0}.cmgr-domain-contact-label .link{color:#00477b}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#59b0f0}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#b5dcf9}.manager-page hr{background-color:#59b0f0}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#DEF1FF;color:#000;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#f7f7f7}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#b5dcf9;color:#222}.cmgr-hr-divider{background-color:#59b0f0;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#b5dcf9}.checkable-list .selected{background-color:#118eea;overflow:hidden}.checkable-list .selected .text{color:#DEF1FF;font-weight:bold}.checkable-list .preselect{background-color:#b5dcf9}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #59b0f0;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#b5dcf9}.group-list .preselect{background-color:#b5dcf9}.group-list .selected{background-color:#118eea}.group-list .selected .text{font-weight:bold;color:#DEF1FF}.group-list .selected .count{color:#DEF1FF}.group-list hr.header{background-color:#59b0f0;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#b5dcf9}.lo .o{background:#b5dcf9;height:3px;top:inherit}.lo .n{background:#b5dcf9}.lo .m{background:#b5dcf9}.lo .q{background:url(rc?a=af&c=b5dcf9&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=b5dcf9&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#f2c88d}.lp .o{background:#f2c88d;height:3px;top:inherit}.lp .n{background:#f2c88d}.lp .m{background:#f2c88d}.lp .q{background:url(rc?a=af&c=f2c88d&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=f2c88d&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#b5dcf9;padding:2px}.ln{background:#f2c88d}.kQ{overflow:hidden;text-overflow:ellipsis;background-position:left center;background-repeat:no-repeat;color:#000;font-weight:bold;margin-left:2px}.lp .kQ{color:#000}.kv{background:url(images/2/5/medsoft/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/medsoft/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/medsoft/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#ECF7FF}.ky,.kW,.jc{background-color:#FFE8C8}.kt,.jA,.nl{color:#333;text-decoration:underline;cursor:pointer}.ko{color:#333;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #ccc;border-right:1px solid #ccc;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#333}.jr{padding:4px 0;color:#333;font-size:70%;overflow:auto}.jT{position:relative;border:1px solid;border-color:#666666 #ccc #ccc #ccc;margin:1px;color:#333;background-color:#fff;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #b5dcf9}.jx{color:#333}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#333;text-decoration:none}.jE{border:1px solid #b5dcf9}.jF{border:solid 1px #888;background-color:#f7f7f7;color:#000}.jB{background:url(images/2/5/medsoft/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/medsoft/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jN{background-color:#b5dcf9;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#b5dcf9;color:#222}.jR{background:url(images/2/5/medsoft/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/medsoft/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #59b0f0;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #b5dcf9}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker-highlighted{background-color:#b5dcf9}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jZ{background-color:#b5dcf9}.fX{background-color:#8f9ba1}.fX .goog-flat-button{color:#00477b;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#333}.vC{white-space:nowrap;color:#333;cursor:pointer;background-color:#D4F2FF;width:100%;line-height:1.4em}.vI td{border-top:1px solid #D4F2FF}.vD{color:#222;background-color:#b5dcf9}.vE{background:#f2c88d}.vs{color:#000;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#000}.vG a{color:#333}.uk{width:100%;border-bottom:solid #BDE2F2 1px;background-color:#D4F2FF;font-size:80%;cursor:pointer;padding-top:5px}.uC{color:#333;white-space:nowrap;text-overflow:ellipsis;margin-top:5px}.ul .cg{color:#00477b}.ul{background-color:#b5dcf9;border-top:1px solid #b5dcf9;border-bottom:1px solid #b5dcf9}.ud,.um{color:#333;background-color:#D4F2FF;border-top:1px solid #59b0f0;border-bottom:1px solid #59b0f0}.uo{border:1px solid #59b0f0;color:#59b0f0}td.uK{border-right:#D4F2FF solid 1px}td.uh,td.uO{border:#D4F2FF solid 1px}.ue a{color:#333}.uM{background:url(images/2/5/medsoft/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#59b0f0 solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#59b0f0 solid 1px;font-size:80%}.uv{color:#000;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#b5dcf9;color:#222}.uu{color:#333;text-decoration:underline;cursor:pointer}.dF{background-color:#D4F2FF}.dI{border:solid 1px #59b0f0;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/medsoft/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/medsoft/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#b5dcf9;color:#222}.uW{background-color:#f7f7f7;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#333;background-color:#D4F2FF;font-size:80%;border-bottom:1px solid #BDE2F2}.dz .cg{color:#333}.do{background:#D4F2FF url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.jU{padding:0 3px}.A5 a{color:#00477b}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #118eea;background:#82d0f4;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#118eea;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#00477b;background:#118eea;font-weight:bold;padding:3px 4px}.goog-date-picker-selected{background:#59b0f0;color:#000}.v .l{background-color:#f2c88d}.v .k{color:#000;background:#f2c88d}.v .o{background:#f2c88d;height:4px;top:inherit}.v .n{background:#f2c88d;padding:inherit;margin:inherit}.v .h{background:#f2c88d;height:4px}.v .m{background:#f2c88d}.v .q{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=f2c88d&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#00477b;cursor:pointer;white-space:nowrap}.qZ{background:#f2c88d;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#f2eedd;padding:4px}.v9 .fZ{background:#f2eedd;font-size:80%;padding:3px 8px}.v9 .f1{color:#00477b;background:#f2c88d;font-size:80%}.v9 .fY{background:#f2c88d;padding:0}.v7 .fY{background:#f2c88d}.v7 .fZ{background-color:#f2eedd;border:1px solid #f2c88d;border-right:none}.v7 .f1{background:#f2c88d}.tf{background-color:#f2eedd;border:1px solid #f2c88d;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #f2c88d;padding:8px}.r7 td.r5{border-top:2px solid #f2c88d}.r7 a{color:#00477b}.r7 .e{color:#00477b}.rZ{background-color:#f2c88d;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#00477b}.s0{padding:6px;border-bottom:2px solid #f2c88d;font-size:80%}.s1{border-color:#f2c88d;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.sW a{color:#00477b}.lpcd{padding:15px 20px;position:absolute;color:#333;border:2px solid #118eea;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#00477b;cursor:pointer}.sM{background-color:#f2c88d;padding:5px}.sn{border:2px solid #f2c88d;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#00477b;text-decoration:underline}.ri{color:#00477b}.sk{border:solid 2px #00477b}.sl{border:solid 2px #f2eedd}.si{background-color:#f2eedd;border:solid 2px #f2eedd;padding:5px;cursor:pointer}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#00477b}.rd{color:#00477b}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#00477b}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#00477b}.cy a{color:#333}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#f2eedd;border:9px solid #f2c88d}.oR{background:#f2c88d;color:#000;padding-bottom:8px;font-weight:bold}.wL{border:1px solid #00477b}.wN .k{background:#00477b}.wN .o{background:#00477b;height:3px;top:inherit}.wN .n{background:#00477b}.wN .m{background:#00477b}.wN .q{background:url(rc?a=af&c=00477b&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=00477b&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#00477b}.wO .o{background:#00477b;height:3px;top:inherit}.wM{background:#00477b;padding:2px}.vT{background:#00477b;overflow:auto}.vS{width:100%;background:#52adf0;overflow:hidden}a.vQ{color:#59b0f0}.vL,.vV{color:#00477b;padding:4px 6px;font-size:80%;position:relative}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#00477b;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/medsoft/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#b5dcf9}",
logo: "background-image: url(images/2/5/medsoft/logo_beta.png); background-position: left top; background-repeat: no-repeat;"
},
medred: {
name: "Dusk",
id: "medred",
css: ".cP{overflow:visible;background-color:#9fb4cc}.aB,.e,.cg{color:#1d1ece;cursor:pointer}.cP{background:#9fb4cc url(images/2/5/medred/bg-main.gif) repeat-x}.b8 .vi,.b8 .vh{background:#efae00;color:#000}.b8 .b9{color:#1d1ece}.b8 .vj{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#b5dcf9}.cc .vh{background:#b5dcf9}.cc .ca,.cc .b9{color:#1d1ece}.cc .vj{background:url(rc?a=af&c=B5DCF9&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=B5DCF9&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=B5DCF9&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=B5DCF9&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#ffeebf;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#1d1ece}.ly{color:#1d1ece;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#efae00}.vX .p{background:#efae00}.vX .q{background:#efae00}.vX .i{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px -4px}.v2{color:#1d1ece}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #ffeebf!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#c7400b;border:1px solid #2E0F03;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#dfcbc3;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#1d1ece!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#dfcbc3!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #c7400b!important}.tr_edit-link-dialog{border:2px solid #c7400b!important}.tr_image-dialog{border:2px solid #c7400b!important}.tr_dialog{background:#dfcbc3!important;color:#000!important}.tr_pseudo-link{color:#1d1ece!important}.tr_dialog-tab-content-explanation-text a{color:#1d1ece!important}.tr_tabbed-pane-tab-label{color:#5f1b00!important}.ad{color:#1d1ece}.ag{color:#1d1ece;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#1d1ece;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#1d1ece;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#efae00}.mq{padding:0 0 5px 2px;height:1.1em;background:#c7400b;margin:-2px 0 0 0}.mv{font-size:80%;color:#ECDFDA;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#ECDFDA}.my{color:#ECDFDA}.mB{float:right;font-size:70%;color:#FF9268;padding:0.3em 1ex 0 2px}.mx,.mz{color:#ECDFDA}.mr{color:#ECDFDA}.ms{background-color:#B33200;color:#FF895B;border:1px solid #FF895B}.mu{background-color:#c7400b;color:#FFC0A7;border:1px solid #FFC0A7}.mt{background-color:#c7400b;color:#E15823;border:1px solid #E15823}.C .mq{background:#3774df}.C .ms{background:#3269CB;color:#8BB5FF;border-color:#8BB5FF}.C .mu{background:#3774df;color:#D8E6FF;border-color:#D8E6FF}.C .mt{background:#3774df;color:#5691F9;border-color:#5691F9}.C .mv{color:#fff}.C .mv .e,.C .mz{color:#fff}.C .my{color:#fff}.C .mr{color:#fff}.C .mx{color:#fff}.B .mq{background:#61a9df}.B .mB{color:#000}.B .ms{background:#4893CB;color:#BBE2FF;border-color:#BBE2FF}.B .mu{background:#61a9df;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#61a9df;color:#85C7F9;border-color:#85C7F9}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/medred/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.b6{background:#ffeebf;color:#222}.A1{padding:6px 0 3px 6px;background:#dfcbc3;border-bottom:1px solid #C6B4AD}.AY{padding:3px 0 6px 6px;background:#dfcbc3;border-top:1px solid #C6B4AD}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#5f1b00}.z .AP{color:#5f1b00}.C .AO{color:#fff}.C .AP{color:#fff}.C .A1{background:#7fadff}.C .AY{background:#7fadff}.B .AO{color:#1d1ece}.B .AP{color:#1d1ece}.B .A1{background:#b5dcf9}.B .AY{background:#b5dcf9}.A .AO{color:#1d1ece}.A .AP{color:#1d1ece}.A .A1{background:#fff7d7}.A .AY{background:#fff7d7}.z .l,.y .l{background:#c7400b}.z .o,.y .o{background:#c7400b;height:4px;top:inherit}.z .h,.y .h{background:#c7400b;height:4px}.z .m,.y .m{background:#c7400b}.z .n,.y .n{background:#c7400b;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#3774df}.C .o{background:#3774df;height:4px;top:inherit}.C .h{background:#3774df;height:4px}.C .m{background:#3774df}.C .n{background:#3774df;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=3774DF&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=3774DF&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=3774DF&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=3774DF&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#61a9df}.B .o{background:#61a9df;height:4px;top:inherit}.B .h{background:#61a9df;height:4px}.B .m{background:#61a9df}.B .n{background:#61a9df;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#efae00}.A .o{background:#efae00;height:4px;top:inherit}.A .h{background:#efae00;height:4px}.A .m{background:#efae00}.A .n{background:#efae00;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#c7400b}.x .o,.AL .o{background:#c7400b;height:4px;top:inherit}.x .h{background:#c7400b;height:4px}.x .m{background:#c7400b}.x .n{background:#c7400b;padding:inherit;margin:inherit}.x .p{display:inherit;background:#c7400b}.x .q{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f7f7f7;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#ffeebf;color:#222}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/medred/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#c7400b}.AT{background:#dfcbc3;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#5f1b00;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/medred/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/medred/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/medred/vimages7.png) no-repeat -24px 50%}.ow{background-color:#F4F4F4;font-size:70%}.oJ{text-decoration:underline;color:#1d1ece}.oH,.oI{background:#ffeebf;padding:3px 4px 3px 6px;border:1px solid #ffeebf!important}.oE{background:url(images/2/5/medred/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/medred/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#F4F4F4;color:#000;visibility:hidden;font-size:100%;border:1px solid #e7e7dd;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/medred/icons7.png) no-repeat -100px -80px}.oB{background:#ffeebf}.oK{border-top:1px solid #e7e7dd}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#ffeebf;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #ffeebf}.qk{color:#1d1ece;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#fff;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#fff;text-decoration:none}.pz .k{background:#c7400b}.qj .k{background:#c7400b}div.qi .k{background:#3774df}.qk .p9,.qk .qh{color:#1d1ece}.pO .p9{color:#1d1ece}.pT{color:#1d1ece}.pz .o{background:#c7400b;height:4px;top:inherit}.pz .n{background:#c7400b}.pz .h{background:#c7400b;height:4px}.pz .m{background:#c7400b}.pz .q{background:#c7400b;height:4px;margin-top:inherit}.pz .j{background:#c7400b;height:4px}.pz .i{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#c7400b;height:4px;top:inherit}.qj .n{background:#c7400b}.qj .h{background:#c7400b;height:4px}.qj .m{background:#c7400b}.qj .q{background:#c7400b;height:4px;margin-top:inherit}.qj .j{background:#c7400b;height:4px}.qj .i{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=c7400b&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#3774df;height:4px;top:inherit}.qi .n{background:#3774df}.qi .h{background:#3774df;height:4px}.qi .m{background:#3774df}.qi .q{background:#3774df;height:4px;margin-top:inherit}.qi .j{background:#3774df;height:4px}.qi .i{background:url(rc?a=af&c=3774DF&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=3774DF&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/medred/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#5f1b00;text-decoration:none}.pt{background-color:#F4F4F4;border:#e7e7dd 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#e7e7dd}.xE .l,.xE .ph{background-color:#c7400b}.pU{text-align:right;font-size:80%;color:#1d1ece;padding:4px 7px 4px 0;background-color:#F4F4F4;margin:0}.r .l,.r .k{background:#e7e7dd}.r .o{background:#e7e7dd;height:4px;top:inherit}.r .n{background:#e7e7dd}.r .m{background:#e7e7dd;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat -4px 0}.pS .h{background:#e7e7dd}.pS .i{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#F4F4F4;border-color:#e7e7dd}.t .pu{padding-bottom:3px;background:none}.t .l{background:#e7e7dd}.t .pU{color:#1d1ece;background-color:#F4F4F4}.t .r .l,.t .r .k{background:#e7e7dd}.t .r .o{background:#e7e7dd;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#e7e7dd}.t .r .n{background:#e7e7dd}.t .r .p{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#F4F4F4;border-color:#e7e7dd}.t .oB{background-color:#ffeebf}.t .oK{border-top-color:#e7e7dd}.pO{color:#1d1ece;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#F4F4F4;border-color:#e7e7dd}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#e7e7dd}.s .ow{background:#F4F4F4}.s .oy{background:#f7f7f7;color:#000}.s .oB{background:#ffeebf;color:#222}.s .r .l,.s .r .k{background:#e7e7dd}.s .r .o{background:#e7e7dd;height:4px;top:inherit}.s .r .m{background:#e7e7dd}.s .r .n{background:#e7e7dd}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #878787;background-color:#fff}.pY .pt{background-color:#F4F4F4}.pY .h{background:#e7e7dd}.pY .r .p{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=e7e7dd&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=e7e7dd&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#F4F4F4}.qo .l{background-color:#e7e7dd}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/medred/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/medred/icons7.png) no-repeat -60px -20px}a.gb1.qq,a.gb3.qq{color:#1d1ece!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#1d1ece!important}a.gb2.qq:hover{color:#222!important;background:#ffeebf!important}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#9fb4cc url(images/2/5/medred/bg-main.gif) repeat-x;color:#000;padding:0 6px}.a0{background:#efae00;color:#000;padding:0 6px}.aJ .a5{color:#1d1ece}.bR{font:9px verdana,arial,sans-serif;color:#1d1ece;text-decoration:underline;cursor:pointer}.a7,.a8 .e{color:#1d1ece}.aK .aI{color:#000}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#000;background:#efae00;border:1px solid #ccc;font-weight:bold}.aH .e{color:#1d1ece}.bA{color:#1d1ece;cursor:default}.bB{color:#1d1ece;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#1d1ece;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#1d1ece}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#ffeebf none repeat scroll 0!important}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#61a9df;margin:0!important}.aK .o{background:#61a9df;height:4px;top:inherit}.aK .m,.b .m{background:#61a9df}.aK .n{margin-left:5px!important;background:#61a9df;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat -4px 0}.b .o{background:#61a9df;height:4px;top:inherit}.b .h{background:#61a9df;height:4px}.b .m{background:#61a9df}.b .n{background:#61a9df}.b .p{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat 0 0}.b .q{background:#61a9df}.b .i{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=61A9DF&w=4&h=4) no-repeat -4px -4px}.b .e{color:#1d1ece}.b .k{background-color:#b5dcf9}.aJ .k{background:#efae00;margin:0!important}.aJ .o{background:#efae00;height:4px;top:inherit}.aJ .m,.a .m{background:#efae00}.aJ .n{background:#efae00;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px 0}.a .e{color:#1d1ece}.a .o{background:#efae00;height:4px;top:inherit}.a .h{background:#efae00;height:4px}.a .m{background:#efae00}.a .n{background:#efae00}.a .p{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 0}.a .q{background:#efae00}.a .i{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px -4px}.xK{padding:0}.yb{background-color:#ffeebf;color:#222}.x8{text-decoration:underline;cursor:pointer;color:#1d1ece}.yb .x8{color:#1d1ece}.ya .e,.x9{color:#1d1ece}.yd .x8,.yd .x9{color:#1d1ece}.x2{color:#1d1ece;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#5f1b00}.z .yC .e{color:#5f1b00}.B .yU{color:#1d1ece}.B .yC .e{color:#1d1ece}.A .yU{color:#1d1ece}.A .yC .e{color:#1d1ece}.C .yU{color:#fff}.C .yC .e{color:#fff}.x0{color:#1d1ece;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#1d1ece}.xI{background-color:#7fadff}.xG{border-bottom:1px solid #3774df;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.x7{color:#222;background:#ffeebf}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/medred/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/medred/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/medred/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/medred/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#1d1ece}.yQ{background:#ffeebf}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#efae00;border:1px solid #ccc;font-size:80%;color:#000;padding:10px}.Ad{color:#1d1ece;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #ffeebf}.lR{background:url(images/2/5/medred/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/medred/vimages7.png) repeat-y -12px 0}.mn .l8{color:#1d1ece!important}.mo,.l9{color:#1d1ece}.l8{color:#1d1ece;text-decoration:underline;cursor:pointer}.l6 .e{color:#1d1ece}.l7{background:#efae00;color:#000;font-weight:bold}.tE{text-decoration:underline;color:#1d1ece;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #1d1ece;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#1d1ece;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/medred/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#ffeebf;color:#222}.tT .goog-option-selected .tU{background:url(images/2/5/medred/icons7.png) no-repeat -100px -80px}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tq .lJ{background-color:#c7400b}.tq .lN{background-color:#c7400b}.iI{background:#dfcbc3;padding:6px 0 5px 6px}.iE{background:#dfcbc3;padding:7px 0 5px 6px}.C .iI{background:#7fadff}.C .iE{background:#7fadff}.B .iI{background:#b5dcf9}.B .iE{background:#b5dcf9}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/medred/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#1d1ece}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#ffeebf}.h1,.iD{color:#1d1ece;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#1d1ece}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#ffeebf}.gR{margin:1px 0 0 0;color:#1d1ece}.hg{width:auto;overflow:hidden;background:#ffeebf}.he{overflow:visible;background:#7fadff}.g8{background:url(images/2/5/medred/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/medred/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/medred/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/medred/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/medred/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/medred/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/medred/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/medred/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/medred/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#ffeebf;color:#222}.ii a{color:#1d1ece}.hp{width:50%;height:0;border-top:2px solid #3774df}.ho a{color:#1d1ece}.hr a{color:#1d1ece}.hv{float:left;border:2px solid #c7400b;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/medred/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-highlight{background:#ffeebf;color:#222}.hA{height:7px;width:7px;background:url(images/2/5/medred/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/medred/icons7.png) no-repeat 0 -40px}.hE{color:#1d1ece;padding-right:4px;padding-left:4px;white-space:nowrap}.iz .o{background:#dfcbc3 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#dfcbc3 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#dfcbc3 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#dfcbc3 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#dfcbc3 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#dfcbc3 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#dfcbc3 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#dfcbc3 url('images/2/card-ex-bl.gif') no-repeat top left}.id .il,.iW{background:#ffeebf}.qr .gA{background:#dfcbc3 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#dfcbc3 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#1d1ece;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#1d1ece}.hk span{cursor:pointer;color:#1d1ece;white-space:nowrap}.iC .hk span{color:#1d1ece}.z .h0 .e{color:#5f1b00}.C .h0 .e{color:#fff}.B .h0 .e{color:#1d1ece}.A .h0 .e{color:#1d1ece}.iS{text-align:center;background:#7fadff;margin:0 8px 0 16px}.iT{color:#fff;cursor:pointer}.u7{color:#1d1ece;text-decoration:underline;cursor:pointer}.u6:visited{color:#1d1ece}a.u6{color:#1d1ece}.vd{color:#1d1ece;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#dfcbc3;padding:0 4px}.nN8jRb .goog-palette-cell-hover{background:#ffeebf}.el,.dP,.dU{color:#5f1b00;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#dfcbc3 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#dfcbc3}.eh{background:#dfcbc3}.eI{background:url(images/2/5/medred/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#dfcbc3;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/medred/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#5f1b00}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#5f1b00}.dQ{border:solid 1px #999;background:#9fb4cc;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #efae00!important;margin:0!important}.e9{border:1px solid;border-color:#dfcbc3 #ccc #ccc #dfcbc3}.eW,.e7{border:1px solid;border-color:#ccc #dfcbc3 #dfcbc3 #ccc}.e7{background-color:#ffeebf}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#1d1ece;white-space:nowrap}.wY{background:url(images/2/5/medred/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#1d1ece;cursor:pointer}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#ffeebf;color:#222}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/medred/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#ffeebf;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#000;padding:3px}.fx .goog-menuitem-highlight{background:#ffeebf;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/medred/icons7.png) no-repeat -100px -80px}.fy{margin-top:2px;background-color:#ffeebf;border-width:1px 0;font-size:80%}.fz{color:#1d1ece;text-decoration:underline;font-weight:bold}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#1d1ece;vertical-align:baseline}.mL{background:url(images/2/5/medred/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/medred/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/medred/icons7.png) no-repeat -80px -40px}.mC{background-color:#dfcbc3}.mC .mG{text-decoration:none;color:#5f1b00}.manager-page .frame{background-color:#dfcbc3;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #dfcbc3}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #c7400b;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#efae00;color:#000}.manager-page .loading{background-color:#efae00;color:#000;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#000;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#222;background-color:#ffeebf}.cmgr-toolbar{height:32px;background-color:#dfcbc3;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #c7400b;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#5f1b00}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #c7400b;padding:10px 0 5px}.cmgr-contacts-list-actions .cmgr-link{color:#1d1ece}.cmgr-contact-pane .cmgr-link{color:#1d1ece}.cmgr-contact-pane .contact-banner{border-top:1px solid #dfcbc3;border-bottom:1px solid #dfcbc3}.cmgr-domain-contact-label{padding:5px 7px;color:#000;border-bottom:1px solid #ccc;font-weight:bold;background-color:#efae00}.cmgr-domain-contact-label .link{color:#1d1ece}.cmgr-edit-interleave-label{padding:7px;color:#000;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#efae00}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#dfcbc3}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#ffeebf}.manager-page hr{background-color:#dfcbc3}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#5f1b00;color:#000;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#f7f7f7}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#000;background-color:#efae00}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#ffeebf;color:#222}.cmgr-hr-divider{background-color:#dfcbc3;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#ffeebf}.checkable-list .selected{background-color:#c7400b;overflow:hidden}.checkable-list .selected .text{color:#ECDFDA;font-weight:bold}.checkable-list .preselect{background-color:#ffeebf}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #dfcbc3;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .active{background-color:#ffeebf}.group-list .preselect{background-color:#ffeebf}.group-list .selected{background-color:#c7400b}.group-list .selected .text{font-weight:bold;color:#ECDFDA}.group-list .selected .count{color:#ECDFDA}.group-list hr.header{background-color:#dfcbc3;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#708FB3}.lo .o{background:#708FB3;height:3px;top:inherit}.lo .n{background:#708FB3}.lo .m{background:#708FB3}.lo .q{background:url(rc?a=af&c=708FB3&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=708FB3&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#c7400b}.lp .o{background:#c7400b;height:3px;top:inherit}.lp .n{background:#c7400b}.lp .m{background:#c7400b}.lp .q{background:url(rc?a=af&c=c7400b&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=c7400b&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#708FB3;padding:2px}.ln{background:#c7400b}.kv{background:url(images/2/5/medred/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/medred/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/medred/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/medred/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#BED0E6}.ky,.kW,.jc{background-color:#FA7440}.kt,.jA,.nl{color:#1d1ece;text-decoration:underline;cursor:pointer}.kk a,.kq a{color:#1d1ece}.jV{margin:0;border:2px solid #ffeebf}.jW{margin:0;border:2px solid #efae00}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #ffeebf}.jF{border:solid 1px #888;background-color:#f7f7f7;color:#000}.jB{background:url(images/2/5/medred/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/medred/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jN{background-color:#ffeebf;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#ffeebf;color:#222}.jR{background:url(images/2/5/medred/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/medred/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #dfcbc3;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #ffeebf}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker-highlighted{background-color:#ffeebf}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jZ{background-color:#ffeebf}.fX{background-color:#3774df}.fX .goog-flat-button{color:#1d1ece;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#1d1ece}.vC{white-space:nowrap;color:#000;cursor:pointer;background-color:#F4F4F4;width:100%;line-height:1.4em}.vI td{border-top:1px solid #F4F4F4}.vD{color:#222;background-color:#ffeebf}.vE{background:#c7400b}.vG a{color:#1d1ece}.uk{width:100%;border-bottom:solid #e7e7dd 1px;background-color:#F4F4F4;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#1d1ece}.ul{background-color:#ffeebf;border-top:1px solid #ffeebf;border-bottom:1px solid #ffeebf}.ud,.um{color:#000;background-color:#F4F4F4;border-top:1px solid #e7e7dd;border-bottom:1px solid #e7e7dd}.uo{border:1px solid #e7e7dd;color:#e7e7dd}td.uK{border-right:#F4F4F4 solid 1px}td.uh,td.uO{border:#F4F4F4 solid 1px}.ue a{color:#1d1ece}.uM{background:url(images/2/5/medred/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/medred/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#e7e7dd solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#e7e7dd solid 1px;font-size:80%}.uv{color:#000;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#ffeebf;color:#222}.uu{color:#1d1ece;text-decoration:underline;cursor:pointer}.dF{background-color:#F4F4F4}.dI{border:solid 1px #878787;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/medred/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/medred/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#ffeebf;color:#222}.uW{background-color:#f7f7f7;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#F4F4F4;font-size:80%;border-bottom:1px solid #e7e7dd}.dz .cg{color:#1d1ece}.do{background:#F4F4F4 url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.jU{padding:0 3px}.A5 a{color:#1d1ece}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #c7400b;background:#9fb4cc;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#c7400b;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#1d1ece;background:#c7400b;font-weight:bold;padding:3px 4px}.goog-date-picker-selected{background:#dfcbc3;color:#000}.v .l{background-color:#efae00}.v .k{color:#000;background:#efae00}.v .o{background:#efae00;height:4px;top:inherit}.v .n{background:#efae00;padding:inherit;margin:inherit}.v .h{background:#efae00;height:4px}.v .m{background:#efae00}.v .q{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=EFAE00&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#1d1ece;cursor:pointer;white-space:nowrap}.qZ{background:#efae00;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.v9 .f1{color:#1d1ece;background:#efae00;font-size:80%}.v9 .fY{background:#efae00;padding:0}.v7 .fY{background:#efae00}.v7 .fZ{background-color:#fff7d7;border:1px solid #efae00;border-right:none}.v7 .f1{background:#efae00}.tf{background-color:#fff7d7;border:1px solid #efae00;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #efae00;padding:8px}.r7 td.r5{border-top:2px solid #efae00}.r7 a{color:#1d1ece}.r7 .e{color:#1d1ece}.rZ{background-color:#efae00;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#1d1ece}.s0{padding:6px;border-bottom:2px solid #efae00;font-size:80%}.s1{border-color:#efae00;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.sW a{color:#1d1ece}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #c7400b;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#1d1ece;cursor:pointer}.sM{background-color:#efae00;padding:5px}.sn{border:2px solid #efae00;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#1d1ece;text-decoration:underline}.ri{color:#1d1ece}.sk{border:solid 2px #1d1ece}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#1d1ece}.rd{color:#1d1ece}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#1d1ece}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#1d1ece}.cy a{color:#1d1ece}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#fff7d7;border:9px solid #efae00}.oR{background:#efae00;color:#000;padding-bottom:8px;font-weight:bold}.wL{border:1px solid #61a9df}.wN .k{background:#61a9df}.wN .o{background:#61a9df;height:3px;top:inherit}.wN .n{background:#61a9df}.wN .m{background:#61a9df}.wN .q{background:url(rc?a=af&c=61A9DF&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=61A9DF&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#61a9df}.wO .o{background:#61a9df;height:3px;top:inherit}.wM{background:#61a9df;padding:2px}.vT{background:#61a9df;overflow:auto}.vS{width:100%;background:#b5dcf9;overflow:hidden}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#61a9df;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/medred/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.sam .goog-menuitem-highlight{color:#222;background:#ffeebf}",
logo: null
},
darkwarm: {
name: "Sunset",
id: "darkwarm",
css: ".cP{overflow:visible;background-color:#380e00}.aB,.e,.cg{color:#e8e6c1;cursor:pointer}.cP{background:#380e00 url(images/2/5/darkwarm/bg-main.png) 0 0 repeat-x}.b8 .vi,.b8 .vh{background:#fea;color:#222}.b8 .b9{color:#222}.b8 .vj{background:url(rc?a=af&c=FEA&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=FEA&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=FEA&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=FEA&w=4&h=4) no-repeat -4px -4px}.cd .vi,.cd .vh{background:#d72300;color:#fff}.cd .vj{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat 0 0}.cd .vk{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat -4px 0}.cd .vf{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat 0 -4px}.cd .vg{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#eec}.cc .vh{background:#eec}.cc .ca,.cc .b9{color:#222}.cc .vj{background:url(rc?a=af&c=eec&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=eec&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=eec&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=eec&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#666;background-color:#fff;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#ffc;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#e8e6c1}.ly{color:#e8e6c1;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#fea}.vX .p{background:#fea}.vX .q{background:#fea}.vX .i{background:url(rc?a=af&c=FEA&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=FEA&w=4&h=4) no-repeat -4px -4px}.v2{color:#222}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #e57100!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#c3390b;border:1px solid #2A0C02;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#e57100;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#c3390b!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#e57100!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #c3390b!important}.tr_edit-link-dialog{border:2px solid #c3390b!important}.tr_image-dialog{border:2px solid #c3390b!important}.tr_dialog{background:#e57100!important;color:#000!important}.tr_pseudo-link{color:#c3390b!important}.tr_dialog-tab-content-explanation-text a{color:#c3390b!important}.tr_tabbed-pane-tab-label{color:#000!important}.ad{color:#222}.ag{color:#222;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#222;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#000;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#fea}.w2{font-size:80%;color:#666}.w5{color:#666;cursor:pointer}.xa{z-index:1000;border:solid #d72300 2px;position:relative}.mq{padding:0 0 5px 2px;height:1.1em;background:#c3390b;margin:-2px 0 0 0}.mv{font-size:80%;color:#cc9;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#cc9}.my{color:#cc9}.mB{float:right;font-size:70%;color:#cc9;padding:0.3em 1ex 0 2px}.mx,.mz{color:#cc9}.mr{color:#cc9}.ms{background-color:transparent;color:#cc9;border:1px solid #e57100}.mu{background-color:#E95E30;color:#FFBDA7;border:1px solid #FFBDA7}.mt{background-color:#c3390b;color:#e57100;border:1px solid #DD5122}.C .mq{background:#666}.C .mB{color:#ccc}.C .ms{background:transparent;color:#fff;border-color:#999}.C .mu{background:#666;color:#FFFFFF;border-color:#FFFFFF}.C .mt{background:#666;color:#ccc;border-color:#808080}.C .mv{color:#fff}.C .mv .e,.C .mz{color:#fff}.C .my{color:#fff}.C .mr{color:#fff}.C .mx{color:#fff}.B .mq{background:#cc9}.B .mB{color:#000}.B .ms{background:transparent;color:#380e00;border-color:#eec}.B .mu{background:#fff;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#cc9;color:#999954;border-color:#E6E6C3}.B .mv{color:#380e00}.B .mv .e,.B .mz{color:#380e00}.B .my{color:#380e00}.B .mr{color:#380e00}.B .mx{color:#380e00}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#fff;color:#666;cursor:default;margin-right:4px}.b2{background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#fff;color:#666;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#666;padding:2px 4px 2px 22px;background:#fff;line-height:105%}.b3{text-indent:0;padding-left:4px;color:#666}.b4{color:#666}.A1{padding:6px 0 3px 6px;background:#e57100;border-bottom:1px solid #CC6400}.AY{padding:3px 0 6px 6px;background:#e57100;border-top:1px solid #CC6400}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#000}.z .AP{color:#000}.C .AQ{color:#fff}.C .AO{color:#fff}.C .AP{color:#fff}.C .A1{background:#999}.C .AY{background:#999}.B .AO{color:#380e00}.B .AP{color:#380e00}.B .A1{background:#eec}.B .AY{background:#eec}.A .AO{color:#000}.A .AP{color:#000}.A .A1{background:#fff}.A .AY{background:#fff}.z .l,.y .l{background:#c3390b}.z .o,.y .o{background:#c3390b;height:4px;top:inherit}.z .h,.y .h{background:#c3390b;height:4px}.z .m,.y .m{background:#c3390b}.z .n,.y .n{background:#c3390b;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#666}.C .o{background:#666;height:4px;top:inherit}.C .h{background:#666;height:4px}.C .m{background:#666}.C .n{background:#666;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=666&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=666&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=666&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=666&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#cc9}.B .o{background:#cc9;height:4px;top:inherit}.B .h{background:#cc9;height:4px}.B .m{background:#cc9}.B .n{background:#cc9;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#e57100}.A .o{background:#e57100;height:4px;top:inherit}.A .h{background:#e57100;height:4px}.A .m{background:#e57100}.A .n{background:#e57100;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#c3390b}.x .o,.AL .o{background:#c3390b;height:4px;top:inherit}.x .h{background:#c3390b;height:4px}.x .m{background:#c3390b}.x .n{background:#c3390b;padding:inherit;margin:inherit}.x .p{display:inherit;background:#c3390b}.x .q{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#fff;color:#666;font:80% arial,sans-serif}.D .goog-menuitem-disabled,.D .goog-tristatemenuitem-disabled,.D .goog-filterobsmenuitem-disabled{color:#666}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/darkwarm/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#c3390b}.AT{background:#e57100;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#000;font-size:70%;text-decoration:underline;cursor:pointer}.A0{color:#666;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/darkwarm/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/darkwarm/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .AZ{background:url(images/2/5/darkwarm/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#380e00}.oE{background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/darkwarm/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #e57100;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oC{text-indent:3px;color:#666}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/darkwarm/icons7.png) no-repeat -100px -80px}.oK{border-top:1px solid #e57100}.pN .goog-menu{position:absolute;z-index:13;color:#666;border:1px solid #888;background-color:#fff;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.qk{color:#e8e6c1;font-size:80%;padding-left:22px}.ql{color:#d72300}.pk .qk .p9{font-weight:bold;color:#e8e6c1;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#fff;text-decoration:none}.pk .qk{color:#e8e6c1}.pz .k{background:#c3390b}.qj .k{background:#c3390b}div.qi .k{background:#666}.qk .p9,.qk .qh{color:#e8e6c1}.pO .p9{color:#c3390b}.pT{color:#380e00}.pz .o{background:#c3390b;height:4px;top:inherit}.pz .n{background:#c3390b}.pz .h{background:#c3390b;height:4px}.pz .m{background:#c3390b}.pz .q{background:#c3390b;height:4px;margin-top:inherit}.pz .j{background:#c3390b;height:4px}.pz .i{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#c3390b;height:4px;top:inherit}.qj .n{background:#c3390b}.qj .h{background:#c3390b;height:4px}.qj .m{background:#c3390b}.qj .q{background:#c3390b;height:4px;margin-top:inherit}.qj .j{background:#c3390b;height:4px}.qj .i{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=c3390b&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#666;height:4px;top:inherit}.qi .n{background:#666}.qi .h{background:#666;height:4px}.qi .m{background:#666}.qi .q{background:#666;height:4px;margin-top:inherit}.qi .j{background:#666;height:4px}.qi .i{background:url(rc?a=af&c=666&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=666&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/darkwarm/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#000;text-decoration:none}.pt{background-color:#fff;border:#e57100 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#e57100}.xE .l,.xE .ph{background-color:#c3390b}.pU{text-align:right;font-size:70%;color:#380e00;padding:4px 7px 4px 0;background-color:#fff;margin:0}.r .l,.r .k{background:#e57100}.r .o{background:#e57100;height:4px;top:inherit}.r .n{background:#e57100}.r .m{background:#e57100;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px 0}.pS .h{background:#e57100}.pS .i{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#fff;border-color:#e57100}.t .pu{padding-bottom:3px;background:none}.t .l{background:#e57100}.t .pU{color:#380e00;background-color:#fff}.t .r .l,.t .r .k{background:#e57100}.t .r .o{background:#e57100;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#e57100}.t .r .n{background:#e57100}.t .r .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#fff;border-color:#e57100}.t .oB{background-color:#ffc}.t .oK{border-top-color:#e57100}.pO{color:#c3390b;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#e57100}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#e57100}.s .oy{background:#fff;color:#666}.s .r .l,.s .r .k{background:#e57100}.s .r .o{background:#e57100;height:4px;top:inherit}.s .r .m{background:#e57100}.s .r .n{background:#e57100}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #e57100;background-color:#fff}.pY .h{background:#e57100}.pY .r .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat -3px -3px}.qo .l{background-color:#e57100}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/darkwarm/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/darkwarm/icons7.png) no-repeat -60px -20px}.gb1{color:#e8e6c1}a.gb1.qq,a.gb3.qq{color:#e8e6c1!important}a.gb2.qq{color:#000!important}.qp{background:transparent;border-bottom:1px solid #521A08;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#380e00 url(images/2/5/darkwarm/bg-main.png) 0 0 repeat-x;color:#e8e6c1;padding:0 6px}.a0{background:#fea;color:#222;padding:0 6px}.a5{font-size:70%;color:#380e00;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#380e00}.aJ .a5{color:#000}.bR{font:9px verdana,arial,sans-serif;color:#e8e6c1;text-decoration:underline;cursor:pointer}.a8{color:#e8e6c1;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#e8e6c1}.aK .aI{color:#000}.bE{color:#fea}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#222;background:#fea;border:1px solid #ccc;font-weight:bold}.aH .e{color:#222}.bA{color:#e8e6c1;cursor:default}.bB{color:#e8e6c1;text-decoration:none}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#000;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#000}.bT{font-size:80%;color:#d72300}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#cc9;margin:0!important}.aK .o{background:#cc9;height:4px;top:inherit}.aK .m,.b .m{background:#cc9}.aK .n{margin-left:5px!important;background:#cc9;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat -4px 0}.b .o{background:#cc9;height:4px;top:inherit}.b .h{background:#cc9;height:4px}.b .m{background:#cc9}.b .n{background:#cc9}.b .p{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat 0 0}.b .q{background:#cc9}.b .i{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=CC9&w=4&h=4) no-repeat -4px -4px}.b .e{color:#380e00}.b .k{background-color:#fff}.aJ .k{background:#e57100;margin:0!important}.aJ .o{background:#e57100;height:4px;top:inherit}.aJ .m,.a .m{background:#e57100}.aJ .n{background:#e57100;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px 0}.a .e{color:#000}.a .o{background:#e57100;height:4px;top:inherit}.a .h{background:#e57100;height:4px}.a .k{background-color:#fff}.a .m{background:#e57100}.a .n{background:#e57100}.a .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0}.a .q{background:#e57100}.a .i{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px -4px}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #D5D5D5 solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #D5D5D5 solid;padding:3px 8px}.yd{background-color:#fff}.yc{background-color:#fff}.x8{text-decoration:underline;cursor:pointer;color:#c3390b}.yb .x8{color:#222}.ya .e,.x9{color:#c3390b}.yd .x8,.yd .x9{color:#000}.x2{color:#c3390b;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#000}.z .yC .e{color:#000}.B .yU{color:#380e00}.B .yC .e{color:#380e00}.A .yU{color:#000}.A .yC .e{color:#000}.C .yV{color:#fff}.C .yU{color:#fff}.C .yC .zw{color:#fff}.C .yC .e{color:#fff}.x0{color:#c3390b;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#c3390b}.xI{background-color:#999}.xG{border-bottom:1px solid #666;color:#666;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #D5D5D5 solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#eee;color:#444}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/darkwarm/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/darkwarm/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#c3390b}.y2{color:#666}.x7 .y2{color:#666}.xD{color:#666}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#fea;border:1px solid #ccc;font-size:80%;color:#222;padding:10px}.Ad{color:#222;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#fff}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#fff;border:1px solid #ccc;width:250px;padding:4px;z-index:10}textarea.Ah{border:2px solid #e57100}textarea.Ai{border:2px solid #fff}.Ag{font-size:70%;color:#666}.lR{background:url(images/2/5/darkwarm/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/darkwarm/vimages7.png) repeat-y -12px 0}.mn{color:#e8e6c1}.mn .l8{color:#e8e6c1!important}.mi{color:#d72300}.mj{color:#cc9}.mp,.ma{font-size:70%;color:#e8e6c1}.mo,.l9{color:#e8e6c1}.l8{color:#e8e6c1;text-decoration:underline;cursor:pointer}.l3{color:#e8e6c1}.mb{color:#e8e6c1;padding-top:4px}.l6{font-size:70%;color:#e8e6c1;padding-top:12px}.l6 .e{color:#e8e6c1}.l7{background:#fea;color:#222;font-weight:bold}.mh{color:#e8e6c1;font-weight:bold}.mm{color:#e8e6c1}.tE{text-decoration:underline;color:#c3390b;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #c3390b;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#c3390b;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#666;border:1px solid #888;background-color:#fff;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-disabled{color:#666}.tT .goog-option-selected .tU{background:url(images/2/5/darkwarm/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#cc9;color:#fff;border-bottom:1px solid #cc9;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#cc9;color:#fff}.u .goog-menuitem-opened .tF{background:#fff;background-position:0 -48px;color:#666;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #fff;background:#cc9;width:1px;height:23px;padding:0;margin:0}.tB,.tC{color:#c3390b;padding-left:2px}.tq .lJ{background-color:#FF9833}.tq .lN{background-color:#FF9833}.iI{background:#e57100;padding:6px 0 5px 6px}.iE{background:#e57100;padding:7px 0 5px 6px}.C .iI{background:#999}.C .iE{background:#999}.B .iI{background:#eec}.B .iE{background:#eec}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/darkwarm/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#c3390b}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h1,.iD{color:#c3390b;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#222}.gY{color:#fff;background:#d72300}.gR{margin:1px 0 0 0;color:#222}.he{overflow:visible;background:#999}.gG{text-align:right;color:#666;white-space:nowrap;vertical-align:top;width:0}.g8{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/darkwarm/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/darkwarm/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/darkwarm/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/darkwarm/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/darkwarm/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/darkwarm/icons7.png) no-repeat -100px -60px}.go{color:#666}.gv{visibility:hidden;position:absolute;color:#666;background:#fff;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.g6{padding-left:5px;color:#666}.ii a{color:#c3390b}.hp{width:50%;height:0;border-top:2px solid #666}.ho a{color:#c3390b}.hr a{color:#c3390b}.hv{float:left;border:2px solid #c3390b;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#666;background:#fff;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-disabled{color:#666}.hA{height:7px;width:7px;background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 -40px}.hE{color:#000;padding-right:4px;padding-left:4px;white-space:nowrap}.g .h{background:#ffffe2 url('images/2/cv/card-ex-bm.gif') repeat-x top}.g .j{background:#ffffe2 url('images/2/card-ex-br.gif') no-repeat top left}.g .i{background:#ffffe2 url('images/2/card-ex-bl.gif') no-repeat top right}.iz .o{background:#e57100 url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#e57100 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#e57100 url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#e57100 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#e57100 url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#e57100 url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#e57100 url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#e57100 url('images/2/card-ex-bl.gif') no-repeat top left}.ha{font-family:arial,sans-serif;font-size:100%;margin:12px 5px 5px 10px;padding:0;color:#690;background:inherit;border-right:inherit}.gA,.hi{background:#ffffe2 url('images/2/cv/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.A9{font-size:80%;color:#d72300}.qr .gA{background:#e57100 url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#e57100 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#c3390b;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#c3390b}.hk span{cursor:pointer;color:#c3390b;white-space:nowrap}.iC .hk span{color:#c3390b}.z .h0 .e{color:#000}.C .h0{color:#fff}.C .h0 .e{color:#fff}.B .h0 .e{color:#380e00}.A .h0 .e{color:#000}.iS{text-align:center;background:#999;margin:0 8px 0 16px}.iU{font-size:80%;color:#fff}.iT{color:#fff;cursor:pointer}.h4{cursor:pointer;color:#c3390b;font-size:9px}.h5{display:none;color:#666}.im{color:#666}.hm{color:#666}.u7{color:#c3390b;text-decoration:underline;cursor:pointer}.u6:visited{color:#c3390b}a.u6{color:#c3390b}.vd{color:#c3390b;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#e57100;padding:0 4px}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#fff;border:1px solid #ccc}.el,.dP,.dU{color:#000;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#e57100 url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#e57100}.eh{background:#e57100}.eI{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#e57100;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#000}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#000}.dN{color:#d72300;font-weight:bold}.dQ{border:solid 1px #999;background:#380e00;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #fea!important;margin:0!important}.fM .vi{background:#d72300}.fM .vh{background:#d72300;color:#fff;font-weight:bold;padding:0;margin:0}.fM .vj{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat 0 0;background-color:transparent}.fM .vk{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat -4px 0;background-color:transparent}.fM .vf{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat 0 -4px;background-color:transparent}.fM .vg{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat -4px -4px;background-color:transparent}.eJ table{width:100%;background:#fff}.eL,.eM,.eK{border:1px solid #fff;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#e57100 #ccc #ccc #e57100}.eW,.e7{border:1px solid;border-color:#ccc #e57100 #e57100 #ccc}.e7{background-color:#ffc}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#000;white-space:nowrap}.wY{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#000;cursor:pointer}.ew{color:#d72300}.ex{position:absolute;border:1px solid #888;background-color:#fff;color:#666;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-disabled{color:#666}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/darkwarm/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#e57100;padding:3px 0 3px 3px}.fx{position:absolute;background:#fff;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#fff;color:#666;padding:3px}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/darkwarm/icons7.png) no-repeat -100px -80px}.fz{color:#222;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#ffffe2}.mH{background-color:#ffffe2;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#000;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#666}.mL{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/darkwarm/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/darkwarm/icons7.png) no-repeat -80px -40px}.mC{background-color:#e57100}.mC .mG{text-decoration:none;color:#000}.manager-page .frame{background-color:#e57100;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #e57100}.manager-page .input-default{color:#666;padding-left:3px}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #c3390b;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#fea;color:#222}.manager-page .message.error{background-color:#d72300;color:#fff}.manager-page .loading{background-color:#fea;color:#222;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#666;background-color:#fff;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#666;background-color:#fff;padding:2px 4px;font-size:80%}.cmgr-toolbar{height:32px;background-color:#e57100;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #c3390b;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#000}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #c3390b;padding:10px 0 5px}.cmgr-editbar{background-color:#fff;color:#666;border-top:1px solid #ccc;border-bottom:1px solid #ccc;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#fff;color:#666;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#000}.cmgr-contact-pane .cmgr-link{color:#c3390b}.cmgr-contact-pane .contact-banner{border-top:1px solid #e57100;border-bottom:1px solid #e57100}.cmgr-domain-contact-label{padding:5px 7px;color:#222;border-bottom:1px solid #ccc;font-weight:bold;background-color:#fea}.cmgr-domain-contact-label .link{color:#222}.cmgr-edit-interleave-label{padding:7px;color:#222;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#fea}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#e57100}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#fff;color:#666;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#ffc}.manager-page .dim{color:#666}.manager-page hr{background-color:#e57100}.gc-phone-example{font-size:80%;color:#666}.gc-muted-text{color:#666}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#666;background-color:#fff;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#666;background-color:#fff;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#000;color:#666;background-color:#fff}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#666;background-color:#fff}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#222;background-color:#fea}.manager-page .goog-menuitem{color:#666;list-style:none;margin:0;padding:4px 4px 4px 4px;white-space:nowrap}.manager-page .goog-menuitem-disabled{color:#666}.cmgr-hr-divider{background-color:#e57100;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .selected{background-color:#c3390b;overflow:hidden}.checkable-list .selected .text{color:#cc9;font-weight:bold}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #e57100;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .count{color:#666;padding-left:5px;padding-right:2px;float:right}.group-list .selected{background-color:#c3390b}.group-list .selected .text{font-weight:bold;color:#cc9}.group-list .selected .count{color:#cc9}.group-list-secondary .selected .text{color:#666}.group-list-secondary .selected .count{color:#666}.group-list hr.header{background-color:#e57100;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#e57100}.lo .o{background:#e57100;height:3px;top:inherit}.lo .n{background:#e57100}.lo .m{background:#e57100}.lo .q{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=E57100&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#c3390b}.lp .o{background:#c3390b;height:3px;top:inherit}.lp .n{background:#c3390b}.lp .m{background:#c3390b}.lp .q{background:url(rc?a=af&c=c3390b&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=c3390b&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#e57100;padding:2px}.ln{background:#c3390b}.kX{border-right:1px solid #ccc;border-left:1px solid #ccc;border-top:none;border-bottom:1px solid #fff}.kv{background:url(images/2/5/darkwarm/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/darkwarm/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/darkwarm/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#FF9833}.ky,.kW,.jc{background-color:#F66D3F}.kt,.jA,.nl{color:#c3390b;text-decoration:underline;cursor:pointer}.kk a,.kq a{color:#c3390b}.kq{color:#666;margin-left:1em}.kg{color:#d72300}.kd{padding-left:5px;color:#666}.jV{margin:0;border:2px solid #e57100}.jW{margin:0;border:2px solid #fea}.js{color:#d72300}.jw{color:#666}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#666;text-decoration:none}.jE{border:1px solid #e57100}.jF{border:solid 1px #888;background-color:#fff;color:#666}.jB{background:url(images/2/5/darkwarm/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/darkwarm/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#fff;color:#666;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jM{color:#666}.jR{background:url(images/2/5/darkwarm/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/darkwarm/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #e57100;padding-top:1px;padding-bottom:4px}.ni{color:#666;padding-left:3px;padding-bottom:1px}.nm{color:#666;font-weight:normal;white-space:nowrap}.nk input{margin:0;border:2px solid #e57100}.jo{position:relative;background-color:#fff;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-tabpane{background-color:#fff;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#fff;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#fff;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#fff;height:30px}.ll{color:#d72300;font-weight:bold}.kS{color:#666;font-size:70%;width:100%}.fX{background-color:#666}.fX .goog-flat-button{color:#e8e6c1;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#c3390b}.vE{background:#c3390b}.vm{color:#666}.vG{color:#666}.vG a{color:#c3390b}.vu{color:#666}.uk{width:100%;border-bottom:solid #ccc 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.uc{color:#666;margin-bottom:4px}.ul .cg{color:#222}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #e57100;border-bottom:1px solid #e57100}.up{border:1px solid #666;background-color:#ccc;cursor:pointer}.uo{border:1px solid #e57100;color:#e57100}.uB{height:100%;color:#666;text-align:right}.ue{height:100%;padding:1px 0 1px 5px;color:#666}.ue a{color:#c3390b}.uf{color:#666;text-align:left;padding:0}.uM{background:url(images/2/5/darkwarm/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#e57100 solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#e57100 solid 1px;font-size:80%}.uv{color:#666;background-color:#fff;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uu{color:#c3390b;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #e57100;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/darkwarm/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/darkwarm/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#fff;color:#666;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#ffc;color:#222}.u3{background-color:#fff;color:#666}.uW{background-color:#fff;color:#666}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #ccc}.dz .cg{color:#c3390b}.c3{color:#666}.dp{font-size:80%;color:#666}.jU{padding:0 3px}.dv{vertical-align:super;color:#d72300;font-size:80%}.A5 a{color:#e8e6c1}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #c3390b;background:#380e00;color:#e8e6c1;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#c3390b;color:#e8e6c1;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#e8e6c1;background:#c3390b;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#fff;color:#e8e6c1;cursor:pointer}.goog-date-picker-selected{background:#e57100;color:#e8e6c1}.modal-dialog-bg{position:absolute;top:0;left:0;background-color:#e8e6c1}.v .l{background-color:#e57100}.v .k{color:#000;background:#e57100}.v .o{background:#e57100;height:4px;top:inherit}.v .n{background:#e57100;padding:inherit;margin:inherit}.v .h{background:#e57100;height:4px}.v .m{background:#e57100}.v .q{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=E57100&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#000;cursor:pointer;white-space:nowrap}.qZ{background:#e57100;color:#000;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#fff;padding:4px}.v9 .fZ{background:#fff;font-size:80%;padding:3px 8px}.v9 .f1{color:#000;background:#e57100;font-size:80%}.v9 .fY{background:#e57100;padding:0}.v7 .fY{background:#e57100}.v7 .fZ{background-color:#fff;border:1px solid #e57100;border-right:none}.v7 .f1{background:#e57100}.tf{background-color:#fff;border:1px solid #e57100;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #e57100;padding:8px}.r7 td.r5{border-top:2px solid #e57100}.r7 a{color:#000}.r7 .e{color:#000}.rT{font-weight:normal;color:#666}.rZ{background-color:#e57100;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#000}.qT{color:#d72300}.qF{font-weight:bold;color:#666}.qG{color:#666}.rM .vi,.rM .vh{background-color:#d72300}.rM .vj{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat 0 0}.rM .vk{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat -4px 0}.rM .vf{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat 0 -4px}.rM .vg{background:url(rc?a=af&c=D72300&w=4&h=4) no-repeat -4px -4px}.s0{padding:6px;border-bottom:2px solid #e57100;font-size:80%}.s7{color:#666}.sV{font-size:80%;color:#666;margin:20px 0 0 24px}.s1{border-color:#e57100;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s3{color:#666;font:9px verdana,arial,sans-serif}.sW a{color:#000}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #c3390b;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#000;cursor:pointer}.sM{background-color:#e57100;padding:5px}.sn{border:2px solid #e57100;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#000;text-decoration:underline}.ri{color:#000}.rh{font-weight:bold;color:#d72300}.ro{border:1px solid #666}.rr{color:#d72300}.sk{border:solid 2px #000}.sl{border:solid 2px #fff}.si{background-color:#fff;border:solid 2px #fff;padding:5px;cursor:pointer}.sh{background-color:#fff;border:solid 2px #ccc;padding:5px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#000}.sf{color:#666}.rd{color:#000}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#000}.cw{white-space:nowrap;text-align:right;vertical-align:top;padding:3px 3px 3px 15px;color:#666}.cD{color:#666}.cF{zoom:1;border:1px solid #ccc;background:#fff;padding:4px;white-space:nowrap}.cF .e{color:#000}.cy a{color:#c3390b}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cp{white-space:nowrap;text-align:right;color:#666}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#fff;border:9px solid #e57100}.oR{background:#e57100;color:#000;padding-bottom:8px;font-weight:bold}.oS{color:#666;padding:6px 0}.oP{color:#d72300;padding-top:6px;padding-bottom:12px;font-weight:bold}.oZ{color:#666;padding-top:20px}.wL{border:1px solid #cc9}.wN .k{background:#cc9}.wN .o{background:#cc9;height:3px;top:inherit}.wN .n{background:#cc9}.wN .m{background:#cc9}.wN .q{background:url(rc?a=af&c=CC9&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=CC9&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#cc9}.wO .o{background:#cc9;height:3px;top:inherit}.wM{background:#cc9;padding:2px}.vT{background:#cc9;overflow:auto}.vS{width:100%;background:#eec;overflow:hidden}a.vQ{color:#380e00}.vM{background:#d72300;color:#fff}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#cc9;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/darkwarm/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam .goog-menuitem-content{color:#666}",
logo: "background-image: url(images/2/5/darkwarm/logo_beta.png); background-position: left top; background-repeat: no-repeat;"
},
greyrain: {
name: "Silver Lining",
id: "greyrain",
css: ".cP{overflow:visible;background-color:#1a2022}.aB,.e,.cg{color:#5797b0;cursor:pointer}.cP{background:#1a2022}.b8 .vi,.b8 .vh{background:#fff1a8;color:#1a2022}.b8 .b9{color:#317c9a}.cc .vi{background:#ccd9d9}.cc .vh{background:#ccd9d9}.cc .ca,.cc .b9{color:#317c9a}.cc .vj{background:url(rc?a=af&c=ccd9d9&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=ccd9d9&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=ccd9d9&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=ccd9d9&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#525151;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#cfdfe5;color:#525151}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#5797b0}.ly{color:#5797b0;text-decoration:underline;cursor:pointer;white-space:nowrap}.v4{color:#525151}.v2{color:#5797b0}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #5797b0!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#525151;border:1px solid #000000;padding:8px;z-index:501}.aA{position:relative;color:#bde3ec;background-color:#7a7d7d;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#5797b0!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#7a7d7d!important;color:#bde3ec!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #525151!important}.tr_edit-link-dialog{border:2px solid #525151!important}.tr_image-dialog{border:2px solid #525151!important}.tr_dialog{background:#7a7d7d!important;color:#bde3ec!important}.tr_pseudo-link{color:#5797b0!important}.tr_dialog-tab-content-explanation-text a{color:#5797b0!important}.tr_tabbed-pane-tab-label{color:#cfdfe5!important}.ad{color:#317c9a}.ag{color:#317c9a;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#317c9a;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#366;cursor:pointer;text-decoration:underline}.fZ .f0{color:#1a2022;cursor:text;outline:none;-moz-outline:none;text-decoration:none}.w2{font-size:80%;color:#72939c}.w5{color:#72939c;cursor:pointer}.mq{padding:0 0 5px 2px;height:1.1em;background:#525151;margin:-2px 0 0 0}.mv{font-size:80%;color:#ccc;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#bde3ec}.my{color:#ccc}.mB{float:right;font-size:70%;color:#ccc;padding:0.3em 1ex 0 2px}.mx,.mz{color:#ccc}.sX .mx{color:#1a2022}.mr{color:#ccc}.ms{background-color:#525151;color:#9F9F9F;border:1px solid #9F9F9F}.mu{background-color:#525151;color:#EBEBEB;border:1px solid #EBEBEB}.mt{background-color:#525151;color:#6C6C6C;border:1px solid #6C6C6C}.C .mB{color:#525151}.C .mv{color:#525151}.C .mv .e,.C .mz{color:#175770}.C .my{color:#525151}.C .mr{color:#525151}.C .mx{color:#525151}.B .mq{background:#366}.B .mB{color:#fff}.B .ms{background:#225252;color:#8FB3B3;border-color:#8FB3B3}.B .mu{background:#366;color:#FFFFFF;border-color:#FFFFFF}.B .mt{background:#366;color:#4D8080;border-color:#4D8080}.B .mv .e,.B .mz{color:#cfdfe5}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#525151;cursor:default;margin-right:4px}.b2{background:url(images/2/5/greyrain/icons7.png) no-repeat -60px 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#525151;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#525151;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.b3{text-indent:0;padding-left:4px;color:#72939c}.b4{color:#72939c}.b6{background:#cfdfe5;color:#525151}.A1{padding:6px 0 3px 6px;background:#7a7d7d;border-bottom:1px solid #616464}.AY{padding:3px 0 6px 6px;background:#7a7d7d;border-top:1px solid #616464}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AQ{color:#bde3ec}.z .AO{color:#cfdfe5}.z .AP{color:#cfdfe5}.C .AQ{color:#525151}.C .AO{color:#5797b0}.C .AP{color:#5797b0}.C .A1{background:#eee}.C .AY{background:#eee}.B .AQ{color:#1a2022}.B .AO{color:#317c9a}.B .AP{color:#317c9a}.B .A1{background:#ccd9d9}.B .AY{background:#ccd9d9}.A .AQ{color:#1a2022}.A .AO{color:#366}.A .AP{color:#366}.A .A1{background:#fdf5e1}.A .AY{background:#fdf5e1}.z .l,.y .l{background:#525151}.z .o,.y .o{background:#525151;height:4px;top:inherit}.z .h,.y .h{background:#525151;height:4px}.z .m,.y .m{background:#525151}.z .n,.y .n{background:#525151;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#366}.B .o{background:#366;height:4px;top:inherit}.B .h{background:#366;height:4px}.B .m{background:#366}.B .n{background:#366;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=366&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=366&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=366&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=366&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#fccf9d}.A .o{background:#fccf9d;height:4px;top:inherit}.A .h{background:#fccf9d;height:4px}.A .m{background:#fccf9d}.A .n{background:#fccf9d;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#525151}.x .o,.AL .o{background:#525151;height:4px;top:inherit}.x .h{background:#525151;height:4px}.x .m{background:#525151}.x .n{background:#525151;padding:inherit;margin:inherit}.x .p{display:inherit;background:#525151}.x .q{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AX,.AR{background:#f7f7f7;color:#525151;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#cfdfe5;color:#525151}.D .goog-menuitem-disabled,.D .goog-tristatemenuitem-disabled,.D .goog-filterobsmenuitem-disabled{color:#72939c}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/greyrain/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#525151}.AT{background:#7a7d7d;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#cfdfe5;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#72939c;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/greyrain/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/greyrain/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/greyrain/vimages7.png) no-repeat -24px 50%}.ow{background-color:#FAFEFF;font-size:70%}.oJ{text-decoration:underline;color:#5797b0}.oH,.oI{background:#cfdfe5;padding:3px 4px 3px 6px;border:1px solid #cfdfe5!important}.oE{background:url(images/2/5/greyrain/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/greyrain/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#FAFEFF;color:#000;visibility:hidden;font-size:100%;border:1px solid #7a7d7d;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oC{text-indent:3px;color:#72939c}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/greyrain/icons7.png) no-repeat -100px -80px}.oB{background:#cfdfe5}.oK{border-top:1px solid #7a7d7d}.pN .goog-menu{position:absolute;z-index:13;color:#525151;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#cfdfe5;color:#525151}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #cfdfe5}.qk{color:#5797b0;font-size:80%;padding-left:22px}.pk .qk .p9{font-weight:bold;color:#bde3ec;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#175770;text-decoration:none}.pk .qk{color:#bde3ec}.pz .k{background:#525151}.qj .k{background:#525151}.qk .p9,.qk .qh{color:#5797b0}.pO .p9{color:#5797b0}.pT{color:#5797b0}.pz .o{background:#525151;height:4px;top:inherit}.pz .n{background:#525151}.pz .h{background:#525151;height:4px}.pz .m{background:#525151}.pz .q{background:#525151;height:4px;margin-top:inherit}.pz .j{background:#525151;height:4px}.pz .i{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#525151;height:4px;top:inherit}.qj .n{background:#525151}.qj .h{background:#525151;height:4px}.qj .m{background:#525151}.qj .q{background:#525151;height:4px;margin-top:inherit}.qj .j{background:#525151;height:4px}.qj .i{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=525151&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/greyrain/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#bde3ec;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#cfdfe5;text-decoration:none}.pt{background-color:#FAFEFF;border:#7a7d7d 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#7a7d7d}.xE .l,.xE .ph{background-color:#525151}.pU{text-align:right;font-size:70%;color:#5797b0;padding:4px 7px 4px 0;background-color:#FAFEFF;margin:0}.r .l,.r .k{background:#7a7d7d}.r .o{background:#7a7d7d;height:4px;top:inherit}.r .n{background:#7a7d7d}.r .m{background:#7a7d7d;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat -4px 0}.pS .h{background:#7a7d7d}.pS .i{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#FAFEFF;border-color:#7a7d7d}.t .pu{padding-bottom:3px;background:none}.t .l{background:#7a7d7d}.t .pU{color:#5797b0;background-color:#FAFEFF}.t .r .l,.t .r .k{background:#7a7d7d}.t .r .o{background:#7a7d7d;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#7a7d7d}.t .r .n{background:#7a7d7d}.t .r .p{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#FAFEFF;border-color:#7a7d7d}.t .oB{background-color:#cfdfe5}.t .oK{border-top-color:#7a7d7d}.pO{color:#5797b0;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#FAFEFF;border-color:#7a7d7d}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#7a7d7d}.s .ow{background:#FAFEFF}.s .oy{background:#f7f7f7;color:#525151}.s .oB{background:#cfdfe5;color:#525151}.s .r .l,.s .r .k{background:#7a7d7d}.s .r .o{background:#7a7d7d;height:4px;top:inherit}.s .r .m{background:#7a7d7d}.s .r .n{background:#7a7d7d}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #7a7d7d;background-color:#fff}.pY .pt{background-color:#FAFEFF}.pY .h{background:#7a7d7d}.pY .r .p{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=7a7d7d&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=7a7d7d&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#FAFEFF}.qo .l{background-color:#7a7d7d}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/greyrain/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/greyrain/icons7.png) no-repeat -60px -20px}.gb1{color:#fff}a.gb1.qq,a.gb3.qq{color:#5797b0!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#5797b0!important}a.gb2.qq:hover{color:#525151!important;background:#cfdfe5!important}.qp{background:transparent;border-bottom:1px solid #525151;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#1a2022;color:#fff;padding:0 6px}.a0{background:#fff1a8;color:#1a2022;padding:0 6px}.a5{font-size:70%;color:#cfdfe5;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#cfdfe5}.aJ .a5{color:#366}.bR{font:9px verdana,arial,sans-serif;color:#5797b0;text-decoration:underline;cursor:pointer}.a8{color:#fff;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#5797b0}.aK .aI{color:#fff}.aJ .aI{color:#1a2022}.bE{color:#fff1a8}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#1a2022;background:#fff1a8;border:1px solid #ccc;font-weight:bold}.aH .e{color:#317c9a}.bA{color:#5797b0;cursor:default}.bB{color:#5797b0;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#5797b0;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#5797b0}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#525151;background:#cfdfe5 none repeat scroll 0!important}.bA .goog-menuitem-highlight .e{text-decoration:none;color:#525151}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#366;margin:0!important}.aK .o{background:#366;height:4px;top:inherit}.aK .m,.b .m{background:#366}.aK .n{margin-left:5px!important;background:#366;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=366&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=366&w=4&h=4) no-repeat -4px 0}.b .o{background:#366;height:4px;top:inherit}.b .h{background:#366;height:4px}.b .m{background:#366}.b .n{background:#366}.b .p{background:url(rc?a=af&c=366&w=4&h=4) no-repeat 0 0}.b .q{background:#366}.b .i{background:url(rc?a=af&c=366&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=366&w=4&h=4) no-repeat -4px -4px}.b{color:#1a2022}.b .e{color:#317c9a}.b .k{background-color:#ccd9d9}.aJ .k{background:#fccf9d;margin:0!important}.aJ .o{background:#fccf9d;height:4px;top:inherit}.aJ .m,.a .m{background:#fccf9d}.aJ .n{background:#fccf9d;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat -4px 0}.a{color:#1a2022}.a .e{color:#366}.a .o{background:#fccf9d;height:4px;top:inherit}.a .h{background:#fccf9d;height:4px}.a .k{background-color:#fdf5e1}.a .m{background:#fccf9d}.a .n{background:#fccf9d}.a .p{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat 0 0}.a .q{background:#fccf9d}.a .i{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat -4px -4px}.yT{color:#1a2022;font-weight:bold}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.yb{background-color:#cfdfe5;color:#525151}.x8{text-decoration:underline;cursor:pointer;color:#5797b0}.yb .x8{color:#5797b0}.ya .e,.x9{color:#5797b0}.yd .x8,.yd .x9{color:#5797b0}.x2{color:#5797b0;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yV{color:#bde3ec}.z .yU{color:#cfdfe5}.z .yC .zw{color:#bde3ec}.z .yC .e{color:#cfdfe5}.B .yV{color:#1a2022}.B .yU{color:#317c9a}.B .yC .zw{color:#1a2022}.B .yC .e{color:#317c9a}.A .yV{color:#1a2022}.A .yU{color:#366}.A .yC .zw{color:#1a2022}.A .yC .e{color:#366}.C .yV{color:#525151}.C .yU{color:#5797b0}.C .yC .zw{color:#525151}.C .yC .e{color:#5797b0}.x0{color:#5797b0;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#5797b0}.xG{border-bottom:1px solid #ccc;color:#72939c;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#5797b0;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #DEDEDE solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#f7f7f7;color:#444}.x7{color:#525151;background:#cfdfe5}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/greyrain/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/greyrain/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/greyrain/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#5797b0}.y2{color:#72939c}.x7 .y2{color:#72939c}.yQ{background:#cfdfe5}.xD{color:#72939c}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#fff1a8;border:1px solid #ccc;font-size:80%;color:#1a2022;padding:10px}.Ad{color:#317c9a;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #5797b0}.Ag{font-size:70%;color:#72939c}.lR{background:url(images/2/5/greyrain/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/greyrain/vimages7.png) repeat-y -12px 0}.mn{color:#f7f7f7}.mn .l8{color:#5797b0!important}.mj{color:#5797b0}.mp,.ma{font-size:70%;color:#f7f7f7}.mo,.l9{color:#cfdfe5}.l8{color:#cfdfe5;text-decoration:underline;cursor:pointer}.l3{color:#f7f7f7}.mb{color:#f7f7f7;padding-top:4px}.l6{font-size:70%;color:#f7f7f7;padding-top:12px}.l6 .e{color:#5797b0}.l7{background:#fff1a8;color:#1a2022;font-weight:bold}.mh{color:#fff;font-weight:bold}.mm{color:#f7f7f7}.tE{text-decoration:underline;color:#5797b0;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #5797b0;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#5797b0;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/greyrain/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#525151;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-menuitem-highlight{background-color:#cfdfe5;color:#525151}.tT .goog-menuitem-disabled{color:#72939c}.tT .goog-option-selected .tU{background:url(images/2/5/greyrain/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#f7f7f7;color:#525151;border-bottom:1px solid #ccc;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#f7f7f7;color:#72939c}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#72939c;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tB,.tC{color:#72939c;padding-left:2px}.tq .lJ{background-color:#525151}.tq .lN{background-color:#525151}.iI{background:#7a7d7d;padding:6px 0 5px 6px}.iE{background:#7a7d7d;padding:7px 0 5px 6px}.C .iI{background:#eee}.C .iE{background:#eee}.B .iI{background:#ccd9d9}.B .iE{background:#ccd9d9}.hx{color:#000;padding:4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/greyrain/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#5797b0}.gy{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#cfdfe5}.h1,.iD{color:#5797b0;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#5797b0}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#cfdfe5}.gR{margin:1px 0 0 0;color:#5797b0}.hg{width:auto;overflow:hidden;background:#cfdfe5}.gG{text-align:right;color:#72939c;white-space:nowrap;vertical-align:top;width:0}.g8{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/greyrain/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/greyrain/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/greyrain/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/greyrain/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/greyrain/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/greyrain/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/greyrain/icons7.png) no-repeat -100px -60px}.go{color:#72939c}.gv{visibility:hidden;position:absolute;color:#525151;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#cfdfe5;color:#525151}.g6{padding-left:5px;color:#72939c}.ii a{color:#5797b0}.ho a{color:#5797b0}.hr a{color:#5797b0}.hv{float:left;border:2px solid #525151;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/greyrain/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#525151;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-disabled{color:#72939c}.ht .goog-menuitem-highlight{background:#cfdfe5;color:#525151}.hA{height:7px;width:7px;background:url(images/2/5/greyrain/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/greyrain/icons7.png) no-repeat 0 -40px}.hE{color:#5797b0;padding-right:4px;padding-left:4px;white-space:nowrap}.g .h{background:#cfdfe5 url('images/2/cv/card-ex-bm.gif') repeat-x top}.g .j{background:#cfdfe5 url('images/2/card-ex-br.gif') no-repeat top left}.g .i{background:#cfdfe5 url('images/2/card-ex-bl.gif') no-repeat top right}.iz .o{background:#7a7d7d url('images/2/cv/card-ex-tm.gif') repeat-x top}.iz .n{background:#7a7d7d url('images/2/cv/card-ex-rm.gif') repeat-y top right}.ij .h,.iz .h{background:#7a7d7d url('images/2/cv/card-ex-bm.gif') repeat-x top}.iz .m{background:#7a7d7d url('images/2/cv/card-ex-lm.gif') repeat-y top left}.iz .p{background:#7a7d7d url('images/2/cv/card-ex-tl.gif') no-repeat top left}.iz .q{background:#7a7d7d url('images/2/cv/card-ex-tr.gif') no-repeat top right}.ij .j,.iz .j{background:#7a7d7d url('images/2/card-ex-br.gif') no-repeat top right}.ij .i,.iz .i{background:#7a7d7d url('images/2/card-ex-bl.gif') no-repeat top left}.id .il,.iW{background:#cfdfe5}.gA,.hi{background:#cfdfe5 url('images/2/cv/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.qr .gA{background:#7a7d7d url('images/2/cv/card-ex-lm.gif') repeat-y top left}.qr .gB{background:#7a7d7d url('images/2/cv/card-ex-rm.gif') repeat-y top right}.gQ{color:#5797b0;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#5797b0}.hk span{cursor:pointer;color:#5797b0;white-space:nowrap}.iC .hk span{color:#5797b0}.z .h0{color:#bde3ec}.z .h0 .e{color:#cfdfe5}.C .h0{color:#525151}.C .h0 .e{color:#5797b0}.B .h0{color:#1a2022}.B .h0 .e{color:#317c9a}.A .h0{color:#1a2022}.A .h0 .e{color:#366}.iU{font-size:80%;color:#525151}.iT{color:#5797b0;cursor:pointer}.hm{color:#72939c}.u7{color:#5797b0;text-decoration:underline;cursor:pointer}.u6:visited{color:#5797b0}a.u6{color:#5797b0}.vd{color:#5797b0;text-decoration:none}.YXCXSb .goog-tabpane{background-color:#7a7d7d;padding:0 4px}.nN8jRb .goog-palette-cell-hover{background:#cfdfe5}.el,.dP,.dU{color:#000;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#7a7d7d url('images/2/cv/card-ex-rm.gif') repeat-y top right}.xE .dW,.x .dW{background-color:#7a7d7d}.eh{background:#7a7d7d}.d2{position:relative;color:#bde3ec;font-size:80%;margin-left:6px}.eI{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#7a7d7d;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#bde3ec;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/greyrain/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#000}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#000}.dQ{border:solid 1px #999;background:#1a2022;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.e9{border:1px solid;border-color:#7a7d7d #ccc #ccc #7a7d7d}.eW,.e7{border:1px solid;border-color:#ccc #7a7d7d #7a7d7d #ccc}.e7{background-color:#cfdfe5}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#5797b0;white-space:nowrap}.wY{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#5797b0;cursor:pointer}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#525151;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#cfdfe5;color:#525151}.ex .goog-menuitem-disabled{color:#72939c}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/greyrain/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#5797b0;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#525151;padding:3px}.fx .goog-menuitem-highlight{background:#cfdfe5;color:#525151}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/greyrain/icons7.png) no-repeat -100px -80px}.fy{margin-top:2px;background-color:#cfdfe5;border-width:1px 0;font-size:80%}.fz{color:#5797b0;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#cfdfe5}.mH{background-color:#cfdfe5;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#5797b0;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#525151}.mL{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/greyrain/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/greyrain/icons7.png) no-repeat -80px -40px}.mC{background-color:#7a7d7d}.mC .mG{text-decoration:none;color:#000}.manager-page .frame{background-color:#7a7d7d;color:#bde3ec;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #7a7d7d}.manager-page .input-default{color:#72939c;padding-left:3px}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #525151;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#fff1a8;color:#1a2022}.manager-page .loading{background-color:#fff1a8;color:#1a2022;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#525151;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#525151;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#525151;background-color:#cfdfe5}.cmgr-toolbar{height:32px;background-color:#7a7d7d;color:#bde3ec;vertical-align:middle;overflow-x:visible}.cmgr-toolbar span{color:#bde3ec}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #525151;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#cfdfe5}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #525151;padding:10px 0 5px}.cmgr-editbar{background-color:#f7f7f7;color:#525151;border-top:1px solid #ccc;border-bottom:1px solid #ccc;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#f7f7f7;color:#525151;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#5797b0}.cmgr-contact-pane .cmgr-link{color:#5797b0}.cmgr-contact-pane .contact-banner{border-top:1px solid #7a7d7d;border-bottom:1px solid #7a7d7d}.cmgr-domain-contact-label{padding:5px 7px;color:#1a2022;border-bottom:1px solid #ccc;font-weight:bold;background-color:#fff1a8}.cmgr-domain-contact-label .link{color:#317c9a}.cmgr-edit-interleave-label{padding:7px;color:#1a2022;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#fff1a8}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#7a7d7d}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#525151;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#525151;background:#cfdfe5}.manager-page .dim{color:#72939c}.manager-page hr{background-color:#7a7d7d}.gc-settings{padding:0 10px 0 10px;font-size:80%;color:#525151}.gc-phone-example{font-size:80%;color:#72939c}.gc-muted-text{color:#72939c}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#525151;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#72939c;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#cfdfe5;color:#525151;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#525151;background-color:#f7f7f7}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#1a2022;background-color:#fff1a8}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem{color:#525151;list-style:none;margin:0;padding:4px 4px 4px 4px;white-space:nowrap}.manager-page .goog-menuitem-disabled{color:#72939c}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#cfdfe5;color:#525151}.cmgr-hr-divider{background-color:#7a7d7d;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#cfdfe5}.checkable-list .active .text{color:#525151}.checkable-list .selected{background-color:#525151;overflow:hidden}.checkable-list .selected .text{color:#bde3ec;font-weight:bold}.checkable-list .preselect{background-color:#cfdfe5}.checkable-list .preselect .text{color:#525151;font-weight:bold}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #7a7d7d;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .count{color:#72939c;padding-left:5px;padding-right:2px;float:right}.group-list .active{background-color:#cfdfe5}.group-list .active .text{color:#525151}.group-list .active .count{color:#525151}.group-list .preselect{background-color:#cfdfe5}.group-list .preselect .text{color:#525151;font-weight:bold}.group-list .preselect .count{color:#525151}.group-list .selected{background-color:#525151}.group-list .selected .text{font-weight:bold;color:#bde3ec}.group-list .selected .count{color:#bde3ec}.group-list-secondary .selected .text{color:#72939c}.group-list-secondary .selected .count{color:#72939c}.group-list hr.header{background-color:#7a7d7d;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#525151}.lo .o{background:#525151;height:3px;top:inherit}.lo .n{background:#525151}.lo .m{background:#525151}.lo .q{background:url(rc?a=af&c=525151&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=525151&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#5797b0}.lp .o{background:#5797b0;height:3px;top:inherit}.lp .n{background:#5797b0}.lp .m{background:#5797b0}.lp .q{background:url(rc?a=af&c=5797b0&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=5797b0&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#525151;padding:2px}.ln{background:#5797b0}.kv{background:url(images/2/5/greyrain/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/greyrain/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/greyrain/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#858585}.ky,.kW,.jc{background-color:#9ED0E3}.kt,.jA,.nl{color:#5797b0;text-decoration:underline;cursor:pointer}.kk a,.kq a{color:#5797b0}.kq{color:#72939c;margin-left:1em}.kd{padding-left:5px;color:#72939c}.jT{position:relative;border:1px solid;border-color:#666666 #ccc #ccc #ccc;margin:1px;color:#525151;background-color:#fff;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #5797b0}.jw{color:#72939c}.jx{color:#525151}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#525151;text-decoration:none}.jE{border:1px solid #5797b0}.jF{border:solid 1px #888;background-color:#f7f7f7;color:#525151}.jB{background:url(images/2/5/greyrain/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/greyrain/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#f7f7f7;color:#525151;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jM{color:#72939c}.jN{background-color:#cfdfe5;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#cfdfe5;color:#525151}.jR{background:url(images/2/5/greyrain/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/greyrain/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #7a7d7d;padding-top:1px;padding-bottom:4px}.ni{color:#72939c;padding-left:3px;padding-bottom:1px}.nm{color:#72939c;font-weight:normal;white-space:nowrap}.nk input{margin:0;border:2px solid #5797b0}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker-highlighted{background-color:#cfdfe5}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jZ{background-color:#cfdfe5}.kS{color:#72939c;font-size:70%;width:100%}.fX .goog-flat-button{color:#5797b0;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#5797b0}.vC{white-space:nowrap;color:#000;cursor:pointer;background-color:#FAFEFF;width:100%;line-height:1.4em}.vI td{border-top:1px solid #FAFEFF}.vD{color:#525151;background-color:#cfdfe5}.vE{background:#5797b0}.vm{color:#72939c}.vG{color:#72939c}.vF .vn .vG{color:#525151}.vG a{color:#5797b0}.vu{color:#72939c}.uk{width:100%;border-bottom:solid #ccc 1px;background-color:#FAFEFF;font-size:80%;cursor:pointer;padding-top:5px}.uc{color:#72939c;margin-bottom:4px}.ul .cg{color:#5797b0}.ul{background-color:#cfdfe5;border-top:1px solid #cfdfe5;border-bottom:1px solid #cfdfe5}.ud,.um{color:#000;background-color:#FAFEFF;border-top:1px solid #7a7d7d;border-bottom:1px solid #7a7d7d}.up{border:1px solid #72939c;background-color:#ccc;cursor:pointer}.uo{border:1px solid #7a7d7d;color:#7a7d7d}.uB{height:100%;color:#72939c;text-align:right}td.uK{border-right:#FAFEFF solid 1px}td.uh,td.uO{border:#FAFEFF solid 1px}.ue{height:100%;padding:1px 0 1px 5px;color:#72939c}.ue a{color:#5797b0}.uf{color:#72939c;text-align:left;padding:0}.uM{background:url(images/2/5/greyrain/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#7a7d7d solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#7a7d7d solid 1px;font-size:80%}.uv{color:#525151;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#cfdfe5;color:#525151}.uu{color:#5797b0;text-decoration:underline;cursor:pointer}.dF{background-color:#FAFEFF}.dI{border:solid 1px #7a7d7d;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/greyrain/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/greyrain/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#72939c;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#cfdfe5;color:#525151}.u3{background-color:#f7f7f7;color:#72939c}.uW{background-color:#f7f7f7;color:#525151}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#FAFEFF;font-size:80%;border-bottom:1px solid #ccc}.dz .cg{color:#5797b0}.c3{color:#72939c}.dp{font-size:80%;color:#72939c}.do{background:#FAFEFF url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.jU{padding:0 3px}.A5 a{color:#5797b0}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #525151;background:#1a2022;color:#fff;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#525151;color:#fff;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#5797b0;background:#525151;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#f7f7f7;color:#fff;cursor:pointer}.goog-date-picker-selected{background:#7a7d7d;color:#fff}.modal-dialog-bg{position:absolute;top:0;left:0;background-color:#fff}.v .l{background-color:#fccf9d}.v .k{color:#1a2022;background:#fccf9d}.v .o{background:#fccf9d;height:4px;top:inherit}.v .n{background:#fccf9d;padding:inherit;margin:inherit}.v .h{background:#fccf9d;height:4px}.v .m{background:#fccf9d}.v .q{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=fccf9d&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#366;cursor:pointer;white-space:nowrap}.qZ{background:#fccf9d;color:#1a2022;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#fdf5e1;padding:4px}.v9 .fZ{background:#fdf5e1;font-size:80%;padding:3px 8px}.v9 .f1{color:#366;background:#fccf9d;font-size:80%}.v9 .fY{background:#fccf9d;padding:0}.v7 .fY{background:#fccf9d}.v7 .fZ{background-color:#fdf5e1;border:1px solid #fccf9d;border-right:none}.v7 .f1{background:#fccf9d}.tf{background-color:#fdf5e1;border:1px solid #fccf9d;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #fccf9d;padding:8px}.r7 td.r5{border-top:2px solid #fccf9d}.r7 a{color:#366}.r7 .e{color:#366}.rT{font-weight:normal;color:#72939c}.rZ{background-color:#fccf9d;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#366}.qF{font-weight:bold;color:#72939c}.qG{color:#72939c}.s0{padding:6px;border-bottom:2px solid #fccf9d;font-size:80%}.s7{color:#72939c}.ti{color:#1a2022;float:right;padding:8px;font-size:80%}.sV{font-size:80%;color:#72939c;margin:20px 0 0 24px}.s1{border-color:#fccf9d;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s3{color:#72939c;font:9px verdana,arial,sans-serif}.s5{color:#1a2022;font-size:80%}.sW a{color:#366}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #525151;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#366;cursor:pointer}.sM{background-color:#fccf9d;padding:5px}.sn{border:2px solid #fccf9d;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#366;text-decoration:underline}.ri{color:#366}.ro{border:1px solid #72939c}.ru{color:#1a2022}.sk{border:solid 2px #366}.sl{border:solid 2px #fdf5e1}.si{background-color:#fdf5e1;border:solid 2px #fdf5e1;padding:5px;cursor:pointer}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#366}.sf{color:#525151}.rd{color:#366}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#5797b0}.cw{white-space:nowrap;text-align:right;vertical-align:top;padding:3px 3px 3px 15px;color:#72939c}.cD{color:#72939c}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#5797b0}.cy a{color:#5797b0}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cp{white-space:nowrap;text-align:right;color:#72939c}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#fdf5e1;border:9px solid #fccf9d}.oR{background:#fccf9d;color:#1a2022;padding-bottom:8px;font-weight:bold}.oQ{font-size:80%;color:#1a2022;padding:24px 12px 12px 12px}.oS{color:#72939c;padding:6px 0}.oZ{color:#72939c;padding-top:20px}.wL{border:1px solid #366}.wN .k{background:#366}.wN .o{background:#366;height:3px;top:inherit}.wN .n{background:#366}.wN .m{background:#366}.wN .q{background:url(rc?a=af&c=366&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=366&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#366}.wO .o{background:#366;height:3px;top:inherit}.wM{background:#366;padding:2px}.vT{background:#366;overflow:auto}.vS{width:100%;background:#ccd9d9;overflow:hidden}a.vQ{color:#cfdfe5}.vL,.vV{color:#1a2022;padding:4px 6px;font-size:80%;position:relative}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#366;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/greyrain/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.sam .goog-menuitem-highlight{color:#525151;background:#cfdfe5}.sam .goog-menuitem-content{color:#525151}",
logo: null
},
contrastblack: {
name: "Contrast Black",
id: "contrastblack",
css: "body.xE{background-color:#000;background-image:none}.cP{overflow:visible;background-color:#000}.aB,.e,.cg{color:#ff0;cursor:pointer}.cP{background:#000}.b8 .vi,.b8 .vh{background:#fff;color:#000}.b8 .b9{color:#000}.b8 .vj{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px -4px}.cd .vi,.cd .vh{background:#fff;color:#000}.cd .ca,.cd .b9{color:#000}.cd .vj{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.cd .vk{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.cd .vf{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px}.cd .vg{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#333}.cc .vh{background:#333}.cc .ca,.cc .b9{color:#000}.cc .vj{background:url(rc?a=af&c=333&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=333&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=333&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=333&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#fff;background-color:#000;font:normal 80% arial,sans-serif;border:1px solid #fff;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#800080;color:#fff}.ap{border-top:1px solid #fff}.lz{font:70% arial,sans-serif;color:#ff0}.ly{color:#ff0;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#fff}.vX .p{background:#fff}.vX .q{background:#fff}.vX .i{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px -4px}.v4{color:#fff}.v2{color:#fff}.dF .dG,.d9,.nr{border:1px solid;border-color:#fff;background-color:#000;color:#fff}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #fff!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#fff;background-color:#808080;border:1px solid #000000;padding:8px;z-index:501}.aA{position:relative;color:#fff;background-color:#333;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az{background-color:#000;padding:4px;font:normal 80% arial,sans-serif}.az .e,.az a{color:#ff0!important}.ay{padding:8px;background-color:#000;font:normal 90% arial,sans-serif;text-align:right}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#333!important;color:#fff!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #808080!important}.tr_edit-link-dialog{border:2px solid #808080!important}.tr_image-dialog{border:2px solid #808080!important}.tr_dialog{background:#333!important;color:#fff!important}.tr_pseudo-link{color:#ff0!important}.tr_dialog-tab-content-explanation-text a{color:#ff0!important}.tr_tabbed-pane-tab-content,.tr_tabbed-pane-tabs .tr_selected-tab-in-tabbed-pane{background-color:#000!important;color:#fff!important}.tr_tabbed-pane-tab-label{color:#ff0!important}.tr_selected-tab-in-tabbed-pane .tr_tabbed-pane-tab-label{color:#fff!important}.ad{color:#000}.ag{color:#000;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#000;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#ff0;cursor:pointer;text-decoration:underline}.fZ .f0{color:#fff;cursor:text;outline:none;-moz-outline:none;text-decoration:none}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#fff}.w2{font-size:80%;color:#fff}.w5{color:#fff;cursor:pointer}.w8{margin:2px;padding:2px;font:normal 80% arial,sans-serif;border:1px solid #000}.xa{z-index:1000;border:solid #fff 2px;position:relative}.mq{padding:0 0 5px 2px;height:1.1em;background:#808080;margin:-2px 0 0 0}.mv{font-size:80%;color:#ff0;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#ff0}.my{color:#ff0}.mB{float:right;font-size:70%;color:#fff;padding:0.3em 1ex 0 2px}.mx,.mz{color:#ff0}.sX .mx{color:#fff}.mr{color:#ff0}.ms{background-color:#808080;color:#CDCDCD;border:1px solid #CDCDCD}.mu{background-color:#fff;color:#000;border:1px solid #FFFFFF}.mt{background-color:#808080;color:#9A9A9A;border:1px solid #9A9A9A}.C .mq{background:#808080}.C .mB{color:#fff}.C .ms{background:#808080;color:#CDCDCD;border-color:#CDCDCD}.C .mu{background:#fff;color:#000;border-color:#FFFFFF}.C .mt{background:#808080;color:#9A9A9A;border-color:#9A9A9A}.C .mv{color:#ff0}.C .mv .e,.C .mz{color:#ff0}.C .my{color:#ff0}.C .mr{color:#ff0}.C .mx{color:#ff0}.B .mq{background:#808080}.B .mB{color:#fff}.B .ms{background:#808080;color:#CDCDCD;border-color:#CDCDCD}.B .mu{background:#fff;color:#000;border-color:#FFFFFF}.B .mt{background:#808080;color:#9A9A9A;border-color:#9A9A9A}.B .mv{color:#ff0}.B .mv .e,.B .mz{color:#ff0}.B .my{color:#ff0}.B .mr{color:#ff0}.B .mx{color:#ff0}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #fff;background-color:#000;color:#fff;cursor:default;margin-right:4px}.b2{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#000;color:#fff;border:1px solid #fff;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#fff;padding:2px 4px 2px 22px;background:#000;line-height:105%}.b3{text-indent:0;padding-left:4px;color:#fff}.b4{color:#fff}.b6{background:#800080;color:#fff}.A1{padding:6px 0 3px 6px;background:#333;border-bottom:1px solid #555}.AY{padding:3px 0 6px 6px;background:#333;border-top:1px solid #555}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AQ{color:#fff}.z .AO{color:#ff0}.z .AP{color:#ff0}.C .AQ{color:#fff}.C .AO{color:#ff0}.C .AP{color:#ff0}.C .A1{background:#333}.C .AY{background:#333}.B .AQ{color:#fff}.B .AO{color:#ff0}.B .AP{color:#ff0}.B .A1{background:#333}.B .AY{background:#333}.A .AQ{color:#fff}.A .AO{color:#ff0}.A .AP{color:#ff0}.A .A1{background:#333}.A .AY{background:#333}.z .l,.y .l{background:#808080}.z .o,.y .o{background:#808080;height:4px;top:inherit}.z .h,.y .h{background:#808080;height:4px}.z .m,.y .m{background:#808080}.z .n,.y .n{background:#808080;padding:inherit;margin:inherit}.z .p,.y .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.z .q,.y .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px}.z .j,.y .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.C .l{background:#808080}.C .o{background:#808080;height:4px;top:inherit}.C .h{background:#808080;height:4px}.C .m{background:#808080}.C .n{background:#808080;padding:inherit;margin:inherit}.C .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.C .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.C .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px}.C .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.B .l{background:#808080}.B .o{background:#808080;height:4px;top:inherit}.B .h{background:#808080;height:4px}.B .m{background:#808080}.B .n{background:#808080;padding:inherit;margin:inherit}.B .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.B .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.B .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px}.B .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.A .l{background:#808080}.A .o{background:#808080;height:4px;top:inherit}.A .h{background:#808080;height:4px}.A .m{background:#808080}.A .n{background:#808080;padding:inherit;margin:inherit}.A .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.A .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.A .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px}.A .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.x .l{background:#808080}.x .o,.AL .o{background:#808080;height:4px;top:inherit}.x .h{background:#808080;height:4px}.x .m{background:#808080}.x .n{background:#808080;padding:inherit;margin:inherit}.x .p{display:inherit;background:#808080}.x .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px;display:inherit;height:4px}.x .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px;display:inherit;height:4px;padding:inherit;margin:inherit}.AR{border:1px solid #fff;margin:0 3px;padding:5px}.AX,.AR{background:#000;color:#fff;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#000}.AW .lT{border-top:1px solid #000}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#800080;color:#fff}.D .goog-menuitem-disabled,.D .goog-tristatemenuitem-disabled,.D .goog-filterobsmenuitem-disabled{color:#fff}.D .goog-menuseparator{margin:2px 0;border-top:1px solid #000;padding:0;outline:none}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/contrastblack/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#808080}.AT{background:#333;border-top:1px solid #000;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#ff0;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#000;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #000 #000 #000;padding:1px;margin-bottom:3px}.A0{color:#fff;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/contrastblack/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.D .goog-menu-filter input{border:0;background:#000;color:#fff;font-size:100%;margin:0;width:100%;outline:0!important}.AZ{height:6px;width:7px;background:url(images/2/5/contrastblack/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#000}.D .goog-imageless-button-open .AZ{background:url(images/2/5/contrastblack/vimages7.png) no-repeat -24px 50%}.ow{background-color:#000;font-size:70%}.oJ{text-decoration:underline;color:#ff0}.oH,.oI{background:#800080;padding:3px 4px 3px 6px;border:1px solid #800080!important}.oE{background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/contrastblack/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#000;color:#fff;visibility:hidden;font-size:100%;border:1px solid #808080;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oC{text-indent:3px;color:#fff}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/contrastblack/icons7.png) no-repeat -100px -80px}.oB{background:#800080}.oK{border-top:1px solid #808080}.pN .goog-menu{position:absolute;z-index:13;color:#fff;border:1px solid #fff;background-color:#000;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#800080;color:#fff}.css-np-clw-palette-colorswatch{position:relative;height:13px;width:13px;border:1px solid #fff;line-height:11px}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #800080}.qk{color:#ff0;font-size:80%;padding-left:22px}.ql{color:#fff}.pk .qk .p9{font-weight:bold;color:#ff0;text-decoration:underline}.pk .qk .qh{font-weight:bold;color:#ff0;text-decoration:underline}.pk .qk{color:#ff0}.pz .k{background:#808080}.qj .k{background:#808080}div.qi .k{background:#808080}.qk .p9,.qk .qh{color:#ff0}.pO .p9{color:#ff0}.pT{color:#ff0}.pz .o{background:#808080;height:4px;top:inherit}.pz .n{background:#808080}.pz .h{background:#808080;height:4px}.pz .m{background:#808080}.pz .q{background:#808080;height:4px;margin-top:inherit}.pz .j{background:#808080;height:4px}.pz .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#808080;height:4px;top:inherit}.qj .n{background:#808080}.qj .h{background:#808080;height:4px}.qj .m{background:#808080}.qj .q{background:#808080;height:4px;margin-top:inherit}.qj .j{background:#808080;height:4px}.qj .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#808080;height:4px;top:inherit}.qi .n{background:#808080}.qi .h{background:#808080;height:4px}.qi .m{background:#808080}.qi .q{background:#808080;height:4px;margin-top:inherit}.qi .j{background:#808080;height:4px}.qi .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.pW{background:url(images/2/5/contrastblack/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#fff;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#ff0;text-decoration:underline}.pt{background-color:#000;border:#808080 1px solid;border-top:none}.pu{padding-bottom:3px;background:none}.m{background-color:#808080}.xE .l,.xE .ph{background-color:#808080}.pU{text-align:right;font-size:70%;color:#ff0;padding:4px 7px 4px 0;background-color:#000;margin:0}.r .l,.r .k{background:#808080}.r .o{background:#808080;height:4px;top:inherit}.r .n{background:#808080}.r .m{background:#808080;float:none}.r .ph{display:inherit}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0}.pS .h{background:#808080}.pS .i{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#000;border-color:#808080}.t .pu{padding-bottom:3px;background:none}.t .l{background:#808080}.t .pU{color:#ff0;background-color:#000}.t .r .l,.t .r .k{background:#808080}.t .r .o{background:#808080;height:4px;top:inherit}.t .r .ph{display:inherit}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#808080}.t .r .n{background:#808080}.t .r .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat -3px -3px}.t .oy{background-color:#000;border-color:#808080}.t .oB{background-color:#800080}.t .oK{border-top-color:#808080}.pO{color:#ff0;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#000;border-color:#808080}.s .pu{padding-bottom:3px;background:none}.s .l{background-color:#808080}.s .ow{background:#000}.s .oK,.s .oy{border-color:#fff}.s .oy{background:#000;color:#fff}.s .oB{background:#800080;color:#fff}.s .r .l,.s .r .k{background:#808080}.s .r .o{background:#808080;height:4px;top:inherit}.s .r .m{background:#808080}.s .r .n{background:#808080}.s .r .ph{display:inherit}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat -3px -3px}.dI{border:1px solid #808080;background-color:#000}.pY .pt{background-color:#000}.pY .p4{color:#fff;font-size:80%}.pY .h{background:#808080}.pY .r .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#000}.qo .l{background-color:#808080}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/contrastblack/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/contrastblack/icons7.png) no-repeat -60px -20px}.gb1{color:#fff}a.gb1.qq,a.gb3.qq{color:#ff0!important}div#gbi{background:#000!important;border-color:#fff!important}a.gb2.qq{color:#ff0!important}a.gb2.qq:hover{color:#fff!important;background:#800080!important}div.gbd{border-top:1px solid #000!important}.qp{background:transparent;border-bottom:1px solid #000;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#000;color:#fff;padding:0 6px}.a0{background:#fff;color:#000;padding:0 6px}.a5{font-size:70%;color:#ff0;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#ff0}.aJ .a5{color:#ff0}.bR{font:9px verdana,arial,sans-serif;color:#ff0;text-decoration:underline;cursor:pointer}.a8{color:#fff;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#ff0}.aK .aI{color:#fff}.aJ .aI{color:#fff}.bE{color:#fff}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#000;background:#fff;border:1px solid #fff;font-weight:bold}.aH .e{color:#000}.bA{color:#ff0;cursor:default}.bB{color:#ff0;text-decoration:none}.bA .goog-menu{background:#000 none repeat scroll 0!important;border-color:#fff;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#ff0;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#ff0}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#fff;background:#800080 none repeat scroll 0!important}.bA .goog-menuitem-highlight .e{text-decoration:none;color:#fff}.bT{font-size:80%;color:#fff}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:#808080;margin:0!important}.aK .o{background:#808080;height:4px;top:inherit}.aK .m,.b .m{background:#808080}.aK .n{margin-left:5px!important;background:#808080;padding-top:inherit}.aK .p{height:4px;background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0}.b .o{background:#808080;height:4px;top:inherit}.b .h{background:#808080;height:4px}.b .m{background:#808080}.b .n{background:#808080}.b .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.b .q{background:#808080}.b .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px}.b .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px}.b{color:#fff}.b .e{color:#ff0}.b .k{background-color:#333}.aJ .k{background:#808080;margin:0!important}.aJ .o{background:#808080;height:4px;top:inherit}.aJ .m,.a .m{background:#808080}.aJ .n{background:#808080;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0}.a{color:#fff}.a .e{color:#ff0}.a .o{background:#808080;height:4px;top:inherit}.a .h{background:#808080;height:4px}.a .k{background-color:#333}.a .m{background:#808080}.a .n{background:#808080}.a .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.a .q{background:#808080}.a .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px}.a .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px}.yT{color:#fff;font-weight:bold}.xK{padding:0}.yR{font-size:80%;color:#fff;background-color:#000;border-bottom:1px #555 solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#fff;background-color:#000;border-bottom:1px #555 solid;padding:3px 8px}.yd{background-color:#000}.yb{background-color:#800080;color:#fff}.yc{background-color:#000}.x8{text-decoration:underline;cursor:pointer;color:#ff0}.yb .x8{color:#fff}.ya .e,.x9{color:#ff0}.yd .x8,.yd .x9{color:#ff0}.x2{color:#ff0;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yV{color:#fff}.z .yU{color:#ff0}.z .yC .zw{color:#fff}.z .yC .e{color:#ff0}.B .yV{color:#fff}.B .yU{color:#ff0}.B .yC .zw{color:#fff}.B .yC .e{color:#ff0}.A .yV{color:#fff}.A .yU{color:#ff0}.A .yC .zw{color:#fff}.A .yC .e{color:#ff0}.C .yV{color:#fff}.C .yU{color:#ff0}.C .yC .zw{color:#fff}.C .yC .e{color:#ff0}.zq{table-layout:fixed;cursor:default;width:100%;border-spacing:0;padding:0;background-color:#000;color:#fff}.zr{font-size:80%;border-bottom:1px #000 solid;vertical-align:middle;padding:1px;empty-cells:show}.x0{color:#ff0;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#ff0}.xI{background-color:#333}.xG{border-bottom:1px solid #808080;color:#fff;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#ff0;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #555 solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.75ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.zA{color:#ff0;cursor:pointer;padding:4 1ex}.yO{background:#000;color:#fff}.zE{color:#ff0;background:#000}.x7{color:#fff;background:#800080}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/contrastblack/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/contrastblack/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#ff0}.y2{color:#fff}.x7 .y2{color:#fff}.yQ{background:#800080}.xD{color:#fff}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#fff;border:1px solid #000;font-size:80%;color:#000;padding:10px}.Ad{color:#000;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#000}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#000;border:1px solid #000;width:250px;padding:4px;z-index:10}.Af textarea{width:98%;height:36px;font-size:80%;border:1px solid #000;padding:2px 0 0 1px;margin:0}textarea.Ah{border:2px solid #fff}textarea.Ai{border:2px solid #000}.Ag{font-size:70%;color:#fff}.lR{background:url(images/2/5/contrastblack/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/contrastblack/vimages7.png) repeat-y -12px 0}.mn{color:#fff}.mn .l8{color:#ff0!important}.mi{color:#fff}.mj{color:#ff0}.mp,.ma{font-size:70%;color:#fff}.mo,.l9{color:#ff0}.l8{color:#ff0;text-decoration:underline;cursor:pointer}.l3{color:#fff}.mb{color:#fff;padding-top:4px}.l6{font-size:70%;color:#fff;padding-top:12px}.l6 .e{color:#ff0}.l7{background:#fff;color:#000;font-weight:bold}.mh{color:#fff;font-weight:bold}.mm{color:#fff}.u{background-color:#000}.tE{text-decoration:underline;color:#ff0;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #ff0;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#000;color:#ff0;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#fff;border:1px solid #fff;background-color:#000;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tV{border-top:1px solid #fff;margin-top:2px}.tT .goog-menuitem-highlight{background-color:#800080;color:#fff}.tT .goog-menuitem-disabled{color:#fff}.tT .goog-option-selected .tU{background:url(images/2/5/contrastblack/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#000;color:#fff;border-bottom:1px solid #000;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#000;color:#fff}.u .goog-menuitem-opened .tF{background:#000;background-position:0 -48px;color:#fff;position:relative;z-index:100;border:1px solid #fff;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #000;background:#000;width:1px;height:23px;padding:0;margin:0}.tu td{vertical-align:top;margin:0;color:#fff}.tG{font-weight:bold;overflow:hidden;text-overflow:ellipsis;border:1px solid #000;margin:1px;padding:3px 0 3px 3px}.tJ{border-color:#fff}.tH{background:#000}.tB,.tC{color:#fff;padding-left:2px}.tq .lJ{background-color:#808080}.tq .lN{background-color:#808080}.iI{background:#333;padding:6px 0 5px 6px}.iE{background:#333;padding:7px 0 5px 6px}.C .iI{background:#333}.C .iE{background:#333}.B .iI{background:#333}.B .iE{background:#333}.hx{color:#fff;padding:4px 8px}.h7{padding-bottom:10px}.iY{background:#000}.iC{padding:0 0 1ex 0;background:#000}.hG{background:url(images/2/5/contrastblack/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#ff0}.gy{border-top:1px solid #000;border-bottom:1px solid #000}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;overflow:hidden;background-color:#800080}.h1,.iD{color:#ff0;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#fff}.gY{color:#000;background:#fff}.gX{color:#000}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#800080}.gR{margin:1px 0 0 0;color:#fff}.hg{width:auto;overflow:hidden;background:#800080}.he{overflow:visible;background:#333}.gG{text-align:right;color:#fff;white-space:nowrap;vertical-align:top;width:0}.g8{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/contrastblack/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/contrastblack/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/contrastblack/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/contrastblack/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/contrastblack/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/contrastblack/icons7.png) no-repeat -100px -60px}.go{color:#fff}.gv{visibility:hidden;position:absolute;color:#fff;background:#000;border:1px solid #fff;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.gv .gO{background:#800080;color:#fff}.g6{padding-left:5px;color:#fff}.ii a{color:#ff0}.hp{width:50%;height:0;border-top:2px solid #808080}.ho a{color:#ff0}.hr a{color:#ff0}.hv{float:left;border:2px solid #808080;padding:5px}.hs .goog-menu-button{color:#fff;background:transparent;border:1px solid #fff;white-space:nowarp;padding:2px 4px}.h6{height:7px;width:7px;background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#fff;background:#000;border:1px solid #fff;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.ht .goog-menuitem-disabled{color:#fff}.ht .goog-menuitem-highlight{background:#800080;color:#fff}.h2{overflow:visible;background:transparent;border-left:solid 1px transparent;margin:2px 3px 0 0}.h3{margin:0 0 0 -1px;background:none repeat-x bottom left}.hC{padding-left:5px;background:none no-repeat bottom left}.hD{border-left:solid 1px #ff0;height:2ex;width:1px}.hz{background:none no-repeat top right;padding:0 7px 0 5px}.hA{height:7px;width:7px;background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 -40px}.hE{color:#ff0;padding-right:4px;padding-left:4px;white-space:nowrap}.g{color:#fff}.g .o{background:#000 url('images/2/5/contrastblack/card-ex-tm.gif') repeat-x top;height:inherit;top:inherit;left:inherit;margin-right:inherit}.g .h{background:#000 url('images/2/5/contrastblack/card-ex-bm.gif') repeat-x top}.g .m{background:#000 url('images/2/5/contrastblack/card-ex-lm.gif') repeat-y top left}.g .n{background:url('images/2/5/contrastblack/card-ex-rm.gif') repeat-y top right}.g .p{background:#000 url('images/2/5/contrastblack/card-ex-tl.gif') no-repeat top left}.g .hn .p{background:#000 url('images/2/5/contrastblack/card-ex-tlc.gif') no-repeat top left}.g .q{background:#000 url('images/2/5/contrastblack/card-ex-tr.gif') no-repeat top right;margin:inherit;padding:inherit}.g .hn .q{background:#000 url('images/2/5/contrastblack/card-ex-trc.gif') no-repeat top right}.g .j{background:#000 url('images/2/5/contrastblack/card-ex-br.gif') no-repeat top left}.g .i{background:#000 url('images/2/5/contrastblack/card-ex-bl.gif') no-repeat top right}.iz .o{background:none}.iz .n{background:none}.ij .h,.iz .h{background:none}.iz .m{background:none}.iz .p{background:none}.iz .q{background:none}.ij .j,.iz .j{background:none}.ij .i,.iz .i{background:none}.ha{font-family:arial,sans-serif;font-size:100%;margin:12px 5px 5px 10px;padding:0;color:#fff;background:inherit;border-right:inherit}.id .il,.iW{background:#800080}.gA,.hi{background:#000 url('images/2/5/contrastblack/card-ex-lm.gif') repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.gB,.hh{background:url('images/2/5/contrastblack/card-ex-rm.gif') repeat-y top right}.A9{font-size:80%;color:#fff}.qr .gA{background:none}.qr .gB{background:none}.gQ{color:#ff0;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#ff0}.hk span{cursor:pointer;color:#ff0;white-space:nowrap}.iC .hk span{color:#ff0}.z .h0{color:#fff}.z .h0 .e{color:#ff0}.C .h0{color:#fff}.C .h0 .e{color:#ff0}.B .h0{color:#fff}.B .h0 .e{color:#ff0}.A .h0{color:#fff}.A .h0 .e{color:#ff0}.iS{text-align:center;background:#333;margin:0 8px 0 16px}.iU{font-size:80%;color:#fff}.iT{color:#ff0;cursor:pointer}.h4{cursor:pointer;color:#fff;font-size:9px}.h5{display:none;color:#fff}.im{color:#fff}.iX{color:#000}.iu{position:absolute;z-index:2;color:#000;font-size:80%;bottom:1px;right:16px;position:absolute}.hm{color:#fff}.u9,.u8{padding-top:10px;color:#fff;text-align:center}.u7{color:#ff0;text-decoration:underline;cursor:pointer}.u6:visited{color:#ff0}.vb{color:#fff;margin:12px 0}a.u6{color:#ff0}.vd{color:#ff0;text-decoration:none}.fO{font-size:80%;margin-right:5px;padding-bottom:10px;border-bottom:1px solid #000}.nN8jRb .goog-tabpane{background-color:#000;padding-left:1px}.YXCXSb .goog-tabpane{background-color:#333;padding:0 4px}.nN8jRb .goog-tabpane-cont{padding:2px;border:1px solid #000;background-color:#000}.nN8jRb .goog-tabpane-tab-selected{background-color:#000}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#000;border:1px solid #000}.YXCXSb .goog-tabpane-top{background-color:#000}.u5cA3e{border:1px solid #000}.LE6Bud .goog-tabpane-tab-selected{top:1px;border-bottom:1px solid #000;border-top:1px solid #000;border-left:1px solid #000;border-right:1px solid #000}.YXCXSb .goog-tabpane-tab-selected{top:-1px;border-top:1px solid #000;border-bottom:1px solid #000;border-left:1px solid #000;border-right:1px solid #000}.nN8jRb .goog-palette-cell{padding:2px;background:#000}.nN8jRb .goog-palette-cell-hover{background:#800080}.el,.dP,.dU{color:#ff0;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:none}.xE .dW,.x .dW{background-color:#333}.eh{background:#333}.d2{position:relative;color:#fff;font-size:80%;margin-left:6px}.eI{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#333;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#fff;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#ff0}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#ff0}.dT{color:#fff}.dN{color:#fff;font-weight:bold}.dQ{border:solid 1px #999;background:#000;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #fff!important;margin:0!important}.fM .vi{background:#fff}.fM .vh{background:#fff;color:#000;font-weight:bold;padding:0;margin:0}.fM .vj{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0;background-color:transparent}.fM .vk{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0;background-color:transparent}.fM .vf{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px;background-color:transparent}.fM .vg{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px -4px;background-color:transparent}.eJ table{width:100%;background:#000}.eL,.eM,.eK{border:1px solid #000;width:18px;height:18px;margin-left:1px;margin-right:2px}.eL{background-image:url(images/2/5/contrastblack/toolbar1.gif)}.e9{border:1px solid;border-color:#333 #000 #000 #333}.eW,.e7{border:1px solid;border-color:#000 #333 #333 #000}.e7{background-color:#800080}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#ff0;white-space:nowrap}.wY{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#ff0;cursor:pointer}.ew{color:#fff}.d1{background-color:#000!important}.ex{position:absolute;border:1px solid #fff;background-color:#000;color:#fff;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-menuitem-highlight{background-color:#800080;color:#fff}.ex .goog-menuitem-disabled{color:#fff}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/contrastblack/icons7.png) no-repeat -100px -80px}.ex hr{background-color:#fff;height:1px;border:0;margin:0}.d6{border:2px solid;border-color:#fff;padding:3px 0 3px 3px}.fx{position:absolute;background:#000;border:1px solid #fff;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#000;color:#fff;padding:3px}.fx .goog-menuitem-highlight{background:#800080;color:#fff}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/contrastblack/icons7.png) no-repeat -100px -80px}.fv .goog-palette-table{border:1px solid #000;border-collapse:collapse}.fv .goog-palette-cell{height:13px;width:15px;margin:0;border:0;text-align:center;vertical-align:middle;border-right:1px solid #000;font-size:100%}.fv .goog-palette-colorswatch{position:relative;height:12px;width:14px;border:1px solid #000}.fv .goog-palette-cell-hover .goog-palette-colorswatch{border:1px solid #000}.fv .goog-palette-cell-selected .goog-palette-colorswatch{border:1px solid #fff;color:#000}.fy{margin-top:2px;background-color:#800080;border-width:1px 0;font-size:80%}.fz{color:#fff;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#000}.mH{background-color:#000;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#ff0;vertical-align:baseline}.mF{white-space:nowrap;padding:4px 5px;cursor:default;color:#fff}.mL{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/contrastblack/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/contrastblack/icons7.png) no-repeat -80px -40px}.mC{background-color:#333}.mC .mG{text-decoration:none;color:#ff0}.manager-page{background-color:#000}.manager-page .frame{background-color:#333;color:#fff;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #333}.manager-page .input-default{color:#fff;padding-left:3px}.manager-page .add-to-group-box{display:block;background-color:#000;color:#fff;border:1px solid #808080;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .add-to-group-box .inner:disabled{background-color:#000}.manager-page .message.info{background-color:#fff;color:#000}.manager-page .message.error{background-color:#fff;color:#000}.manager-page .loading{background-color:#fff;color:#000;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#fff;background-color:#000;visibility:hidden;cursor:default;border:1px solid #fff;-moz-outline:none}.manager-page .menu-item{color:#fff;background-color:#000;padding:2px 4px;font-size:80%}.manager-page .menu .menu-item-selected{color:#fff;background-color:#800080}.cmgr-toolbar{height:32px;background-color:#333;color:#fff;vertical-align:middle;overflow-x:visible}.cmgr-toolbar span{color:#fff}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#000;color:#fff;border:1px solid #808080;text-align:left;font-size:80%}.cmgr-toolbar .search-input{width:260px;padding:2px 2px 0;margin-top:2px;background-color:#000;text-align:left}.cmgr-toolbar .cmgr-link{font-size:80%;color:#ff0}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #808080;padding:10px 0 5px}.cmgr-editbar{background-color:#000;color:#fff;border-top:1px solid #000;border-bottom:1px solid #000;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#000;color:#fff;border-top:1px solid #000;border-bottom:1px solid #000;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#ff0}.scrollable{position:relative;height:100%;width:100%;overflow-x:hidden;overflow-y:auto;background-color:#000}.group-list{font-family:arial,sans-serif;color:#fff}.checkable-list{padding:3px;font-family:arial,sans-serif;color:#fff}.cmgr-contact-pane{font-family:arial,sans-serif;font-size:80%;background-color:#000;color:#fff}.cmgr-contact-pane .group-detail{color:#fff}.cmgr-contact-pane .desc{color:#fff;font-weight:bold}.cmgr-contact-pane .cmgr-link{color:#ff0}.cmgr-contact-pane .contact-banner{border-top:1px solid #333;border-bottom:1px solid #333}.cmgr-domain-contact-label{padding:5px 7px;color:#000;border-bottom:1px solid #fff;font-weight:bold;background-color:#fff}.cmgr-domain-contact-label .link{color:#000}.cmgr-edit-interleave-label{padding:7px;color:#000;border-top:1px solid #fff;border-bottom:1px solid #fff;background-color:#fff}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#333}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #fff;background:#000;color:#fff;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#fff;background:#800080}.manager-page .dim{color:#fff}.manager-page hr{background-color:#333}.gc-settings{padding:0 10px 0 10px;font-size:80%;color:#fff}.gc-phone-example{font-size:80%;color:#fff}.gc-muted-text{color:#fff}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #fff;padding:2px 6px;color:#fff;background-color:#000;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#fff;color:#fff;background-color:#000;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#ff0;color:#fff;background-color:#000}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#fff;color:#fff;background-color:#000}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#000;background-color:#fff}.manager-page .goog-menu{background-color:#000;border:1px solid #fff;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.manager-page .goog-menuitem{color:#fff;list-style:none;margin:0;padding:4px 4px 4px 4px;white-space:nowrap}.manager-page .goog-menuitem-disabled{color:#fff}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#800080;color:#fff}.cmgr-hr-divider{background-color:#333;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#800080}.checkable-list .active .text{color:#fff}.checkable-list .selected{background-color:#808080;overflow:hidden}.checkable-list .selected .text{color:#ff0;font-weight:bold}.checkable-list .preselect{background-color:#800080}.checkable-list .preselect .text{color:#fff;font-weight:bold}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #333;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .count{color:#fff;padding-left:5px;padding-right:2px;float:right}.group-list .active{background-color:#800080}.group-list .active .text{color:#fff}.group-list .active .count{color:#fff}.group-list .preselect{background-color:#800080}.group-list .preselect .text{color:#fff;font-weight:bold}.group-list .preselect .count{color:#fff}.group-list .selected{background-color:#808080}.group-list .selected .text{font-weight:bold;color:#ff0}.group-list .selected .count{color:#ff0}.group-list-secondary .selected{background-color:#000}.group-list-secondary .selected .text{color:#fff}.group-list-secondary .selected .count{color:#fff}.group-list hr.header{background-color:#333;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#808080}.lo .o{background:#808080;height:3px;top:inherit}.lo .n{background:#808080}.lo .m{background:#808080}.lo .q{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#800080}.lp .o{background:#800080;height:3px;top:inherit}.lp .n{background:#800080}.lp .m{background:#800080}.lp .q{background:url(rc?a=af&c=800080&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=800080&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#808080;padding:2px}.ln{background:#800080}.kX{border-right:1px solid #fff;border-left:1px solid #fff;border-top:none;border-bottom:1px solid #000}.kv{background:url(images/2/5/contrastblack/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/contrastblack/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/contrastblack/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#B3B3B3}.ky,.kW,.jc{background-color:#B324B3}.kt,.jA,.nl{color:0;text-decoration:underline;cursor:pointer}.ko{color:#000;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #fff;border-right:1px solid #fff;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#00f}.dx{background-color:#000}.jp{border-left:solid #fff 1px;border-right:solid #fff 1px;background-color:#000;text-align:center;padding-bottom:4px}.jr{padding:4px 0;color:#fff;font-size:70%;overflow:auto}.jT{position:relative;border:1px solid;border-color:#fff;margin:1px;color:#fff;background-color:#000;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #fff}.jW{margin:0;border:2px solid #fff}.jx{color:#fff}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #000;font-size:80%;color:#fff;text-decoration:none}.jE{border:1px solid #fff}.jF{border:solid 1px #fff;background-color:#000;color:#fff}.jB{background:url(images/2/5/contrastblack/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/contrastblack/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#000;color:#fff;visibility:hidden;width:30ex;font-size:80%;border:1px solid #fff;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jM{color:#fff}.jN{background-color:#800080;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jP{border-top:1px solid #fff}.jO{background-color:#800080;color:#fff}.jR{background:url(images/2/5/contrastblack/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/contrastblack/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#000;font-size:80%;overflow:hidden;border-left:1px solid #fff;border-right:1px solid #fff;border-bottom:1px solid #333;padding-top:1px;padding-bottom:4px}.nf{background-color:#000}.nj input{width:97%;margin:1px;border:1px solid #fff}.nk input{margin:0;border:2px solid #fff}.jo{position:relative;background-color:#000;border-right:1px solid #fff;border-left:1px solid #fff;border-bottom:1px solid #fff;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#000}.jm .goog-icon-picker-highlighted{background-color:#800080}.jm .goog-icon-picker{background-color:#000}.jm .goog-tabpane{background-color:#000;padding-left:1px;position:relative;width:136px;border:1px solid #fff;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #fff;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#000;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#000;border:solid #fff;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#000;height:30px}.jX{border-left:1px solid #fff;border-right:1px solid #fff}.jY{width:30px;background-position:center;background-repeat:no-repeat;border-left:#000 2px groove;float:right;cursor:pointer}.jZ{background-color:#800080}.ll{color:#fff;font-weight:bold}.kR{border-left:solid #fff 1px;border-right:solid #fff 1px;background-color:#000;text-align:center;overflow:hidden;padding:4px;clear:both}.fX{background-color:#808080}.fX .goog-flat-button{color:#ff0;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#ff0}.vC{white-space:nowrap;color:#fff;cursor:pointer;background-color:#000;width:100%;line-height:1.4em}.vI td{border-top:1px solid #000}.vD{color:#fff;background-color:#800080}.vE{background:#800080}.vm{color:#fff}.vG{color:#fff}.vF .vn .vG{color:#fff}.vG a{color:#ff0}.vu{color:#fff}.uk{width:100%;border-bottom:solid #808080 1px;background-color:#000;font-size:80%;cursor:pointer;padding-top:5px}.uC{color:#fff;white-space:nowrap;text-overflow:ellipsis;margin-top:5px}.uc{color:#fff;margin-bottom:4px}.ul .cg{color:#fff}.ul{background-color:#800080;border-top:1px solid #800080;border-bottom:1px solid #800080}.ud,.um{color:#fff;background-color:#000;border-top:1px solid #808080;border-bottom:1px solid #808080}.up{border:1px solid #fff;background-color:#000;cursor:pointer}.uo{border:1px solid #808080;color:#808080}.uB{height:100%;color:#fff;text-align:right}td.uK{border-right:#000 solid 1px}td.uL{border-right:#000 solid 1px}td.uh,td.uO{border:#000 solid 1px}td.ui,td.uP{border:#000 solid 1px}.ue{height:100%;padding:1px 0 1px 5px;color:#fff}.ue a{color:#ff0}.uf{color:#fff;text-align:left;padding:0}.uM{background:url(images/2/5/contrastblack/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#808080 solid 1px;background:#000}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#808080 solid 1px;font-size:80%}.uA{position:absolute;visibility:hidden;border:1px solid #fff;vertical-align:bottom;padding:0;margin:0;overflow:hidden;z-index:7}.uv{color:#fff;background-color:#000;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uy{background-color:#800080;color:#fff}.uv hr{margin:0;border:none;height:1px;background-color:#fff}.uu{color:#ff0;text-decoration:underline;cursor:pointer}.dF{background-color:#000}.dI{border:solid 1px #808080;font-size:80%;margin:0 1px}input.dI{padding:3px 0 3px 3px;background-color:#000}.ac-active img.uS{background:url(images/2/5/contrastblack/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/contrastblack/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#000;color:#fff;float:right;border-left:1px solid #fff;padding-left:2px;padding-top:1px}.uV{background-color:#800080;color:#fff}.u3{background-color:#000;color:#fff}.uW{background-color:#000;color:#fff}.uY{border-top:1px solid #fff;padding-top:0}.dz{color:#fff;background-color:#000;font-size:80%;border-bottom:1px solid #808080}.dz .cg{color:#ff0}.c3{color:#fff}.dp{font-size:80%;color:#fff}.do{background:#000 url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.jU{padding:0 3px}.dv{vertical-align:super;color:#fff;font-size:80%}.A5 a{color:#ff0}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #808080;background:#000;color:#fff;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#808080;color:#fff;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#ff0;background:#808080;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#000;color:#fff;cursor:pointer}.goog-date-picker-other-month{color:#000}.goog-date-picker-selected{background:#333;color:#fff}.modal-dialog-bg{position:absolute;top:0;left:0;background-color:#fff}.v .l{background-color:#808080}.v .k{color:#fff;background:#808080}.v .o{background:#808080;height:4px;top:inherit}.v .n{background:#808080;padding:inherit;margin:inherit}.v .h{background:#808080;height:4px}.v .m{background:#808080}.v .q{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px 0;display:inherit;padding:inherit;margin:inherit}.v .j{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat -4px -4px;display:inherit;padding:inherit;margin:inherit}.v .i{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 -4px}.v .p{background:url(rc?a=af&c=808080&w=4&h=4) no-repeat 0 0}.sA,.sv,.r4 .e{text-decoration:underline;color:#ff0;cursor:pointer;white-space:nowrap}.qZ{background:#808080;color:#fff;padding:1px 0 1px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#333;padding:4px}.v9 .fZ{background:#333;font-size:80%;padding:3px 8px}.v9 .f1{color:#ff0;background:#808080;font-size:80%}.v9 .fY{background:#808080;padding:0}.v7 .fY{background:#808080}.v7 .fZ{background-color:#333;border:1px solid #808080;border-right:none}.v7 .f1{background:#808080}.tf{background-color:#333;border:1px solid #808080;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #808080;padding:8px}.r7 td.r5{border-top:2px solid #808080}.r7 a{color:#ff0}.r7 .e{color:#ff0}.rT{font-weight:normal;color:#fff}.rZ{background-color:#808080;padding:0;height:2px}.rJ{width:96px;height:96px;border:1px solid #000}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#ff0}.qT{color:#fff}.qF{font-weight:bold;color:#fff}.qG{color:#fff}.rM .vi,.rM .vh{background-color:#fff}.rM .vj{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.rM .vk{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.rM .vf{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 -4px}.rM .vg{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px -4px}.rO{color:#000}.s0{padding:6px;border-bottom:2px solid #808080;font-size:80%}.s7{color:#fff}.ti{color:#fff;float:right;padding:8px;font-size:80%}.sV{font-size:80%;color:#fff;margin:20px 0 0 24px}.s1{border-color:#808080;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s3{color:#fff;font:9px verdana,arial,sans-serif}.s5{color:#fff;font-size:80%}.sW a{color:#ff0}.lpcd{padding:15px 20px;position:absolute;color:#fff;border:2px solid #808080;background-color:#000;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#ff0;cursor:pointer}.sM{background-color:#808080;padding:5px}.sn{border:2px solid #808080;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#ff0;text-decoration:underline}.ri{color:#ff0}.rh{font-weight:bold;color:#fff}.ro{border:1px solid #fff}.rr{color:#fff}.ru{color:#fff}.sk{border:solid 2px #ff0}.sl{border:solid 2px #333}.si{background-color:#333;border:solid 2px #333;padding:5px;cursor:pointer}.sh{background-color:#fff;border:solid 2px #000;padding:5px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#ff0}.sq{width:65px;height:65px;border:1px solid #000;margin:5px 3px 3px 3px}.rd{color:#ff0}.cB{position:relative;margin:0 3px 0 0;border:solid #000;border-width:1px 0;font-size:80%}.cz{height:100%;vertical-align:top;background-color:#000;padding:4px 0}.cz a{color:#ff0}.cw{white-space:nowrap;text-align:right;vertical-align:top;padding:3px 3px 3px 15px;color:#fff}.cD{color:#fff}.cF{zoom:1;border:1px solid #000;background:#000;padding:4px;white-space:nowrap}.cF .e{color:#ff0}.cy a{color:#ff0}tr.cn td{border-top:1px dotted #000}tr.cm td{border-bottom:1px dotted #000}tr.cr td{border-top:1px #000 solid;border-bottom:1px #000 solid;background:#000}.cp{white-space:nowrap;text-align:right;color:#fff}.cu{width:70%;height:100%;background:#000;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #000;text-align:center;background:#000;padding:4px}.o0{background-color:#333;border:9px solid #808080}.oR{background:#808080;color:#fff;padding-bottom:8px;font-weight:bold}.oQ{font-size:80%;color:#fff;padding:24px 12px 12px 12px}.oS{color:#fff;padding:6px 0}.oP{color:#fff;padding-top:6px;padding-bottom:12px;font-weight:bold}.oZ{color:#fff;padding-top:20px}.vO{font-size:small;position:relative;overflow:auto;padding:8px 2px;text-align:center;background:#000}.wL{border:1px solid #808080}.wN .k{background:#808080}.wN .o{background:#808080;height:3px;top:inherit}.wN .n{background:#808080}.wN .m{background:#808080}.wN .q{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=808080&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#808080}.wO .o{background:#808080;height:3px;top:inherit}.wM{background:#808080;padding:2px}.vT{background:#808080;overflow:auto}.vS{width:100%;background:#333;overflow:hidden}div.vQ{width:100%;text-align:center;font-size:small;cursor:pointer;height:1.3em;background:#000}a.vQ{color:#ff0}.vL,.vV{color:#fff;padding:4px 6px;font-size:80%;position:relative}.vV{background:#000}.vM{background:#fff;color:#000}.vN{color:#000}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#808080;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/contrastblack/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#000;z-index:100}.sam .goog-menuitem-highlight{color:#fff;background:#800080}.sam .goog-menuitem-content{color:#fff}.kk a:hover,.kq a:hover,.kk a,.kq a{color:0;background-color:#fff}button,input,textarea,select{background-color:#000;color:#fff}button:hover,button:focus,select:hover,select:focus{background-color:#800080;border-color:#ff0}a:hover,a:focus{background-color:#800080}button:active{background-color:#fff;color:#000;border-color:#ff0}button:disabled,select:disabled{border:none}",
logo: null
},
shiny: {
name: "Shiny",
id: "shiny",
css: ".cP{overflow:visible;background-color:#e6e8eb}.aB,.e,.cg{color:#1c51a8;cursor:pointer}.cP{background:#e6e8eb url(images/2/5/shiny/canvastile_bg1.jpg) repeat-x 0 0}.b8 .vi,.b8 .vh{background:#292929;color:#e6e8eb}.b8 .b9{color:#fff}.b8 .vj{background:url(rc?a=af&c=292929&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=292929&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=292929&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=292929&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#ededed}.cc .vh{background:#ededed}.cc .ca,.cc .b9{color:#fff}.cc .vj{background:url(rc?a=af&c=ededed&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=ededed&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=ededed&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=ededed&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#f7f7f7;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#ffc;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#1c51a8}.ly{color:#1c51a8;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#e5e7eb}.vX .p{background:#e5e7eb}.vX .q{background:#e5e7eb}.vX .i{background:url(rc?a=af&c=e5e7eb&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=e5e7eb&w=4&h=4) no-repeat -4px -4px}.v2{color:#1c51a8}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #ffc!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#d2d6dc;border:1px solid #404143;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#ededed;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#1c51a8!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#ededed!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #d2d6dc!important}.tr_edit-link-dialog{border:2px solid #d2d6dc!important}.tr_image-dialog{border:2px solid #d2d6dc!important}.tr_dialog{background:#ededed!important;color:#000!important}.tr_pseudo-link{color:#1c51a8!important}.tr_dialog-tab-content-explanation-text a{color:#1c51a8!important}.tr_tabbed-pane-tab-label{color:#1c51a8!important}.ad{color:#fff}.ag{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#fff;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#292929}.mq{padding:.2em 8px;height:1.1em;background:#d2d6dc url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 -3px}.mv{font-size:80%;color:#313438;white-space:nowrap;overflow:hidden;padding-top:2px}.my{color:#313438}.mv .e{color:#313438}.mB{float:right;font-size:70%;color:#676c74;padding:0.3em 1ex 0 2ex}.mx,.mz{color:#313438}.mr{color:#313438}.ms{background-color:#e9ebee;color:#697482;border:1px solid #a1a7b1}.mu{background-color:#fff;color:#555;border:1px solid #555}.mt{background-color:transparent;color:#b2b8c1;border:1px solid #c3c8cf}.C .mq{background:#d2d6dc url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 -3px}.C .mB{color:#676c74}.C .ms{background:#e9ebee;color:#697482;border-color:#a1a7b1}.C .mu{background:#fff;color:#555;border-color:#555}.C .mt{background:transparent;color:#b2b8c1;border-color:#c3c8cf}.B .mq{background:#d2d6dc url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 -3px}.B .mB{color:#676c74}.B .ms{background:#e9ebee;color:#697482;border-color:#a1a7b1}.B .mu{background:#fff;color:#555;border-color:#555}.B .mt{background:transparent;color:#b2b8c1;border-color:#c3c8cf}.B .mv{color:#313438}.C .mv{color:#313438}.B .mv .e,.B .mz{color:#313438}.B .my{color:#313438}.B .mr{color:#313438}.B .mx{color:#313438}.C .mv .e,.C .mz{color:#313438}.C .my{color:#313438}.C .mr{color:#313438}.C .mx{color:#313438}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/shiny/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#f7f7f7;color:#000;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3,.b4,.b5{text-indent:-10px;color:#000;padding:2px 4px 2px 22px;background:#f7f7f7;line-height:105%}.z .AO{color:#1c51a8}.z .AP{color:#1c51a8}.C .AO{color:#1c51a8}.C .AP{color:#1c51a8}.B .AO{color:#1c51a8}.B .AP{color:#1c51a8}.A .AO{color:#1c51a8}.A .AP{color:#1c51a8}.z .l,.y .l{background:#d2d6dc}.z .o,.y .o{background:url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.z .h,.y .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x left bottom;height:11px}.z .m,.y .m{background:url(images/2/5/shiny/frameleft_bg.png) repeat-y 0 0}.z .n,.y .n{background:url(images/2/5/shiny/frameright.png) repeat-y top right;padding:0 7px 0 0;margin:0 -7px 0 0}.z .p,.y .p{background:url(images/2/5/shiny/frametopleft_bg.png) no-repeat 0 0}.z .q,.y .q{background:url(images/2/5/shiny/frametopright.png) no-repeat top right;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.z .i,.y .i,.z .j,.y .j{height:11px}.z .i,.y .i{background:url(images/2/5/shiny/framebottomleft_bg.png) no-repeat left bottom}.z .j,.y .j{background:url(images/2/5/shiny/framebottomright.png) no-repeat right bottom;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.C .l{background:#d2d6dc}.C .o{background:url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.C .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x left bottom;height:11px}.C .m{background:url(images/2/5/shiny/frameleft_bg.png) repeat-y 0 0}.C .n{background:url(images/2/5/shiny/frameright.png) repeat-y top right;padding:0 7px 0 0;margin:0 -7px 0 0}.C .p{background:url(images/2/5/shiny/frametopleft_bg.png) no-repeat 0 0}.C .q{background:url(images/2/5/shiny/frametopright.png) no-repeat top right;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.C .i,.C .j{height:11px}.C .i{background:url(images/2/5/shiny/framebottomleft_bg.png) no-repeat left bottom}.C .j{background:url(images/2/5/shiny/framebottomright.png) no-repeat right bottom;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.B .l{background:#d2d6dc}.B .o{background:url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.B .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x left bottom;height:11px}.B .m{background:url(images/2/5/shiny/frameleft_bg.png) repeat-y 0 0}.B .n{background:url(images/2/5/shiny/frameright.png) repeat-y top right;padding:0 7px 0 0;margin:0 -7px 0 0}.B .p{background:url(images/2/5/shiny/frametopleft_bg.png) no-repeat 0 0}.B .q{background:url(images/2/5/shiny/frametopright.png) no-repeat top right;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.B .i,.B .j{height:11px}.B .i{background:url(images/2/5/shiny/framebottomleft_bg.png) no-repeat left bottom}.B .j{background:url(images/2/5/shiny/framebottomright.png) no-repeat right bottom;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.A .l{background:#d2d6dc}.A .o{background:url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.A .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x left bottom;height:11px}.A .m{background:url(images/2/5/shiny/frameleft_bg.png) repeat-y 0 0}.A .n{background:url(images/2/5/shiny/frameright.png) repeat-y top right;padding:0 7px 0 0;margin:0 -7px 0 0}.A .p{background:url(images/2/5/shiny/frametopleft_bg.png) no-repeat 0 0}.A .q{background:url(images/2/5/shiny/frametopright.png) no-repeat top right;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.A .i,.A .j{height:11px}.A .i{background:url(images/2/5/shiny/framebottomleft_bg.png) no-repeat left bottom}.A .j{background:url(images/2/5/shiny/framebottomright.png) no-repeat right bottom;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.x .l{background:#d2d6dc}.x .o,.AL .o{background:url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.x .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x left bottom;height:11px}.x .m{background:url(images/2/5/shiny/frameleft_bg.png) repeat-y 0 0}.x .n{background:url(images/2/5/shiny/frameright.png) repeat-y top right;padding:0 7px 0 0;margin:0 -7px 0 0}.x .p{display:inherit;background:url(images/2/5/shiny/frameleft_bg.png) repeat-y 0 0}.x .q{background:url(images/2/5/shiny/frametopright.png) no-repeat top right;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.x .i{background:url(images/2/5/shiny/framebottomleft_bg.png) no-repeat left bottom;display:inherit;height:11px}.x .j{background:url(images/2/5/shiny/framebottomright.png) no-repeat right bottom;display:inherit;height:11px;padding:0 7px 0 0;margin:0 -7px 0 0}.AX,.AR{background:#f7f7f7;color:#000;font:80% arial,sans-serif}.AW .lJ,.AW .lN{background:#f7f7f7}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/shiny/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#d2d6dc}.AT{background:#ededed;border-top:1px solid #ccc;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#1c51a8;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#f7f7f7;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #ccc #ccc #ccc;padding:1px;margin-bottom:3px}.A0{color:#777;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/shiny/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/shiny/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .goog-imageless-button-outer-box{border-bottom-color:#f7f7f7}.D .goog-imageless-button-open .AZ{background:url(images/2/5/shiny/vimages7.png) no-repeat -24px 50%}.A1{background:#ededed url(images/2/5/shiny/frametoolbartop_bg.gif) repeat-x 0 0;padding:6px 0 3px 6px;border-bottom:1px solid #D4D4D4}.AY{background:#f9f9f9 url(images/2/5/shiny/frametoolbarbottom_bg.gif) repeat-x left bottom;padding:3px 0 6px 6px;border-top:1px solid #D4D4D4}.C .A1{background:#ededed url(images/2/5/shiny/frametoolbartop_bg.gif) repeat-x 0 0}.C .AY{background:#f9f9f9 url(images/2/5/shiny/frametoolbarbottom_bg.gif) repeat-x left bottom}.B .A1{background:#ededed url(images/2/5/shiny/frametoolbartop_bg.gif) repeat-x 0 0}.B .AY{background:#f9f9f9 url(images/2/5/shiny/frametoolbarbottom_bg.gif) repeat-x left bottom}.A .A1{background:#ededed url(images/2/5/shiny/frametoolbartop_bg.gif) repeat-x 0 0}.A .AY{background:#f9f9f9 url(images/2/5/shiny/frametoolbarbottom_bg.gif) repeat-x left bottom}.ow{background-color:#e8eaed;font-size:70%}.oJ{text-decoration:underline;color:#1c51a8}.oE{background:url(images/2/5/shiny/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/shiny/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#e8eaed;color:#000;visibility:hidden;font-size:100%;border:1px solid #fff;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/shiny/icons7.png) no-repeat -100px -80px}.oK{border-top:1px solid #fff}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.qk{color:#fff;font-size:80%}.pk .q{display:none}.pk .j{display:none}.pk .qk .p9{font-weight:bold;color:#313438;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#313438;text-decoration:none}.pk .qk{color:#313438}.pz .k{background:#d2d6dc url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 -5px}.qj .k{background:#d2d6dc url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 -5px}div.qi .k{background:#d2d6dc url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 -5px}.qk .p9,.qk .qh{color:#fff}.pO .p9{color:#1c51a8}.pT{color:#1c51a8}.pz .o{background:url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 0;height:7px;top:-2px}.pz .n{background:#d2d6dc url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 -5px}.pz .h{background:url(images/2/5/shiny/navtabbottom_bg.png) repeat-x 0 0;height:11px}.pz .m{background:url(images/2/5/shiny/navtableft_bg.gif) no-repeat 0 0}.pz .q{background:url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 0;height:7px;margin-top:-2px}.pz .j{background:url(images/2/5/shiny/navtabbottom_bg.png) repeat-x 0 0;height:11px}.pz .i{background:url(images/2/5/shiny/navtabbottomleft_bg.png) no-repeat 0 0;height:11px}.pz .p{background:url(images/2/5/shiny/navtabtopleft_bg.png) no-repeat 0 0;height:7px;margin-top:-2px}.qj .o{background:url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 0;height:7px;top:-2px}.qj .n{background:#d2d6dc url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 -5px}.qj .h{background:url(images/2/5/shiny/navtabbottom_bg.png) repeat-x 0 0;height:11px}.qj .m{background:url(images/2/5/shiny/navtableft_bg.gif) no-repeat 0 0}.qj .q{background:url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 0;height:7px;margin-top:-2px}.qj .j{background:url(images/2/5/shiny/navtabbottom_bg.png) repeat-x 0 0;height:11px}.qj .i{background:url(images/2/5/shiny/navtabbottomleft_bg.png) no-repeat 0 0;height:11px}.qj .p{background:url(images/2/5/shiny/navtabtopleft_bg.png) no-repeat 0 0;height:7px;margin-top:-2px}.qi .o{background:url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 0;height:7px;top:-2px}.qi .n{background:#d2d6dc url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 -5px}.qi .h{background:url(images/2/5/shiny/navtabbottom_bg.png) repeat-x 0 0;height:11px}.qi .m{background:url(images/2/5/shiny/navtableft_bg.gif) no-repeat 0 0}.qi .q{background:url(images/2/5/shiny/navtabtop_bg.png) no-repeat 0 0;height:7px;margin-top:-2px}.qi .j{background:url(images/2/5/shiny/navtabbottom_bg.png) repeat-x 0 0;height:11px}.qi .i{background:url(images/2/5/shiny/navtabbottomleft_bg.png) no-repeat 0 0;height:11px}.qi .p{background:url(images/2/5/shiny/navtabtopleft_bg.png) no-repeat 0 0;height:7px;margin-top:-2px}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/shiny/icons7.png) no-repeat -20px -20px;height:15px;width:15px;margin-bottom:-2px}.px{color:#1c51a8;text-decoration:none}.pt{background-color:#e8eaed}.m{background-color:#fff}.xE .l,.xE .ph{background-color:#d2d6dc}.pU{text-align:right;font-size:70%;color:#1c51a8;padding:2px}.r .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.pS .l{background:#fff}.pS .i{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat 0 -3px}.pS .j{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat -3px -3px}.t .pt{background:#e8eaed}.t .l{background:#fff}.t .pU{color:#1c51a8}.t .r .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat 0 -3px}.t .j{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat -3px -3px}.pO{color:#1c51a8;font-size:80%;padding:3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#e8eaed}.s .l{background-color:#fff}.s .ow{background:#e8eaed}.s .oy{background:#f7f7f7;color:#000}.s .r .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat 0 -3px}.s .j{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat -3px -3px}.pY .pt{background-color:#e8eaed}.pY .l{background-color:#fff}.pY .r .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat 0 -3px}.pY .j{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat -3px -3px}.qo .pt{background-color:#e8eaed}.qo .l{background-color:#fff}.pv .pq{background:url(images/2/5/shiny/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/shiny/icons7.png) no-repeat -60px -20px}.dI{border:1px solid #fff;background-color:#fff}.pU{background-color:#e8eaed;padding:4px 7px 4px 0;margin:0}.r .l,.r .k{background:#fff}.r .o{background:#fff;height:4px;top:inherit}.r .m{background:#fff}.r .n{background:#fff}.t .r .l,.t .r .k{background:#fff}.t .r .o{background:#fff;height:4px;top:inherit}.t .r .m{background:#fff}.t .r .n{background:#fff}.s .r .l,.s .r .k{background:#fff}.s .r .o{background:#fff;height:4px;top:inherit}.s .r .m{background:#fff}.s .r .n{background:#fff}.t .pU{background-color:#e8eaed}.t .oy{background-color:#e8eaed;border-color:#fff}.t .oK{border-top-color:#fff}.pt{border:#fff 1px solid;border-top:none}.s .pt{border-color:#fff}.t .pt{border-color:#fff}.gb1{color:#fff}a.gb1.qq,a.gb3.qq{color:#fff!important}div#gbi{background:#f7f7f7!important;border-color:#888!important}a.gb2.qq{color:#1c51a8!important}.qp{background:transparent;border-bottom:1px solid #5b667c;margin-bottom:2px}.aZ{background:#e6e8eb url(images/2/5/shiny/canvastile_bg1.jpg) repeat-x 0 0;color:#000;padding:0 6px}.a0{background:#292929;color:#e6e8eb;padding:0 6px}.a5{font-size:70%;color:#313438;text-decoration:underline;cursor:pointer;position:absolute;top:1px;right:5px}.aK .a5{color:#313438}.aJ .a5{color:#1c51a8}.bR{font:9px verdana,arial,sans-serif;color:#fff;text-decoration:underline;cursor:pointer}.a8{color:#fff;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#fff}.aK .aI{color:#676c74}.bE{color:#fffc00}.aH{padding:4px;color:#e6e8eb;background:#292929;border:1px solid #ccc;font-weight:bold}.aH .e{color:#fff}.bA{color:#fff;cursor:default}.bB{color:#fff;text-decoration:none}.bA .goog-menu{background:#f7f7f7 none repeat scroll 0!important;border-color:#888;border-style:solid;border-width:1px;z-index:1001;margin:0;position:absolute;text-align:left;outline:none;top:24px!important}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#1c51a8;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#1c51a8}.aK .k{background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 -5px;margin:0!important}.aK .o{background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 0;height:4px;top:inherit}.aK .m,.b .m{background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 -5px}.aK .n{margin-left:5px!important;background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 -5px;padding-top:inherit}.aK .p{height:4px;background:url(images/2/5/shiny/searchcaptiontopleft_bg.png) no-repeat 0 0}.aK .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.b .o{background:url(images/2/5/shiny/searchcontenttop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.b .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x 0 0;height:4px}.b .m{background:#d2d6dc}.b .n{background:#d2d6dc}.b .p{background:url(images/2/5/shiny/searchcontenttop_bg.gif) repeat-x 0 0}.b .q{background:url(images/2/5/shiny/searchcontenttop_bg.gif) repeat-x 0 0}.b .i{background:#d2d6dc}.b .j{background:#d2d6dc}.b .e{color:#1c51a8}.b .k{background-color:#d2d6dc}.aJ .k{background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 -5px;margin:0!important}.aJ .o{background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 0;height:4px;top:inherit}.aJ .m,.a .m{background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 -5px}.aJ .n{background:#f5f5f5 url(images/2/5/shiny/searchcaption_bg.gif) repeat-x 0 -5px;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(images/2/5/shiny/searchcaptiontopleft_bg.png) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.a .e{color:#1c51a8}.a .o{background:url(images/2/5/shiny/searchcontenttop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.a .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x 0 0;height:4px}.a .k{background-color:#d2d6dc}.a .m{background:#d2d6dc}.a .n{background:#d2d6dc}.a .p{background:url(images/2/5/shiny/searchcontenttop_bg.gif) repeat-x 0 0}.a .q{background:url(images/2/5/shiny/searchcontenttop_bg.gif) repeat-x 0 0}.a .i{background:#d2d6dc}.a .j{background:#d2d6dc}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #DEDEDE solid;padding:3px 8px}.x8{text-decoration:underline;cursor:pointer;color:#1c51a8}.yb .x8{color:#1c51a8}.ya .e,.x9{color:#1c51a8}.yd .x8,.yd .x9{color:#1c51a8}.x2{color:#1c51a8;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#1c51a8}.z .yC .e{color:#1c51a8}.B .yU{color:#1c51a8}.B .yC .e{color:#1c51a8}.A .yU{color:#1c51a8}.A .yC .e{color:#1c51a8}.C .yU{color:#1c51a8}.C .yC .e{color:#1c51a8}.x0{color:#1c51a8;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#1c51a8}.xI{background-color:#ededed}.xG{border-bottom:1px solid #d2d6dc;color:#777;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#1c51a8;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt td{font-size:80%;border-bottom:1px #DEDEDE solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.yO{background:#f7f7f7;color:#444}.xR{background:url(images/2/5/shiny/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:-2px;left:-2px}.y3{background:url(images/2/5/shiny/icons7.png) no-repeat -20px -20px}.zG{background:url(images/2/5/shiny/icons7.png) no-repeat 0 -20px}.yE{background:url(images/2/5/shiny/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#1c51a8}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#292929;border:1px solid #ccc;font-size:80%;color:#e6e8eb;padding:10px}.Ad{color:#fff;white-space:nowrap;text-decoration:underline;cursor:pointer}textarea.Ah{border:2px solid #ffc}.lR{background:url(images/2/5/shiny/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/shiny/vimages7.png) repeat-y -12px 0}.mn .l8{color:#1c51a8!important}.mo,.l9{color:#1c51a8}.l8{color:#1c51a8;text-decoration:underline;cursor:pointer}.l6 .e{color:#1c51a8}.l7{background:#292929;color:#e6e8eb;font-weight:bold}.tE{text-decoration:underline;color:#1c51a8;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #1c51a8;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#1c51a8;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/shiny/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menu{position:absolute;color:#000;border:1px solid #888;background-color:#f7f7f7;cursor:default;font:90% arial,sans-serif;outline:0;z-index:9}.tT .goog-option-selected .tU{background:url(images/2/5/shiny/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#f1f1f1 url(images/2/5/shiny/profcardbutton_bg.gif) repeat-x 0 0;color:#000;border-bottom:1px solid #ccc;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-opened .tF{background:#f7f7f7;background-position:0 -48px;color:#777;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.tq .lJ{background-color:#6d737f}.tq .lN{background-color:#6d737f}.hG{background:url(images/2/5/shiny/icons7.png) no-repeat -41px -21px;width:5px;height:9px}.gt a{color:#1c51a8}.h1,.iD{color:#1c51a8;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#1c51a8}.gR{margin:1px 0 0 0;color:#1c51a8}.he{overflow:visible;background:#ededed}.g8{background:url(images/2/5/shiny/icons7.png) no-repeat 0 -20px}.g9{background:url(images/2/5/shiny/icons7.png) no-repeat -20px -20px}.gW{background:url(images/2/5/shiny/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/shiny/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/shiny/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/shiny/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/shiny/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/shiny/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/shiny/icons7.png) no-repeat -100px -60px}.gv{visibility:hidden;position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;cursor:default;-moz-outline:none;outline:none;z-index:20000;white-space:nowrap;height:auto;font-size:80%;overflow:hidden}.ii a{color:#1c51a8}.hp{width:50%;height:0;border-top:2px solid #d2d6dc}.ho a{color:#1c51a8}.hr a{color:#1c51a8}.hv{float:left;border:2px solid #d2d6dc;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/shiny/icons7.png) no-repeat -120px 0}.ht{position:absolute;color:#000;background:#f7f7f7;border:1px solid #888;font-size:80%;margin:0;padding:0;overflow:auto;height:16em}.h2{overflow:visible;background:transparent;border-left:solid 1px #e5e7eb;margin:2px 3px 0 0}.h3{margin:0 0 0 -1px;background:url(images/2/5/shiny/cvreplybottom_bg.gif) repeat-x bottom left}.hC{padding-left:5px;background:url(images/2/5/shiny/cvreplybottomleft_bg.gif) no-repeat bottom left}.hD{border-left:solid 1px #e5e7eb;height:2ex;width:1px}.hz{background:none no-repeat top right;padding:0 7px 0 5px}.hA{height:7px;width:7px;background:url(images/2/5/shiny/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/shiny/icons7.png) no-repeat 0 -40px}.hE{color:#1c51a8;padding-right:4px;padding-left:4px;white-space:nowrap}.g .o{background:#e5e7eb url(images/2/5/shiny/cvtop_bg.gif) repeat-x top;height:inherit;top:inherit;left:inherit;margin-right:inherit}.g .h{background:#5b6370 url(images/2/5/shiny/cvfooterbottom_bg.gif) repeat-x top}.g .m{background:#e5e7eb url(images/2/5/shiny/cvleft_bg.gif) repeat-y top left}.g .n{background:transparent url(images/2/5/shiny/cvright_bg.gif) repeat-y top right}.g .p{background:#e5e7eb url(images/2/5/shiny/cvtopleft_bg.png) no-repeat top left}.g .hn .p{background:#e5e7eb url(images/2/5/shiny/cvmidleft_bg.gif) no-repeat top left}.g .q{background:#e5e7eb url(images/2/5/shiny/cvtopright_bg.png) no-repeat top right;margin:inherit;padding:inherit}.g .hn .q{background:#e5e7eb url(images/2/5/shiny/cvmidright_bg.gif) no-repeat top right}.g .j{background:#5b6370 url(images/2/5/shiny/cvfooterbottomright_bg.png) no-repeat top left}.g .i{background:#5b6370 url(images/2/5/shiny/cvfooterbottomleft_bg.png) no-repeat top right}.iz .o{background:#e5e7eb url(images/2/5/shiny/cvtop_bg.gif) repeat-x top}.iz .n{background:#e5e7eb url(images/2/5/shiny/cvfooterright_bg.gif) repeat-y top right}.ij .h,.iz .h{background:#e5e7eb url(images/2/5/shiny/cvfooterbottom_bg.gif) repeat-x top}.iz .m{background:#e5e7eb url(images/2/5/shiny/cvfooterleft_bg.gif) repeat-y top left}.iz .p{background:#e5e7eb url(images/2/5/shiny/cvtopleft_bg.png) no-repeat top left}.iz .q{background:#e5e7eb url(images/2/5/shiny/cvtopright_bg.png) no-repeat top right}.ij .j,.iz .j{background:#e5e7eb url(images/2/5/shiny/cvfooterbottomright_bg.png) no-repeat top right}.ij .i,.iz .i{background:#e5e7eb url(images/2/5/shiny/cvfooterbottomleft_bg.png) no-repeat top left}.gA,.hi{background:#5b6370 url(images/2/5/shiny/cvfooterleft_bg.gif) repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.gB,.hh{background:url(images/2/5/shiny/cvfooterright_bg.gif) repeat-y top right}.qr .gA{background:#e5e7eb url(images/2/5/shiny/cvfooterleft_bg.gif) repeat-y top left}.qr .gB{background:#e5e7eb url(images/2/5/shiny/cvfooterright_bg.gif) repeat-y top right}.gQ{color:#1c51a8;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#1c51a8}.hk span{cursor:pointer;color:#2e3c53;white-space:nowrap}.iC .hk span{color:#2e3c53}.z .h0 .e{color:#1c51a8}.C .h0 .e{color:#1c51a8}.B .h0 .e{color:#1c51a8}.A .h0 .e{color:#1c51a8}.iS{text-align:center;background:#ededed;margin:0 8px 0 16px}.iT{color:#1c51a8;cursor:pointer}.u7{color:#1c51a8;text-decoration:underline;cursor:pointer}.u6:visited{color:#1c51a8}a.u6{color:#1c51a8}.vd{color:#1c51a8;text-decoration:none}.iI{background:#ededed url(images/2/5/shiny/frametoolbartop_bg.gif) repeat-x 0 0;padding:6px 0 5px 6px}.iE{background:#f9f9f9 url(images/2/5/shiny/frametoolbarbottom_bg.gif) repeat-x left bottom;padding:7px 0 5px 6px}.C .iI{background:#ededed}.C .iE{background:#ededed}.B .iI{background:#ededed}.B .iE{background:#ededed}.YXCXSb .goog-tabpane{background-color:#e5e7eb;padding:0 4px}.el,.dP,.dU{color:#1c51a8;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#e5e7eb url(images/2/5/shiny/cvfooterright_bg.gif) repeat-y top right}.xE .dW,.x .dW{background-color:#e5e7eb}.eh{background:#e5e7eb}.eI{background:url(images/2/5/shiny/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#e5e7eb;font-size:medium;padding-bottom:2px}.en{background:url(images/2/5/shiny/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.d0{font:9px verdana,arial,sans-serif;color:#1c51a8}.dO,a.dO{color:#1c51a8}.dQ{border:solid 1px #999;background:#e6e8eb;width:100px;height:0.8em;padding:1px;overflow:hidden}.dK.ek{border:2px solid #292929!important;margin:0!important}.eJ table{width:100%;background:#f6f6f6}.eL,.eM,.eK{border:1px solid #f6f6f6;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#ededed #ccc #ccc #ededed}.eW,.e7{border:1px solid;border-color:#ccc #ededed #ededed #ccc}.e7{background-color:#ffc}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#1c51a8;white-space:nowrap}.wY{background:url(images/2/5/shiny/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#1c51a8;cursor:pointer}.d1{background-color:#f7f7f7!important}.ex{position:absolute;border:1px solid #888;background-color:#f7f7f7;color:#000;cursor:default;font-size:80%;width:25ex;outline:0;z-index:10;text-align:left}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/shiny/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#ffc;padding:3px 0 3px 3px}.fx{position:absolute;background:#f7f7f7;border:2px solid;border-color:#ededed #ccc #ccc #ededed;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem{background:#f7f7f7;color:#000;padding:3px}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/shiny/icons7.png) no-repeat -100px -80px}.fz{color:#1c51a8;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#5b6370}.mH{background-color:#5b6370;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#fff;vertical-align:baseline}.mL{background:url(images/2/5/shiny/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/shiny/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/shiny/icons7.png) no-repeat -80px -40px}.mC{background-color:#e5e7eb}.mC .mG{text-decoration:none;color:#2e3c53}.manager-page .frame{background-color:#ededed;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #ededed}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #d2d6dc;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#292929;color:#e6e8eb}.manager-page .loading{background-color:#292929;color:#e6e8eb;font-size:80%;padding:1px}.manager-page .menu{position:absolute;color:#000;background-color:#f7f7f7;visibility:hidden;cursor:default;border:1px solid #888;-moz-outline:none}.manager-page .menu-item{color:#000;background-color:#f7f7f7;padding:2px 4px;font-size:80%}.cmgr-toolbar{height:32px;background-color:#ededed;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #d2d6dc;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#1c51a8}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #d2d6dc;padding:10px 0 5px}.cmgr-contacts-list-actions .cmgr-link{color:#1c51a8}.cmgr-contact-pane .cmgr-link{color:#1c51a8}.cmgr-contact-pane .contact-banner{border-top:1px solid #ededed;border-bottom:1px solid #ededed}.cmgr-domain-contact-label{padding:5px 7px;color:#e6e8eb;border-bottom:1px solid #ccc;font-weight:bold;background-color:#292929}.cmgr-domain-contact-label .link{color:#fff}.cmgr-edit-interleave-label{padding:7px;color:#e6e8eb;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background-color:#292929}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#ededed}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#f7f7f7;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#ffc}.manager-page hr{background-color:#ededed}hr.grandcentral{background-color:#ededed;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.manager-page .goog-flat-button{position:relative;margin:2px;border:1px solid #888;padding:2px 6px;color:#000;background-color:#f7f7f7;cursor:pointer;outline:none;-moz-outline:none;white-space:nowrap}.manager-page .goog-flat-button-disabled{border-color:#888;color:#777;background-color:#f7f7f7;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#1c51a8;color:#000;background-color:#f7f7f7}.manager-page .goog-flat-button-selected,.manager-page .goog-flat-button-checked,.manager-page .goog-flat-button-focused{border-color:#888;color:#000;background-color:#f7f7f7}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#e6e8eb;background-color:#292929}.manager-page .goog-menu{background-color:#f7f7f7;border:1px solid #888;cursor:default;margin:0;outline:none;padding:4px 0;position:absolute}.cmgr-hr-divider{background-color:#ededed;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .selected{background-color:#d2d6dc;overflow:hidden}.checkable-list .selected .text{color:#313438;font-weight:bold}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #ededed;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .selected{background-color:#d2d6dc}.group-list .selected .text{font-weight:bold;color:#313438}.group-list .selected .count{color:#313438}.group-list hr.header{background-color:#ededed;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#414853 url(images/2/5/shiny/chattop_bg.gif) repeat-x 0 -3px}.lo .o{background:url(images/2/5/shiny/chattop_bg.gif) repeat-x 0 0;height:3px;top:inherit}.lo .n{background:#414853 url(images/2/5/shiny/chattop_bg.gif) repeat-x 0 -3px}.lo .m{background:#414853 url(images/2/5/shiny/chattop_bg.gif) repeat-x 0 -3px}.lo .q{background:url(images/2/5/shiny/chattopcorners_bg.png) no-repeat right top;margin-top:inherit}.lo .p{background:url(images/2/5/shiny/chattopcorners_bg.png) no-repeat left top;margin-top:inherit}.lp .k{background:#66bf25}.lp .o{background:#66bf25;height:3px;top:inherit}.lp .n{background:#66bf25}.lp .m{background:#66bf25}.lp .q{background:url(rc?a=af&c=66bf25&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=66bf25&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lm{background:#414853 url(images/2/5/shiny/chattop_bg.gif) repeat-x 0 -3px;padding:2px}.ln{background:#66bf25}.kX{border-right:1px solid #414853;border-left:1px solid #414853;border-top:none;border-bottom:1px solid #f7f7f7}.kv{background:url(images/2/5/shiny/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/shiny/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/shiny/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/shiny/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#858a91}.ky,.kW,.jc{background-color:#b1de91}.kt,.jA,.nl{color:#1c51a8;text-decoration:underline;cursor:pointer}.ko{color:#000;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #414853;border-right:1px solid #414853;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#1c51a8}.jp{border-left:solid #414853 1px;border-right:solid #414853 1px;background-color:#fff;text-align:center;padding-bottom:4px}.jV{margin:0;border:2px solid #ffc}.jW{margin:0;border:2px solid #292929}.js{color:#fc0}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #ffc}.jF{border:solid 1px #ccc;background-color:#f7f7f7;color:#000}.jB{background:url(images/2/5/shiny/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/shiny/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jR{background:url(images/2/5/shiny/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/shiny/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #414853;border-right:1px solid #414853;border-bottom:1px solid #ededed;padding-top:1px;padding-bottom:4px}.nk input{margin:0;border:2px solid #ffc}.jo{position:relative;background-color:#f7f7f7;border-right:1px solid #ccc;border-left:1px solid #ccc;border-bottom:1px solid #ccc;border-top:none;z-index:1}.jm .goog-icon-picker-iconbox{padding:0;border-width:0;width:34px;height:34px;background-color:#f7f7f7}.jm .goog-icon-picker{background-color:#f7f7f7}.jm .goog-tabpane{background-color:#f7f7f7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#f7f7f7;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jX{border-left:1px solid #414853;border-right:1px solid #414853}.kR{border-left:solid #414853 1px;border-right:solid #414853 1px;background-color:#fff;text-align:center;overflow:hidden;padding:4px;clear:both}.fX{background-color:#d2d6dc}.fX .goog-flat-button{color:#1c51a8;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#1c51a8}.vC{white-space:nowrap;color:#000;cursor:pointer;background-color:#e8eaed;width:100%;line-height:1.4em}.vI td{border-top:1px solid #e8eaed}.vE{background:#66bf25}.vs{color:#000;font-weight:bold}.vl,.vl .vG,.vl .vG a{color:#000}.vG a{color:#1c51a8}.uk{width:100%;border-bottom:solid #fff 1px;background-color:#e8eaed;font-size:80%;cursor:pointer;padding-top:5px}.ul .cg{color:#1c51a8}.ud,.um{color:#000;background-color:#e8eaed;border-top:1px solid #fff;border-bottom:1px solid #fff}.uo{border:1px solid #fff;color:#fff}td.uK{border-right:#e8eaed solid 1px}td.uL{border-right:#777 solid 1px}td.uh,td.uO{border:#e8eaed solid 1px}td.ui,td.uP{border:#777 solid 1px}.ue a{color:#1c51a8}.uM{background:url(images/2/5/shiny/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/shiny/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#fff solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#fff solid 1px;font-size:80%}.uv{color:#000;background-color:#f7f7f7;font-size:80%;width:35ex;overflow:hidden;padding:0;margin:0}.uu{color:#1c51a8;text-decoration:underline;cursor:pointer}.dF{background-color:#e8eaed}.ac-active img.uS{background:url(images/2/5/shiny/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/shiny/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#f7f7f7;color:#777;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#ffc;color:#222}.uW{background-color:#f7f7f7;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#e8eaed;font-size:80%;border-bottom:1px solid #fff}.dz .cg{color:#1c51a8}.do{background:#e8eaed url(images/aim_bubble_close.jpg) no-repeat top right;width:16px;height:16px}.dI{border:solid 1px #fff}.A5 a{color:#1c51a8}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #d2d6dc;background:#e6e8eb;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#d2d6dc;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#1c51a8;background:#d2d6dc;font-weight:bold;padding:3px 4px}.goog-date-picker-selected{background:#ededed;color:#000}.v .l{background-color:#d2d6dc}.v .k{color:#000;background:#d2d6dc}.v .o{background:url(images/2/5/shiny/frametop_bg.gif) repeat-x 0 0;height:4px;top:inherit}.v .n{background:url(images/2/5/shiny/frameright.png) repeat-y top right;padding:0 7px 0 0;margin:0 -7px 0 0}.v .h{background:url(images/2/5/shiny/framebottom_bg.png) repeat-x left bottom;height:11px}.v .m{background:url(images/2/5/shiny/frameleft_bg.png) repeat-y 0 0}.v .q{background:url(images/2/5/shiny/frametopright.png) no-repeat top right;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.v .j{background:url(images/2/5/shiny/framebottomright.png) no-repeat right bottom;display:inherit;padding:0 7px 0 0;margin:0 -7px 0 0}.v .i{background:url(images/2/5/shiny/framebottomleft_bg.png) no-repeat left bottom}.v .p{background:url(images/2/5/shiny/frametopleft_bg.png) no-repeat 0 0}.v .i,.v .j{height:11px}.sA,.sv,.r4 .e{text-decoration:underline;color:#1c51a8;cursor:pointer;white-space:nowrap}.qZ{background:#ededed url(images/2/5/shiny/frametoolbartop_bg.gif) repeat-x 0 0;color:#000;padding:5px 0 5px 5px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#fff;padding:4px}.v9 .fZ{background:#fff url(images/2/5/shiny/settingstab_bg.gif) repeat-x 0 0;font-size:80%;padding:3px 8px}.v9 .f1{color:#fff;background:transparent;font-size:80%}.v9 .fY{background:#8d929b url(images/2/5/shiny/settingstabbar_bg.gif) repeat-x 0 0;padding:0}.v7 .fY{background:#d2d6dc}.v7 .fZ{background-color:#fff;border:1px solid #d2d6dc;border-right:none}.v7 .f1{background:#d2d6dc}.tf{background-color:#fff;border:1px solid #d2d6dc;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #d2d6dc;padding:8px}.r7 td.r5{border-top:2px solid #d2d6dc}.r7 a{color:#1c51a8}.r7 .e{color:#1c51a8}.rZ{background-color:#d2d6dc;padding:0;height:2px}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#1c51a8}.s0{padding:6px;border-bottom:2px solid #d2d6dc;font-size:80%}.s1{border-color:#d2d6dc;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.sW a{color:#1c51a8}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #d2d6dc;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#1c51a8;cursor:pointer}.sM{background-color:#d2d6dc;padding:5px}.sn{border:2px solid #d2d6dc;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#1c51a8;text-decoration:underline}.ri{color:#1c51a8}.sk{border:solid 2px #1c51a8}.sl{border:solid 2px #fff}.si{background-color:#fff;border:solid 2px #fff;padding:5px;cursor:pointer}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#1c51a8}.rd{color:#1c51a8}.cz{height:100%;vertical-align:top;background-color:#ccc;padding:4px 0}.cz a{color:#1c51a8}.cF{zoom:1;border:1px solid #ccc;background:#f7f7f7;padding:4px;white-space:nowrap}.cF .e{color:#1c51a8}.cy a{color:#1c51a8}tr.cr td{border-top:1px #ccc solid;border-bottom:1px #ccc solid;background:#ccc}.cu{width:70%;height:100%;background:#ccc;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #ccc;text-align:center;background:#ccc;padding:4px}.o0{background-color:#fff;border:9px solid #d2d6dc}.oR{background:#d2d6dc;color:#000;padding-bottom:8px;font-weight:bold}.wL{border:1px solid #d2d6dc}.wN .k{background:#d2d6dc}.wN .o{background:#d2d6dc;height:3px;top:inherit}.wN .n{background:#d2d6dc}.wN .m{background:#d2d6dc}.wN .q{background:url(rc?a=af&c=d2d6dc&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=d2d6dc&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#d2d6dc}.wO .o{background:#d2d6dc;height:3px;top:inherit}.wM{background:#d2d6dc;padding:2px}.vT{background:#d2d6dc;overflow:auto}.vS{width:100%;background:#ededed;overflow:hidden}a.vQ{color:#313438}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#d2d6dc;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/shiny/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam{position:absolute;border:1px black solid;background:#f7f7f7;z-index:100}.z .i,.y .i,.v .i,.C .i,.B .i,.x .i,.A .i{margin-top:-1px}.mq{margin-left:-3px;margin-right:-3px;padding-right:3px;padding-left:7px}.iY{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.g .hn .o{background:#e5e7eb;top:1px;padding-bottom:1px}.g .h7 .p,.g .h7 .q,.g .h7 .o,.g .h7 .m{background-color:#fff}.g .h7 .p{background:#fff url(images/2/5/shiny/cvtopleft_bg.png)}.g .h7 .q{background:#fff url(images/2/5/shiny/cvtopright_bg.png)}.g .h7 .o{background:#fff url(images/2/5/shiny/cvtop_bg.gif) repeat-x;top:0}.pk{margin-right:-1px}.pk .n{position:relative}.pk .q,.pk .j{background-color:transparent!important}.zv{border-top:1px solid #DEDEDE}.pu .n{margin-left:2px!important}.pu .k{margin-right:2px!important}.pu .pi{height:2px!important}.v9{margin-top:-1px;border:solid 1px #b9c0cb;border-top:none}.v{margin-left:-4px}#gbar{height:22px;padding-left:10px}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}#gbi,#gbs{background:#fff;left:0;position:absolute;top:24px;visibility:hidden;z-index:1000}#gbi{border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;z-index:1001}#guser{padding-bottom:7px !important}#gbar,#guser{font-size:13px;padding-top:4px !important}@media all{.gb1,.gb3{height:22px;margin-right:.73em;vertical-align:top}#gbar{float:left}}.gb2{display:block;padding:.2em .5em}a.gb1,a.gb2,a.gb3{color:#00c !important}.gb2,.gb3{text-decoration:none}a.gb2:hover{background:#36c;color:#fff !important}",
logo: "background-image: url(images/2/5/shiny/logo_beta.png); background-position: left top; background-repeat: no-repeat;"
},
desk: {
name: "Desk",
id: "desk",
css: ".aB,.e,.cg{color:#fc0;cursor:pointer}.cP{background:#7f381a url(images/2/5/desk/canvas_bg.jpg)}.cS .wp{background:url(images/2/5/desk/header_bg_padpins.png) 100% 10px no-repeat}.cS .wq{background:url(images/2/5/desk/logo_splatter.png) 0 0 no-repeat}.cS .wn{background:transparent url(images/2/5/desk/footer_bg_paperclips.png) 230px 90% no-repeat}.cS .wo{background:transparent url(images/2/5/desk/footer_bg_cupring.png) 100% 100% no-repeat}.cN .wp{background:url(images/2/5/desk/header_bg_sharpenerenvelope.png) 100% 0 no-repeat}.cN .wq{background:url(images/2/5/desk/logo_splatter.png) 0 0 no-repeat}.cN .wn{background:transparent url(images/2/5/desk/footer_bg_applecalendar1.png) 180px 100% no-repeat}.cN .wo{background:transparent url(images/2/5/desk/footer_bg_cdclips1.png) 100% 100% no-repeat}.cL .wp{background:url(images/2/5/desk/header_bg_ruler.png) 100% 0 no-repeat}.cL .wq{background:url(images/2/5/desk/logo_splatter.png) 0 0 no-repeat}.cL .wn{background:transparent url(images/2/5/desk/footer_bg_teacookie.png) 180px 100% no-repeat}.cL .wo{background:transparent url(images/2/5/desk/footer_bg_postcard.png) 100% 100% no-repeat}.cM .wp{background:url(images/2/5/desk/header_bg_tape.png) 80% 0 no-repeat}.cM .wq{background:url(images/2/5/desk/logo_splatter.png) 0 0 no-repeat}.cM .wn{background:transparent url(images/2/5/desk/footer_bg_pencilladybug.png) 220px 96% no-repeat}.cM .wo{background:transparent url(images/2/5/desk/footer_bg_envelopebusstop1.png) 100% 100% no-repeat}.cR .wp{background:url(images/2/5/desk/header_bg_vase.png) 100% -20px no-repeat}.cR .wq{background:url(images/2/5/desk/logo_splatter_pencil.png) 0 0 no-repeat}.cR .wn{background:transparent url(images/2/5/desk/footer_bg_calculatorclips1.png) 180px 100% no-repeat}.cR .wo{background:transparent url(images/2/5/desk/footer_bg_photos1.png) 100% 100% no-repeat}.b8 .vi,.b8 .vh{background:#6cbf19;color:#fff}.b8 .b9{color:#fff}.b8 .vj{background:url(rc?a=af&c=6cbf19&w=4&h=4) no-repeat 0 0}.b8 .vk{background:url(rc?a=af&c=6cbf19&w=4&h=4) no-repeat -4px 0}.b8 .vf{background:url(rc?a=af&c=6cbf19&w=4&h=4) no-repeat 0 -4px}.b8 .vg{background:url(rc?a=af&c=6cbf19&w=4&h=4) no-repeat -4px -4px}.cd .vi,.cd .vh{background:#f22;color:#fff}.cd .ca,.cd .b9{color:#fff}.cd .vj{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat 0 0}.cd .vk{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat -4px 0}.cd .vf{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat 0 -4px}.cd .vg{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat -4px -4px}.cc .vi{background:#7bb2cb}.cc .vh{background:#7bb2cb}.cc .ca,.cc .b9{color:#fff}.cc .vj{background:url(rc?a=af&c=7bb2cb&w=4&h=4) no-repeat 0 0}.cc .vk{background:url(rc?a=af&c=7bb2cb&w=4&h=4) no-repeat -4px 0}.cc .vf{background:url(rc?a=af&c=7bb2cb&w=4&h=4) no-repeat 0 -4px}.cc .vg{background:url(rc?a=af&c=7bb2cb&w=4&h=4) no-repeat -4px -4px}.ah{direction:ltr;position:absolute;width:25em;color:#000;background-color:#fff;font:normal 80% arial,sans-serif;border:1px solid #888;z-index:7;margin-top:-1px;padding:2px}.ah .ac-active{background-color:#dbf0fa;color:#222}.ap{border-top:1px solid #888}.lz{font:70% arial,sans-serif;color:#fc0}.ly{color:#fc0;text-decoration:underline;cursor:pointer;white-space:nowrap}.vX .l,.vX .k{background-color:#6cbf19}.vX .p{background:#6cbf19}.vX .q{background:#6cbf19}.vX .i{background:url(rc?a=af&c=6cbf19&w=4&h=4) no-repeat 0 -4px}.vX .j{background:url(rc?a=af&c=6cbf19&w=4&h=4) no-repeat -4px -4px}.v2{color:#c60}.dF .dG,.d9,.nr{border:1px solid;border-color:#d5e0a7;background-color:#fff;color:#000}.l1,.nr:focus,.tH,.dI:focus{border:2px solid #f93!important;margin:0!important;outline:0!important}.aw{position:absolute;top:0;left:0;width:450px;color:#000;background-color:#e3e3c7;border:1px solid #4A4A41;padding:8px;z-index:501}.aA{position:relative;color:#000;background-color:#f1f5ec;padding:8px;font:bold 100% arial,sans-serif;cursor:default}.az .e,.az a{color:#363!important}.tr_dialog .tr_dialog-title,.tr_dialog .tr_dialog-title .tr_dialog-title-layout-table{background-color:#f1f5ec!important;color:#000!important}.tr_dialog .tr_dialog-section{border-bottom:2px solid #e3e3c7!important}.tr_edit-link-dialog{border:2px solid #e3e3c7!important}.tr_image-dialog{border:2px solid #e3e3c7!important}.tr_dialog{background:#f1f5ec!important;color:#000!important}.tr_pseudo-link{color:#363!important}.tr_dialog-tab-content-explanation-text a{color:#363!important}.tr_tabbed-pane-tab-label{color:#363!important}.ad{color:#fff}.ag{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.ac{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.f1,.f1 .f0{color:#363;cursor:pointer;text-decoration:underline}.w6{padding:5px;font:normal 80% arial,sans-serif;color:#6cbf19}.w2{font-size:80%;color:#666}.w5{color:#666;cursor:pointer}.w8{margin:2px;padding:2px;font:normal 80% arial,sans-serif;border:1px solid #cc9}.xa{z-index:1000;border:solid #f22 2px;position:relative}.mq{padding:3px 8px;height:1.1em;background:#e3e3c7;margin:-2px 0 0 0}.mv{font-size:80%;color:#444;white-space:nowrap;overflow:hidden;padding-top:2px}.mv .e{color:#363}.my{color:#444}.mB{float:right;font-size:70%;color:#000;padding:0.3em 1ex 0 2px}.mx,.mz{color:#444}.mr{color:#444}.ms{background-color:#FDFDEA;color:#444;border:none}.mu{background-color:#f83;color:#444;border:none}.mt{background-color:#cacaa8;color:#f4f4e8;border:none}.C .mq{background:#e3e3c7}.C .ms{background:#FDFDEA;color:#444;border-color:#FFFFFF}.C .mu{background:#f83;color:#444;border-color:#FFFFFF}.C .mt{background:#cacaa8;color:#f4f4e8;border-color:#FFFFFF}.C .mv{color:#000}.C .mv .e,.C .mz{color:#363}.C .my{color:#000}.C .mr{color:#000}.C .mx{color:#000}.B .mq{background:#e3e3c7}.B .mB{color:#000}.B .ms{background:#FDFDEA;color:#444;border-color:#FFFFFF}.B .mu{background:#f83;color:#444;border-color:#FFFFFF}.B .mt{background:#cacaa8;color:#f4f4e8;border-color:#FFFFFF}.B .mv{color:#000}.B .mv .e,.B .mz{color:#363}.B .my{color:#000}.B .mr{color:#000}.B .mx{color:#000}.b0{float:left;padding:2px 3px 2px 4px;font:normal 70% arial,sans-serif;border:1px solid #cc9;background-color:#fff;color:#000;cursor:default;margin-right:4px}.b2{background:url(images/2/5/desk/icons7.png) no-repeat 0 0;width:7px;height:7px;margin-left:23px;margin-right:2px}.bZ{position:absolute;visibility:hidden;width:15.5em;font:normal 80% arial,sans-serif;background-color:#fff;color:#000;border:1px solid #cc9;cursor:default;-moz-outline:none;outline:none;z-index:7}.b3{text-indent:0;padding-left:4px;color:#666}.b4{color:#666}.b6{background:#dbf0fa;color:#222}.A1{padding:6px 0 3px 6px;background:transparent url(images/2/5/desk/bg_vertical_paper_stripes.png) 0 0 repeat-y;border-bottom:1px solid #E6E6E6}.AY{padding:3px 0 6px 6px;background:transparent url(images/2/5/desk/bg_vertical_paper_stripes.png) 0 0 repeat-y;border-top:1px solid #E6E6E6}.AN{font-size:70%;font-family:arial,sans-serif;float:left;margin:0 8px 0 0;cursor:pointer}.z .AO{color:#363}.z .AP{color:#363}.C .AO{color:#fff}.C .AP{color:#fff}.C .A1{background:#94a2a9}.C .AY{background:#94a2a9}.B .AO{color:#fff}.B .AP{color:#fff}.B .A1{background:#7bb2cb}.B .AY{background:#7bb2cb}.A .AO{color:#363}.A .AP{color:#363}.A .A1{background:#fff}.A .AY{background:#fff}.z .l,.y .l{background:#fff url(images/2/5/desk/bg_frame_gradient.gif) top right no-repeat}.z .o,.y .o{background:transparent url(images/2/5/desk/frame_bg_top_spiral.png) 0 0 repeat-x;height:26px;top:inherit}.z .h,.y .h{background:transparent url(images/2/5/desk/frame_bottom_border.png) 0 0 no-repeat;height:12px}.z .m,.y .m{background:transparent url(images/2/5/desk/frame_left_bg.png) 0 0 no-repeat}.z .n,.y .n{background:transparent url(images/2/5/desk/frame_right_border.png) top right repeat-y;padding:0 2px 0 0;margin:0 -2px 0 0}.z .p,.y .p,.z .q,.y .q{height:26px;margin-top:inherit}.z .p,.y .p{background:transparent url(images/2/5/desk/frame_top_left_corner.png) bottom right no-repeat}.z .q,.y .q{background:transparent url(images/2/5/desk/frame_top_right_corner.png) 0 9px no-repeat;display:inherit;padding:inherit;margin:inherit}.z .i,.y .i,.z .j,.y .j{height:12px}.z .i,.y .i{background:transparent url(images/2/5/desk/frame_bottom_left_corner.png) 100% 0 no-repeat}.z .j,.y .j{background:transparent url(images/2/5/desk/frame_bottom_right_corner.png) 100% 0 no-repeat;display:inherit;padding:0 2px 0 0;margin:0 -2px 0 0}.C .l{background:#fff url(images/2/5/desk/bg_frame_gradient.gif) top right no-repeat}.C .o{background:transparent url(images/2/5/desk/frame_bg_top_spiral.png) 0 0 repeat-x;height:26px;top:inherit}.C .h{background:transparent url(images/2/5/desk/frame_bottom_border.png) 0 0 no-repeat;height:12px}.C .m{background:transparent url(images/2/5/desk/frame_left_bg.png) 0 0 no-repeat}.C .n{background:transparent url(images/2/5/desk/frame_right_border.png) top right repeat-y;padding:0 2px 0 0;margin:0 -2px 0 0}.C .p,.C .q{height:26px;margin-top:inherit}.C .p{background:transparent url(images/2/5/desk/frame_top_left_corner.png) bottom right no-repeat}.C .q{background:transparent url(images/2/5/desk/frame_top_right_corner.png) 0 9px no-repeat;display:inherit;padding:inherit;margin:inherit}.C .i,.C .j{height:12px}.C .i{background:transparent url(images/2/5/desk/frame_bottom_left_corner.png) 100% 0 no-repeat}.C .j{background:transparent url(images/2/5/desk/frame_bottom_right_corner.png) 100% 0 no-repeat;display:inherit;padding:0 2px 0 0;margin:0 -2px 0 0}.B .l{background:#fff url(images/2/5/desk/bg_frame_gradient.gif) top right no-repeat}.B .o{background:transparent url(images/2/5/desk/frame_bg_top_spiral.png) 0 0 repeat-x;height:26px;top:inherit}.B .h{background:transparent url(images/2/5/desk/frame_bottom_border.png) 0 0 no-repeat;height:12px}.B .m{background:transparent url(images/2/5/desk/frame_left_bg.png) 0 0 no-repeat}.B .n{background:transparent url(images/2/5/desk/frame_right_border.png) top right repeat-y;padding:0 2px 0 0;margin:0 -2px 0 0}.B .p,.B .q{height:26px;margin-top:inherit}.B .p{background:transparent url(images/2/5/desk/frame_top_left_corner.png) bottom right no-repeat}.B .q{background:transparent url(images/2/5/desk/frame_top_right_corner.png) 0 9px no-repeat;display:inherit;padding:inherit;margin:inherit}.B .i,.B .j{height:12px}.B .i{background:transparent url(images/2/5/desk/frame_bottom_left_corner.png) 100% 0 no-repeat}.B .j{background:transparent url(images/2/5/desk/frame_bottom_right_corner.png) 100% 0 no-repeat;display:inherit;padding:0 2px 0 0;margin:0 -2px 0 0}.A .l{background:#fff url(images/2/5/desk/bg_frame_gradient.gif) top right no-repeat}.A .o{background:transparent url(images/2/5/desk/frame_bg_top_spiral.png) 0 0 repeat-x;height:26px;top:inherit}.A .h{background:transparent url(images/2/5/desk/frame_bottom_border.png) 0 0 no-repeat;height:12px}.A .m{background:transparent url(images/2/5/desk/frame_left_bg.png) 0 0 no-repeat}.A .n{background:transparent url(images/2/5/desk/frame_right_border.png) top right repeat-y;padding:0 2px 0 0;margin:0 -2px 0 0}.A .p,.A .q{height:26px;margin-top:inherit}.A .p{background:transparent url(images/2/5/desk/frame_top_left_corner.png) bottom right no-repeat}.A .q{background:transparent url(images/2/5/desk/frame_top_right_corner.png) 0 9px no-repeat;display:inherit;padding:inherit;margin:inherit}.A .i,.A .j{height:12px}.A .i{background:transparent url(images/2/5/desk/frame_bottom_left_corner.png) 100% 0 no-repeat}.A .j{background:transparent url(images/2/5/desk/frame_bottom_right_corner.png) 100% 0 no-repeat;display:inherit;padding:0 2px 0 0;margin:0 -2px 0 0}.x .l{background:url(images/2/5/desk/bg_grid.gif)}.x .o,.AL .o{background:url(images/2/5/desk/bg_top_border_blue.gif) -10px 0;height:24px;top:inherit}.x .h{background:transparent url(images/2/5/desk/frame_bottom_border.png) 0 0 no-repeat;height:12px}.x .m{background:url(images/2/5/desk/bg_grid.gif)}.x .n{background:transparent url(images/2/5/desk/frame_right_border.png) top right repeat-y;padding:0 2px 0 0;margin:0 -2px 0 0}.x .p{display:none;background:#dbf0fa}.x .q{background:transparent url(images/2/5/desk/frame_top_right_corner.png) 0 9px no-repeat;display:inherit;padding:inherit;margin:inherit}.x .i{background:url(rc?a=af&c=dbf0fa&w=12&h=12) no-repeat 0 -12px;display:none;height:12px}.x .j{background:transparent url(images/2/5/desk/frame_bottom_right_corner.png) 100% 0 no-repeat;display:inherit;height:12px;padding:0 2px 0 0;margin:0 -2px 0 0}.AR{border:1px solid #cc9;margin:0 3px;padding:5px}.AW .lT{border-top:1px solid #cc9}.D .goog-menuitem-highlight,.D .goog-tristatemenuitem-highlight,.D .goog-filterobsmenuitem-highlight{background-color:#dbf0fa;color:#222}.D .goog-menuitem-disabled,.D .goog-tristatemenuitem-disabled,.D .goog-filterobsmenuitem-disabled{color:#666}.D .goog-menuseparator{margin:2px 0;border-top:1px solid #cc9;padding:0;outline:none}.D .goog-tristatemenuitem-checkbox{height:10px;width:12px;background-image:url(images/2/5/desk/vimages7.png);background-position:-48px 50%;background-repeat:no-repeat;vertical-align:middle;margin:0 2px 2px 0}.AS .lJ,.AS .lN{background:#dbf0fa}.AT{background:#fff;border-top:1px solid #cc9;font-size:medium;padding:5px;margin:2px 0 -1px 0}.AV{color:#363;font-size:70%;text-decoration:underline;cursor:pointer}.D .goog-menu-filter{background:#fff;overflow:hidden;font:80% arial,sans-serif;border:1px solid;border-color:#888 #cc9 #cc9 #cc9;padding:1px;margin-bottom:3px}.A0{color:#666;position:absolute;padding:1px;right:10px;top:0.9em;background:url(images/2/5/desk/vimages7.png) -84px 50% no-repeat;width:7px;height:10px;overflow:hidden}.AZ{height:6px;width:7px;background:url(images/2/5/desk/vimages7.png) no-repeat -36px 50%;vertical-align:middle;font-size:0;margin-left:3px}.D .goog-imageless-button-open .AZ{background:url(images/2/5/desk/vimages7.png) no-repeat -24px 50%}.oJ{text-decoration:underline;color:#363}.oH,.oI{background:#dbf0fa;padding:3px 4px 3px 6px;border:1px solid #dbf0fa!important}.oE{background:url(images/2/5/desk/icons7.png) no-repeat -120px 0;width:7px;height:7px}.oF{background:url(images/2/5/desk/icons7.png) no-repeat -140px 0;width:7px;height:7px}.oy{position:absolute;background:#fff;color:#000;visibility:hidden;font-size:100%;border:1px solid #dbf0fa;outline-style:none;vertical-align:bottom;padding:0;margin:0;z-index:7}.oC{text-indent:3px;color:#666}.oz{position:absolute;margin-top:-5px;top:50%;left:3px;width:12px;height:12px;background:url(images/2/5/desk/icons7.png) no-repeat -100px -80px}.oB{background:#dbf0fa}.oK{border-top:1px solid #dbf0fa}.pN .goog-menu{position:absolute;z-index:13;color:#000;border:1px solid #888;background-color:#fff;cursor:default;outline:0;font-size:80%;font-family:arial,sans-serif;padding:0}.pN .goog-menuitem-highlight{text-decoration:underline;background-color:#dbf0fa;color:#222}.css-np-clw-palette-cell-hover .css-np-clw-palette-colorswatch{border:1px solid #dbf0fa}.qk{color:#fc0;font-size:80%;padding-left:22px}.ql{color:#333}.pk .qk .p9{font-weight:bold;color:#fff;text-decoration:none}.pk .qk .qh{font-weight:bold;color:#fff;text-decoration:none}.pz .k{background:#6cbf18}.qj .k{background:#6cbf18}div.qi .k{background:#6cbf18}.qk .p9,.qk .qh{color:#fc0}.pO .p9{color:#c60}.pT{color:#c60}.pz .o{background:#6cbf18;height:4px;top:inherit}.pz .n{background:#6cbf18}.pz .h{background:#6cbf18;height:4px}.pz .m{background:#6cbf18}.pz .q{background:#6cbf18;height:4px;margin-top:inherit}.pz .j{background:#6cbf18;height:4px}.pz .i{background:url(rc?a=af&c=6cbf18&w=4&h=4) no-repeat 0 -4px;height:4px}.pz .p{background:url(rc?a=af&c=6cbf18&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qj .o{background:#6cbf18;height:4px;top:inherit}.qj .n{background:#6cbf18}.qj .h{background:#6cbf18;height:4px}.qj .m{background:#6cbf18}.qj .q{background:#6cbf18;height:4px;margin-top:inherit}.qj .j{background:#6cbf18;height:4px}.qj .i{background:url(rc?a=af&c=6cbf18&w=4&h=4) no-repeat 0 -4px;height:4px}.qj .p{background:url(rc?a=af&c=6cbf18&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}.qi .o{background:#6cbf18;height:4px;top:inherit}.qi .n{background:#6cbf18}.qi .h{background:#6cbf18;height:4px}.qi .m{background:#6cbf18}.qi .q{background:#6cbf18;height:4px;margin-top:inherit}.qi .j{background:#6cbf18;height:4px}.qi .i{background:url(rc?a=af&c=6cbf18&w=4&h=4) no-repeat 0 -4px;height:4px}.qi .p{background:url(rc?a=af&c=6cbf18&w=4&h=4) no-repeat 0 0;height:4px;margin-top:inherit}div.pX .qk{background-color:transparent}.p5 a{text-decoration:none}.p9,.pU{cursor:pointer;text-decoration:none}.pW{background:url(images/2/5/desk/stars.png) no-repeat -20px 0;height:15px;width:15px;margin-bottom:-2px}.py{position:relative;font:80% arial,sans-serif;color:#000;cursor:pointer;overflow:hidden;padding:1px 0 1px 4px;vertical-align:middle}.pw{font-size:100%;font-weight:normal;display:inline;padding-left:3px}.px{color:#363;text-decoration:none}.pt{background-color:#fff;border:#dbf0fa none;border-top:none}.pu{padding-bottom:5px;background:transparent url(images/2/5/desk/navbox_bottom_border_tear.png) 0 100% repeat-x}.m{background-color:#dbf0fa}.xE .l,.xE .ph{background-color:#dbf0fa}.pU{text-align:right;font-size:70%;color:#363;padding:4px 7px 4px 0;background-color:#dbf0fa;margin:0}.r .l,.r .k{background:#dbf0fa}.r .o{background:#dbf0fa;height:4px;top:inherit}.r .n{background:#dbf0fa}.r .m{background:#dbf0fa;float:none}.r .ph{display:none}.r .p,.r .q{height:4px;margin-top:inherit}.r .p{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat 0 0}.r .q{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat -4px 0}.pS .h{background:#dbf0fa}.pS .i{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat 0 -5px}.pS .j{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat -5px -5px}.t .pt{background:#fff;border-color:#dbf0fa}.t .pu{padding-bottom:5px;background:transparent url(images/2/5/desk/navbox_bottom_border_tear.png) 0 100% repeat-x}.t .l{background:#dbf0fa}.t .pU{color:#c60;background-color:#dbf0fa}.t .r .l,.t .r .k{background:#dbf0fa}.t .r .o{background:#dbf0fa;height:4px;top:inherit}.t .r .ph{display:none}.t .r .p,.t .r .q{height:4px;margin-top:inherit}.t .r .m{background:#dbf0fa}.t .r .n{background:#dbf0fa}.t .r .p{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat 0 0}.t .r .q{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat -4px 0}.t .i{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat 0 -5px}.t .j{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat -5px -5px}.t .oy{background-color:#fff;border-color:#dbf0fa}.t .oB{background-color:#dbf0fa}.t .oK{border-top-color:#dbf0fa}.pO{color:#c60;font-size:80%;padding:3px 3px 3px 5px;white-space:nowrap;overflow:hidden}.s .pt{background-color:#fff;border-color:#dbf0fa}.s .pu{padding-bottom:5px;background:transparent url(images/2/5/desk/navbox_bottom_border_tear.png) 0 100% repeat-x}.s .l{background-color:#dbf0fa}.s .ow{background:#dbf0fa}.s .oB{background:#dbf0fa;color:#222}.s .r .l,.s .r .k{background:#dbf0fa}.s .r .o{background:#dbf0fa;height:4px;top:inherit}.s .r .m{background:#dbf0fa}.s .r .n{background:#dbf0fa}.s .r .ph{display:none}.s .r .p,.s .r .q{height:4px;margin-top:inherit}.s .r .p{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat 0 0}.s .r .q{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat -4px 0}.s .i{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat 0 -5px}.s .j{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat -5px -5px}.dI{border:1px solid #cc9;background-color:#fff}.pY .h{background:#dbf0fa}.pY .r .p{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat 0 0}.pY .r .q{background:url(rc?a=af&c=dbf0fa&w=4&h=4) no-repeat -4px 0}.pY .i{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat 0 -5px}.pY .j{background:url(rc?a=af&c=dbf0fa&w=5&h=5) no-repeat -5px -5px}.qo .l{background-color:#dbf0fa}.pq{height:10px;width:10px}.pv .pq{background:url(images/2/5/desk/icons7.png) no-repeat -70px -30px}.pr .pq{background:url(images/2/5/desk/icons7.png) no-repeat -60px -20px}.gb1{color:#fff}a.gb1.qq,a.gb3.qq{color:#fc0!important}a.gb2.qq{color:#666!important}a.gb2.qq:hover{color:#222!important;background:#dbf0fa!important}div.gbd{border-top:1px solid #cc9!important}.qp{background:url(images/2/5/desk/opacity.png);border-bottom:1px solid transparent;margin-bottom:2px}.a9{cursor:pointer;width:143px;height:59px;margin:1px 10px 10px 10px}.aZ{background:#7f381a url(images/2/5/desk/canvas_bg.jpg);color:#000;padding:0 6px}.a0{background:#6cbf19;color:#fff;padding:0 6px}.a5{font-size:70%;color:#363;text-decoration:underline;cursor:pointer;position:absolute;top:13px;right:5px}.aK .a5{color:#363}.aJ .a5{color:#363}.bR{font:9px verdana,arial,sans-serif;color:#fff;text-decoration:underline;cursor:pointer}.a8{color:#fff;text-align:right;padding:5px 5px 0 5px;float:right}.a7,.a8 .e{color:#fc0}.aK .aI{color:#fff}.aJ .aI{color:#fff}.bE{color:#fff}.aN,.aP{clear:both;margin-top:5px;text-align:center}.aP{float:left}.aH{padding:4px;color:#fff;background:#6cbf19;border:1px solid #cc9;font-weight:bold}.aH .e{color:#333}.bA{color:#fc0;cursor:default}.bB{color:#fc0;text-decoration:none}.bA .goog-menuitem{display:block;padding:0.2em 0.5em;color:#666;text-decoration:none}.bA .goog-menuitem .e{text-decoration:none;color:#666}.bA .goog-menuitem-highlight{padding:0.2em 0.5em;color:#222;background:#dbf0fa none repeat scroll 0!important}.bT{font-size:80%;color:#333}.fafYqc{font-size:80%;margin-left:5%;width:90%}.lY{padding:0 0 5px 0;margin:0 20%}.mlrSbf{width:20%}.F92OHf{margin:5px 0;width:45%}.mKeWTb{float:left}.duzHib{float:right}.aS{float:left;font-size:80%;font-weight:bold;margin-top:3px;text-align:right!important;white-space:nowrap;width:32%}.aR{float:right;font-size:80%;margin-top:3px;white-space:nowrap;width:66%}.hujtpe{white-space:nowrap}.ugJm3b{margin-top:5px}.aY{width:100%}.aV{width:100px}.aK .k{background:transparent url(images/2/5/desk/search_options_title_bg.png) 0 0 no-repeat;margin:0!important}.aK .o{background:none;height:4px;top:inherit}.aK .m,.b .m{background:none}.aK .n{margin-left:5px!important;background:none;padding-top:10px}.aK .p{height:4px;background:none}.aK .q{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat -4px 0}.b .o{background:transparent url(images/2/5/desk/search_shadow_top.png) 0 0 repeat-x;height:3px;top:-2px}.b .h{background:transparent url(images/2/5/desk/search_shadow_bottom.png) 0 0 repeat-x;height:5px}.b .m{background:transparent url(images/2/5/desk/search_shadow_left.png) 0 0 repeat-y}.b .n{background:transparent url(images/2/5/desk/search_shadow_right.png) 0 0 repeat-y}.b .p{background:url(rc?a=af&c=fff&w=4&h=4) no-repeat 0 0}.b .q{background:transparent url(images/2/5/desk/search_shadow_top.png) 0 0 repeat-x}.b .i{background:url(rc?a=af&c=fff&w=5&h=5) no-repeat 0 -5px}.b .j{background:url(rc?a=af&c=fff&w=5&h=5) no-repeat -5px -5px}.b .e{color:#fff}.b .k{background-color:#fff}.aJ .k{background:transparent url(images/2/5/desk/search_options_title_bg.png) 0 0 no-repeat;margin:0!important}.aJ .o{background:none;height:4px;top:inherit}.aJ .m,.a .m{background:none}.aJ .n{background:none;margin-left:5px!important;padding-top:inherit}.aJ .p{background:url(rc?a=af&c=e3e3c7&w=4&h=4) no-repeat 0 0;height:4px}.aJ .q{background:url(rc?a=af&c=e3e3c7&w=4&h=4) no-repeat -4px 0}.a .e{color:#363}.a .o{background:transparent url(images/2/5/desk/search_shadow_top.png) 0 0 repeat-x;height:3px;top:-2px}.a .h{background:transparent url(images/2/5/desk/search_shadow_bottom.png) 0 0 repeat-x;height:5px}.a .k{background-color:#fff}.a .m{background:transparent url(images/2/5/desk/search_shadow_left.png) 0 0 repeat-y}.a .n{background:transparent url(images/2/5/desk/search_shadow_right.png) 0 0 repeat-y}.a .p{background:url(rc?a=af&c=e3e3c7&w=4&h=4) no-repeat 0 0}.a .q{background:transparent url(images/2/5/desk/search_shadow_top.png) 0 0 repeat-x}.a .i{background:url(rc?a=af&c=e3e3c7&w=5&h=5) no-repeat 0 -5px}.a .j{background:url(rc?a=af&c=e3e3c7&w=5&h=5) no-repeat -5px -5px}.xK{padding:0}.yR{font-size:80%;color:#000;background-color:#fff;border-bottom:1px #d5e0a7 solid;padding:3px 8px}.ya{text-align:center;font-size:80%;color:#000;background-color:#fff;border-bottom:1px #d5e0a7 solid;padding:3px 8px}.yd{background-color:#fff}.yb{background-color:#dbf0fa;color:#222}.yc{background-color:#fff}.x8{text-decoration:underline;cursor:pointer;color:#363}.yb .x8{color:#c60}.ya .e,.x9{color:#363}.yd .x8,.yd .x9{color:#666}.x2{color:#363;text-decoration:underline;cursor:pointer;white-space:nowrap}.z .yU{color:#363}.z .yC .zw{color:#996}.z .yC .e{color:#363}.B .yU{color:#fff}.B .yC .zw{color:#fff}.B .yC .e{color:#fff}.A .yU{color:#363}.A .yC .e{color:#363}.C .yU{color:#fff}.C .yC .e{color:#fff}.zq{table-layout:fixed;cursor:default;width:100%;border-spacing:0;padding:0;background-color:transparent url(images/2/5/desk/bg_vertical_paper_stripes.png) 0 0 repeat-y;color:#000}.zs{background:transparent url(images/2/5/desk/bg_vertical_paper_stripes.png) 0 0 repeat-y;height:22px;padding:4 1ex}.zr{font-size:80%;border-bottom:1px #d5e0a7 solid;vertical-align:middle;padding:1px;empty-cells:show}.x0{color:#363;text-decoration:underline;cursor:pointer;white-space:nowrap}.xZ{color:#363}.xI{background-color:#94a2a9}.xG{border-bottom:1px solid #fff;color:#666;vertical-align:middle;padding:1px;white-space:nowrap;font-size:70%}.xH{color:#fff;text-decoration:underline;cursor:pointer;white-space:nowrap}.zt .xW{padding:2px 8px 3px 8px}.zt td{font-size:80%;border-bottom:1px #d5e0a7 solid;empty-cells:show;white-space:nowrap;overflow:hidden;vertical-align:middle;height:3.25ex;padding:3px 0 2px}.xQ{width:22px}.yg{width:25px}.yf,.xW{text-align:right}.yO{background:#fff;color:#444}.zE{color:#000;background:transparent url(images/2/5/desk/bg_vertical_paper_stripes.png) 0 0 repeat-y}.x7{color:#222;background:#dbf0fa url(images/2/5/desk/bg_vertical_paper_stripes.png) 0 0 repeat-y}td.xO,td.xP{text-align:left;padding:1px 0 0 1px}td.xO{width:27px}td.xP{width:24px}.xR{background:url(images/2/5/desk/icons7.png) no-repeat -41px -21px;vertical-align:middle;width:5px;height:9px;visibility:hidden;margin-top:1px;left:-2px}.xN{vertical-align:middle;margin:0 0 0 2px}.y3{background:url(images/2/5/desk/stars.png) no-repeat -20px 0}.zG{background:url(images/2/5/desk/stars.png) no-repeat 0 0}.yE{background:url(images/2/5/desk/icons7.png) no-repeat -120px -40px}.yi{font-size:80%;color:#363}.y2{color:#666}.x7 .y2{color:#666}.yQ{background:#dbf0fa}.xD{color:#666}.Ac{position:absolute;bottom:1px;right:16px;z-index:4;background-color:#6cbf19;border:1px solid #cc9;font-size:80%;color:#fff;padding:10px}.Ad{color:#333;white-space:nowrap;text-decoration:underline;cursor:pointer}.Aj{background-color:#fff}.Af{position:absolute;-moz-outline:0;outline:0;background-color:#fff;border:1px solid #cc9;width:250px;padding:4px;z-index:10}.Af textarea{width:98%;height:36px;font-size:80%;border:1px solid #cc9;padding:2px 0 0 1px;margin:0}textarea.Ah{border:2px solid #f93}textarea.Ai{border:2px solid #fff}.Ag{font-size:70%;color:#666}.lR{background:url(images/2/5/desk/vimages7.png) repeat-y 0 0}.lS{background:url(images/2/5/desk/vimages7.png) repeat-y -12px 0}.mn{color:#5caf08}.mn .l8{color:#fe8500!important}.mi{color:#f22}.mj{color:#69c}.mp,.ma{font-size:70%;color:#5caf08}.mo,.l9{color:#fe8500}.l8{color:#fe8500;text-decoration:underline;cursor:pointer}.l3{color:#5caf08}.mb{color:#5caf08;padding-top:4px}.l6{font-size:70%;color:#5caf08;padding-top:12px}.l6 .e{color:#fe8500}.l7{background:#6cbf19;color:#fff;font-weight:bold}.mm{color:#5caf08}.tE{text-decoration:underline;color:#363;cursor:pointer;white-space:nowrap;overflow:hidden;padding-left:2px}.tO{border:1px solid #363;margin:0;cursor:pointer}.tO .tP,.tO .tQ{display:block;background-color:#fff;color:#363;text-decoration:underline;position:absolute;left:0;width:96px;text-align:center;padding:1px 0}.tz{background:url(images/2/5/desk/icons7.png) no-repeat -120px 0;width:7px;height:7px;margin-left:3px;padding:0}.tT .goog-menuitem-highlight{background-color:#dbf0fa;color:#222}.tT .goog-menuitem-disabled{color:#666}.tT .goog-option-selected .tU{background:url(images/2/5/desk/icons7.png) no-repeat -100px -80px}.u .goog-menuitem,.u .goog-menuitem-disabled,.u .goog-menuitem-active,.u .goog-menuitem-opened{height:19px;background:#fff;color:#000;border-bottom:1px solid #cc9;background-repeat:repeat-x;background-position:0 0;text-align:center;vertical-align:absmiddle;padding:4px 5px 0 5px;overflow:hidden}.u .goog-menuitem-disabled{background-color:#fff;color:#666}.u .goog-menuitem-opened .tF{background:#fff;background-position:0 -48px;color:#666;position:relative;z-index:100;border:1px solid #888;border-bottom:0;padding:4px 4px 1px 4px;vertical-align:absmiddle}.u .goog-menuseparator{border-right:1px solid #fff;background:#cc9;width:1px;height:23px;padding:0;margin:0}.tJ{border-color:#d5e0a7}.tB,.tC{color:#666;padding-left:2px}.tq .lJ{background-color:#d5e0a7}.tq .lN{background-color:#d5e0a7}.iI{background:#fff;padding:6px 0 5px 6px}.iE{background:#fff;padding:7px 0 5px 6px}.C .iI{background:#94a2a9}.C .iE{background:#94a2a9}.B .iI{background:#7bb2cb}.B .iE{background:#7bb2cb}.hx{color:#000;padding:0 0 4px 8px}.h7{padding-bottom:10px}.hG{background:url(images/2/5/desk/icons7.png) no-repeat -41px -21px;width:5px;height:9px;margin:4px 0 0 2px}.gt a{color:#363}.gy{border-top:1px solid #cc9;border-bottom:1px solid #cc9}.h9{position:relative;padding:5px 5px 5px 10px;margin:0 5px 0 0;width:auto;overflow:hidden;background-color:#6cbf19}.h1,.iD{color:#363;text-decoration:underline;cursor:pointer}.h8{margin:1 0 0;color:#333}.gY{color:#fff;background:#f22}.gX{color:#fff}.gS{position:relative;padding:5px 5px 5px 10px;margin:0 3px 0 0;width:auto;background:#dbf0fa}.gR{margin:1px 0 0 0;color:#c60}.hg{width:auto;overflow:hidden;background:#6cbf19}.he{overflow:visible;background:#94a2a9}.gG{text-align:right;color:#666;white-space:nowrap;vertical-align:top;width:0}.g8{background:url(images/2/5/desk/stars.png) no-repeat 0 0}.g9{background:url(images/2/5/desk/stars.png) no-repeat -20px 0}.gW{background:url(images/2/5/desk/icons7.png) no-repeat -120px -40px;width:15px;height:15px}.gZ{background:url(images/2/5/desk/icons7.png) no-repeat 0 -60px}.g1{background:url(images/2/5/desk/icons7.png) no-repeat -20px -60px}.gx{background:url(images/2/5/desk/icons7.png) no-repeat -40px -60px}.gq{background:url(images/2/5/desk/icons7.png) no-repeat -60px -60px}.gM{background:url(images/2/5/desk/icons7.png) no-repeat -80px -60px}.gC{background:url(images/2/5/desk/icons7.png) no-repeat -100px -60px}.go{color:#666}.gv .gO{background:#dbf0fa;color:#222}.g6{padding-left:5px;color:#666}.ii a{color:#363}.hp{width:50%;height:0;border-top:2px solid #fff}.ho a{color:#363}.hr a{color:#363}.hv{float:left;border:2px solid #d5e0a7;padding:5px}.h6{height:7px;width:7px;background:url(images/2/5/desk/icons7.png) no-repeat -120px 0}.ht .goog-menuitem-disabled{color:#666}.ht .goog-menuitem-highlight{background:#dbf0fa;color:#222}.h2{overflow:visible;background:#fff;border-left:solid 1px #d5e0a7;margin:2px 5px 0 0}.h3{margin:0 0 0 -1px;background:url(images/2/5/desk/reply_btn_bg.gif) repeat-x bottom left}.hC{padding-left:5px;background:url(images/2/5/desk/reply_btn_left.gif) no-repeat bottom left}.hD{border-left:solid 1px #d5e0a7;height:2ex;width:1px}.hz{background:none no-repeat top right;padding:0 7px 0 5px}.hA{height:7px;width:7px;background:url(images/2/5/desk/icons7.png) no-repeat -120px 0}.hB{height:13px;width:14px;background:url(images/2/5/desk/icons7.png) no-repeat 0 -40px}.hE{color:#666;padding-right:4px;padding-left:4px;white-space:nowrap}.g .o{background:#fff url(images/2/5/desk/cvf_border_top.gif) repeat-x top;height:inherit;top:inherit;left:inherit;margin-right:inherit}.g .h{background:#AED0E1 url(images/2/5/desk/cvf_shadow_bottom.gif) repeat-x top}.g .m{background:#fff url(images/2/5/desk/cvf_shadow_left.gif) repeat-y top left}.g .n{background:url(images/2/5/desk/cvf_shadow_right.gif) repeat-y top right}.g .p{background:#fff url(images/2/5/desk/cvf_shadow_top_left_first.gif) no-repeat top left}.g .hn .p{background:#fff url(images/2/5/desk/cvf_border_top_left.gif) no-repeat top left}.g .q{background:#fff url(images/2/5/desk/cvf_shadow_top_right_first.gif) no-repeat top right;margin:inherit;padding:inherit}.g .hn .q{background:#fff url(images/2/5/desk/cvf_border_top_right.gif) no-repeat top right}.g .j{background:#AED0E1 url(images/2/5/desk/cvf_shadow_bottom_right.gif) no-repeat top left}.g .i{background:#AED0E1 url(images/2/5/desk/cvf_shadow_bottom_left.gif) no-repeat top right}.iz .o{background:#dbf0fa url(images/2/5/desk/cvf_border_top.gif) repeat-x top}.iz .n{background:#dbf0fa url(images/2/5/desk/cvf_shadow_right.gif) repeat-y top right}.ij .h,.iz .h{background:#dbf0fa url(images/2/5/desk/cvf_shadow_bottom.gif) repeat-x top}.iz .m{background:#dbf0fa url(images/2/5/desk/cvf_shadow_left.gif) repeat-y top left}.iz .p{background:#dbf0fa url(images/2/5/desk/cvf_shadow_top_left_first.gif) no-repeat top left}.iz .q{background:#dbf0fa url(images/2/5/desk/cvf_shadow_top_right_first.gif) no-repeat top right}.ij .j,.iz .j{background:#dbf0fa url(images/2/5/desk/cvf_shadow_bottom_right.gif) no-repeat top right}.ij .i,.iz .i{background:#dbf0fa url(images/2/5/desk/cvf_shadow_bottom_left.gif) no-repeat top left}.ha{font-family:arial,sans-serif;font-size:100%;margin:10px 4px 0 10px;padding:4px 14px;color:#333;background:#dbf0fa;border-right:inherit}.id .il,.iW{background:#dbf0fa}.gA,.hi{background:#AED0E1 url(images/2/5/desk/cvf_shadow_left.gif) repeat-y top left;width:auto;padding:0 0 0 4px;margin:0 0 0 -4px}.gB,.hh{background:url(images/2/5/desk/cvf_shadow_right.gif) repeat-y top right}.A9{font-size:80%;color:#f22}.qr .gA{background:#dbf0fa url(images/2/5/desk/cvf_shadow_left.gif) repeat-y top left}.qr .gB{background:#dbf0fa url(images/2/5/desk/cvf_shadow_right.gif) repeat-y top right}.gQ{color:#f22;font-size:80%;font-weight:normal;padding-left:10px}.iC .gQ{color:#363}.hk span{cursor:pointer;color:#363;white-space:nowrap}.iC .hk span{color:#363}.z .h0 .e{color:#363}.C .h0 .e{color:#fff}.B .h0 .e{color:#fff}.A .h0 .e{color:#363}.iS{text-align:center;background:#94a2a9;margin:0 8px 0 16px}.iT{color:#fff;cursor:pointer}.h4{cursor:pointer;color:#666;font-size:9px}.h5{display:none;color:#666}.im{color:#666}.hm{color:#666}.u5{background:#fafdce;padding-top:10px;position:relative}.u7{color:#363;text-decoration:underline;cursor:pointer}.u6:visited{color:#363}a.u6{color:#363}.vd{color:#363;text-decoration:none}.fO{font-size:80%;margin-right:5px;padding-bottom:10px;border-bottom:1px solid #cc9}.YXCXSb .goog-tabpane{background-color:#dbf0fa;padding:0 4px}.nN8jRb .goog-tabpane-cont{padding:2px;border:1px solid #cc9;background-color:#fff}.nN8jRb .goog-tabpane-tab{margin-top:0;background-color:#fff;border:1px solid #cc9}.u5cA3e{border:1px solid #cc9}.LE6Bud .goog-tabpane-tab-selected{top:1px;border-bottom:1px solid #fff;border-top:1px solid #cc9;border-left:1px solid #cc9;border-right:1px solid #cc9}.YXCXSb .goog-tabpane-tab-selected{top:-1px;border-top:1px solid #fff;border-bottom:1px solid #cc9;border-left:1px solid #cc9;border-right:1px solid #cc9}.nN8jRb .goog-palette-cell-hover{background:#dbf0fa}.el,.dP,.dU{color:#363;text-decoration:underline;cursor:pointer}.ej .dW,.ej .fN{background:#dbf0fa url(images/2/5/desk/cvf_shadow_right.gif) repeat-y top right}.xE .dW,.x .dW{background-color:#dbf0fa}.x .eh{padding:18px 0 0 0}.eh{background:#dbf0fa}.eI{background:url(images/2/5/desk/icons7.png) no-repeat 0 -60px;height:16px;width:16px}.fN{width:100%;background:#dbf0fa;font-size:medium;padding-bottom:2px}.eA{width:100%;padding:0}.eD,.eE{padding:6px 3px 0;width:25px;font-size:80%;font-weight:bold;vertical-align:top;text-align:right;color:#000;white-space:nowrap}.eE{padding-top:0;vertical-align:middle}.eF,.eB{padding-bottom:10px}.ee .eE,.ee .eD,.ee .eB{padding-top:2px}.en{background:url(images/2/5/desk/icons7.png) no-repeat -120px -40px;width:15px;height:15px;margin-top:2px}.dK{height:3em;overflow:auto}.ef{font-size:80%;margin-top:1px}.eg{margin-top:2px}.d0{font:9px verdana,arial,sans-serif;color:#363}.dL{margin-bottom:2px;padding-bottom:1px}.dO,a.dO{color:#363}.dN{color:#f22;font-weight:bold}.dQ{border:solid 1px #999;background:#fff;width:100px;height:0.8em;padding:1px;overflow:hidden;margin:1px 0 0 3px}.dK.ek{border:2px solid #6cbf19!important;margin:0!important}.fM .vi{background:#f22}.fM .vh{background:#f22;color:#fff;font-weight:bold;padding:0;margin:0}.fM .vj{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat 0 0;background-color:transparent}.fM .vk{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat -4px 0;background-color:transparent}.fM .vf{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat 0 -4px;background-color:transparent}.fM .vg{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat -4px -4px;background-color:transparent}.eJ table{width:100%;background:#fff}.eL,.eM,.eK{border:1px solid #fff;width:18px;height:18px;margin-left:1px;margin-right:2px}.e9{border:1px solid;border-color:#e8f1ff #9daecd #9daecd #e8f1ff}.eW,.e7{border:1px solid;border-color:#9daecd #e8f1ff #e8f1ff #9daecd}.e7{background-color:#dbf0fa}.es,.eo,.em{position:relative;top:-5px;cursor:pointer;color:#363;white-space:nowrap}.wY{background:url(images/2/5/desk/icons7.png) no-repeat 0 0;width:7px;height:7px}.eu{color:#363;cursor:pointer}.ew{color:#f22}.ex .goog-menuitem-highlight{background-color:#dbf0fa;color:#222}.ex .goog-menuitem-disabled{color:#666}.ex .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/desk/icons7.png) no-repeat -100px -80px}.d6{border:2px solid;border-color:#f93;padding:3px 0 3px 3px}.fx{position:absolute;background:#fff;border:1px solid #888;cursor:pointer;font-size:80%;top:0}.fx .goog-menuitem-highlight{background:#dbf0fa;color:#222}.fx .goog-option-selected .goog-menuitem-checkbox{background:url(images/2/5/desk/icons7.png) no-repeat -100px -80px}.fv .goog-palette-table{border:1px solid #cc9;border-collapse:collapse}.fv .goog-palette-cell{height:13px;width:15px;margin:0;border:0;text-align:center;vertical-align:middle;border-right:1px solid #cc9;font-size:100%}.fv .goog-palette-colorswatch{position:relative;height:12px;width:14px;border:1px solid #cc9}.fy{margin-top:2px;background-color:#dbf0fa;border-width:1px 0;font-size:80%}.fz{color:#c60;text-decoration:underline;font-weight:bold}.mE{font-size:80%;background-color:#AED0E1}.mH{background-color:#AED0E1;width:100%}.mD{white-space:nowrap;padding:4px 5px;cursor:pointer;color:#363;vertical-align:baseline}.mL{background:url(images/2/5/desk/icons7.png) no-repeat 0 -40px}.mK{background:url(images/2/5/desk/icons7.png) no-repeat -40px -40px}.mI{background:url(images/2/5/desk/icons7.png) no-repeat -80px -40px}.mC{background-color:#dbf0fa}.mC .mG{text-decoration:none;color:#363}.manager-page .frame{background-color:#fff;color:#000;z-index:100;height:300px}.manager-page .rightsep{border-right:2px solid #fff}.manager-page .input-default{color:#666;padding-left:3px}.manager-page .add-to-group-box{display:block;background-color:#fff;color:#000;border:1px solid #dbf0fa;width:auto;text-align:left;padding:1px;vertical-align:bottom}.manager-page .message.info{background-color:#6cbf19;color:#fff}.manager-page .message.error{background-color:#f22;color:#fff}.manager-page .loading{background-color:#6cbf19;color:#fff;font-size:80%;padding:1px}.manager-page .menu .menu-item-selected{color:#222;background-color:#dbf0fa}.cmgr-toolbar{height:32px;background-color:#fff;color:#000;vertical-align:middle;overflow-x:visible}.cmgr-toolbar .search-box{width:260px;padding:2px 2px 3px 2px;vertical-align:baseline;background-color:#fff;color:#000;border:1px solid #dbf0fa;text-align:left;font-size:80%}.cmgr-toolbar .cmgr-link{font-size:80%;color:#363}.manager-page .stand-alone{background-color:#fff;border-bottom:1px solid #dbf0fa;padding:10px 0 5px}.cmgr-editbar{background-color:#fff;color:#000;border-top:1px solid #cc9;border-bottom:1px solid #cc9;overflow-x:visible}.cmgr-contacts-list-actions{background-color:#fff;color:#000;border-top:1px solid #cc9;border-bottom:1px solid #cc9;font-size:80%;vertical-align:middle;white-space:nowrap;overflow:hidden}.cmgr-contacts-list-actions .cmgr-link{color:#666}.cmgr-contact-pane .cmgr-link{color:#363}.cmgr-contact-pane .contact-banner{border-top:1px solid #fff;border-bottom:1px solid #fff}.cmgr-domain-contact-label{padding:5px 7px;color:#fff;border-bottom:1px solid #cc9;font-weight:bold;background-color:#6cbf19}.cmgr-domain-contact-label .link{color:#333}.cmgr-edit-interleave-label{padding:7px;color:#fff;border-top:1px solid #cc9;border-bottom:1px solid #cc9;background-color:#6cbf19}.modal-dialog-bg{position:absolute;left:0;top:0;background-color:#fff}.manager-page .ac-renderer{font-family:80% arial,sans-serif;border:1px solid #888;background:#fff;color:#000;margin:0 0;padding:0 0 1px 0;z-index:10;position:absolute}.manager-page .ac-renderer div.active{color:#222;background:#dbf0fa}.manager-page .dim{color:#666}.manager-page hr{background-color:#fff}.gc-phone-example{font-size:80%;color:#666}.gc-muted-text{color:#666}.manager-page .goog-flat-button-disabled{border-color:#888;color:#666;background-color:#fff;cursor:default;filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.manager-page .goog-flat-button-hover,.manager-page .goog-flat-button-active{border-color:#363;color:#000;background-color:#fff}.manager-page .merge-banner{padding:7px 10px;font-weight:bold;color:#fff;background-color:#6cbf19}.manager-page .goog-menuitem-disabled{color:#666}.manager-page .goog-menuitem-highlight,.manager-page .goog-menuitem-hover{background-color:#dbf0fa;color:#222}.cmgr-hr-divider{background-color:#fff;border:0 none;height:1px;margin:2px 5px 4px;padding:0}.checkable-list .active{background-color:#dbf0fa}.checkable-list .selected{background-color:#dbf0fa;overflow:hidden}.checkable-list .selected .text{color:#363;font-weight:bold}.checkable-list .preselect{background-color:#dbf0fa}.checkable-list .header{font-size:90%;font-weight:bold;border-bottom:1px solid #fff;padding:2px;margin-bottom:8px;margin-top:2px}.group-list .count{color:#666;padding-left:5px;padding-right:2px;float:right}.group-list .active{background-color:#dbf0fa}.group-list .preselect{background-color:#dbf0fa}.group-list .selected{background-color:#dbf0fa}.group-list .selected .text{font-weight:bold;color:#363}.group-list .selected .count{color:#363}.group-list-secondary .selected{background-color:#cc9}.group-list-secondary .selected .text{color:#666}.group-list-secondary .selected .count{color:#666}.group-list hr.header{background-color:#fff;border:0 none;padding:0;margin:2px 5px 4px 5px;height:1px}.lo .k{background:#6cbf19}.lo .o{background:#6cbf19;height:3px;top:inherit}.lo .n{background:#6cbf19}.lo .m{background:#6cbf19}.lo .q{background:url(rc?a=af&c=6cbf19&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lo .p{background:url(rc?a=af&c=6cbf19&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lp .k{background:#f60}.lp .o{background:#f60;height:3px;top:inherit}.lp .n{background:#f60}.lp .m{background:#f60}.lp .q{background:url(rc?a=af&c=f60&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.lp .p{background:url(rc?a=af&c=f60&w=3&h=3) no-repeat 0 0;margin-top:inherit}.lo .ph{display:none}.lm{background:#6cbf19;padding:2px}.ln{background:#f60}.kX{border-right:1px solid #d5e0a7;border-left:1px solid #d5e0a7;border-top:none;border-bottom:1px solid #d5e0a7}.kv{background:url(images/2/5/desk/icons7.png) no-repeat -20px -80px;width:16px;height:16px;float:right}.ku{background:url(images/2/5/desk/icons7.png) no-repeat 0 -80px;width:16px;height:16px;float:right}.kU{background:url(images/2/5/desk/icons7.png) no-repeat -120px -80px;width:15px;height:15px;margin-top:1px;float:right}.ja{background:url(images/2/5/desk/icons7.png) no-repeat -40px -80px;width:16px;height:16px;float:right}.kx,.jb,.kV{background-color:#449700}.ky,.kW,.jc{background-color:#f40}.kt,.jA,.nl{color:#363;text-decoration:underline;cursor:pointer}.ko{color:#000;background-color:#fff;clear:both;overflow-x:hidden;overflow-y:auto;min-height:40px;border-left:1px solid #d5e0a7;border-right:1px solid #d5e0a7;padding:0.42em 0 0 0;font-size:80%;position:relative}.kk a,.kq a{color:#363}.kq{color:#666;margin-left:1em}.kg{color:#f22}.kd{padding-left:5px;color:#666}.jp{border-left:solid #d5e0a7 1px;border-right:solid #d5e0a7 1px;background-color:#fff;text-align:center;padding-bottom:4px}.jT{position:relative;border:1px solid;border-color:#d5e0a7;margin:1px;color:#000;background-color:#f9fcb4;padding:3px 0 3px 3px;font-size:80%;overflow-y:hidden;overflow-x:auto;height:36px;width:96%;outline:0}.jV{margin:0;border:2px solid #f93}.jW{margin:0;border:2px solid #6cbf19}.js{color:#f22}.jw{color:#666}.jD{text-align:left;cursor:default;padding:2px 4px;margin:2px;border:1px solid #fff;font-size:80%;color:#000;text-decoration:none}.jE{border:1px solid #f93}.jF{border:solid 1px #888;background-color:#6cbf19;color:#000}.jB{background:url(images/2/5/desk/icons7.png) no-repeat -160px 0;width:7px;height:7px}.jC{background:url(images/2/5/desk/icons7.png) no-repeat -140px 0;width:7px;height:7px}.jJ{position:absolute;background-color:#fff;color:#000;visibility:hidden;width:30ex;font-size:80%;border:1px solid #888;vertical-align:bottom;padding:0;margin:0;z-index:7;overflow:hidden;text-overflow:ellipsis;outline-style:none}.jM{color:#666}.jN{background-color:#dbf0fa;border:1px solid #ffcc33;margin-bottom:0;margin-top:0}.jO{background-color:#6cbf19;color:#222}.jR{background:url(images/2/5/desk/icons7.png) no-repeat -60px -80px;height:15px;width:15px}.jQ{background:url(images/2/5/desk/icons7.png) no-repeat -80px -80px;height:15px;width:15px;vertical-align:-3px;margin-left:1px}.ne{background-color:#fff;font-size:80%;overflow:hidden;border-left:1px solid #d5e0a7;border-right:1px solid #d5e0a7;border-bottom:1px solid #fff;padding-top:1px;padding-bottom:4px}.ni{color:#666;padding-left:3px;padding-bottom:1px}.nm{color:#666;font-weight:normal;white-space:nowrap}.nj input{width:97%;margin:1px;border:1px solid #d5e0a7}.nk input{margin:0;border:2px solid #f93}.jo{position:relative;background-color:#6cbf19;border-right:1px solid #888;border-left:1px solid #888;border-bottom:1px solid #888;border-top:none;z-index:1}.jm .goog-icon-picker-highlighted{background-color:#6cbf19}.jm .goog-tabpane{background-color:#d5e0a7;padding-left:1px;position:relative;width:136px;border:1px solid #888;bottom:-1px;z-index:0}.jm .goog-tabpane-tabs{list-style:none;margin:0;padding:0;border-bottom:1px solid #888;border-top:none;border-left:none;border-right:none;height:30px}.jm .goog-tabpane-tab,.jm .goog-tabpane-tab-selected{display:block;float:left;padding:0;background-color:#d5e0a7;margin:0;width:28px;height:25px;position:relative;bottom:-2px;left:3px;vertical-align:middle;text-align:center}.jm .goog-tabpane-tab-selected{padding-bottom:2px;padding-top:0;font-weight:bold;background-color:#fff;border:solid #888;border-width:1px 1px 0;position:relative;bottom:-3px}.jX,.jY{background-color:#fff;height:30px}.jX{border-left:1px solid #d5e0a7;border-right:1px solid #d5e0a7}.jZ{background-color:#6cbf19}.ll{color:#f22;font-weight:bold}.kR{border-left:solid #d5e0a7 1px;border-right:solid #d5e0a7 1px;background-color:#fff;text-align:center;overflow:hidden;padding:4px;clear:both}.kS{color:#666;font-size:70%;width:100%}.fX{background-color:#fff}.fX .goog-flat-button{color:#fc0;margin-left:4px;font:80% arial,sans-serif;line-height:130%}.dy{color:#363}.vI td{border-top:1px solid #dbf0fa}.vD{color:#222;background-color:#dbf0fa}.vE{background:#f60}.vm{color:#666}.vG{color:#666}.vG a{color:#363}.vu{color:#666}.uk{width:100%;border-bottom:solid #dbf0fa 1px;background-color:#fff;font-size:80%;cursor:pointer;padding-top:5px}.uc{color:#666;margin-bottom:4px}.ul .cg{color:#c60}.ul{background-color:#dbf0fa;border-top:1px solid #dbf0fa;border-bottom:1px solid #dbf0fa}.ud,.um{color:#000;background-color:#fff;border-top:1px solid #dbf0fa;border-bottom:1px solid #dbf0fa}.up{border:1px solid #666;background-color:#cc9;cursor:pointer}.uo{border:1px solid #dbf0fa;color:#dbf0fa}.uB{height:100%;color:#666;text-align:right}td.uL{border-right:#cc9 solid 1px}td.ui,td.uP{border:#cc9 solid 1px}.ue{height:100%;padding:1px 0 1px 5px;color:#666}.ue a{color:#363}.uf{color:#666;text-align:left;padding:0}.uM{background:url(images/2/5/desk/icons7.png) no-repeat -60px 0;width:7px;height:7px}.uN{background:url(images/2/5/desk/icons7.png) no-repeat 0 0;width:7px;height:7px}.uH{height:100%;border:#dbf0fa solid 1px;background:#fff}input.uG{height:100%;padding:1px 0 1px 5px;margin:-1px 0 6px -1px;border:#dbf0fa solid 1px;font-size:80%}.uy{background-color:#dbf0fa;color:#222}.uu{color:#363;text-decoration:underline;cursor:pointer}.dI{border:solid 1px #cc9;font-size:80%;margin:0 1px}.ac-active img.uS{background:url(images/2/5/desk/icons7.png) no-repeat -160px 0}.u0{background:url(images/2/5/desk/icons7.png) no-repeat -100px -80px;height:12px;width:12px}.uU{background-color:#fff;color:#666;float:right;border-left:1px solid #888;padding-left:2px;padding-top:1px}.uV{background-color:#dbf0fa;color:#222}.u3{background-color:#fff;color:#666}.uW{background-color:#fff;color:#000}.uY{border-top:1px solid #888;padding-top:0}.dz{color:#000;background-color:#fff;font-size:80%;border-bottom:1px solid #dbf0fa}.dz .cg{color:#363}.c3{color:#666}.dp{font-size:80%;color:#666}.jU{padding:0 3px}.dv{vertical-align:super;color:#333;font-size:80%}.A5 a{color:#fc0}.goog-date-picker{text-align:center;vertical-align:middle;position:absolute;border:1px solid #dbf0fa;background:#fff;color:#000;font-size:80%}.goog-date-picker-wday{text-align:center;vertical-align:middle;font-weight:normal;background:#dbf0fa;color:#000;padding:3px 0}.goog-date-picker-head,.goog-date-picker-btn{color:#fc0;background:#dbf0fa;font-weight:bold;padding:3px 4px}.goog-date-picker-weekend{background:#fff;color:#000;cursor:pointer}.goog-date-picker-other-month{color:#cc9}.goog-date-picker-selected{background:#fff;color:#000}.v .l{background-color:#e3e3c7}.v .k{color:#000;background:#e3e3c7}.v .o{background:transparent url(images/2/5/desk/frame_bg_top_spiral.png) 0 0 repeat-x;height:26px;top:inherit}.v .n{background:transparent url(images/2/5/desk/frame_right_border.png) top right repeat-y;padding:0 2px 0 0;margin:0 -2px 0 0}.v .h{background:transparent url(images/2/5/desk/frame_bottom_border.png) 0 0 no-repeat;height:12px}.v .m{background:transparent url(images/2/5/desk/frame_left_bg.png) 0 0 no-repeat}.v .q{background:transparent url(images/2/5/desk/frame_top_right_corner.png) 0 9px no-repeat;display:inherit;padding:inherit;margin:inherit}.v .j{background:transparent url(images/2/5/desk/frame_bottom_right_corner.png) 100% 0 no-repeat;display:inherit;padding:0 2px 0 0;margin:0 -2px 0 0}.v .i{background:transparent url(images/2/5/desk/frame_bottom_left_corner.png) 100% 0 no-repeat}.v .p{background:transparent url(images/2/5/desk/frame_top_left_corner.png) bottom right no-repeat}.v .p,.v .q{height:26px;margin-top:inherit}.v .i,.v .j{height:12px}.sA,.sv,.r4 .e{text-decoration:underline;color:#363;cursor:pointer;white-space:nowrap}.qZ{background:#e3e3c7;color:#000;padding:4px 2px;font-size:100%;margin:0;font-weight:bold}.r4{background-color:#fff;padding:4px}.v9{padding:0 3px 3px 3px}.v9 .fZ{background:#fff;font-size:80%;padding:3px 8px}.v9 .f1{color:#363;background:#e3e3c7;font-size:80%}.v9 .fY{background:#e3e3c7;padding:0}.v7 .fY{background:#e3e3c7}.v7 .fZ{background-color:#fff;border:1px solid #e3e3c7;border-right:none}.v7 .f1{background:#e3e3c7}.tf{background-color:#fff;border:1px solid #e3e3c7;border-right:none}.r7 td.r8,.r7 td.r9,.q7,.q6,.qV,.qS{border:none;border-bottom:2px solid #e3e3c7;padding:8px}.r7 td.r5{border-top:2px solid #e3e3c7}.r7 a{color:#363}.r7 .e{color:#363}.rT{font-weight:normal;color:#666}.rZ{background-color:#e3e3c7;padding:0;height:2px}.rJ{width:96px;height:96px;border:1px solid #cc9}.q8{text-decoration:underline;font-weight:bold;cursor:pointer;color:#363}.qT{color:#f22}.qF{font-weight:bold;color:#666}.qG{color:#666}.rM .vi,.rM .vh{background-color:#f22}.rM .vj{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat 0 0}.rM .vk{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat -4px 0}.rM .vf{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat 0 -4px}.rM .vg{background:url(rc?a=af&c=f22&w=4&h=4) no-repeat -4px -4px}.s0{padding:6px;border-bottom:2px solid #e3e3c7;font-size:80%}.s7{color:#666}.sV{font-size:80%;color:#666;margin:20px 0 0 24px}.s1{border-color:#e3e3c7;border-style:solid;border-width:1px 0;padding:6px 9px 6px 7px;text-align:left}.s3{color:#666;font:9px verdana,arial,sans-serif}.sW a{color:#363}.lpcd{padding:15px 20px;position:absolute;color:#000;border:2px solid #e3e3c7;background-color:#fff;text-align:center;vertical-align:middle;width:420px;font-size:80%}.sN{text-decoration:underline;color:#363;cursor:pointer}.sM{background-color:#e3e3c7;padding:5px}.sn{border:2px solid #e3e3c7;height:99px;overflow:hidden;text-align:center;padding:5px;line-height:1.4;width:80px;cursor:pointer}.sm{color:#363;text-decoration:underline}.ri{color:#363}.rh{font-weight:bold;color:#f22}.ro{border:1px solid #666}.rr{color:#f22}.sk{border:solid 2px #363}.sl{border:solid 2px #fff}.si{background-color:#fff;border:solid 2px #fff;padding:5px;cursor:pointer}.sh{background-color:#fff;border:solid 2px #cc9;padding:5px}.sg{cursor:pointer;text-decoration:underline;overflow:hidden;color:#363}.sq{width:65px;height:65px;border:1px solid #cc9;margin:5px 3px 3px 3px}.rd{color:#363}.cB{position:relative;margin:0 3px 0 0;border:solid #cc9;border-width:1px 0;font-size:80%}.cz{height:100%;vertical-align:top;background-color:#cc9;padding:4px 0}.cz a{color:#666}.cw{white-space:nowrap;text-align:right;vertical-align:top;padding:3px 3px 3px 15px;color:#666}.cD{color:#666}.cF{zoom:1;border:1px solid #cc9;background:#fff;padding:4px;white-space:nowrap}.cF .e{color:#666}.cy a{color:#363}tr.cn td{border-top:1px dotted #cc9}tr.cm td{border-bottom:1px dotted #cc9}tr.cr td{border-top:1px #cc9 solid;border-bottom:1px #cc9 solid;background:#cc9}.cp{white-space:nowrap;text-align:right;color:#666}.cu{width:70%;height:100%;background:#cc9;padding:4px 0}.cv{width:30%;height:100%;border:1px solid #cc9;text-align:center;background:#cc9;padding:4px}.o0{background-color:#fff;border:9px solid #e3e3c7}.oR{background:#e3e3c7;color:#000;padding-bottom:8px;font-weight:bold}.oS{color:#666;padding:6px 0}.oP{color:#f22;padding-top:6px;padding-bottom:12px;font-weight:bold}.oZ{color:#666;padding-top:20px}.wL{border:1px solid #fff}.wN .k{background:#fff}.wN .o{background:#fff;height:3px;top:inherit}.wN .n{background:#fff}.wN .m{background:#fff}.wN .q{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat -3px 0;margin-top:inherit}.wN .p{background:url(rc?a=af&c=fff&w=3&h=3) no-repeat 0 0;margin-top:inherit}.wO .k{background:#fff}.wO .o{background:#fff;height:3px;top:inherit}.wM{background:#fff;padding:2px}.vT{background:#fff;overflow:auto}.vS{width:100%;background:#7bb2cb;overflow:hidden}a.vQ{color:#363}.vM{background:#f22;color:#fff}.vN{color:#fff}.vT .goog-menu-button{position:absolute;right:4px;bottom:4px;display:block;background:#fff;opacity:.6;width:15px;height:15px;text-align:center;cursor:default}.vT .goog-menu-button-dropdown{background:url(images/2/5/desk/icons7.png) no-repeat 0 0;width:7px;height:7px;overflow:hidden;margin:3px}.sam .goog-menuitem-highlight{color:#222;background:#dbf0fa}.Rgky9,.GHl1cf{width:96px;height:54px;margin:11px 10px 10px 26px}.pk .j{position:relative}.qj .k{margin-right:0!important}.x .n{margin-left:0!important}.z .q,.C .q,.B .q,.x .q,.A .q{padding-right:2px;margin-right:-2px}.z .k,.y .k,.v .k,.C .k,.B .k,.A .k{background:#fff url(images/2/5/desk/bg_frame_gradient.gif) top right no-repeat}.T1HY1{margin-right:5px}.iI,.iE{margin-right:5px}.g .n,.g .q,.g .i,.g .j{padding:0!important;margin:0!important;height:inherit;zoom:1}.g .h7 .p{width:8px!important;height:10px}.g .k{background:transparent}.z,.C,.B,.A,.y{margin-left:-5px;margin-top:-12px}.b8,.cd,.cc{margin-bottom:13px}.x{margin-top:-24px}.u5{padding:10px;margin-top:10px;margin-right:10px;width:auto!important}.b .pi,.a .pi{height:0!important}.aK .k,.aJ .k{padding:10px 15px!important}.aJ .q,.aJ .p,.aK .q,.aK .p{background:none!important}.v{margin-left:-7px}.fgrX7c{padding-bottom:125px}",
logo: "background-image: url(images/2/5/desk/logo_beta.png); background-position: left top; background-repeat: no-repeat;"
}
},
update_theme: function()
{
bootstrap.log("Applying theme...");
var gmail = bootstrap._gmail;
bootstrap.log(gmail.getMastheadElement());
var document = gmail.getMastheadElement().ownerDocument;
//Check to see if we've already injected the stylesheet...
if ( google_apps_themes.gat_style_elem == null ) {
bootstrap.log("creating new style tags...");
var style = document.createElement('style');
style.id = google_apps_themes.gat_style_id;
document.getElementsByTagName('head')[0].appendChild(style);
google_apps_themes.gat_style_elem = style;
} else {
bootstrap.log("using existing style tag...");
var style = google_apps_themes.gat_style_elem;
}
//Check to see if we've already got the image...
if ( google_apps_themes.gat_img_elem == null ) {
var img = document.getElementById(google_apps_themes.logo_id);
} else {
var img = google_apps_themes.gat_img_elem;
}
//Check to make sure we've got a valid theme
if ( !google_apps_themes.themes[google_apps_themes.selected_theme] ) {
google_apps_themes.selected_theme = 'chrome';
setTimeout(function() { GM_setValue('theme', 'chrome'); }, 1);
}
//Apply the update
bootstrap.log("Apply style...");
var css = google_apps_themes.themes['chrome'].css; //always apply chrome styles
//Only apply alt styles if not chrome
if ( google_apps_themes.selected_theme != 'chrome' ) {
css += google_apps_themes.themes[google_apps_themes.selected_theme].css;
}
//Apply the fix...
css += 'div.pX .l,div.pX .k{background:none}.pX .ph{display:none}.p5{overflow:hidden;text-overflow:ellipsis}';
style.innerHTML = css;
if ( img != null ) {
img.style.cssText = google_apps_themes.themes[google_apps_themes.selected_theme].logo;
}
bootstrap.log("Done applying theme");
},//end find_canvas
update_settings: function()
{
this._update_settings_bar();
this._update_settings_inject_theme_page();
this._update_settings_add_event_handlers();
},//end update_settings
_update_settings_bar: function()
{
bootstrap.log("Updating settings bar...");
var gmail = bootstrap._gmail;
var elem_root = gmail.getActiveViewElement();
var as = elem_root.getElementsByTagName('a');
this.gat_settings_as = as;
if ( as.length == 0 ) {
return;
}
var elem_labs = null;
for ( var i=0; i<as.length; i++ ) {
if ( as[i].innerHTML == 'Labs' ) {
elem_labs = as[i];
}
as[i].addEventListener('click', function() {
doc.getElementById('elem_themes_page').style.display = "none";
doc.getElementById('themes_container').className = off_class;
}, true);
}//for i
if ( elem_labs == null ) {
bootstrap.log("Could not find it");
return;
}
var doc = elem_labs.ownerDocument;
this.gat_settings_doc = doc;
var elem_container = elem_labs.parentNode;
var elem_settings_bar = elem_container.parentNode;
this.gat_settings_bar = elem_settings_bar;
var themes_container = doc.createElement('div');
this.gat_settings_themes_container = themes_container;
themes_container.id = "themes_container";
themes_container.className = elem_container.className;
var themes_link = doc.createElement('a');
this.gat_settings_themes_link = themes_link;
themes_link.id = "themes_link";
themes_link.className = elem_labs.className;
var pos = -1;
var on_class = null;
var off_class = null;
for ( var i=0; i<elem_settings_bar.childNodes.length; i++ ) {
if ( i == 0 ) {
on_class = elem_settings_bar.childNodes[i].className;
}
if ( elem_settings_bar.childNodes[i] == elem_container ) {
off_class = elem_settings_bar.childNodes[i].className;
pos = i+1;
}
}//for i
this.gat_settings_off_class = off_class;
this.gat_settings_on_class = on_class;
themes_container.appendChild(themes_link);
themes_link.innerHTML = 'Themes';
elem_settings_bar.insertBefore(themes_container, elem_settings_bar.childNodes[pos]);
bootstrap.log("Inserted Themes...");
},//end _update_settings_bar
_update_settings_inject_theme_page: function()
{
bootstrap.log("update_settings_inject_theme_page...");
var doc = this.gat_settings_doc;
var elem_settings_container = this.gat_settings_bar.parentNode;
var elem_settings_bar = this.gat_settings_bar;
//Find the next sibling to the settings bar
bootstrap.log("found the container");
var pos = -1;
for ( var i=0; i<elem_settings_container.childNodes.length; i++ ) {
if ( elem_settings_container.childNodes[i] == elem_settings_bar ) {
pos = i+1;
break;
}
}//for i
bootstrap.log("Done looping");
if ( pos == -1 ) {
bootstrap.log("Could not find settings bar sibling ...");
return;
}
bootstrap.log("Getting container..");
var elem_page_container = elem_settings_container.childNodes[pos];
this.gat_settings_page_container = elem_page_container;
bootstrap.log("Got container... " + elem_page_container);
elem_page_container.id = 'page_container';
//Find the last page in the container
bootstrap.log("Finding last page in container...");
var last_page_container = elem_page_container.childNodes[elem_page_container.childNodes.length-1];
//Create a page for the themes
var elem_themes_page = doc.createElement('div');
this.gat_settings_theme_page = elem_themes_page;
elem_themes_page.id = "elem_themes_page";
elem_themes_page.className = last_page_container.className;
//Add in the new theme page
elem_page_container.appendChild(elem_themes_page);
//Make sure it will show above everything else but that it is not yet displayed...
elem_themes_page.style.cssText = "z-index: 100; width: 100%;";
elem_themes_page.style.display = "none";
//Add a container for the themes...
var theme_list_container = doc.createElement('div');
theme_list_container.className = 'sr';
elem_themes_page.appendChild(theme_list_container);
theme_list_container2 = doc.createElement('div');
theme_list_container2.className = 'nH r4';
theme_list_container.appendChild(theme_list_container2);
theme_list_container = theme_list_container2;
var version_info = '<div style="clear: both; font-size: 12px;"><strong>Google Apps Themes v.';
version_info += google_apps_themes.version;
version_info += '</strong> | <span class="sg"><a class="sg" href="http://tim-jarrett.com/google_apps_themes.php?version=' + google_apps_themes.version;
version_info += '">Check For Updates</a></span></div>';
theme_list_container.innerHTML = version_info;
for ( theme in this.themes ) {
bootstrap.log("Operating on " + theme);
this._update_settings_add_theme(theme_list_container, this.themes[theme]);
}//end for themes
bootstrap.log("Done with themes");
},//end _update_settings_inject_theme_page
_update_settings_add_theme: function(parent, theme)
{
bootstrap.log("in add_theme");
var doc = this.gat_settings_doc;
var elem = doc.createElement('div');
bootstrap.log("Created new block");
elem.className = 'goog-inline-block sj';
elem.id = theme.id;
var highlight = 'si';
if ( theme.id == this.selected_theme ) {
this.selected_theme_elem = elem;
highlight = 'sh';
}
var html = '<div id="' + theme.id + '" class="sl"><div id=":ev" class="' + highlight + '"><div class="FnUxx">';
html += '<input id=":ex" name="chsk" value="' + theme.id + '" type="hidden"><div class="se">';
html += '<span id=":eu" class="sg" style="font-size: 13px;">' + theme.name + '</span></div><div class="sd">';
html += '<img src="https://mail.google.com/mail/images/2/5/' + theme.id + '/preview1.png" class="sq"></div></div></div></div>';
elem.innerHTML = html;
parent.appendChild(elem);
bootstrap.log("Done");
},//end _update_settings_add_theme
_update_settings_add_event_handlers: function()
{
bootstrap.log("_update_settings_add_event_handlers...");
var elem_page_container = google_apps_themes.gat_settings_page_container;
var elem_settings_bar = google_apps_themes.gat_settings_bar;
var elem_themes_page = google_apps_themes.gat_settings_theme_page;
var off_class = google_apps_themes.gat_settings_off_class;
var on_class = google_apps_themes.gat_settings_on_class;
var themes_container = google_apps_themes.gat_settings_themes_container;
var doc = google_apps_themes.gat_settings_doc;
var themes_link = google_apps_themes.gat_settings_themes_link
var as = google_apps_themes.gat_settings_as;
themes_link.onclick = function(event) {
//Hide any other open page
for ( var i=0; i<elem_page_container.childNodes.length; i++ ) {
elem_page_container.childNodes[i].style.display = "none";
}//for i
//Unhide the themes
elem_themes_page.style.display = "";
for ( var i=0; i<elem_settings_bar.childNodes.length; i++ ) {
if ( elem_settings_bar.childNodes[i] == themes_container ) {
break;
}
elem_settings_bar.childNodes[i].className = off_class;
}//for i
themes_container.className = on_class;
for ( var i=0; i<as.length; i++ ) {
as[i].hidefocus = "false";
}//for i
themes_link.hidefocus = "true";
}//end onclick
var theme_divs = [];
var divs = elem_themes_page.getElementsByTagName('div');
for ( var i=0; i<divs.length; i++ ) {
if ( divs[i].className.match("goog-inline-block") != null ) {
theme_divs.push(divs[i]);
divs[i].addEventListener('click', function(event) {
var elem = event.currentTarget;
var prev_theme = google_apps_themes.selected_theme;
var prev_theme_elem = elem.ownerDocument.getElementById(prev_theme);
prev_theme_elem.childNodes[0].childNodes[0].className = 'si';
bootstrap.log("Previous theme... " + prev_theme);
var prev_theme_elem = google_apps_themes.selected_theme_elem;
google_apps_themes.selected_theme = elem.id;
GM_setValue('theme', elem.id);
google_apps_themes.update_theme();
elem.childNodes[0].childNodes[0].className = 'sh';
}, false);
divs[i].addEventListener('mouseover', function(event) {
var elem = event.currentTarget;
elem.childNodes[0].className = 'sk';
}, false);
divs[i].addEventListener('mouseout', function(event) {
var elem = event.currentTarget;
elem.childNodes[0].className = 'sl';
}, false);
}
}//for i
},//end _update_settings_add_event_handlers
}//end google_apps_themes
bootstrap.registerViewChange(function(view) { bootstrap.log("Active view: " + bootstrap._gmail.getActiveViewType()); });
bootstrap.registerViewChange(function(view) { google_apps_themes.update_settings(); }, 's');
bootstrap.registerPostInit(function() { google_apps_themes.update_theme(); });
bootstrap.init();
