

/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
   Based on work by Eric Meyer:
   * meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}
th,td,tr{
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}

body { line-height: 1.5; background: #fff; margin:1.5em 0; }

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight:400; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

a img { border: none; }



/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
  
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Wilson Miner      [wilsonminer.com]
   * Richard Rutter    [clagnut.com]
   
   Read more about using a baseline here:
   * alistapart.com/articles/settingtypeontheweb
  
-------------------------------------------------------------- */

/* This is where you set your desired font size. The line-heights 
   and vertical margins are automatically calculated from this. 
   The percentage is of 16px (0.75 * 16px = 12px). */
   
body { font-size: 75%; }


/* Default fonts and colors. 
   If you prefer serif fonts, remove the font-family 
   on the headings, and apply this one to the body:
   font: 1em Georgia, "lucida bright", "times new roman", serif; */
   
body { 
  color: #222; 
  font-family: "Helvetica Neue", "Lucida Grande", Helvetica, Arial, Verdana, sans-serif; 
}
h1,h2,h3,h4,h5,h6 { 
  color: #111; 
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p.last      { margin-bottom: 0; }
p img       { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.top   { margin-top: 0; } /* Use this if the image is at the top of the <p>. */
img         { margin: 0 0 1.5em; }

ul, ol      { margin:0 1.5em 1.5em 1.5em; }
ul          { list-style-type: circle; }
ol          { list-style-type: decimal; }
dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin-top: 1.5em; font-style: italic; }
del         { color:#666; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; background: #ffc; }
dfn         { font-weight: bold; }
pre,code    { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace; line-height: 1.5; } 
tt          { display: block; margin: 1.5em 0; line-height: 1.5; }


/* Tables
-------------------------------------------------------------- */

table   { margin-bottom: 1.4em; }
th      { border-bottom: 2px solid #ccc; font-weight: bold; }
td      { border-bottom: 1px solid #ddd; }
tfoot   { font-style: italic; }
caption { background: #ffc; }

/* Use this if you use span-x classes on th/td. */
table .last { padding-right: 0; } 


/* Some default classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.quiet      { color: #666; }

.hide       { display: none; }
.highlight  { background:#ff0; }
.added      { color:#060; }
.removed    { color:#900; }

.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }




/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label { font-weight: bold; }


/* Fieldsets */
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

/* Text fields */
input.text, input.title   { width: 300px; margin:0.5em 0.5em 0.5em 0; }
input.text, input.title   { border:1px solid #bbb; background:#f6f6f6; padding:5px; }
input.text:focus,
input.title:focus         { border:1px solid #999; background:#fff; }
input.title               { font-size:1.5em; }

/* Textareas */
textarea            { width: 400px; height: 250px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }

/* Select fields */
select              { border:1px solid #ccc; background:#f6f6f6; width:200px; }
select:focus        { border:1px solid #999; background:#fff; }


/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; }


/* -------------------------------------------------------------- 
  
   buttons.css
   * Gives you some great CSS-only buttons.
   
   Created by Kevin Hale [particletree.com]
   * particletree.com/features/rediscovering-the-button-element

   See Readme.txt in this folder for instructions.

-------------------------------------------------------------- */

a.button, button {
  display:block;
  float:left;
  margin:0 0.583em 0.667em 0;
  padding:5px 10px 5px 7px;   /* Links */
  
  border:1px solid #dedede;
  border-top:1px solid #eee;
  border-left:1px solid #eee;

  background-color:#f5f5f5;
  font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
  font-size:100%;
  line-height:130%;
  text-decoration:none;
  font-weight:bold;
  color:#565656;
  cursor:pointer;
}
button {
  width:auto;
  overflow:visible;
  padding:4px 10px 3px 7px;   /* IE6 */
}
button[type] {
  padding:4px 10px 4px 7px;   /* Firefox */
  line-height:17px;           /* Safari */
}
*:first-child+html button[type] {
  padding:4px 10px 3px 7px;   /* IE7 */
}
button img, a.button img{
  margin:0 3px -3px 0;
  padding:0;
  border:none;
  width:16px;
  height:16px;
  float:none;
}


/* Button colors
-------------------------------------------------------------- */

/* Standard */
button:hover, a.button:hover{
  background-color:#dff4ff;
  border:1px solid #c2e1ef;
  color:#336699;
}
a.button:active{
  background-color:#6299c5;
  border:1px solid #6299c5;
  color:#fff;
}

/* Positive */
body .positive {
  color:#529214;
}
a.positive:hover, button.positive:hover {
  background-color:#E6EFC2;
  border:1px solid #C6D880;
  color:#529214;
}
a.positive:active {
  background-color:#529214;
  border:1px solid #529214;
  color:#fff;
}

/* Negative */
body .negative {
  color:#d12f19;
}
a.negative:hover, button.negative:hover {
  background:#fbe3e4;
  border:1px solid #fbc2c4;
  color:#d12f19;
}
a.negative:active {
  background-color:#d12f19;
  border:1px solid #d12f19;
  color:#fff;
}


/* -------------------------------------------------------------- 

   css-classes.css
   * Classes for CSS development
   
   See the Readme file in this directory
   for further instructions.
   
-------------------------------------------------------------- */

.left   { float:left; }
.right  { float:right; }

.hide   { display:none; }

.reset-margin   { margin:0; } 
.reset-padding  { padding:0; } 
.reset          { margin:0; padding:0; } 

.align-justify  { text-align:justify; } 
.align-left     { text-align:left; } 
.align-center   { text-align:center; } 
.align-right    { text-align:right; } 




/*reset.css*/

/* blueprint overrides */
body    { margin: 0; }
table   { margin-bottom: 0; }
th      { border-bottom: none; }
td      { border-bottom: none; }
em      { background-color: transparent; }
fieldset{ border: 0; padding: 5px 0 0 0; margin: 0 0 8px 0; }
legend  { font-size: 1.3em; font-weight: bold; }
.clear  { clear: both; height: 0; overflow: hidden}
a.button img, button.button img { padding-right: 5px; }
a.button, button { margin: 0 5px 0 0; text-align: center; }
h3      { font-size: 1.4em; margin: 20px 0 10px 0; }
img     { margin: 0; }
.error, .notice, .success { text-align: center; }
p img   { float: none; margin: 10px; }

/* other basic behaviour setup */

a img,:link img,:visited img { border: none; }
label     { cursor: pointer; }
form      { display: inline; }


/******************/
/* GENERAL/MISC   */
/******************/
.narrowbox{
  width: 550px;
  margin: 0 auto;
  text-align: left;
}
.narrowbox p { text-align: left; }

.informal{
  font-size: 0.8em;
  line-height: 0.5em;
}
.informal strong{
  font-weight: bold;
  font-size: 1.1em;
}

.search-hl{
  font-weight: bold;
  font-size: 0.95em;
}

iframe.hidden{
  width: 0;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
}


/******************/
/* FLASH MESSAGES */
/******************/


.flash-area{
  text-align: center;
  margin-bottom: 10px;
}

.flash-area h2{
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.flash-area p{
  text-align: center;
  margin: 0.8em 0;
}

.notice,.error,.success{
  border: none;
  padding: 5px;
  margin: 5px;
}

/******************/
/* PAGERS         */
/******************/


.pager{
  clear: both;
  text-align: center;
}

.pager-pages{
  padding: 0 20px;
  display: inline;
}

.pager-pages strong{
  padding: 0 4px;
  border: 1px solid;
  color: #33a;
}

.pager-pages a{
  padding: 0 3px;
  border: 1px solid;
  text-decoration: none;
}

.pager-pages a:hover{
}

.pager-viewmore, .viewmore-button{
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  margin: 5px 5px 10px 0;
}

.pager a.hidden{
  visibility: hidden;
}

.pager a.pager-l, .pager a.pager-r{
  display: block;
  padding: 0 5px;
}

.pager a.pager-l{
  float: left;
}

.pager a.pager-r{
  float: right;
}

/******************/
/* IMAGEGEN       */
/******************/
.ig_linked {  text-align: center; }

/******************/
/* BADGES         */
/******************/

#badges{
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}
#badges ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.badge-content{
  margin: 5px;
  background-color: #FFDDCC;
  padding: 5px;
}

/******************/
/* ATTACHMENTS    */
/******************/

.attachment{
  background-color: #CCCCCC;
  margin: 5px 0px 5px 10px;
  width: 380px;
  padding: 5px;
  float: left;
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
}
.attachment-top{
  background-color: #DDDDDD;
  padding: 5px;
  -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
}
.attachment-icon{
    float: left;
    padding-right: 5px;
}
.attachment-info{
  margin-left: 55px;
  text-align: left;
  font-size: 0.7em;
}
.attachment-info a.filename{
  text-decoration: none;
  font-size: 1.2em;
  padding-right: 5px;
}
.attachment-info a.filename:hover{
  text-decoration: underline;
}

/**********/
/* TABLES */
/**********/

table.datatable{
  border-collapse: separate;
  width: 100%;
}
table.datatable td{
  border-bottom: 1px solid;
  padding: 2px 5px;
  text-align: left;
}
table.datatable th{
  padding: 5px;
  border-bottom: 2px solid;
  margin: 5px;
  text-align: left;
}

table.rostertable {
  border-collapse: collapse;
  width: auto;
  margin: 0px auto;
}
table.rostertable th{
  text-align: center;
  border-bottom: 2px solid;
}
table.rostertable td{
  border: 1px solid #888;
  padding: 2px 8px;
  margin: 5px;
  text-align: left;
}

table.carttable{
  border-collapse: separate;
  width: 100%;
}
table.carttable td{
  border-bottom: 2px solid;
  border-right: 2px solid;
  padding: 2px 5px;
  text-align: center;
}
table.carttable th{
  padding: 2px;
  margin: 2px;
  border-right: 2px solid;
  text-align: center;
}
table.carttable td.total{
  border: 2px solid;
}
table.carttable td.variation{
  padding: 0 5px;
  font-size: 0.8em;
  font-weight: bold;
}

table.hostingtable{
    margin: 0 auto;
}
table.hostingtable td{
  border-bottom: 1px solid;
  border-right: 1px solid;
  padding: 2px 5px;
  text-align: center;
  font-weight: bold;
}
table.hostingtable th{
  padding: 5px;
  border-bottom: 2px solid;
  margin: 5px;
  text-align: center;
  font-size: 0.8em;
  border-right: 1px solid;
}
table.hostingtable td.feature{
  text-align: right;
  border-left: 1px solid;
}
table.hostingtable td.selectedplan{
  background-color: #EFAB86;
  color: #222;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: #DF8452;
  border-bottom: none;
}
/*
 * LINKS LIST
 *
 */
#links-grid-area{
    text-align: center;
    margin-top: 25px;
}

#links-grid-area ul{
  padding: 0;
  text-align: center;
  margin: 10px auto;
  width: 600px;
  list-style: none;
}
.links-grid-text a{
   text-decoration: none;
}
.links-grid-text a:hover{
   text-decoration: underline;
}
.links-grid-text span{
    line-height: 0.8em;
    font-weight: normal;
}
#links-grid-area ul li{
  width: 280px;
  padding: 5px;
  margin: 0 4px 4px 0;
  float: left;
  text-align: left;
}
.links-grid-image{
  float: left;
  width: 115px;
  height: 85px;
}
.links-grid-text{
  float: right;
  width: 150px;
  padding-top: 10px;
  font-weight: bold;
}

ul#links-categories{
  text-align: center;
  margin: 10px auto;
  width: 450px;
  margin-bottom: 25px;
  list-style: none;
}

#links-categories li{
  display: block;
  width: 200px;
  margin: 0 4px 4px 0;
  float: left;
}
#links-categories li a{
  padding: 5px;
  text-align: center;
  display: block;
}



/* forms.css */

.form-row{
  clear: both;
  margin-bottom: 5px;
  padding: 3px;
  text-align: left;
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; /* rounded */
}

.form-row-caption{
  float: left;
  width: 150px;
  text-align: right;
  padding: 8px 0 0 0;
  font-size: 0.9em;
  font-weight: bold;
}

.form-row-required{
  font-size: 1.8em;
  font-weight: bold;
}

.form-row-content{
  margin-left: 155px;
  text-align: left;
  min-height: 20px; /* forces IE to indent background properly as well */
  padding: 4px 2px 2px 5px;
  -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; /* rounded */
}

.form-row-fullcontent{
}

.form-row-helptext{
  font-size: 0.85em;
  padding: 5px;
  margin-bottom: 3px;
  width: 340px;
  line-height: 1em;
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; /* rounded */
}

.form-row-helptext p{
  margin: 0 0 5px 0;
}

a.form-row-helpbutton{
  padding: 3px 5px;
  margin: 0;
  float: right;
  display: block;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
  cursor: pointer;
}
a.form-row-helpbutton:hover{
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
}

.form-row-fields{
}

.form-row-error{
  font-size: 0.9em;
  font-weight: bold;
  padding: 3px;
  margin-top: 5px;
  clear: both;
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; /* rounded */
}

.form-row-error a{
  color: #fff;
}

textarea{
  font-size: 1em;
}

radio, checkbox {
    background-color: transparent;
    border: none;
}

textarea,input,select{
  font-size: 1.2em;
  font-family: Geneva, Arial, serif;
  border: 1px solid;
  padding: 1px 1px 1px 5px;
  margin: 0;
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; /* rounded */
}
input.radio, input.checkbox {
    background-color: transparent;
    border: none;
    margin: 0 3px;
}
textarea,select{
  width: auto;
  height: auto;
}

input.title, input.title:focus{
  border: none;
}

/* ADDRESS INPUTS */
.password{
  padding-left: 10px;
  background-image: url(/icon/silk/lock.png);
  background-position: center left;
  background-repeat: no-repeat;
}

select#country, select#region{
  width: 200px;
}

#region-area{
    height: 25px;
    overflow: hidden;
}
#region-error{
  position: relative;
  top: 0;
  left: 0;
  font-size: 1.3em;
  padding-top: 3px;
  padding-left: 5px;
}
#region-loading{
    margin: 0;
    float: none;
    padding: 0;
}




