﻿/* Riverblade defined styles */


code, .code
{
    color: #990000;
    font-family: "Courier New" , Courier, mono;
    word-wrap: break-word;
}

span.code
{
    color: #990000;
    font-family: "Courier New", Courier, mono;
}


.footnote
{
    color: #990000;
    font-size: 80%;
}


.float-right
{
    margin: 0pt 0pt 10px 10px;
    float: right;
}


table.contact_confirmation
{
}


/*********************************************************************************
 * Sortable table styles
 */

/* header */
table.sortable thead
{
  background-color:#eee;
  font-weight: bold;
  cursor: default;
}


/* table striping (NB this requires a modern browser, so won't work in the IE WebBrowser control) */
table.sortable tbody tr:nth-child(2n) td
{
  background: #ffeeee;
}


table.sortable tbody tr:nth-child(2n+1) td
{
  background: #ccfffff;
}


/*********************************************************************************
 * features page styles
 */

.featureHeader
{
    font-size: 1.4em;
    font-size: small;
    color: rgb(0,64,128);
    margin: 0px;
}


.featureContainer
{
    border: 1px solid #cccccc;
    padding: 0px;
    margin: 20px;
    padding: 10px;
}


.featureThumbnail
{
    float: right;
    text-align:center;

}


.featureBlurb
{
    margin-top: 12px;
}
/* end features page styles*/


/* List styling */
.featureList, .featureList ul
{
  margin-top: 0;
  padding-left: 2em;
  list-style-type: none;
}

.featureList li:before
{
  position: absolute;
  margin-left: -1.3em;
  font-weight: bold;
}

.featureList li.tick:before
{
  content: "\2713";
  color: green;
  font-weight: bold;
}

.featureList li.cross:before
{
  content: "\2717";
  color: crimson;
}


.price
{
    color:rgb(255,0,0);
    font-weight: bold;
}


span.alert,
span.info,
span.download,
span.note
{
    display: block;
    padding: 10px 10px 10px 45px;
    margin: 15px 0;
}


span.alert
{
    color: #c00;
    border-top: 3px solid #fe7b7a;
    border-bottom: 3px solid #fe7b7a;
    background: #FFD6D6 url(/images/status/status-alert.png) 10px 50% no-repeat;
}

span.info
{
    color: #0055BB;
    border-top: 3px solid #629de3;
    border-bottom: 3px solid #629de3;
    background: #D8E5F8 url(/images/status/status-info.png) 10px 50% no-repeat;
}

span.note
{
    color: #B79000;
    border-top: 3px solid #fde179;
    border-bottom: 3px solid #fde179;
    background: #FEF6D8 url(/images/status/status-note.png) 10px 50% no-repeat;
}

span.download
{
    color: #57861A;
    border-top: 3px solid #c2df88;
    border-bottom: 3px solid #c2df88;
    background: #EEF7DD url(/images/status/status-download.png) 10px 50% no-repeat;
}

figure
{
    text-align: center;
}

figcaption, .photo_caption
{
    margin-top: 0.25em;
    margin-bottom: 1em;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
}

p.blogpost_heading
{
  font-size: 190%;
  font-weight: normal;
  line-height: 110%;
  padding-bottom: 8px;
  margin: 15px 0 0 0;
  color: #2C68A6;
}

p.blogpost_date
{
  font-size: 95%;
}

p.blogpost_author
{
  font-size: smaller;
  font-style: italic;
  text-align: right;
}

/* The following two styles are used to center floating elements such as buttons */
 .float-centering-container-outer
 {
      float: left;
      position: relative;
      left: 50%;
 }
.float-centering-container-inner
 {
      float: left;
      position: relative;
      left: -50%;
 }

hr.store_product_skus
{
   margin-bottom:2.0em;
}


/*********************************************************************************
 * Menu styles
 */

/* div class used for internal menus, e.g. [ Export | Edit | Add ] */
.command_menu
{
    float: right;
}


.command_menu_inline
{
    /* These are just a subset of the styles for 'body' */
    color: #666;
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    font-size: initial;
    font-weight: normal;
}


@media print
{
    .command_menu
    .command_menu_inline
    {
        display: none;
    }
}


/*********************************************************************************
 * Button styles
 */

/* Generic button styles */
.button-gray,
.button-blue,
.button-green,
.button-orange,
.button-dkred
{
    border-radius: 7px;
    display: block;
    float: left;
    margin: 10px 15px 10px 0;
    padding: 10px;
    text-decoration: none;
    border-width: 0px;
}


/* Button with a gray background and almost black text */
.button-gray
{
    background: #f0f0f0;			/* light gray */
    color: #333;
}

.button-gray:hover
{
     background: #dbdbdb;
}

a.button-gray, a.button-gray:visited
{
    color: #333;
}


/* Button with a blue background and white text */
.button-blue
{
    background: #337ab7;
    color: #fff;
}

.button-blue:hover
{
    background: #286090;
}

a.button-blue, a.button-blue:visited
{
    color: #fff;
}


/* Button with a green background and white text. */
.button-green
{
    background: #00a000;
    color: #fff;
}

.button-green:hover
{
    background: #008000;
}

a.button-green, a.button-green:visited
{
    color: #fff;
}


/* Button with an orange background and white text */
.button-orange
{
    background: #f0ad4e;
    color: #fff;
}

.button-orange:hover
{
    background: #ec971f;
}

a.button-orange, a.button-orange:visited
{
    color: #fff;
}


/* Button with a dark red background and white text. NB this button intentionally matches the colours of the "buttonlink" class */
.button-dkred
{
    background: #a00a0a;
    color: #fff;
}

.button-skred:hover
{
    background: #f00a0a;
}

a.button-dkred, a.button-dkred:visited
{
    color: #fff;
}


/*********************************************************************************
 * Styles for the "account" pages
 */

.account-error
{
    margin-top: 0.5em;
    color: #f00a0a;
}



/* Version history styles */
.build_ref, .edition_ref, .host_ref, .tool_ref, .issue_ref
{
    font-size: 75%;
    color: #990000;
}

/* @end */


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