/**
  @module elements
  @author rikkert.koppes@finalist.com
  Defines styling for the basic html elements
  
  standard colors:
    orange: #ff9900
    dark blue #004e61
    light blue: #7badb9
  */
 
/* STRUCTURE LEVEL */ 
@media all {
  html,body {
    background-color: #e2e9eb;
    font-family: verdana, arial, sans-serif;
    font-size: 10px;
    color: #004e61;
  }
}

/* BLOCK LEVEL */
@media all {
  h2 {
    margin: 0;
    margin-bottom: 25px;
    font-size: 11px;
    font-weight: bold;
    font-family: verdana, arial, sans-serif;
  }
  h3 {
    font-size: 11.7px;
    margin: 1em 0;
  }
  
  
  ul {
    list-style-type: none;
    margin: 1.5em 0;
    padding: 0;
    line-height: 1.5em;
  }

  ol {
	line-height: 1.5em;
  }  

  p {
    line-height: 1.5em;
  }

  address {
    font-style: normal;
  }
  li {
    background-image: url('../res/li_background.gif');
    background-repeat: no-repeat;
    background-position: 0px 10px;
    padding-left: 10px;
    padding: 5px 0px 6px 10px;
  }
  li:hover {
    background-position: 0px -54px;
  }

  ol li {
	background: none;
  }
}

/** INLINE LEVEL **/
@media all {
  a {
    color: #ff9900;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
  p.catcloud a {
    color: #004E61;
  }
  
  input,textarea {
    font-family: verdana, arial, sans-serif;
    font-size: 11px;
    padding: 2px 2px;
    width: 133px;
    border: 1px solid;
    border-color: #a5adb3 #dcdee3 #e6e9ed #e1e3eb;
    background-color: white;
    color: #004E61;
  }
  
  abbr {
  	border: none;
  }
  
  textarea {
    width: auto;
  }
  
  #submit {
  border-color: #A5ADB3 #DCDEE3 #E6E9ED #A5ADB3;
  border-style: solid;
  border-width: 1px;
  }
  /* etc */
}

/** TABLES **/

#related table {
    width: 100%;
  }
  
.monthview td {
    color: gray;
  }
  .monthview a {
    color: #004e61;
  }

  p.imagegroup {
    clear: both;
    display: table;
    margin-bottom: 0;
  }

  p.imagegroup img {
    margin: 0 8px 10px 0;
  }

/** FORMS **/
