/**********************************
Global Style

Index:
    01. Reset
    02. Font multiplier table
    03. Global Settings for Common
         HTML elements
    04. Template Structure
    05. Text Colors
    06. Navigation Bar
    07. Shared/General Components
    08. Answer & Question Detail Pages
    09. Home Page
    10. Account Pages
    11. General Accessiblity
    12. Print Style
    13. Chat Related
**********************************/

/********************
    01. Reset
********************/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,th,var{font-style:normal;font-weight:normal;}
ul, ol, li, dl, dt, dd{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym {border:0;font-variant:normal;}
/* to preserve line-height and selector appearance */
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;margin:0;padding:0;}
/*because legend doesn't inherit in IE */
legend{color:#000; padding:0;}
a img, iframe { border: none; }

/*************************************
    02. Font multiplier table
**************************************
Pixels  EMs   Percent    Points
6px   0.500     50.00%     5pt
7px     0.583     58.30%     5pt
8px     0.667     66.70%     6pt
9px     0.750     75.00%     7pt
10px     0.833     83.30%     8pt
11px     0.917     91.70%     8pt
(12px is our body default)
12px     1.000     100.0%     9pt
13px     1.083     108.3%     10pt
14px     1.167     116.7%     11pt
15px     1.250     125.0%     11pt
16px     1.333     133.3%     12pt
17px     1.417     141.7%     13pt
18px     1.500     150.0%     14pt
19px     1.583     158.3%     14pt
20px     1.667     166.7%     15pt
21px     1.750     175.0%     16pt
22px     1.833     183.3%     17pt
23px     1.917     191.7%     17pt
24px     2.000     200.0%     18pt
***************************************/

/*************************************
    03. Global Settings for Common
          HTML elements
*************************************/
html {
/*    background:#FFF url(images/layout/royalGrayBackground.png) repeat-x; */
    font-family:Helvetica, Arial, sans-serif;
}
/*Japanese charset support*/
html[lang="ja-JP"],
html[lang="ja-JP"] input, html[lang="ja-JP"] textarea, html[lang="ja-JP"] select {
    font-family:"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "MS PGothic", "MS Pゴシック", Helvetica, Arial, sans-serif;
}
body {
    font-size:.75em;
    line-height:1.250em;
    text-align:left;
}

h2, h3, h4, h5, h6 {
    font-family:Arial, sans-serif;
    font-weight:bold;
}
h1 { /* 25px */
    font-size:2.083em;
    font-weight:normal;
    line-height:1.8em;
}
h2 { /* 16px */
    font-size:1.333em;
    line-height:1.4em;
}
h3 { /* 14px */
    color:#2F2F2F;
    font-size:1.167em;
    line-height:1.3em;
}
h4 { /* 12px */
    color:#404040;
    font-size:1em;
    line-height:1.3em;
}
h5 { /* 11px */
    color:#505050;
    font-size:0.917em;
    line-height:1.0em;
}
h6 { /* 10px */
    color:#505050;
    font-size:0.833em;
    line-height:.8em;
}
h1.regionflag {
        width: 25px; height: 25px;
        background: url(images/global.bmp);
        text-indent: -9999px;
}
p {
    line-height:1.4em;
    margin-bottom:1em;
}
table {
    border-collapse:separate;
    border-spacing:0.3em;
}
hr {
    margin:10px 0px;
}
strong {
    font-weight: bolder;
}
caption {
    color:#404040;
    font-size:1em;
    font-weight:bold;
    line-height:1.3em;
}
blockquote {
    margin:10px 30px;
}
a:visited {
    color:#3377BB;
}
input[type="text"], input[type="password"]  {
    height:18px;
}
input, textarea, select {
    border:solid 1px #B1B1B1;
    /*font-family bears repeating for IE6/7*/
    font-family:Helvetica, Arial, sans-serif;
    padding:2px;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    border-color:#AAA;
    background-color:#F8F8F8;
}
input[type="submit"],
button {
    /*  button gradient 1x60 sprite image */
    background:#0E53A7 url(images/buttonGradientCombo.png) 0px 0px repeat-x;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    border:1px solid #304764;
    color:#FFF;
    cursor:pointer;
    font:bold 12px Helvetica,Arial,sans-serif;
    line-height:normal;
    margin-right:6px;
    padding:6px 8px;
    text-decoration:none;
    text-shadow:2px 2px 2px rgba(0,0,0,0.25);
    /*Fix for IE6/7 button width bug*/
    *width:auto;
    *overflow:visible;
}
input[type="submit"]:hover,
input[type="submit"]:focus,
button:hover,
button:focus {
    background-position: 0px -40px;
    border-color:#46494D;
    cursor:pointer;
}
input[type="submit"][disabled],
button[disabled] {
    background-color:#304764;
    background-position: 0px -40px;
    border-color:#333;
    color:#DDD;
}
input[type="submit"]:focus,
button:focus {
    /*IE8 doesn't apply focus outline natively*/
    outline /*\**/:#000 dotted 1px\9
}

/********************************
    04. Template Structure:
    rn_Container
        rn_Header
        rn_Navigation
        rn_Body
            rn_MainColumn
            rn_SideBar
        rn_Footer
            rn_RightNowCredit
********************************/
#rn_Container {
    height:100%;
    margin:0px auto;
    overflow:visible;
    text-align:left;
    width:942px;
}
#rn_Header {
    color:#FFF;
    height:72px;
    min-height:72px;
    overflow:visible;
    padding:0 10px;
}
    #rn_Header a {
        color:#FFF;
    }
    #rn_Logo {
        cursor:pointer;
        float:left;
        font-family:"Lucida Sans Unicode","Lucida Grande",Garuda,sans-serif;
        height:70px;
        letter-spacing:-0.8px;
        margin-top:4px;
        position:relative;
        width:32%;
    }
    #rn_Logo a {
        bottom:0;
        color:#FFF;
        cursor:pointer;
        font-size:2.083em;
        font-weight:normal;
        left:0;
        line-height:1em;
        text-decoration:none;
    }
    #rn_Logo a span.rn_LogoTitle {
        cursor:pointer;
        top:20px;
        position:relative;
    }
    #rn_Logo a span.rn_LogoTitleMinor {
        color:#DEDEDE;
    }
    #rn_Logo a img {
        display:block;
    }
    #rn_LoginStatus{
        font-size:0.917em;
        text-align:right;
    }
    #rn_LoginStatus a{
        font-weight:bold;
        text-decoration:none;
    }
