/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video
{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{
    display: block;
}

nav ul
{
    list-style: none;
}

blockquote, q
{
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after
{
    content: '';
    content: none;
}

a
{
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

ins
{
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark
{
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del
{
    text-decoration: line-through;
}

abbr[title], dfn[title]
{
    border-bottom: 1px dotted;
    cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table
{
    border-collapse: collapse;
    border-spacing: 0;
}

hr
{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select
{
    vertical-align: middle;
}

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/


select, input, textarea, button
{
    font: 99% sans-serif;
}

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp
{
    font-family: monospace, sans-serif;
}


/* 
 * minimal base styles 
 */


body, select, input, textarea
{
    /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
    color: #444; /* set your base font here, to apply evenly */ /* font-family: Georgia, serif;  */
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1, h2, h3, h4, h5, h6
{
    font-weight: bold;
}

/* always force a scrollbar in non-IE */
html
{
    overflow-y: auto;
}


/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active
{
    outline: none;
}

a, a:active, a:visited
{
    color: #607890;
}
a:hover
{
    color: #036;
}

ul, ol
{
    list-style: none;
}

/* Remove margins for navigation lists */
nav ul, nav li
{
    margin: 0;
}

small
{
    font-size: 85%;
}
strong, th
{
    font-weight: bold;
}

td, td img
{
    vertical-align: top;
}

sub
{
    vertical-align: sub;
    font-size: smaller;
}
sup
{
    vertical-align: super;
    font-size: smaller;
}

pre
{
    padding: 15px; /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

textarea
{
    overflow: auto;
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  
input[type="radio"]
{
    vertical-align: text-bottom;
}
input[type="checkbox"]
{
    vertical-align: bottom;
}
*/

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button
{
    cursor: pointer;
}

/* webkit browsers add a 2px margin outside the chrome of form elements */
/* button, input, select, textarea { margin: 0; } */

/* colors for form validity */
input:invalid, textarea:invalid
{
    border-radius: 1px;
    -webkit-box-shadow: 0px 0px 5px red;
    box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid
{
    background-color: #f0dddd;
}


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
/* ::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } */

/*  j.mp/webkit-tap-highlight-color */
/* a:link { -webkit-tap-highlight-color: #FF5E99; } */

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button
{
    width: auto;
    overflow: visible;
}


/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir
{
    display: block;
    text-indent: -999em;
    overflow: hidden;
    background-repeat: no-repeat;
    text-align: left;
    direction: ltr;
}

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden
{
    display: none !important;
    visibility: hidden !important;
}

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden
{
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible
{
    visibility: hidden;
}

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after
{
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix:after
{
    clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix
{
    zoom: 1;
}


/******************************************* Aspectize *************************************/

/******************************************* Aspectize General *************************************/

a
{
    cursor: pointer;
    text-decoration: underline;
}

.aasActive
{
    display: block;
}

.aasNotActive
{
    display: none;
}

.aasControl
{
    position: relative;
    
}

.aasRelativeControl
{
    position: relative;
    
}


/******************************************* PagerControl *************************************/

.aasPager
{
    text-align: center;
    color: #497BB6;
}

.aasPager span.aasPagerPage, .aasPager span.aasPagerFirstPage, .aasPager span.aasPagerLastPage, .aasPager span.aasPagerNextPage, .aasPager span.aasPagerPreviousPage
{
    margin: 0 2px;
    padding: 0 5px;
    cursor: pointer;
}

.aasPager span.aasPagerPage:hover
{
    text-decoration: underline;
}

.aasPager span.aasPagerPage.Selected
{
    color: #000000;
    font-weight: bold;
    cursor: default;
}

.aasPager span.aasPagerPage.Selected:hover
{
    text-decoration: none;
}

.aasPager span.aasPagerFirstPage, .aasPager span.aasPagerLastPage, .aasPager span.aasPagerNextPage, .aasPager span.aasPagerPreviousPage
{
    background-repeat: no-repeat;
    background-color: Transparent;
    background-position: center center;
}

.aasPager span.aasPagerFirstPage
{
    background-image: url(Images/Pager/First.png);
}

.aasPager span.aasPagerLastPage
{
    background-image: url(Images/Pager/Last.png);
}

.aasPager span.aasPagerNextPage
{
    background-image: url(Images/Pager/Next.png);
}

.aasPager span.aasPagerPreviousPage
{
    background-image: url(Images/Pager/Previous.png);
}

.aasPager span.aasPagerFirstPage.Disabled, .aasPager span.aasPagerLastPage.Disabled, .aasPager span.aasPagerNextPage.Disabled, .aasPager span.aasPagerPreviousPage.Disabled
{
    background-image: none;
}

/******************************************* PanelControl *************************************/

.FloatLeft { float:left; }
.FloatRight { float:right; }
.FloatClear { clear:both; }

.Panel
{
    position: relative;
    z-index: 0;
}


/******************************************* GridControl *************************************/

table.aasGrid
{
    background: white;
    vertical-align: middle;
}

table.aasGrid > thead > tr > th
{
    background: #FFFFFF url(images/GridView/grid-header.gif) repeat-x scroll left bottom;
    font-weight: bold;
    line-height: 1.5em;
    border: 1px solid #99BBE8;
    color: #15428B;
    font-family: tahoma,arial,verdana,sans-serif;
    font-size: 11px;
    font-style: normal;
    font-variant: normal;
    margin-left: 2px;
    padding: 5px 3px 4px 5px;
    overflow: hidden;
    cursor: pointer;
}

table.aasGrid > thead > tr > th.emptyGridCell
{
    background-image: none;
    background-color: Transparent;
    border-width: 0px;
}

table.aasGrid > tbody > tr > td.emptyGridCell
{
    height: 1em;
}

table.aasGrid > thead > tr.hidden
{
    display: none;
}

table.aasGrid > tbody > tr > td
{
    border: 1px solid #EEEEEE;
    padding: 2px 2px 2px 2px;
}

table.aasGrid > tbody > tr:hover > td, table.aasGrid > tbody > tr:hover > td *
{
    background: #D6E9F8;
}

table.aasGrid .aasEven, table.aasGrid .aasEven *
{
    background: #FFFFFF;
}

table.aasGrid .aasOdd, table.aasGrid .aasOdd *
{
    background: #FAFAFA;
}

table.aasGrid .aasSelected, table.aasGrid .aasSelected *
{
    background: #E7E9F9;
}


table.aasGrid > tbody > tr > td div.true
{
    background: transparent url(images/GridView/true.png) no-repeat;
    width: 15px;
    height: 13px;
}

table.aasGrid > tbody > tr > td div.false
{
    background: transparent url(images/GridView/false.png) no-repeat;
    width: 12px;
    height: 12px;
}

table.aasGrid > thead > tr > th span.up, table.aasGrid > thead > tr > th span.down
{
    display: none;
}

table.aasGrid > thead > tr > th.desc span.up, table.aasGrid > thead > tr > th.asc span.down
{
    display: none;
}

table.aasGrid > thead > tr > th.desc span.down, table.aasGrid > thead > tr > th.asc span.up
{
    display: inline;
}

table.aasGrid > tfoot > tr > td
{
    padding: 2px;
}


/******************************************* TabControl *************************************/

/*
.aasTabControl .aasNotSelectedTab
{
    cursor: pointer;
}

.aasTabControl .aasSelectedTab
{
    cursor: default;
}

.aasTabControl > table
{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
}

.aasTabControl .tabZone
{
    width: 100%;
}

.aasTabControl .spacerZone
{
    width: 100%;
    height: 3px;
    background-color: #EEF5FD;
    border: 1px solid #8DB2E3;
    border-top: 1px solid #8DB2E3;
    border-bottom: 0 none;
    line-height: 1px;
    -moz-user-select: none;
}

.aasTabControl .pageZone
{
    width: 100%;
    height: 100%; 
    border: 1px solid #8DB2E3;
    border-top: 0px;
    background-color: #EEF5FD;
    padding: 3px;
}

.aasTabControl .pageZone > div
{
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.aasTabControl .aasTab
{
    display: block;
    position: relative;
    float: left;
    padding: 1px;
    color: #416AA3;
}

.aasTabControl .aasTab > table
{
    border-collapse: collapse;
    border-spacing: 0;
}

.aasTabControl .aasTab .cc
{
    background-color: #DEECFD;
}

.aasTabControl .aasTab .cc > div
{
    margin-left: 1px;
    margin-right: 1px;
}

.aasTabControl .aasTab .cc > div.noTitle
{
    width: 1em;
    height: 1em;
    background-color: #DEECFD;
}

.aasTabControl .aasTab .bl, .aasTabControl .aasTab .br, .aasTabControl .aasTab .tl, .aasTab .tr
{
    z-index: 1;
    height: 8px;
    width: 8px;
}

.aasTabControl .aasTab .tc, .aasTabControl .tabZone .tc
{
    z-index: 1;
    height: 8px;
}

.aasTabControl .aasTab .cl, .aasTabControl .tabZone .cr
{
    z-index: 1;
    width: 8px;
}

.aasTabControl .aasNotSelectedTab .tl
{
    background: transparent url(images/TabControl/tl.png) no-repeat;
}

.aasTabControl .aasNotSelectedTab .tr
{
    background: transparent url(images/TabControl/tr.png) no-repeat;
}

.aasTabControl .aasNotSelectedTab .bl
{
    background: transparent url(images/TabControl/bl.png) no-repeat;
}

.aasTabControl .aasNotSelectedTab .br
{
    background: transparent url(images/TabControl/br.png) no-repeat;
}

.aasTabControl .aasNotSelectedTab .tc
{
    background: transparent url(images/TabControl/tc.png) repeat-x;
}

.aasTabControl .aasNotSelectedTab .bc
{
    background: transparent url(images/TabControl/bc.png) repeat-x;
}

.aasTabControl .aasNotSelectedTab .cl
{
    background: transparent url(images/TabControl/cl.png) repeat-y;
}

.aasTabControl .aasNotSelectedTab .cr
{
    background: transparent url(images/TabControl/cr.png) repeat-y;
}

.aasTabControl .aasNotSelectedTab .cc
{
    background: #DEECFD;
}

.aasTabControl .aasTab:hover .tl
{
    background: transparent url(images/TabControl/tl-hover.png) no-repeat;
}

.aasTabControl .aasTab:hover .tr
{
    background: transparent url(images/TabControl/tr-hover.png) no-repeat;
}

.aasTabControl .aasTab:hover .bl
{
    background: transparent url(images/TabControl/bl-hover.png) no-repeat;
}

.aasTabControl .aasTab:hover .br
{
    background: transparent url(images/TabControl/br-hover.png) no-repeat;
}

.aasTabControl .aasTab:hover .tc
{
    background: transparent url(images/TabControl/tc-hover.png) repeat-x;
}

.aasTabControl .aasTab:hover .bc
{
    background: transparent url(images/TabControl/bc-hover.png) repeat-x;
}

.aasTabControl .aasTab:hover .cl
{
    background: transparent url(images/TabControl/cl-hover.png) repeat-y;
}

.aasTabControl .aasTab:hover .cr
{
    background: transparent url(images/TabControl/cr-hover.png) repeat-y;
}

.aasTabControl .aasTab:hover .cc
{
    background: #E8F4FF;
}

.aasTabControl .aasSelectedTab .tl
{
    background: transparent url(images/TabControl/tl-active.png) no-repeat;
}

.aasTabControl .aasSelectedTab .tr
{
    background: transparent url(images/TabControl/tr-active.png) no-repeat;
}

.aasTabControl .aasSelectedTab .bl
{
    background: transparent url(images/TabControl/bl-active.png) no-repeat;
}

.aasTabControl .aasSelectedTab .br
{
    background: transparent url(images/TabControl/br-active.png) no-repeat;
}

.aasTabControl .aasSelectedTab .tc
{
    background: transparent url(images/TabControl/tc-active.png) repeat-x;
}

.aasTabControl .aasSelectedTab .bc
{
    background: transparent url(images/TabControl/bc-active.png) repeat-x;
}

.aasTabControl .aasSelectedTab .cl
{
    background: transparent url(images/TabControl/cl-active.png) repeat-y;
}

.aasTabControl .aasSelectedTab .cr
{
    background: transparent url(images/TabControl/cr-active.png) repeat-y;
}

.aasTabControl .aasTabControl .aasSelectedTab .cc
{
    background: #EEF5FD;
}
*/

.aasNewTabControl .tabZone
{
    background: url(Images/NewTabControl/bg.png) repeat-x scroll center bottom transparent;
    float: left;
    font: 100% "Trebuchet MS" ,sans-serif;
    width: 100%;
}

.aasNewTabControl .tabZone ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.aasNewTabControl .tabZone li
{
    background: url(Images/NewTabControl/norm_left.png) no-repeat scroll left top transparent;
    float: left;
    margin-right: 4px;
    padding: 0;
}

.aasNewTabControl .tabZone li > span > a, .aasNewTabControl .tabZone li > span > a:visited, .aasNewTabControl .tabZone li > span > a:link
{
    background: url(Images/NewTabControl/norm_right.png) no-repeat scroll right top transparent;
    color: #000000;
    display: block;
    text-decoration: none;
    margin-left: 5px;
    padding: 10px 15px 9px 10px;
}

.aasNewTabControl .tabZone li:hover
{
   background-image: url(Images/NewTabControl/norm_left_on.png);
}

.aasNewTabControl .tabZone li:hover > span > a, .aasNewTabControl .tabZone li:hover > span > a:visited, .aasNewTabControl .tabZone li:hover > span > a:link
{
   background-image: url(Images/NewTabControl/norm_right_on.png);
}

.aasNewTabControl .tabZone li.aasSelectedTab
{
    background-image: url(Images/NewTabControl/norm_left_on.png);
}

.aasNewTabControl .tabZone li.aasSelectedTab > span > a
{
    background-image: url(Images/NewTabControl/norm_right_on.png);
    cursor: default;
    padding-bottom: 10px;
}

.aasNewTabControl .pageZone
{
    background-color: #FFFFFF;
    border-right: 1px solid #8DB2E3;
    border-left: 1px solid #8DB2E3;
    border-bottom: 1px solid #8DB2E3;
    border-top: 0;
    clear: both;
    padding: 3px;
}

.aasNewTabControl .pageZone > div
{
    height: 100%;
    overflow: hidden;
    width: 100%;
}



/******************************************* DropDownMenu *************************************/

.aasDropDownMenu
{
    background-color: #F0F0F0;
    color: #416AA3;
    
    position: relative;
    z-index: 10;    
}

.aasDropDownMenu li.aasOver
{
    background-color: #D7E4F3;
    color: #416AA3;
    cursor: pointer;
}

.aasDropDownMenu li li { width: 12em; }

.aasDropDownMenu li li.parent
{
    border-right: 0;
    background-image: url(images/Menu/menu-parent.gif);
    background-attachment: scroll;
    background-position: right;
    background-repeat: no-repeat;
}

.aasDropDownMenu li > span:first-child
{
    display: block;
    padding: 8px 20px; 
}

.aasDropDownMenu li
{
    position: relative;
    /*overflow:hidden;  for avoiding scroll bars on li */
}

.aasDropDownMenu ul
{
    position: relative;
    margin: 0;
    padding: 0;
    /*overflow:auto;  for avoiding clear: both style on li */
}

.aasDropDownMenu > ul > li
{
    float: left;
}

.aasDropDownMenu > ul ul
{
    display: none;
    position: absolute;
    clear: left;
}

.aasDropDownMenu ul > li.aasOver > ul
{
    display: block;
}

.aasDropDownMenu > ul > li > ul li.aasOver > ul
{
    left: 12em;
    top: 0;
}

/****************************** TreeView ***************************/

/*
 * A treeview consists of a set of nested ul and li.
 * Each li contains a span for holding tree node template (expander image, icon, text...) and an ul.
 * The span and the ul are siblings. The span can be 'open' or 'closed'.
 * Clicking the expander toggles the open/close state of the span.
 */


.aasTreeView input.checkBoxedNode
{
    display: inline;
}
.aasTreeView input.noCheckBoxedNode
{
    display: none;
}

/* Indentation for second level and above li  */
.aasTreeView li li
{
    margin-left: 16px;
}

.aasTreeView span.expander, .aasTreeView li
{
    cursor: pointer;
}

/* 
 * The 'expander' and 'image' spans have a zero width space (&zwsp;) as content; 
 * padding is used to set the span size of each span to fit it's backgroug image.       
 */
span.expander
{
    padding: 0 10px 0 4px;
    line-height: 18px;
}
span.image
{
    padding: 0 16px 0 4px;
    line-height: 18px;
}

.aasTreeView li.open > ul
{
    display: block;
}
.aasTreeView li.closed > ul
{
    display: none;
}

.aasTreeView .open span.expander
{
    background: url(Images/TreeView/OpenExpander.gif) no-repeat;
}
.aasTreeView .closed span.expander
{
    background: url(Images/TreeView/ClosedExpander.gif) no-repeat;
}

.aasTreeView li.lastNode span.expander
{
    background: url(Images/TreeView/BlankExpander.gif) no-repeat;
}

.aasTreeView .open span.image
{
    background: url(Images/TreeView/OpenFolder.gif) no-repeat;
}
.aasTreeView .closed span.image
{
    background: url(Images/TreeView/ClosedFolder.gif) no-repeat;
}

.aasTreeView span.node:hover
{
    background-color: #eee;
}
.aasTreeView span.selected
{
    background-color: #d9e8fb;
}
.aasTreeView span.selected:hover
{
    background-color: #d9e8fb;
}


/****************************** TreeView ***************************/

/****************** PopupDiv ****************/

.popupDiv
{
    position: absolute;
    width: 200px;
    height: 150px;
    left: 0;
    right: 0;
    top: 30px;
    z-index: 1000;
    margin: 0 auto;
}

.popupDiv > .tm, .popupDiv > .bm
{
    left: 8px;
    right: 8px;
}
.popupDiv > .ml, .popupDiv > .mr
{
    top: 8px;
    bottom: 8px;
}

.popupDiv > .tl, .popupDiv > .tm, .popupDiv > .tr
{
    z-index: 1;
    position: absolute;
    top: 0;
    height: 8px;
    background: transparent url(images/Dialog/dialog-gradient-top.png) repeat-x;
}
.popupDiv > .bl, .popupDiv > .bm, .popupDiv > .br
{
    z-index: 1;
    position: absolute;
    bottom: 0;
    height: 8px;
    background: transparent url(images/Dialog/dialog-gradient-bottom.png) repeat-x;
}
.popupDiv > .tr, .popupDiv > .mr, .popupDiv > .br
{
    z-index: 1;
    position: absolute;
    right: 0;
    width: 8px;
    background: transparent url(images/Dialog/dialog-gradient-right.png) repeat-y;
}
.popupDiv > .tl, .popupDiv > .ml, .popupDiv > .bl
{
    z-index: 1;
    position: absolute;
    left: 0;
    width: 8px;
    background: transparent url(images/Dialog/dialog-gradient-left.png) repeat-y;
}

.popupDiv > .mr
{
    cursor: e-resize;
}
.popupDiv > .bm
{
    cursor: s-resize;
}
.popupDiv > .br
{
    cursor: nw-resize;
}


.popupDiv > .tr
{
    cursor: sw-resize;
}
.popupDiv > .tm
{
    cursor: n-resize;
}
.popupDiv > .tl
{
    cursor: se-resize;
}
.popupDiv > .ml
{
    cursor: w-resize;
}
.popupDiv > .bl
{
    cursor: ne-resize;
}



.popupDiv > .bl, .popupDiv > .br, .popupDiv > .tl, .popupDiv > .tr
{
    background: url(images/Dialog/dialog-corners.png) no-repeat;
}

.popupDiv > .bl
{
    background-position: 0 -8px;
}
.popupDiv > .br
{
    background-position: -8px -8px;
}
.popupDiv > .tl
{
    background-position: 0 0;
}
.popupDiv > .tr
{
    background-position: -8px 0;
}

.popupDiv > .popupBar
{
    position: absolute;
    height: 25px;
    top: 8px;
    left: 8px;
    right: 8px;
    background: url(images/Dialog/dialog-gradient-title.png) repeat-x;
}

.popupDiv > .popupBar > .popupText
{
    position: absolute;
    left: 5px;
    top: 3px;
}

.popupDiv > .popupBar > .popupClose
{
    position: absolute;
    right: 5px;
    top: 5px;
    width: 15px;
    height: 15px;
}

.popupDiv > .popupBar > .popupClose
{
    background: url(images/Dialog/dialog-close.png);
}
.popupDiv > .popupBar > .popupClose:hover
{
    background: url(images/Dialog/dialog-close-over.png);
}

.popupDiv > .content
{
    position: absolute;
    top: 33px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: White;
    overflow: auto;
}

.popupDiv > .content > div
{
    z-index: 1;
    overflow: hidden;
}

/****************** PopupDiv ****************/

/****************** FocusedInput ****************/

.focusedInput
{
    outline-color: rgb(241, 202, 126);
    outline-style: auto;
    outline-width: 1px; /* outline-color:Orange;  outline-style:double;  outline-width:3px;*/
}

/****************** FocusedInput ****************/

/****************** InError ****************/

.inError
{
    background-color: #FF0000!important;
    /*border-left-color: Red;
    border-left-style: double;
    border-left-width: 4px;*/
}

/****************** InError ****************/

/****************** Custom ErrorDisplay ****************/

.Error { display:block; }
.NoError { display:none; }

/****************** Custom ErrorDisplay ****************/

/****************** TooltipErrorProvider ****************/

.tooltipErrorProvider
{
    display: block;
    position: absolute;
}

.tooltipErrorProvider table.errorBox
{
    border-collapse: collapse;
    border-spacing: 0;
}

.tooltipErrorProvider table.errorBox > tbody > tr > td.cc *
{
    background-color: #DEECFD;
}

.tooltipErrorProvider table.errorBox > tbody > tr > td.bl, .tooltipErrorProvider table.errorBox > tbody > tr > td.br, .tooltipErrorProvider table.errorBox > tbody > tr > td.tl, .tooltipErrorProvider table.errorBox > tbody > tr > td.tr
{
    height: 8px;
    width: 8px;
}

.tooltipErrorProvider table.errorBox > tbody > tr > td.tc, .tooltipErrorProvider table.errorBox > tbody > tr > td.bc
{
    height: 8px;
}
.tooltipErrorProvider table.errorBox > tbody > tr > td.cl, .tooltipErrorProvider table.errorBox > tbody > tr > td.cr
{
    width: 8px;
}

.tooltipErrorProvider table.errorBox > tbody > tr > td.tl
{
    z-index: 15;
    background: transparent url(images/Tooltip/tl.png) no-repeat;
}
.tooltipErrorProvider table.errorBox > tbody > tr > td.tr
{
    z-index: 15;
    background: transparent url(images/Tooltip/tr.png) no-repeat;
}
.tooltipErrorProvider table.errorBox > tbody > tr > td.bl
{
    z-index: 15;
    background: transparent url(images/Tooltip/bl.png) no-repeat;
}
.tooltipErrorProvider table.errorBox > tbody > tr > td.br
{
    z-index: 15;
    background: transparent url(images/Tooltip/br.png) no-repeat;
}

.tooltipErrorProvider table.errorBox > tbody > tr > td.tc
{
    z-index: 15;
    background: transparent url(images/Tooltip/tc.png) repeat-x;
}
.tooltipErrorProvider table.errorBox > tbody > tr > td.bc
{
    z-index: 15;
    background: transparent url(images/Tooltip/bc.png) repeat-x;
}
.tooltipErrorProvider table.errorBox > tbody > tr > td.cl
{
    z-index: 15;
    background: transparent url(images/Tooltip/cl.png) repeat-y;
}
.tooltipErrorProvider table.errorBox > tbody > tr > td.cr
{
    z-index: 15;
    background: transparent url(images/Tooltip/cr.png) repeat-y;
}

/****************** TooltipErrorProvider ***************/

/****************** AspectizeTimer **************/

[aas-type="AspectizeTimer"], 
div.AspectizeTimer
{
    display: none;
}

/****************** AspectizeTimer **************/

/****************** ScrollableSelect **************/
.aasScrollableSelect
{
    width: 120px;
    border: solid 1px silver;
}

.aasScrollableSelect > select
{
    border: none;
}
/****************** ScrollableSelect **************/

/****************** AspectizeFileUpload **************/
.aasFileUpload
{
    position: relative;
}

.aasFileUpload.hover
{
}

.aasFileUpload.filled
{
}

.aasFileUpload > div.content
{
    line-height: 32px;
    padding-left: 37px;
    background: url(Images/FileUpload/Upload.png) no-repeat;
    margin: 4px;
}

.aasFileUpload > div.cover
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.aasFileUpload > div.content > span
{
    color: #416AA9;
    text-decoration: underline;
}

.aasFileUpload > div.content > span.text
{
}

.aasFileUpload > div.content > span.selectedFile
{
    display: none;
}

.aasFileUpload.hover > div.content > span.text
{
}
/*
.aasFileUpload.hover > div.content > span.selectedFile
{
}

.aasFileUpload.filled > div.content > span.text
{
    display: none;
}

.aasFileUpload.filled > div.content > span.selectedFile
{
    display: inline;
}
*/
/****************** AspectizeFileUpload **************/

/****************** AspectizeLink **************/
/*div.[aas-type="AspectizeLink"], */
div.AspectizeLink 
{
    display:inline;
    padding-left:3px;
    padding-right:3px;
}
/****************** AspectizeLink **************/

/****************** AspectizeDynamicControl **************/

/*.aasDynamicControl
{
    margin-bottom: 5px;
    overflow: visible;
}

.aasDynamicControl > label.aasLabelZone
{
    display: block;
    float: left;
    font-weight: bold;
    /*margin-right: 5px;
    padding-top: 3px;
    width: 25%;*/
/*}

.aasDynamicControl > .aasValueZone
{
    display: block;
    float: left;
}

.aasDynamicControl > .aasFooterZone
{
    clear: left;
}

.aasDynamicControl > div.aasValueZone.true
{
    background: transparent url(images/GridView/true.png) no-repeat;
    width: 15px;
    margin-left: 4px;
    margin-top: 1px;
}

.aasDynamicControl > div.aasValueZone.false
{
    background: transparent url(images/GridView/false.png) no-repeat;
    width: 15px;
    margin-left: 4px;
    margin-top: 2px;
}

.aasDynamicControl span.aasValueZone
{
    padding: 3px 3px 3px 4px;
}

.aasDynamicControl div.aasValueZone.aasDatePicker
{
    padding: 3px 3px 3px 4px;
}

.aasDynamicControl div.aasValueZone.aasDatePicker div.aasCalendar
{
    top: 20px;
}

.aasDynamicControl select.aasValueZone
{
    margin-left: -1px;
    margin-top: 1px;
}*/

/****************** AspectizeDynamicControl **************/

/****************** AspectizeDetailsView **************/
.aasDetailsView
{
    width: 50%;
    padding: 5px;
}
/****************** AspectizeDetailsView **************/

/****************** AspectizeRadioButtons **************/

fieldset.aasRadioButtons
{
    border-width: 1px;
    border-style: solid;
    border-color: #E7E9F9;
}

fieldset.aasRadioButtons > label
{
    white-space: nowrap;
}

/****************** AspectizeRadioButtons **************/

/****************** AspectizeCheckBoxList **************/

fieldset.aasCheckBoxList
{
    border-width: 1px;
    border-style: solid;
    border-color: #E7E9F9;
}

fieldset.aasCheckBoxList > div.aasSelected
{
    background: #E7E9F9;
}

/****************** AspectizeCheckBoxList **************/


/****************** Repeater **************/

.aasRepeaterItem > .aasEven
{
    background-color: #FFFFFF;
}

.aasRepeaterItem > .aasOdd
{
    background-color: #FAFAFA;
}

.aasRepeaterItem.aasSelected
{
	/* doit être bindé */
    /*background-color: #E7E9F9;*/
}

/****************** Repeater **************/

/****************** Modal **************/

.aasModalBackground
{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    filter: alpha(opacity=60); /* For IE */
    opacity: 0.6; /* For other browsers */
    z-index: 999;
}

.aasModal
{
    z-index: 1000;
    background-color: #ffffff;
}

/****************** Modal **************/

/****************** Aspectize ModalWait   ***************/

.aasModalWait
{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;   
    filter: alpha(opacity=30);  /* For IE */
    opacity: 0.3; /* For other browsers */
    z-index: 1001;
    cursor:progress;
    background: #FFFFFF url(Images/Wait/wait.gif) no-repeat scroll center center;
    background-position:center;
}

/****************** Aspectize ModalWait   ***************/

/****************** AspectizeFlyOutPanel **************/

.aasFlyOut
{
    position: absolute;
    top: 30px;
    z-index: 1000;
    margin:auto;
    left:0;right:0;
    background-color:White;
    width:100px;    
}

/****************** AspectizeFlyOutPanel **************/

/****************** HTML5 Validation **************/

/*input:invalid { background-color:red; }*/

/****************** HTML5 Validation **************/


/****************** Aspectize SpyWindow   ***************/

.aasSpyWindow
{
    position: fixed;
    top: 0;    
    right: 0;   
    width :300px;
    height:200px;
    filter: alpha(opacity=60);  /* For IE */
    opacity: 0.6; /* For other browsers */
    z-index: 9999;
}

.aasSpyWindow .key 
{
    font-weight:bold;
}

.aasSpyWindow .bar 
{
    height:20px;
    background-color:Gray; 
}

.aasSpyWindow .display 
{
    background-color:Orange; 
}

/****************** Aspectize SpyWindow   ***************/

/****************** for getScrollBarWidth function   ***************/
.scrollbar-measure
        {
            width: 100px;
            height: 100px;
            overflow: scroll;
            position: absolute;
            top: -9999px;
        }
/****************** for getScrollBarWidth function   ***************/
        