/* gallery.css */


/*  MAIN GALLERY INDEX */

#galleryindex{
  width: 500px;
  text-align: center;
  margin: 0 auto;
}

.galleryindex-box{
  margin: 10px 0;
}

.galleryindex-header{
  margin:         0;
  padding:        3px;
  font-size:      1.05em;
  letter-spacing: 0.1em;
  font-weight:    bold;
  font-variant:   small-caps;
  text-align:     center;
}

.galleryindex-body{
  border: 1px solid;
  border-top: none;
  text-align: justify;
  padding: 6px;
}

.galleryindex-image{
  float: left;
  padding-right: 10px;
  padding-bottom: 8px;
}

.galleryindex-image-caption{
  font-size: 0.8em;
  text-align: center;
  padding: 2px;
}

.galleryindex-footer{
  clear: both;
  margin: 6px -6px -6px -6px;
}
.galleryindex-footer div{
  text-align: center;
  font-size: 0.8em;
  padding: 2px;
}
.galleryindex-footer-items{
  width: 50%;
  float: left;
  border-right: 3px solid;
}
.galleryindex-footer-status{
}


/* SPLASH PAGE STYLES */

.gallerysplash-body{
  font-size: 0.8em;
  border: 1px solid;
  border-top: none;
  text-align: justify;
  padding: 6px;
}
.gallerysplash-enter{
  clear: both;
  padding: 5px;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin: 3px -6px -6px -6px;
}


