

.clear
{
    clear: both;
}
.hide
{
    display: none;
}
.inside
{
    padding: 0 1em;
}
html[xmlns] .mozclear
{
    /* this selector should be valid CSS, but Opera 7.5 (and above) will pick
     * this up as well. Shouldn't be a problem, Opera should handle this fine,
     * but it's a Mozilla-targeted hack, and it should probably only affect
     * mozilla. You can do that by replacing the INVALID CSS selector
     * :root .mozclear for what's give here.
     */
    border-bottom: 1px solid;
    border-color: transparent;
    margin-bottom: -1px;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicitly set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't want this.
 *
 * salt to taste
 */

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
    margin-top: 4px;
    margin-bottom: 14px;
    padding-top: 0;
    padding-bottom: 0;
}
h1
{
    font-size: 220%;
}
h2
{
    font-size: 190%;
}
h3
{
    font-size: 160%;
}
h4
{
    font-size: 130%;
}
h5
{
    font-size: 100%;
}
h6
{
    font-size: 70%;
}

/* alter some HTML elements' default style
 */

a, a:link, a:visited, a:active
{
    text-decoration: underline;
}
a:hover
{
    text-decoration: none;
}
code
{
    font-family: "Lucida Console", "Courier New", Courier, monospace;
}
label
{
    cursor: pointer;
}
table
{
    font-size: 100%;
}
td, th
{
    vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */

body
{
    padding: 5px 0;
    margin: 0;
}

#masthead
{
    border: solid 1px #fff;
    border-width: 1px 0;
    padding: 0.5em;
}
#masthead h1
{   margin-left: 14em;
    padding: 0;
    margin: 0;
}

#leftColumn, #middleColumn, #rightColumn, #SOWrap
{
    overflow: visible;  /* fix for IE italics bug */
    position: relative; /* fix some rendering issues */
}
#SOWrap
{
    float: left;
    margin: 0 -1px 0 0;
    width: 100%;
    z-index: 3;
}
#middleColumn
{
    float: right;
    margin: 0 0 0 -1px;
    width: 100%;
    z-index: 5;
}
#leftColumn
{
    float: left;
    margin: 0 1px 0 -14em;
    width: 14em;
    z-index: 4;

}
#rightColumn
{
    float: right;
    width: 14em;
    margin: 0 -14em 0 1px;
    z-index: 2;
    visibility: hidden
}
#footer
{
    border: solid 1px #fff;
    border-width: 1px 0;
    padding: 0.1em;
}

/* vertical navigation stuff.  */

.vnav
{
    margin: 1em 0;
}
.vnav ul, .vnav ul li
{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: block;
}
.vnav ul
{
    border: solid 1px #fff;
    border-bottom-width: 0;
}
.vnav ul li
{
    border-bottom: solid 1px #fff;
}
.vnav ul li a
{
    display: block;
    text-decoration: none;
    padding: 2px 10px;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
    height: 0.01%;
}
* html .vnav ul
{
    position: relative; /* IE needs this to fix a rendering problem */
}
.vnav h3
{
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 126%;
}

/* horizontal navigation stuff. */

.hnav
{
    border-bottom: solid 1px #fff;
    margin: 0;
    padding: 3px 0 4px 0;
    white-space: nowrap;
}
.hnav ul span.divider
{
    display: none;
}
* html .hnav/* Hide from IE5/Mac (& IE5.0/Win) */
{
    height: 1%; /* holly hack to fix a render bug in IE6/Win */
}
* html .HNAV
{
    height: auto;   /* above IE6/Win holly hack breaks IE5/Win when page 
               length get beyond the point that 1% height is taller 
               than the text height. IE5/Win does not need this 
               holly hack so we remove it here */
    padding: 0; /* IE5/Win will resize #hnav to fit the heights of its
               inline children that have vertical padding. So this
               incorrect case selector will remove that padding */
}
.hnav ul
{
    text-align: center;
    list-style-type: none;
    line-height: normal;
    margin: 0;
    padding: 0;
}
.hnav ul li
{
    display: inline;
    white-space: nowrap;
    margin: 0;
}
.hnav ul li a
{
    text-decoration: none;
    margin: 0 -1px 0 0;
    padding: 3px 10px 4px 10px;
    border-left: solid 1px #000;
    border-right: solid 1px #000;
}
* html .HNAV ul li a
{
    /* \*/
        width: 1%;
    /* holly hack for IE5/Win inline padding. this hack fixes different 
     * rendering bugs in 5.0 and 5.5. Width is used instead of height 
     * because if the document is too long, these elements become very tall
     * and disrupt the look of the document. too wide an element is better, 
     * visually, than too tall. */
}
.hnav ul li a:hover
{
    text-decoration: none;
} 

/* below is a series of selectors to get a consistent font size across
 * platforms. this is outside the 'theme' section on purpose. use #pageWrapper
 * to set the base font-size for the layout.
 */

body
{
    font-size: 100.1%;
}
html>body
{
    /* Opera's default font size is typically 10% smaller than IE or Mozilla
     * so we correct for this here, since we're using percentages 
     * everywhere. And we do this because pixel-based fonts don't resize
     * under IE/Win and percentages/ems are essentially the same, and I like
     * percentages for fonts.
     */
    font-size: 110%;
}
body:last-child, * html body
{
    /* of course the previous selector for Opera's fix is caught by more 
     * than a few other browsers, so we reset that value here.
     */
    font-size: 100.1%;
}




form.atomz
{
margin-top: 3px;
}
.sidebar {
  position: relative;
  float: right;
  width: 40%;
  font-size: 90%;
  margin-right: 0px;
  text-align: left;

  background-color: #cdf;
  color: #000;
  padding: 8px;
  margin: 0px; margin-left: 5px;
    border-top-color: #AABBFF;
    border-top-style: solid;
    border-top-width: 1px;
    border-left-color: #AABBFF;
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: #8899FF;
    border-right-style: solid;
    border-right-width: thin;
    border-bottom-color: #8899FF;
    border-bottom-style: solid;
    border-bottom-width: thin;

}
.sidebar p, h4
{
margin: 0; padding-top: 0px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px;

  color: #000;
}
.indent
{
margin: 0px; margin-left: 30px; text-align: left
}
.go2top
{
font-size: smaller; margin-left: 30px; margin-bottom: 8px; margin-right: 10px; margin-top: 10px
}
.winmenu
{
 font-style: italic; font-weight: 700;
}
.path
{
 font-size: smaller; margin-left: 30px;
 }
.filename
{
 font-style: italic; font-variant: small-caps;
}
.warning
{
  font-weight: 700;
}
.question
{
     font-size: 110%; font-weight: 600;
     margin: 0px;
     margin-top: 5px;
     padding: 5px;
     padding-bottom: 3px;

     background-color: #8899FF
}
.answer
{
  margin: 0px; margin-bottom: 2px;
  padding-left: 5px; padding-top: 0px; padding-right: 5px; padding-bottom: 1px;
    border: 1px solid #8899FF;

}
.warning
{
 color: red;
}
.bugfix
{
     font-variant: small-caps; font-weight: 600;
}
.errmsg
{
    font-size: 90%;
    margin-left: 10%;
    margin-top: 0px; margin-bottom: 4px;
    font-stretch: condensed
}
.tight
{ margin-top:1px; margin-bottom: 2px; }

/******************************************************************************/
