/*
## editorelements.css - Contains style for editorelement content
*/
.article-content {
  position: relative;
}

.underlined {
  text-decoration: underline;
}

.left-aligned {
  text-align: left;
}

.right-aligned {
  text-align: right;
}

/* Only align <p> elements this way */
p.center-aligned {
  text-align: center;
}

p.justify-aligned {
  text-align: justify;
}

/**********************
## IMAGE DESCRIPTION ##
**********************/
.image-box {
  border-collapse: collapse;
  margin: 0 auto;
  width: 20px;
}

.image-box.left-floated {
  float: left;
  margin-right: 15px;
}

.image-box.right-floated {
  float: right;
  margin-left: 15px;
}

.image-box.none-floated {
  margin: 15px 0;
}

.image-box .image-caption {
  border-bottom: 1px dotted #ccc;
  padding: 5px 0px; 
  font-size: 92%;
  font-weight: normal;
}

.image-box td {
  padding: 0px;
}

/*************************
## USER BOX DESCRIPTION ##
*************************/
div.user-box {
  background-color: #ddd;
  padding: 5px;
  border: 1px solid #999;
}

div.user-box.left-floated {
  float: left;
  margin-right: 15px;
}

div.user-box.right-floated {
  float: right;
  margin-left: 15px;
}

/***********************
## TABLE DESCRIPTION ##
***********************/
/* common user table */
table.user-table {
  border-collapse: collapse;
}

table.user-table td,
table.user-table th {
  vertical-align: top;
  padding: 4px;
}

table.user-table thead td {
  font-weight: bold;
}

/* bordered user table */
table.bordered-user-table {
  border-collapse: collapse;
}

table.bordered-user-table td,
table.bordered-user-table th {
  vertical-align: top;
  border: 1px solid #666;
  padding: 4px;
}

table.bordered-user-table thead td {
  font-weight: bold;
}

/* outlined user table */
table.outlined-user-table {
  border-collapse: collapse;
  border: 1px solid #666;
}

table.outlined-user-table td,
table.outlined-user-table th {
  vertical-align: top;
  padding: 4px;
}

table.outlined-user-table thead td {
  font-weight: bold;
}

/* outlined horizontal bordered user table */
table.outlined-horizontal-user-table {
  border-collapse: collapse;
  border: 1px solid #666;
}

table.outlined-horizontal-user-table td,
table.outlined-horizontal-user-table th {
  vertical-align: top;
  padding: 4px;
  border-bottom: 1px solid #666;
}

table.outlined-horizontal-user-table thead td {
  font-weight: bold;
}

/* horizontal bordered user table */
table.horizontal-user-table {
  border-collapse: collapse;
}

table.horizontal-user-table td,
table.horizontal-user-table th {
  vertical-align: top;
  padding: 4px;
  border-bottom: 1px solid #666;
}

table.horizontal-user-table thead td {
  font-weight: bold;
}

/* outlined vertical bordered user table */
table.outlined-vertical-user-table {
  border-collapse: collapse;
  border: 1px solid #666;
}

table.outlined-vertical-user-table td,
table.outlined-vertical-user-table th {
  vertical-align: top;
  padding: 4px;
  border-right: 1px solid #666;
}

table.outlined-vertical-user-table thead td {
  font-weight: bold;
}

/* vertical bordered user table */
table.vertical-user-table {
  border-collapse: collapse;
  border-left: 1px solid #666;
}

table.vertical-user-table td,
table.vertical-user-table th {
  vertical-align: top;
  padding: 4px;
  border-right: 1px solid #666;
}

table.vertical-user-table thead td {
  font-weight: bold;
}

/**
## IFRAME ##
**/
iframe.left-floated {
  margin-right: 10px;
}

iframe.right-floated {
  margin-left: 10px;
}

/*********************
## FILE DESCRIPTION ##
*********************/
.fileObject {
  height: 35px;
}

.fileObject img {
  float: left;
  margin-right: 4px;
}

.fileObject span {
  color: #999;
}

/*********************
## FORM DESCRIPTION ##
*********************/
#content form {
  width: 99%;
}
#content form fieldset {
  padding: 30px 10px 5px 10px;
  border: 1px solid;
}
#content form p {
  margin: 5px 0 8px 0;
}
#content form legend {
  font-weight: bold;
  padding: 0 5px;
}

#content form .mandatory {
  color: #ff0000;
}

#content form input.error,
#content form select.error,
#content form textarea.error {
  background: #ffffcb;
}

#content form label.error {
  color: #f00;
}

#content label.block,
#content label .block {
  display: block;
  margin-bottom: 2px;
  margin-right: 20px;
}

#content form input.block {
  display: block;
  margin-bottom: 8px;
  margin-right: 20px;
}