/* GRID VIEW STYLES */

ul#gallerygrid      { width: 640px; margin: 10px auto; padding: 0; text-align: center; list-style: none; }
ul#gallerygrid li   {
  width: 145px;
  padding: 5px;
  margin: 0 2px 2px 0;
  float: left;
  font-style: italic;
}
ul#gallerygrid li a { font-style: normal; }


/* LIST VIEW STYLES */

ul#gallerylist      { width: 400px; margin: 10px auto; text-align: center; list-style: none }
ul#gallerylist li   { margin-top: 5px; display: block; }
.gallerylist-image, .gallerylist-label { height: 80px; }
.gallerylist-image  { float: left; margin-right: 2px; padding: 5px; }
.gallerylist-label{ 
  float: left; 
  width: 250px;
  font-style: italic;
  font-size: 1em;
  padding: 5px;
}
.gallerylist-label a{ text-align: center; display: block; margin: 25px 0 0 0; padding: 0; font-style: normal; font-weight: bold;}


/* FILMSTRIP STYLES */

#galleryitem-filmstrip{
  text-align: center;
  font-size: 0.8em;
}
#galleryitem-filmstrip{
    text-align: center;
    padding: 0;
}
#galleryitem-filmstrip-scroller{
  overflow: auto;
  height: 130px;
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;
}
#galleryitem-filmstrip a{
  display: block;
  padding: 5px;
  height: 90px;
}
#galleryitem-filmstrip td
{
  padding: 0 0 0 5px;
}