#rn_Navigation {
    background:transparent none repeat scroll center top;
    height:31px;
    /*IE6*/
    _height:28px;
    margin-left:1px;
    padding:3px 10px 0 0;
}
    #rn_NavigationBar {
        float:left;
        height:14px;
    }
    #rn_NavigationBar ul li {
        float:left;
    }
#rn_Footer, #rn_Body {
    background:#FFF;
    border-right:1px solid #DDD;
    border-left:1px solid #DDD;
    overflow:hidden;
    padding:0 0px 20px 10px;
    text-align:left;
    width:99%;
    -moz-box-shadow:3px 3px 3px #888;
    -webkit-box-shadow:3px 3px 3px #888;
}
    #rn_MainColumn {
        background:#FFF;
        float:left;
        margin-right:8px;
        min-height:650px;
        height:auto !important;
        height:650px;
        overflow:visible;
        padding:0px 0px 10px 6px;
        width:74%;
    }
    #rn_SideBar {
        float:right;
        margin-right:8px;
        width:23%;
    }
#rn_Footer {
    border-bottom:1px solid #E2E2E2;
}
    #rn_RightNowCredit {
        border-top:1px solid #DDD;
        clear:both;
        padding:10px 0px 10px 0px;
        text-align:right;
        margin:auto 20px;
    }

/*************************************
    05. Text Colors
*************************************/
body,
fieldset legend {
    color:#000;
}
a:link {
/* change this color:#0000CC;  */
    #3377BB;
}

