﻿/* Styles for asp.net predefined widgets */


.accordionHeader
{
    background-image: url('images/closed_up.png');
    background-repeat: no-repeat;
    background-color: #E6E6E6;
    padding: 0px 0px 1px 100px;
    font-size: 18px;
    cursor: pointer;
    color: #3A3A3A;
}

.accordionSelectedHeader
{
    background-image: url('images/open_over.png');
    background-repeat: no-repeat;
    background-color: #6C6C6C;
    padding: 0px 0px 1px 100px;
    font-size: 18px;
    color: #FFFFFF;
}


.faqHeader
{
    padding: 3px 100px 3px 100px;
    font-size: 12px;
    cursor: pointer;
    color: #3A3A3A;
    text-decoration:underline;
}

.faqSelectedHeader
{
    background-color:#EFEFEF;
    border-left:1px solid #DFDFDF;
    border-right:1px solid #DFDFDF;
    border-top:1px solid #DFDFDF;
    cursor:pointer;
    font-size:12px;
    font-weight:bold;
    margin-left:100px;
    margin-right:100px;
    margin-top:10px;
    padding:3px 0 3px 5px;
}

.faqContent
{
    background-color:#EFEFEF;
    border-bottom:1px solid #DFDFDF;
    border-left:1px solid #DFDFDF;
    border-right:1px solid #DFDFDF;
    margin-bottom:10px;
    margin-left:100px;
    margin-right:100px;
    padding:10px;
}

/****
div.accordionHeaderSummary
{
    vertical-align:middle; 
    padding:5px 15px 5px 5px; 
    font: normal 12px auto Verdana, Arial;
}
****/


.contentBox /* main, top level styling for the content block of each page */
{
    padding-left:10px;
    width:100%;
}

.contentBoxInner /* styling for the contents within each section on a page */
{
    padding-left: 10px;
    padding-top : 10px;
    padding-bottom : 30px;
}

.contentParagraph
{
    padding-left: 100px;
    padding-right: 100px;
}

.contentBarTitle /* styling for the heading of a section on a page */
{
    position:relative;
    background-color:#E7E7E7;
    text-align: left;
    padding: 1px 0px 1px 110px; 
    color: #393839;
    font-size: 18px;
    position:relative;
}

.contentBarTitleInner /* styling for the heading of a 'inner' section on a page */
{
    background-color:#CECFCE;
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    padding: 1px;
    padding-left: 8px;
    margin: 0 auto;
    width: 42.2em;
    margin-bottom:2px;
    margin-top:15px;
}

.contentBarTitleInnerInner /* styling for the heading of an 'inner/inner' section on a page (e.g. Subscription->Current Subscription->Change Subscription) */
{
    font-size : 12px;
    font-weight: bold;
    color: #333333;
    padding: 1px;
    padding-left: 8px;  
    margin-bottom:2px;
    margin-left:5px;
    margin-top:5px;
      
}

.contentBarTitleInner2  /* meant to be used as a refinement of contentBarTitleInner.  for use for things like personal data, etc */
{
    background-color:#e7e7e7; /* redfined the bkg color */
    margin-bottom:0px; /* cancel out margin-bottom from contentBarTitleInner */
    width: 24.6em;       /* contentBarTitleInner2 is meant to be used for 1/2 width things like personal data under my profile */
    margin-left: 6.9em;
}

.contentInnerFooter /* similar styling as contentBarTitleInner, but for elements that are at the bottom of 'inner' sections */
{
    height:2.7em;
    background-color:#e7e7e7;
    padding: 3px;
    margin: 0 auto;
    width: 53em;
}

.fadeUpBackground 
{
    background-image : url('images/background_fade_up.jpg');
    background-repeat : repeat-x;
}

.fadeDownBackground
{
    background-image : url('images/background_fade_down.jpg');
    background-repeat : repeat-x;
}

.fadeUpDownBackground
{
    background-image : url('images/background_fade_updown.jpg');
    background-repeat : repeat-x;    
}

.fadeUpDownBackgroundShort
{
    background-image : url('images/background_fade_updown_short.png');
    background-repeat : repeat-x;    
}