/* GALLERY ITEM PAGER  */

#galleryitem-pager{
  text-align: center;
  padding: 5px;
}
#galleryitem-pager-prev, #galleryitem-pager-next{
  font-weight: bold;
  text-align: center;
  width: 125px;
}
#galleryitem-pager-info{
  margin: 0 125px;
  border: 1px solid #000000;
}
#galleryitem-pager em    { font-size: 1.2em; font-weight: bold; }
#galleryitem-pager-prev  { float: left;  }
#galleryitem-pager-next  { float: right; }
#galleryitem-pager-prev a, #galleryitem-pager-next a{
  display: block;
  padding: 5px;
  text-decoration: none;
}

#galleryitem       { margin: 0 10px; text-align: center; }
#galleryitem-image { margin-top: 8px;                    }
#galleryitem-info  { margin: 0px auto; width: 550px;     }

#galleryitem-details { padding: 5px; }
#galleryitem-details div.label{
  text-align: right;
  padding: 3px 5px 5px 0;
  width: 100px;
  float: left;
  margin-top: 3px;
  font-size: 0.9em;
  font-weight: bold;
}
#galleryitem-details div.contents{
  margin: 3px 0 0 105px;
  text-align: left;
  padding: 5px;
}
ul#galleryitem-othershows{
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 5px;
}
ul#galleryitem-othershows li{
  padding: 5px;
  margin: 5px;
  margin-top: 0;
  text-align: center;
  font-size: 0.9em;
  font-style: italic;
}
ul#galleryitem-othershows li a{
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
}



/* progressbar.css    */

#liveupload_area{
  margin-bottom: 10px;
}
.liveupload-area-photo
{
    height: 215px;
}
#progressbar{
  width: 400px;
  text-align: center;
  margin: 0px auto;
}
#progressbar_title{
  color:            #EEEEEE;
  padding:          2px;
  padding-top:      3px;
  font-size:        0.9em;
  letter-spacing:   0.1em;
  font-weight:      normal;
  font-variant:     small-caps;
  text-align:       center;  
  background-color: #333333;
}
#progressbar_body{
  border: 1px solid #000000;
  border-top: none;
  padding: 10px;
  background-color: #DFE8FF;
}
#progressbar_speed{
  float: right;
  font-weight: bold;
  text-align: right;
}
#progressbar_status{
  text-align: left;
}
#progressbar_bars{
  clear: both;
  position: relative;
  height: 30px;
  margin-top: 8px;
  margin-bottom: 8px;
}
#progressbar_outer{
  border: 1px solid #000000;
  width: 360px;
  margin: 8px;
  text-align: left;
}
#progressbar_inner{
  background-color: #BBBBBB;
  text-align: right;
  color: #000000;
  height: 20px;
  font-weight: bold;
  padding-top: 4px;
  width: 0;
  padding-right: 5px;
}
#progressbar_elapsed{
  float: left;
  text-align: left;
}
#progressbar_remaining{
  float: right;
  text-align: right;
}


/* blog.css */