/*************************************
    06. Sidebar Content
*************************************/
#rn_SideBar .rn_Padding {
    padding:16px 4px 2px 10px;
    overflow:auto;
}
    /**Sprite for help resources**/
    .rn_HelpResources {
        margin:0 4px 10px 4px;
    }
    .rn_HelpResources .rn_Questions,
    .rn_HelpResources .rn_Community,
    .rn_HelpResources .rn_Contact,
    .rn_HelpResources .rn_Chat,
    .rn_HelpResources .rn_Feedback{
        margin-top:10px;
    }
    .rn_HelpResources a{
        background:url(images/layout/contactDiscs.png) no-repeat;
        color:#464646;
        display:block;
        font-size:1.25em;
        font-weight:bold;
        margin:4px;
        min-height:22px;
        /*min-height for IE6/7*/
        height:auto !important;
        height:22px;
        padding:10px 0 0 40px;
        text-decoration:none;
    }
    .rn_HelpResources a:hover {
       text-decoration:underline;
    }
    .rn_HelpResources span{
        display:block;
        margin:0 0 0 44px;
    }
    
    /* image is 32 x 220 : icons are 32 x 32 */
    .rn_HelpResources .rn_Questions a{
        background-position: 0px -4px;
    }
    .rn_HelpResources .rn_Contact a{
        background-position: 0px -48px;
    }
    .rn_HelpResources .rn_Chat a{
        background-position: 0px -96px;
    }
    .rn_HelpResources .rn_Feedback a{
        background-position: 0px -140px;
    }
    .rn_HelpResources .rn_Community a{
        background-position: 0px -184px;
    }

/***********************************************************
    07. Shared / General Styling
***********************************************************/
/*************
Main search form at the top of many pages
(answers/list, questions/list, questions/detail, home)
*************/
#rn_SearchControls {
    background:#EFEFF4 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAAAAAA6fptVAAAACklEQVQIHWP4DwABAQEANl9ngAAAAABJRU5ErkJggg==) repeat-x scroll 0 0;
    *background:#EFEFF4; /* IE6/7 don't support data URI */
    border:1px solid #BBB;
    clear:left;
    float:left;
    overflow:visible;
    padding:8px 0 8px 12px;
    position:relative;
    width:97.4%;
}
#rn_SearchControls form {
    padding:0 0 6px;
    _margin-bottom:10px;
}
#rn_SearchControls form input[type="submit"],
#rn_SearchControls form input[type="image"] {
    margin:1.7em 0 0 1.3em;
    padding:.4em 1em;
}
/**IE6 doesn't use attr selectors*/
#rn_SearchControls input {
    _margin:1.3em 0 0 1.3em;
    _padding:.4em 1em;
}
    #rn_SearchControls .rn_SearchInput {
        float:left;
        position:relative;
        width:50%;
    }
    #rn_SearchControls .rn_SearchInput a {
/*   pdunn changed color to 33BB77     color:#25383C; */
        color:#3377BB;
        display:block;
        float:left;
        font-size:1.25em;
		font-weight:bold;
        margin-right:-8px;
        /*IE6/7*/
        *margin-right:0;
        *position:absolute;
        *right:-8px;
        _right:0px;
/* removed text-decoration: none; this to make the Limit Search by Product look like a link  */
    }
	#rn_SearchControls .rn_SearchInput a:hover {
		color:#666666;
	}
    #rn_SearchControls .rn_SearchInput label {
        bottom:0px;
        position:absolute;
        /*IE6/7*/
        *bottom:-50px !important;
        *position:relative !important;
    }
    #rn_SearchControls .rn_SearchInput input {
        font-weight:bold;
        height:1.25em;
        margin-bottom:10px;
		margin-top:3px;
        /*IE6*/
        _margin: 0;
        padding:4px 4px 3px;
        width:100%;
    }
/************************
PageTitle -
Appears at the top of each page
************************/
#rn_PageTitle {
    border-bottom:1px solid #E2E2E0;
    color:#25383C;
    overflow:hidden;
    padding:16px 0 0;
}
#rn_PageTitle.rn_Home,
#rn_PageTitle.rn_QuestionList,
#rn_PageTitle.rn_AnswerList {
    border-bottom:0;
    overflow:visible;
}
#rn_PageTitle.rn_Home {
    margin-bottom:10px;
}
#rn_PageTitle h1,
#rn_PageTitle h2,
#rn_PageTitle h3,
#rn_PageTitle h4,
#rn_PageTitle h5,
#rn_PageTitle h6 {
    clear:left;
    word-wrap:break-word;
}
#rn_PageTitle p {
    clear:both;
}
/************************
PageContent
************************/
#rn_PageContent {
    clear:both;
    overflow:hidden;
}