.breadCrumb   /* styling for 'breadcrumbs' in title bars (meant to be placed inside content bar titles ) */
{
    margin-left : 1px;
    float:right;
    background-color: #cccccc;
    font-size:10px;
    padding: 5px;
    width: 125px;
    text-align: center;
    color: #ffffff;
}

.breadCrumbActive  /* a darker background color of bread crumb to denote the 'current' entry */
{
    background-color: #808080;
}

.formLabels  /* styling for the input field labels for all forms */
{
    padding: 5px 5px 5px 0px;
    color: #736563;
    vertical-align: middle;
    text-align: right;
    width: 350px;
    height: 20px;
}

label[disabled='disabled'] /* style to gray-out labels that are disabled (e.g. on AllocateServer page) */
{
    color: #cccccc;
}

input[disabled='disabled'] /* style to gray-out input fields that are disabled (e.g. on AllocateServer page) */
{
    color:#cccccc;
    background-color:#efefef;
}

.formLabelsReducedIndent
{
    width: 160px;
}

.confirmationPageLabels
{
    height: 22px;
}

.confirmationPageValues
{
    height: 22px;
    color: Black;
}

/*
.loginPageLabels
{
    width: 300px;
}
*/

.formInput /* styling for input fields for all forms */
{
    padding: 2px 4px 0px 4px; /* so that text is not too crammed against box boundaries */ 
    /* margin: 5px 0 0 0; */
    text-align: left;
    /* vertical-align: middle; */
    background-color: #ffffff;
    border: solid 1px #849AAD;
    width: 200px;
    height: 20px;
}

.formInputCell /* styling for the table cell containing input fields */
{
    height: 28px;
}


.pulldownInput  /* styling for input pulldown fields in all forms */
{
  background-color  : #ffffff;
  border : solid 1px #849AAD;
  width: 210px;
  padding : 2px;
}

.pulldownInputDate  /* specific extra styling for 'date' pulldown input fields */
{
    width: 73px;
}

.pulldownInputYear  /* specific extra styling for 'year' pulldown input fields */
{
    width: 74px;
}

.loginButton
{
    padding: 0 0 0 0;
}

/*
.loginCheckBox
{
    padding: 0 3px 10px 0;
}
*/

.loginFailureText
{
    padding: 5px 5px 5px 5px;
    color: Red;
}


/*
.loginForgotText
{
    width: 200px;
}
*/

.loginForgotText a:hover
{
    color: black;
}

/*********************/
/* Password Recovery */

.forgotPasswordBox
{
    padding: 50px 0px 0px 50px;
    margin: 10px 0px 0px 50px;
    width: 640px;
    text-align: left;
    color: #505050;
}

.forgotPasswordTitle
{
    text-align: left;
    padding: 0;
    color: #505050;
    font: bold 22px auto Verdana, Arial, sans-serif;
}

.forgotPasswordText
{
    padding: 0 0 20px 0;
    color: #505050;
}

.forgotPasswordFailureText
{
    padding: 20px 0 20px 0;
    color: Red;
}

.forgotPasswordInput
{
    padding: 2px 4px 0px 4px; /* so that text is not too crammed against box boundaries */ 
    /* margin: 5px 0 0 0; */
    text-align: left;
    vertical-align: middle;
    background-color: #F3F3F3;
    border: solid 1px #999999;
    width: 200px;
    height: 20px;
}

/****************************/
/* Change Password          */

.changePasswordStyle
{
   width:600px;
   margin-left:105px;
   font-size: 0.9em;
}

/****************************/
/* Modal progress indicator */

.modalBackground
{
    width: 800px; /* Must have some value for IE7.  Actual value does not seem to matter. */
    background-color: Gray;
    filter: alpha(opacity=60);
    opacity: 0.60;
}
.updateProgress
{
    border-width: 1px;
    border-style: solid;
    background-color: #FFFFFF;
    position: absolute;
    width: 150px;
    height: 50px;
}
.updateProgressMessage
{
    margin: 3px;
    font-family: Trebuchet MS;
    font-size: small;
    vertical-align: middle;
}