#content form select,
#content form .default /* .default used for standard text input */ {
  width: 99%;
}

#content form textarea {
  width: 99%;
  margin-bottom: 8px;
}

#content form select {
  margin-bottom: 8px;
}
#content form input.file {
  margin-bottom: 8px;
}
#content form input.checkbox {
  margin-right: 8px;
}

#content form input.radiobutton {
  margin: 0 5px;
}

#content form div.submit {
  padding: 10px 0;
}

#content form input.button.submit,
#content form input.button.reset {
  margin-right: 5px;
  padding: 4px;
}

/* error-messages - TODO: clean up this mess */
#content h3.error-messages {
  font-size: 12px;
  color: #be0000;
}

#content ul.error-messages {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#content ul.error-messages li {
  padding: 4px 0;
  color: #be0000;
}

#content ul.error-messages li a:link,
#content ul.error-messages li a:visited {
  color: #be0000;
}

#content span.error-item {
  padding-left: 4px;
  font-weight: normal;
  color: #be0000;
}


#comments {
   padding: 20px 0;
   border-bottom: 1px solid #F0F0F0;
}


#comments dd {
  padding-left: 25px;
  margin-top: 4px;
  margin-bottom: 14px;
}

form#commentForm {
  width: 100%;
  margin: 0;
  padding: 20px 0;
}

#content form#commentForm fieldset {
  padding: 0;
  margin:0;
  border:0;
}

#commentForm input.block {
  width: 40%;
}

.comments {
  padding:0 0 10px;
  clear: both;
}

#content .comments li {
  list-style:none;
}

.comments h3 {
  border-bottom:1px solid;
  font-size:1.6em;
  line-height:17px;
  margin:0 0 15px;
  color: #3a1c85;
}

.comments .comment {
  background:url(../GFX/quote.gif) 8px 8px no-repeat;
  padding:8px 8px 8px 45px;
  margin:0 0 10px;
  border:1px solid #dedede;
  font-size:1.2em;
}
.comments .comment dt  {
  font-style:italic;
  margin:0 0 3px;
  color:#727272;
  font-size: 10px;
}
.comments .comment p  {
  margin:0;
  font-size:11px;
}
.comments .commentList {
  margin:0 0 25px;
  padding: 0;
}
#commentForm {
  margin: 0;
  font-size:1.2em;
}

#commentForm textarea,
#commentForm input.signature {
  padding:5px;
  border:1px solid #e0e1e2;
}
#commentForm input.signature {
  margin:0 0 8px;
  width: 250px;
}
#commentForm .button {
  display:block;
}

#commentForm label { color: #3a1c85; }

#content .infoAuthor {
  height: 100px;
  padding: 0 0 10px;
}

img.attribute { 
  float: left;   
  margin:0 10px 10px 0;}

ul.attribute {
  list-style: none;
  margin:0;
  padding-top:20px;
}

ul.attribute li {
font-size:95%;
margin:10px 0 0;
}

#rightColumn .mostread {
  padding:0 0 10px;
}

#rightColumn .lastblog {
  padding:10px 0;
  margin-bottom: 10px;
}

#rightColumn .mostread,
#rightColumn .lastblog {
  border-bottom: 1px dotted #999999;
}

#rightColumn .mostread .summary,
#rightColumn .lastblog .summary {
  font-size: 11px;
  line-height: 1.3em;
  padding: 15px 0;
}

#rightColumn .mostread .summary img,
#rightColumn .lastblog .summary img { display: none; }

#rightColumn .mostread h2,
#rightColumn .lastblog h2 { color: #000; font-size:1.17em; font-weight: normal; }

#rightColumn .lastblog .summary em { display: none; }


#rightColumn .mostread .summary h2 a,
#rightColumn .lastblog .summary h2 a {
  color: #663399;
}

#rightColumn .mostread .summary h2,
#rightColumn .lastblog .summary h2 {
  margin-bottom: 3px;
  font-weight: bold;
}

div.mostread .summary li,
div.lastblog .summary li {
  margin:0; 
  padding:0; 
  list-style: none;
  display: inline;
  color: #585858; 
}

#rightColumn .mostread .summary p.attribute,
#rightColumn .lastblog .summary p.attribute,
#content .summary p.attribute,
#content .summary p.attribute {
  display: inline;
  color:#585858;
}

#rightColumn .mostread .summary a.readmore,
#rightColumn .lastblog .summary a.readmore {
  color:#663399;
}

div.socialmedia {
  display:inline-block;
  padding-bottom:5px;
  margin-bottom: 10px;
  width: 180px;
  border-bottom: 1px dotted #999999;
}

.socialmedia ul {
  list-style:none outside none;
  margin:0; 
  padding:0;
}

.socialmedia ul li {
  float:left;
  padding:5px 5px 0 0;
}