/*************************************
Forms
*************************************/
#rn_PageContent form h2,
.rn_HeadingBar {
    background:#F9F9F9;
    border:1px solid #CCC;
    clear:both;
    color:#414142;
    letter-spacing:-0.03em;
    padding:4px;
    margin:20px 0 10px;
}
/**generic form legend only visible for screen readers (forms mode)*/
form legend {
    font-size:0em;
    visibility:hidden;
}
form fieldset {
    padding-left:8px;
}
form button {
    margin-top:20px;
}
form .rn_Column {
    margin-bottom:10px;
}
.rn_HintBox {
    background-color:#F2F2F2;
    border:1px solid #DBDBDB;
    color:#222;
    opacity:.7;
    padding:4px 16px 2px;
    -webkit-border-top-right-radius:10px;
    -webkit-border-bottom-right-radius:10px;
    -moz-border-radius-bottomright:10px;
    -moz-border-radius-topright:10px;
}
.rn_Required, .rn_ErrorLabel {
    color:#C10000;
}
.rn_ErrorField {
    background-color:#FEFDA0 !important;
}
.rn_MessageBox {
    background-color:#FFFFE0;
    border:1px solid #808080;
    color:#990000;
    margin:10px 0;
    padding:6px;
}
.rn_ErrorMessage {
    background:#FFFFE0 url(images/layout/important.png) no-repeat;
    padding:8px 6px 8px 40px !important;
}
    .rn_ErrorMessage a {
        color:#990000;
    }
.rn_InfoMessage {
    background:#FFFFE0 url(images/layout/info.png) no-repeat;
    padding:6px 6px 4px 40px !important;
}
/***************
Dialogs
****************/
.rn_Dialog {
    overflow:visible;
}
.rn_Dialog ol,
.rn_Dialog ul {
    padding:0.4em 0 0 1.8em;
}
.rn_Dialog ol li {
    list-style:decimal outside none;
}
.rn_Dialog ul li {
    list-style:disc outside none;
}
/**************
Module Box
**************/
.rn_Module {
    background:#F7F7F7;
    border:1px solid #CCC;
    clear:both;
    margin-bottom: 12px;
    overflow:hidden;
    padding-bottom:8px;
}
.rn_Module h3,
.rn_Module h2 {
    background:#EBEFF5 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAAAAAA6fptVAAAACklEQVQIHWP4DwABAQEANl9ngAAAAABJRU5ErkJggg==) repeat-x scroll 0 0;
    *background:#EBEFF5; /* IE6/7 don't support data URI */
    border-bottom:1px solid #CCC;
    font-family:"Lucida Sans Unicode","Lucida Grande",Garuda,sans-serif;
    font-weight:normal;
    margin-bottom:8px;
    padding:4px;
}
/***********
Misc Common rules
**********/
.rn_FloatRight {
    float:right;
}
.rn_FloatLeft {
    float:left;
}
.rn_Padding {
    padding:8px 10px 2px 10px;
}
.rn_ClearBoth {
    clear:both;
}
.rn_Highlight {
    font-style:normal;
    font-weight:bold;
    text-decoration:inherit;
}
/**********
Columns
**********/
.rn_ColumnContainer {
    width:100%;
}
.rn_Column {
    width:48%;
}
.rn_LeftColumn {
    float: left;
    padding:0 4px 0 0;
}
.rn_RightColumn {
    float:right;
    padding: 0 0 0 4px;
}