.cvcHelpPanel
{
    background-color:#ffffff;
    padding:10px;
    border:1px solid #888888;
    display: none; 
    z-index: 10; 
    position: absolute; 
    width: 330px;
    left: 450px;
    top: -260px; 
    font-family: Times New Roman;
}

.waGridView /* intended for use as styling for all grid views in the e-store */
{
    margin: 0 auto;
    width: 53.5em;
}

.waGridView td
{
   padding-left:8px;
   padding-top:2px;
   padding-bottom:2px;
   padding-right:5px;
   font-size: 0.9em;
}

.waGridView th
{
    text-align:left;
    padding-left:8px;
    font-size: 0.9em;
    padding-top: 2px;
}

.waGridView select
{
    font-size: 0.9em;
}

.waGridViewBackgroundShading /* because of strange (I think bug) in overriding background colors, we do this instead */
{
    background-color: #e7e7e7;
}

.waGridViewPager td table
{
  width: 1%;
}

.waGridViewPager td table tr td
{
  color: Red;
  font-weight: bold;
  padding: 5px 5px 5px 5px;
}

.waGridViewPager td table tr td a
{
  color: Red;
  font-weight: normal;
}

.waDetailsView  /* initially meant for use in my profile -> personal data and my profile->change password */
{
    width: 35em;      
    margin-left: 9.6em;
    font-size: 0.9em;
}


.waCurrentSubscriptionView  /* initially meant for use in my subscription -> current subscription */
{
    width: 25em;       
    margin-left: 9.2em;
    font-size: 0.9em;
}

.waSubDetailsView
{
    width: auto;      
    margin-left: 10px;
    font-size: 0.9em;
    background-color:Transparent;
}

.waContentPane /* full-width content pane for pages that have one full-width content block (e.g. Voice Quality page) */
{
    padding-top:2px;
    padding-right:20px;
    font-size:0.9em;
    padding-left:110px;
}


.waLeftContentPane /* the left content pane in pages that have a two-pane equal-width horizontal content block (e.g. Community, Services pages) */
{
    float:left;
    width:300px;
    padding-top:2px;
    padding-right:10px;
    font-size:0.9em;
    padding-left:110px;
}

.waLeftContentPane ul
{
    list-style-type:none;
}

.waRightContentPane /* the left content pane in pages that have a two-pane equal-width horizontal content block (e.g. Community, Services pages) */
{
    display:inline-block;
    width:400px;
    padding-top:5px;
}

.waRightContentPaneCommunity
{
    padding-bottom:20px;
}

.waRightContentPaneServices
{
    padding-bottom:35px;
}

.waFrontPageContentPane
{
    padding-top: 0px;
    padding-left: 0px;
}

.waFrontPageMovie
{
    height : 300px;
    width : 840px;
    margin-left:3px;
}

.waFrontPageContentTable
{
    margin-left:0px;
    margin-top:35px;
    width:860px;
    border-collapse:collapse;
}

.waFrontPageContentBorderBottom
{
    border-bottom: 1px solid #dddddd;
    padding-bottom:10px;
}

.waFrontPageContentBorderLeft
{
    border-left: 1px solid #dddddd;
}

.waFrontPageContentBorderRight
{
    border-right: 1px solid #dddddd;
}

.waFrontPageContentParagraph
{
    text-align:left;
    padding-top:5px;
    width: 263px;
}


.waAlivePageMainContent
{
    text-align:center;
    margin:0 auto;
}


.waAlivePageContentTable
{
    margin: 0 auto;
    width:840px;
}

.waAlivePageContentTitle
{
    text-align:left;
    margin-left:5px;
    margin-right:10px;
    padding-left:10px;
}

.waAlivePageContentBlock
{
    height:14.5em;
    text-align:left;
    margin-left:5px;
}

.waAlivePageDownloadPane
{
    margin-top:20px;
    font-size:0.8em;
    padding-left:10px;
    padding-top:3em;
    text-align:left;
    height:25em;  
}

.waAlivePageDownloadDeemphasized, .waAlivePageDownloadDeemphasized a
{
    color: #AAAAAA;
}

.waGenericHeaderSpacer
{
    height:12px;
}