.blog-read-more{
  font-variant: small-caps;
  margin: 5px 0 0 25px;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#content-area h1{
  font-size: 1.8em;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.archive-sidebar{
  border: 2px solid;
  padding: 5px;
}
.archive-sidebar h3{
  padding:          2px;
  margin:           0;
  margin-bottom:    10px;
  font-size:        0.9em;
  letter-spacing:   0.1em;
  font-weight:      bold;
  font-variant:     small-caps;
  text-align:       center;  
}

.archive-sidebar ul{
  list-style: none;
  margin: 0;
  margin-left: 5px;
  padding: 0;
  font-weight: bold;
  font-size: 0.9em;
  font-variant: small-caps;
}

.archive-sidebar ul a{
  text-decoration: none;
  font-weight: bold;
}

.archive-sidebar ul ul{
  margin-left: 15px;
  font-weight: normal;
  font-size: 0.8em;
  padding-bottom: 8px;
}



/* admin.css */

.admin-menu-item{
  float: left;
  margin: 5px;
  padding: 5px;
  width: 200px;
  height: 81px;
}
.admin-menu-item h3{
  text-align: center;
  margin: 0;
  margin-bottom: 8px;
}
.admin-menu-item p{
  text-align: center;
  margin: 2px;
  padding: 0;
}
ul#inventory-grid-area{
  width: 600px;
  padding: 0;
  text-align: center;
  margin: 10px auto;
  margin-bottom: 16px;
  list-style: none;
}
li.inventory-grid-item{
  width: 123px;
  padding: 5px;
  margin: 0 2px 2px 0;
  float: left;
  font-style: italic;
  font-size: 0.8em;
}
.inventory-grid-item-top a{
 display: block;
 height: 80px;
}

.inventory-edit-top{
  padding: 5px;
}
.inventory-edit-top img{
  padding: 0;
  margin: 0;
}
.inventory-edit-preview{
  float: left;
}
img#progress_done_preview{
    margin: 0;
    padding: 0;
}
.inventory-edit-actions{
  padding: 5px;
  margin-left: 260px;
  margin-bottom: 3px;
  margin-top: 3px;
}
.tag-row{
  width: 315px;
  font-size: 1.2em;
  margin-bottom: 3px;
}
.tag-delete{
  float: right;
  font-size: 1.0em;
  margin-right: 10px;
  width: 35px;
  position: relative;
}
.tag-delete-link{
	position: absolute;
	top: 0;
	left: 0;
}
.tag-status{
  float: right;
  font-size: 0.8em;
  font-weight: bold;
  margin-right: 15px;
}
.tag-category{
  float: left;
  text-align: right;
  width: 70px;
  margin-right: 3px;
  font-weight: bold;
  font-size: 0.8em;
}
.tag-label{
  margin-left: 75px;
}
.contact-item{
  text-align: left;
  padding: 5px;
  margin: 1px;
}
.contact-item .checkbox{
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 3px;
}
.contact-item label{
  margin-top: 3px;
  display: block;
}
.contact-item a.button
{
  float: right;
  padding-top: 1px;
  padding-bottom: 1px;
}
.contact-button{
  float: right;
  text-align: center;
  padding: 1px;
  height: 1.5em;
  font-weight: normal;
  font-size: 0.9em;
}
iframe.emailpreview{
  width: 650px;
  height: 200px;
  border: 1px solid;
  margin: 0px auto;
}
#admin-pager{
  text-align: center;
  padding: 5px;
  margin-top: 5px;
}

table.offset-selector{
  border-collapse: collapse;
  margin: 3px 20px 3px 5px;
}
table.offset-selector td{
  border: 1px solid;
  padding: 0;
  height: 10px;
}

table.offset-selector td a{
  display: block;
  text-decoration: none;
  width: 45px;
  text-align: center;
  font-size: 0.9em;
}

table.offset-selector td a.active{
}

table.offset-selector td a.inactive{
}
h3.swiveldiv-header{
    margin: 5px 0;
    padding: 3px;
    border: 1px solid;
    background-color: #ddd;
    font-size: 1.4em;
}

h3.swiveldiv-header a, .swiveldiv-label a{
    display: block;
    text-decoration: none;
}
.swiveldiv-label{
    float: right;
    font-size: 0.8em;
    margin-top: 10px;
    margin-right: 10px;
}

.recursor-list-disabled, .recursor-list-enabled, .recursor-list-selected
{
    margin: 2px;
    padding: 4px;
    height: 20px;
}
.recursor-list-disabled {}
.recursor-list-enabled  {}
.recursor-list-selected {}

.perm-item{
    margin-bottom: 2px;
}
.perm-buttons
{
    float: right;
    text-align: center;
}
.perm-buttons a
{
    padding: 1px 3px;
    margin: 2px;
}
.perm-label
{
    float: left;
    text-align: left;
    padding: 3px 5px 2px 5px;
}

.perm-info
{
    float: right;
    width: 110px;
}

.perm-y, .perm-n, .perm-i
{
    float: left;
    width: 20px;
    border: 1px solid #333333;
    margin: 1px;
    padding: 1px;
    color: #000;
    text-align: center;
    font-size: 0.8em;
}
.perm-y
{
    background: #99EE99 url('/icon/silk/tick.png') no-repeat center center;
}
.perm-n
{
    background: #EE9999 url('/icon/silk/cross.png') no-repeat center center;
}
.perm-i
{
    background: #CCCCCC;
}
.perm-arr
{
    float: left;
    margin: 1px;
    padding-top: 2px;
    font-size: 10px;
}

