/* comments.css */

  div.comments {
    clear: both;
  }

  .comments h3 {
    text-align: center;
  }
  
  .comments h3 em.orange {
    color: rgb(248,143,070);
    font-style: normal;
  }
  
  .comments h3 em.small {
    font-size: 0.95em;
  }


  .comments .author {
    float: left;
    font-weight: bold;
    padding: 5px;
    padding-left: 15px;
    width: 120px;
  }

  .comments .comment_info {
    padding: 5px 20px 5px 5px;
    float: left;
    width: 305px;
  }
  
  .comments .comment_top , .comments .comment_bottom {
    width: 473px;
    height: 5px;
    font-size: 1px;
    background-repeat: no-repeat;
  }

  .comments .comment_top {
    background-image: url('/img/comment_top.png');
  }  
  .comments .comment_bottom {
    background-image: url('/img/comment_bottom.png');
  }  


  .comments .comment_content  {
    background-color: rgb(245,245,245);
    width: 473px;
  }
  
  .comment {
    padding: 10px 0px;
  }
  
  .comments h4, .comments label, .comments .comment_info .date {
    color: rgb(255,117,017);
  }
  
  .comments .comment_info .date {
    font-weight: bold;
  }
  
  .comments label {
    display: block;
    padding: 5px 0;
  }
  
  .comments input.text {
    background-image: url('/img/comments_input.png');
    background-repeat: no-repeat;
    background-color: transparrent;
    border: 0px none;
    width: 234px;
    height: 15px;
    padding: 3px 5px;
  }

  .comments .input {
    background-image: none;
    clear: both;
    height: auto;
    width: 200px;
    margin-bottom: 5px;
    margin-top: 0px;
    padding-left: 0px;
  }
  
  
  .comments .textarea { 
    width: 473px;
    padding-top: 5px;
    background-image: url('/img/comments_textarea.png');
    background-position: top;
    background-repeat: no-repeat;
  }
  .comments .textarea div{ 
    background-image: url('/img/comments_textarea.png');
    padding-bottom: 5px;
    background-position: bottom; 
    background-repeat: no-repeat;
  }
  .comments textarea {
    width: 463px;
    height: 100px;
    overflow: auto;
    padding: 0 5px;
    background-color: rgb(233,233,233);
    border: 0px none;
  }
  
  .comments input.submit {
    width: 100%;
    background-color: rgb(233,233,233);
    border: none;
    color: #6E4529;
  }
  