/*******************************************
    08. Answer & Question Detail
*******************************************/
#rn_Summary {
    padding: 7px 0 0 0;
    line-height:1em;
    letter-spacing:-.01em;
}
#rn_AnswerInfo {
    color:#888;
    margin:6px 0 20px;
}
#rn_AnswerInfo div {
    display:inline;
}
#rn_AnswerText {
    clear:both;
    line-height:1.4em;
    padding:5px 0 15px;
}
#rn_FileAttach {
    padding-bottom:1em;
}
/************
List styles for answer content
*************/
.rn_QuestionDetail ol,
.rn_QuestionDetail ul,
.rn_AnswerDetail ol,
.rn_AnswerDetail ul {
    margin-bottom:1em;
    padding-left:2em;
    clear: both;
}
.rn_QuestionDetail li,
.rn_AnswerDetail li {
    line-height:1.4em;
    margin:4px;
}
.rn_QuestionDetail ol ol,
.rn_QuestionDetail ol ul,
.rn_QuestionDetail ul ol,
.rn_QuestionDetail ul ul,
.rn_AnswerDetail ol ol,
.rn_AnswerDetail ol ul,
.rn_AnswerDetail ul ol,
.rn_AnswerDetail ul ul {
    margin-bottom:0;
}
.rn_QuestionDetail ol li,
.rn_QuestionDetail ul li ol li,
.rn_AnswerDetail ol li,
.rn_AnswerDetail ul li ol li {
    list-style:decimal;
}
.rn_QuestionDetail ol li ol li,
.rn_AnswerDetail ol li ol li {
    list-style:lower-alpha;
}
.rn_QuestionDetail ul li,
.rn_AnswerDetail ul li {
    list-style:disc;
}
.rn_QuestionDetail ul li ul li,
.rn_QuestionDetail ol li ul li,
.rn_AnswerDetail ul li ul li,
.rn_AnswerDetail ol li ul li {
    list-style:circle;
}

/* Incident thread */
#rn_UpdateQuestion textarea {
    width:98%;
}
#rn_QuestionThread {
    margin:4px;
}
#rn_AdditionalInfo, #rn_DetailTools {
    background:#EEE url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAAAAAA6fptVAAAACklEQVQIHWP4DwABAQEANl9ngAAAAABJRU5ErkJggg==) repeat-x scroll 0 0;
    *background:#EEE; /* IE6/7 don't support data URI */
    border:1px solid #BBB;
}
/** Additional Details box **/
#rn_AdditionalInfo {
    margin:1em;
    overflow:hidden;
    padding:12px;
    width:560px;
}
/** Print/Email/Notif/Share Container **/
#rn_DetailTools {
    line-height:1em;
    margin-top:2em;
    padding:8px 0;
    text-align: right;
}
/*************************************
    09. Home Page : Top Answers
*************************************/
#rn_PageContent.rn_Home ol {
    margin:12px;
    overflow:hidden;
}
#rn_PageContent.rn_Home ol li {
    float:left;
    margin:0px;
    padding:4px;
    width:48%;
}
#rn_PageContent.rn_Home ol li img {
    display:none;
}
#rn_PageContent.rn_Home ol li a {
    float:left;
    font-size:.8em;
    margin:4px;
}
#rn_PageContent.rn_Home .rn_AnswersLink {
    display:inline-block;
    font-size:120%;
    font-weight:bold;
    margin:10px 0 10px 16px;
}
/*************************************
    10. Account Pages
*************************************/
/*********************
Sprite for overview page
*********************/
.rn_Overview {
    padding:12px 10px 2px;
}
.rn_Overview h2 {
    background-color:#F9F9F9;
    border:1px solid #DDD;
    margin-top:10px;
}
/* image is 32 x 148 : icons are 32 x 32 */
.rn_Overview h2 a,
.rn_Overview h2 b {
    background:url(images/layout/accountOverview.png) no-repeat;
    color:#505050;
    display:block;
    height:26px;
    margin:4px;
    outline:none;
    padding:8px 0 0 40px;
    text-decoration:none;
}
.rn_Overview a:focus,
.rn_Overview a:hover {
    text-decoration:underline;
}
.rn_Overview a.rn_Questions {
    background-position: 0px 2px;
}
.rn_Overview a.rn_Profile {
    background-position: 2px -38px;
}
.rn_Overview a.rn_Notifs {
    background-position: 0px -74px;
}
.rn_Overview b.rn_Contracts {
    background-position: 0px -114px;
}
.rn_Overview div.rn_Questions,
.rn_Overview div.rn_Notifs,
.rn_Overview div.rn_Profile,
.rn_Overview div.rn_Contracts {
    margin:10px 0px 40px 40px;
}
.rn_QuestionList caption {
    font-size:1.333em;
    font-weight:bold;
    line-height:1.4em;
}
/*********************
Sprite for login page
*********************/
.rn_CreateAccountInfo {
    background:#FAF9F5;
    border:1px solid #ECECEC;
    color:#454545;
    padding:8px;
}
.rn_CreateAccountInfo h2 {
    text-align: center;
}
.rn_CreateAccountInfo button {
    display:block;
    margin:auto;
    width:60%;
}
.rn_CreateAccountInfo ul {
    margin-top:10px;
}
.rn_CreateAccountInfo li {
    background:url(images/layout/createAccount.png) no-repeat;
    height:32px;
    list-style-type: none;
    margin:4px 0 16px;
    padding:4px 0px 4px 40px;
}
.rn_CreateAccountInfo li.rn_Communicate {
    background-position: 0px 0px;
}
.rn_CreateAccountInfo li.rn_Feedback {
    background-position: 0px -46px;
}
.rn_CreateAccountInfo li.rn_Customize {
    background-position: 0px -96px;
}