ul.sortable-list, ul.sortable-list ul
{
    list-style: none;
    padding: 0;
    margin: -1px -1px -1px 20px;
    border: none;
}
ul.sortable-list li
{
    margin: 0 0 3px 0;
    padding: 0;
    border: none;
}
#treeorder li
{
    margin: 0;
}
.handle {
    padding-left: 18px;
    margin-right: 80px;
    cursor: move;
}
li.dummy
{
    margin: 0;
    padding: 0;
    height: 3px;
}
ul.sortable-list a 
{
    float: right;
    margin: 0 3px;
    display: block;
}
.sortable-item, .sortable-item-inactive
{
    padding: 3px;
    border: 1px solid #ccc;
    border-left: 5px solid #555555;
    height: 20px;
}
.sortable-item .handle, .sortable-item-inactive .handle
{
    background: url('/icon/silk/folder.png') no-repeat left;
}
.sortable-subitem, .sortable-subitem-inactive
{
    padding: 2px;
    border: 1px solid #ccc;
    margin: 1px;
    height: 15px;
}
.sortable-subitem .handle, .sortable-subitem-inactive .handle
{
    background: url('/icon/silk/page.png') no-repeat left;
}
.sortable-item-plain
{
    padding: 3px 3px 3px 18px;
    border: 1px solid #ccc;
    border-left: 5px solid #555555;
    cursor: move;
}
.sortable-item, .sortable-subitem, .sortable-item-plain
{
    background-color: #DFE8FF;
}
.content-folder-subitem
{
    background-color: #CEDCFF;
    padding: 2px;
    margin: 2px;
}
.sortable-item-inactive, .sortable-subitem-inactive, .sortable-item-plain-inactive
{
    background-color: #DFb5b5;
}

.editorbox
{
    text-align: center;
    margin: 0px auto;
    width: 90%;
    height: 425px;
}

.percentage-bar
{
    border: 1px solid #000;
    background-color: #6b6;
    position: relative;
    height: 15px;
    width: 80px;
    float: right;
}
.percentage-bg
{
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    background-color: #b66;
    width: 0;
}
.percentage-label
{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    font-size: 12px;
    margin: 0;
    padding: 0 1px 1px 1px;
}

/*quicklinks*/
.quicklinks-sidebar{
  border: 2px solid;
  padding: 5px;
  text-align: left;
}
.quicklinks-sidebar h3{
  padding:          2px;
  margin:           0;
  margin-bottom:    10px;
  font-size:        0.9em;
  font-weight:      bold;
  text-align:       center;  
}

.quicklinks-sidebar ul{
  list-style: none;
  margin: 0;
  margin-left: 10px;
  padding: 0;
  font-weight: bold;
  font-size: 0.8em;
  text-align: left;
}

.quicklinks-sidebar ul a{
  text-decoration: none;
  font-weight: bold;
}

.quicklinks-sidebar ul ul{
  list-style: disc;
  margin-left: 25px;
  font-weight: normal;
  font-size: 0.8em;
  padding-bottom: 15px;
}


html,body { height: 100%; }
body, td  { font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 1em;}
h1        { text-align: center; }
h2, h3    { text-align: left; }


/******************/
/* PAGE LAYOUTS   */
/******************/

#container {
  position: relative;
  top: 0;
  left: 0;
  min-height: 100%;
}
* html #container{
  height: 100%;
}
#header{
  border: 1px solid;
  text-align: center;
  margin-bottom: 15px;
}
#header h1{
  padding: 0.1em;
  margin: 0;
  font-size: 1.4em;
  font-weight: bold;
  height: 25px;
  border-bottom: 10px solid;
}
#header-infobar{
  height: 10px;
}

#middlediv{
  top: 0;
  left: 0;
  width: 980px;
  margin: 9px auto;
  margin-bottom: 30px;
  height: 1%;
}
#leftside{
  float: left;
  width: 160px;
}

#rightside{
  float: right;
  width: 800px;
  height: 1%;
}

#breadcrumbs{
  padding: 3px;
  border: 1px dashed;
  text-align: center;
  margin-bottom: 10px;
  font-size: 0.9em;
}
.breadcrumb-separator{
  padding: 0 8px;
  font-weight: bold;
  font-size: 1.2em;
}

#prefooter {
  height: 3em;
  clear: both;
}

#footer {
  position: relative;
  height: 3em;
  clear: both;
  padding: 0;
  overflow: hidden;
  margin: 0;
  margin-top: -3em;
}

#copyright{
  font-size: 0.8em;
  padding: 2px;
  text-align: center;
}
#footer_ad{
  font-size: 0.7em;
  padding: 3px;
  text-align: center;
}

#footer_ad a{
  text-decoration: none;
}
#footer_ad a:hover{
  text-decoration: underline;
}

#copyright-text{
  font-size: 10px;
  letter-spacing: -0.05em;
  margin-top: 3px;
}


/******************/
/* CONTENT ITEMS  */
/******************/

.content-box{
  margin-bottom: 15px;
}

.content-box-noheader{
  margin-bottom: 15px;
  border: 1px solid;
}

.content-box-header{
  height: 1.9em;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
}

.content-box-bottom{
  border: 1px solid;
  border-top: none;
  height: 1%; /* force hasLayout for ie6 */
}

.content-box-header h2{
  padding:        0.2em;
  font-size:      1.05em;
  letter-spacing: 0.1em;
  font-weight:    normal;
  font-variant:   small-caps;
  text-align:     center;
}

.content-box-body h2{
  padding-bottom: 2px;
  padding-left: 4px;
  border-left: 5px solid;
  border-bottom: 1px solid;
  margin-top: 25px;
  margin-bottom: 8px;
}

.content-box-buttons{
    margin-right: 5px;
}

.content-box-buttons a{
  display: block;
  float: right;
  text-decoration: none;
  text-transform: lowercase;
  text-align: center;
  font-variant: small-caps;
  height: 1.3em;
  width: 3em;
  margin: 0.5em 3px 0 0;
  padding: 0 2px 2px 2px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
}

.content-box-buttons a:hover{
  padding-bottom: 0;
}

.content-box-info{
  margin-left: 10px;
  padding: 0px 5px 2px 5px;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  width: 15em;
  float: left;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-bottomright: 5px;
}

.content-box-body{
  clear: both;
  padding: 10px;
  font-size: 0.8em;
  line-height: 1.3em;
  text-align: justify;
}

.content-box-end{
  clear: both;
  width: 450px;
  height: 0;
}

.content-subfolder-index a{
  font-weight: bold;
  font-size: 1em;
}
.content-items-index a{
  font-weight: normal;
}
.content-subfolder-index ul, .content-items-index ul{
  padding: 5px;
  margin: 5px;
  margin-left: 50px;
}
.content-subfolder-index ul li{
  padding: 0;
  margin: 0;
}

/******************/
/* MENUS & LOGIN  */
/******************/

#loginlink{
    float: right;
    margin-right: 10px;
    padding: 7px;
    font-size: 0.9em;
}
#loginlink a{
    text-decoration: none;
}
#loginlink a:hover{
    text-decoration: underline;
}

#login, .menu-box{
  padding-bottom: 10px;
}

#login-heading, .menu-heading{
  padding:          2px;
  padding-top:      3px;
  font-size:        0.9em;
  letter-spacing:   0.1em;
  font-weight:      normal;
  font-variant:     small-caps;
  text-align:       center;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
}

#login-heading a{
  text-decoration: none;
}

#login-text, .menu-box a{
  border:           1px solid;
  border-top:       none;
  display:          block;
  text-align:       center;
  text-decoration:  none;
  padding:          3px;
  font-size:        0.8em;
}
#login-text{
  font-size: 0.7em;
}

#login-text em{
  text-transform: uppercase;
}
#login-form .label{
  width: 55px;
  float: left;
  text-align: right;
  padding-top: 2px;
  clear: both;
}
#login-form .field{
  margin-left: 60px;
  margin-bottom: 3px;
}

#login-buttons{
  font-size: 0.9em;
  margin: 3px 0 0 3px;
}
#login-buttons .button{
  padding: 2px 2px;
}
#login-buttons button{
  float: none;
}
#login-button {
  float: none;
  width: 125px;
  margin-left: 15px;
}
.galleryindex-header { 
  font-variant: normal; letter-spacing: normal; font-size: 1.2em; 
  -webkit-border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
}
#galleryitem-pager { margin: 0; }
#galleryitem-pager-prev a, #galleryitem-pager-next a { 
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
  margin: 0; border: none; 
}
#galleryitem-pager-info { 
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
  border: none; margin: 0 130px; 
}
#galleryitem-filmstrip-scroller a {
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
}
.success, .warning, .error { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }

#progressbar_title {
  -webkit-border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
}



#inventory-grid-area li {
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
}
#galleryitem-details, #galleryitem-details .contents, #galleryitem-othershows, #galleryitem-othershows li{
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
}



html, body{
  background-color: #FDF9F2;
}
body, td{
  color: #555;
}
a{
  color: #3C6691;
}

.search-hl{
  color: #2a2;
}

.informal{
  color: #6B6;
}

/******************/
/* LAYOUT         */
/******************/

#header{
  background-color: #FD511C;
}

#header h1{
  color: #FFFFFF;
  border-bottom-color: #333333;
}

#header-infobar{
  color: #EEEEEE;
  background-color: #505050;
}

#breadcrumbs{
  background-color: #EEDCE0;
  border-color: #444444;
}

#footer{
  background-color: #333333;
}

#copyright{
  color: #888;
}

#footer_ad{
  color: #666;
}

#footer_ad a{
  color: #888;
}

#footer_ad a:hover{
  color: #ccc;
}

#copyright-text{
  color: #C8D48D;
}

/******************/
/* CONTENT BOXES  */
/******************/

.content-box-noheader, .content-box-bottom{
  background-color: #EEEEEE;
  border-color: #000000;
}

.content-box-header{
  background-color: #333333;
}

.content-box-header h2{
  color: #EEEEEE;
}

.content-box-body h2{
  border-color: #CCC;
}

.content-box-buttons a{
  background-color: #EEEEEE;
  color: #883333;
}

.content-box-buttons a:hover{
  border-bottom-color: #FD511C;
  color: #FD511C;
}

.content-box-info{
  background-color: #D0CCCC;
}


/******************/
/* MENUS & LOGIN  */
/******************/

#loginlink a{
  color: #888;
}

#loginlink a:hover{
  color: #AAA;
}

#login-heading, .menu-heading, #login-heading a{
  color: #EEEEEE;
  background-color: #333333;
}

#login-heading a:hover{
  color: #88CC88;
}

#login-text, .menu-box a, .archive-sidebar{
  border-color: #000000;
  color: #333333;
  background-color: #EEEEEE;
}

#login-text em{
  color: #777777;
  background-color: transparent;
}