/********************************
    11. General Accessibility
*********************************/
#rn_SkipNav a {
    left:0px;
    height:1px;
    overflow:hidden;
    position:absolute;
    top:-500px;
    width:1px;
}
#rn_SkipNav a:active, #rn_SkipNav a:focus {
    background-color:#FFF;
    height:auto;
    left:auto;
    top:auto;
    width:auto;
}

/****************************
    12. Print Style
    (only display content)
****************************/
@media print
{
    body{
        font-size:1em;
    }
    #rn_DetailTools,
    #rn_Header,
    #rn_Navigation,
    #rn_SideBar,
    #rn_Footer{
        display:none;
    }
    #rn_Footer, #rn_Body, #rn_PageContent, #rn_PageTitle, #rn_AdditionalInfo{
        overflow:visible;
    }
}

/*******************************************
    13. Chat Related
*******************************************/

#rn_ChatContainer {
    height:100%;
    margin:0px auto;
    overflow:visible;
    text-align:left;
}

#rn_ChatDialogContainer {
    background-color:#EBEFF5;
    border:1px solid #555555;
    overflow:hidden;
    /*IE6*/
    _overflow-y:auto;
    position:relative;
    min-height:440px;
    height:auto;
    /*IE6*/
    _height:445px;
}

/*FireFox2*/
#rn_ChatDialogContainer[id=RN_CHATDIALOGCONTAINER] {
    height:445px;
    overflow-y:auto;
}

#rn_ChatDialogHeaderContainer {
    height:30px;
    overflow:visible;
    padding:4px;
    vertical-align:middle;
}

#rn_ChatDialogTitle {
    margin-top: 8px;
}

#rn_ChatDialogHeaderButtonContainer button{
    background: transparent none repeat scroll 0 0;
    border-color: transparent;
    color: #555555;
    margin-right: .25em;
    -moz-box-shadow: 0px 0px 0px transparent;
    -webkit-box-shadow: 0px 0px 0px transparent;
    padding: 2px;
}

#rn_ChatDialogHeaderButtonContainer button:hover,
#rn_ChatDialogHeaderButtonContainer button:focus{
    background-color: #F8F8F8;
    border-color: #CCCCCC #555555 #555555 #CCCCCC;
    color: #000000;
}

#rn_InChatButtonContainer {
    overflow: visible;
}

#rn_PreChatButtonContainer{
    overflow: visible;
}

#rn_ChatQueueSearchContainer {
    bottom: 0px;
    position: absolute;
    width: 100%;
}

#rn_ChatLogo {
    height:100px;
    position: absolute;
    right: 10px;
    top: 10px;
    width:135px;
}