.menu-box a:hover{
  background-color: #666666;
  color: #FFFFFF;
}

/******************/
/* FORMS          */
/******************/
textarea, select, input
{
  background-color: #F8F8F8;
}
.form-row{
  background-color: #CEDCFF;
}
.form-row-required{
  color: #DD0000;
}
.form-row-content{
  background-color: #DFE8FF;
}
.form-row-helptext{
  background-color: #6666AA;
  color: #FFFFFF;
}
a.form-row-helpbutton{
  color: #ADB8FF;
}
a.form-row-helpbutton:hover{
  color: #FD511C;
  background-color: #6666AA;
}
.form-row-error{
  background-color: #AA0000;
  color: #FFFFFF;
}
.formfield-hover{
  background-color: #FFFFDD;
  border-color: #AFB8FF;
}
.formfield-selected{
  background-color: #FFFFCC;
  border-color: #DDDD88;
}
.formfield-unselected{
  background-color: #F8F8F8;
  border-color: #AFB8FF;
}
textarea,input,select{
  border-color: #AFB8FF;
}
input.radio, input.checkbox, radio, checkbox{
  color: #555555;
}

/******************/
/* ADMIN          */
/******************/

.admin-menu-item, li.inventory-grid-item, .inventory-edit-top, .inventory-edit-actions, .contact-item, table.offset-selector td a.active, .recursor-list-enabled, .perm-item{
  background-color: #CEDCFF;
}
.tag-status{
  color: #777;
}
.contact-item:hover{
  background-color: #FFDCAA;
}
iframe.emailpreview{
  border-color: #000;
}
#admin.pager{
  background-color: #E6E6E6;
}
table.offset-selector td{
  border-color: #555;
}
table.offset-selector td a.inactive{
  background-color: #aaa;
  color: #777;
}
.recursor-list-disabled { background-color: #E6E6E6; }
.recursor-list-selected { background-color: #E6EFC2; }

/******************/
/* GALLERY        */
/******************/
.galleryindex-box          { background-color: #e5e5e5; }
.galleryindex-header       { background-color: #aaa; }
.galleryindex-header a     { color: #333; }
.galleryindex-body         { background-color: #f8f8f8; border-color: #aaa; }
.galleryindex-footer       { background-color: #ddd; }
.galleryindex-footer-items { border-right-color: #f8f8f8; }
.gallerysplash-body        { background-color: #EEE; border-color: #aaa; }
.gallerysplash-enter       { background-color: #DFDFDF; color: #A55; }

#galleryitem-details, #galleryitem-othershows ul               { background-color: #CEDCFF; border: 1px solid #e5e5e5; }
#galleryitem-details div.contents, #galleryitem-othershows li  { background-color: #DFE8FF; }

ul#gallerygrid li, ul#gallerylist li
{
  background-color: #ddd;
  border: 1px solid #aaa;
  color: #666;
}
#galleryitem-filmstrip a
{
  background-color: #ddd;
  border: 1px solid #aaa;
  color: #666;
}
#galleryitem-pager-prev, #galleryitem-pager-next{
  border-color: #aaa;
  color: #999;
}
#galleryitem-pager-info { border-color: #aaa; background-color: #ddd; }
#galleryitem-pager-prev a, #galleryitem-pager-next a { border-color: #aaa; background-color: #ddd; }
#galleryitem-pager-prev a:hover, #galleryitem-pager-next a:hover, #galleryitem-filmstrip a:hover, #galleryitem-filmstrip a:hover, #galleryitem-filmstrip-selected
item a{
  background-color: #dcc;
  border-color: #333;
}


/**********/
/* TABLES */
/**********/
table.datatable td, table.rostertable td{
  background-color: #CEDCFF;
}
table.datatable tr.alt td, table.rostertable tr.alt td{
  background-color: #DFE8FF;
}
table.datatable th, table.datatable td{
  border-color: #555;
}

table.carttable td{
  background-color: #CEDCFF;
  border-color: #EEE;
}

table.carttable th{
  background-color: #555;
  color: #FFF;
  border-color: #EEE;
}

table.carttable td.total{
  background-color: #88A;
  color: #FFF;
  font-weight: bold;
  border-color: #000;
}

table.carttable td.empty, table.carttable th.empty{
  background-color: #EEE;
  border: none;
}

table.carttable td.variation{
  background-color: #DDD;
}
table.hostingtable td{
  background-color: #DFE8FF;
  border-color: #EEE;
}
table.hostingtable td.feature{
  background-color: #CEDCFF;
  border-color: #EEE;
}
table.hostingtable th{
  background-color: #555;
  color: #FFF;
  border-color: #EEE;
}
/**********/
/* PAGERS */
/**********/
.pager-pages strong
{
  background-color: #ccc;
  color: #33a;
}
.pager-pages a{
  border-color: #bbb;
}
.pager-pages a:hover{
  background-color: #bbb;
}
#links-grid-area ul li{
  background-color: #DFE8FF;
  border: 3px solid #CEDCFF;
  color: #666;
}

ul#links-categories li a{
  background-color: #DFE8FF;
  border: 3px solid #CEDCFF;
  color: #666;
}

ul#links-categories li a:hover{
  background-color: #9AB;
  color: #000;
}