@media print
{
    #rn_ChatDialogHeaderContainer,
    #rn_InChatButtonContainer,
    #rn_PreChatButtonContainer,
    #rn_ChatQueueSearchContainer,
    #rn_ChatLogo {
        display:none;
    }

    #rn_ChatContainer {
        border:0;
    }
}
/* global */
body{margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;font-size:12px;background:#666 url(images/layout/bf_bg.jpg) 0 0 repeat-x;}
#main{position:relative;padding:0;margin:0 auto;width:980px;}
#content{position:relative;z-index:1;width:978px;margin:0 auto;padding:21px 0 20px 0;background:#f3f3f3;border-width:0 1px 1px 1px;border-style:solid;border-color:#444;}
#headerTop .menuhover{top:19px;z-index:200;background:url(images/layout/drop_bg.png) 0 0 repeat !important;}
#headerBot .menu .menuhover{top:32px;z-index:200;}
#kodakHeader{z-index:2;}
a{color:#3377bb;text-decoration:none;}
a:hover{color:#666666;text-decoration:underline;}



/* header */
#kodakHeader { position: relative; padding: 0; margin: 0 auto; width: 980px; color: #fff; }
#headerTop { position: relative; height: 43px; margin-bottom: 11px; border-bottom: 3px solid #ffb700; background: url(images/layout/logo.gif) 10px 12px no-repeat; z-index: 110; }
#headerTop .logo { position: relative; float: left; margin: 12px 0 0 10px; background: url(images/layout/logo.gif) 0 0 no-repeat; width: 82px; height: 22px; }
.topHeadDiv { position: relative; float: right; font-size: 11px; color: #ccc; margin-top: 17px; }
.chooseLang { border-right: 1px solid #444; padding-right: 10px; margin-right: 10px; }
#headerMid { position: relative; height: 25px; background: none; z-index: 90; }
/*.consumer { position: relative; float: left; margin: 0 0 0 10px; background: url(images/layout/bu_1.gif) 0 0 no-repeat; width: 257px; height: 17px; } */
#headerBot { position: relative; height: 33px; z-index: 100;/*border-bottom: 1px solid #444;*/ }

/* top buttons */
ul.menu { position: relative; float: left; overflow: visible; height: 100%; width: auto; margin: 1px 0 0 0; padding: 0; list-style-type: none; line-height: 12px; font-weight: bold; /*behavior: url('csshover3.htc');*/ }
ul.menu li { position: relative; display: block; float: left; z-index: 100; width: auto; margin-right: 5px; }
ul.menu li a { display: block; float: left; color: #ccc; text-decoration: none; background: url(images/layout/bBack.gif) 0 0 repeat-x; border: 1px solid #444; border-bottom: none; padding: 1px; text-decoration: none; cursor: pointer; }
ul.menu li a.curOutside { background: #f3f3f3; }
ul.menu li a span.menuText { display: block; float: left; border-top: 1px solid #444; border-left: 1px solid #444; height: 26px; padding: 2px 6px 0 7px; cursor: pointer; }
ul.menu li a span.curInside { border: none; color: #000; padding: 3px 6px 0 8px; }
ul.menu li a span.singleLine { padding-top: 10px; height: 18px; }

/* code for arrows OR spacing */
ul.menu li .menuArrow { position: relative; float: left; padding: 0 17px 0 0; width: 8px; height: 25px; border-top: 1px solid #444; }
ul.menu li .menuSpacer { position: relative; float: left; width: 12px; height: 1px; border-top: 1px solid #444; }
ul.menu li .mASelected { background: url(images/layout/topnav_arrow_current.gif) 0 18px no-repeat; border: none !important; }
ul.menu li .mAUnSelected { background: url(images/layout/topnav_arrow.gif) 0 17px no-repeat; }

/* special cases for top right menu */
ul.menu li.noTab { float: none; font-size: 12px; padding-bottom: 7px; }
ul.menu li.noTab span.allProds { display: block; float: none; border: none; padding: 0 13px 0 0; margin: 0; font-size: 11px; font-weight: normal; background: transparent url(images/layout/topnav_arrow.gif) right 4px no-repeat; cursor: pointer; }
ul.menu li.noTab ul { right: 0; left: auto; border-top: 1px solid #444; }

/* drops */
ul.menu li ul { position: absolute; float: none; left: 0; top: -1000px; margin: 0; padding: 1px 0; border: 1px solid #444; border-top: none; background: url(images/layout/drop_bg.png) 0 0 repeat !important; background: #333; }
ul.menu li ul li { float: none; display: inline; margin: 0; padding: 0; border: none; white-space: nowrap; clear: left; background: none; }
ul.menu li ul li a { position: relative; float: none; display: block; margin: 0; padding: 4px 8px 4px 8px; border: none; background: none; color: #fff; }
ul.menu li ul li.menuBreak { display: block; border: none; border-top: 1px solid #ccc; font-size: 0; line-height: 0; margin: 2px 0; padding: 0; }

/* actions */
ul.menu li:hover ul { top: 32px; }
ul.menu li:hover .mAUnSelected { background: url(images/layout/topnav_arrow_roll.gif) 0 18px no-repeat; border: none; }
ul.menu li:hover .menuSpacer { border: none; }
ul.menu li:hover a { background: #999; color: #000; text-decoration: none; }
ul.menu li:hover a.curOutside { background: #f3f3f3; }
ul.menu li:hover a span.menuText { border: none; padding: 3px 6px 0 8px; }
ul.menu li:hover a span.singleLine { padding: 11px 6px 0 8px !important; }
ul.menu li:hover ul li a { background: none; color: #fff; }
ul.menu li ul li a:hover { background: #999 !important; color: #fff; }
ul.menu li.noTab:hover ul { top: 19px; }

/* footer */
#footer { float: left; margin: 14px 0 0; padding: 10px 0 0; width: 980px; height: 21px; background: transparent url(images/layout/footer_bg.png) repeat-x scroll left top; text-align: left; }
#footer span { float: left; padding: 0 13px; font-size: 90%; background: transparent url(images/layout/dGrey.gif) repeat-y scroll right top; }
#footer span.first, #footer span.first a { margin-left: 0; padding-left: 0; border-left: 0 none; }
#footer span a { float: left; color: #CCC; text-align: left; }
#footer .hosted_by { float: right; color: #fff; }


/* To fix Download Button hover state underline showing in Answer details */
a[href*="download."]:hover { text-decoration:none; }
/* To fix the linkfor the ffmpeg software that is on many pages */
a.ffmpeg:hover { text-decoration: underline }

/* To fix named anchor color and hover state underline showing in Manuals */
a[name]{ text-decoration:none; color:#000000;}

/* To fix Next button position in Manuals */
.ek_Next { float:right; padding-right:200px; }

/* To fix table td th styles and colors */
.rn_AnswerDetail * table { border:1px #999999 solid; border-collapse:collapse; }
.rn_AnswerDetail * td { padding:2px;}
.rn_AnswerDetail * th { background-color:#fedf94; padding:2px; font-weight:bold; }
/* To improve visibility of download description custom field */
#ek_Description
{
padding-top:5px;
padding-bottom:10px;
font-size:1.333em;
line-height:1.4em;
}

.rn_AdvancedLink {
background:url(images/layout/menureplace-collapsed.gif) 0px 3px no-repeat;
padding: 0px 0px 0px 14px;
}
.rn_AnnouncementText2 ul li {
margin-left: 20px;
list-style:disc;
}


.rn_Overview div.ek_prodReg {
    margin:10px 0px 40px 40px;



}
.rn_Overview h2 a.ek_prodReg{
    background:url(images/layout/prodReg.png) no-repeat;
    color:#505050;
    display:block;
    height:26px;

    margin:4px;
    outline:none;
    padding:8px 0 0 40px;
    text-decoration:none;

}

.rn_Overview div.ek_faveProd {
    margin:10px 0px 40px 40px;
}
.rn_Overview h2 a.ek_faveProd{
    background:url(images/layout/faveProd.png) no-repeat;
    color:#505050;
    display:block;
    height:26px;
    margin:4px;
    outline:none;
    padding:8px 0 0 40px;
    text-decoration:none;
}

.rn_Overview div.ek_dealerStuff {
    margin:10px 0px 40px 40px;
}
.rn_Overview h2 a.ek_dealerStuff{
    background:url(images/layout/dealer.png) no-repeat;
    color:#505050;
    display:block;
    height:26px;
    margin:4px;
    outline:none;
    padding:8px 0 0 40px;
    text-decoration:none;
}
#ek_Description .rn_DataValue{margin-left:0px;}
#ek_Description .rn_DataValue ul br{display:none;}
#ek_Description .rn_DataValue li br{display:none;}