﻿/*
 *  This is the default style sheet used in the content editor. 
 *  Content editor has basic styling specified in "../Config/VisualEditor/Styles/core.css"
 * 
 *  You can change what stylesheets are loaded and what buttons, styles etc. are in the visual editor here:
 *
 *      ~/Frontend/Config/VisualEditor/common.xml
 *
 */
 
/*=====================================*
 * GENERAL TYPOGRAPHY
 *=====================================*/
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}

p {
  /* line-height: normal; */
}

a {
  color: #0e5838;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h6 {
  font-weight: bold;
}

h1 {
  font-size: 20px;
  margin-bottom: 16px;
}

h2 {
  font-size: 18px;
}

h3, h4, h5 {
  font-size: 14px;
}

h3 {
  font-style: italic;
}

h4 {
  color: #991a1e;
}

h5 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

h6 {
  font-size: 12px;
  letter-spacing: 0.1em;
}

ul {
  list-style-type: disc;
}

ul, ol {
  list-style-position: outside;
}

li {
  margin-left: 25px;
}

ol li {
  margin-left: 32px;
}

p, ul, ol, blockquote {
  margin-bottom: 16px;
}

blockquote {
  padding: 14px 20px;
  background-color: #eee;
  margin-top: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background-color: #bac38c;
}

tbody tr {
  background-color: #ebeedc;
}
tbody tr:nth-child(2n) {
  background-color: #dadfbd;
}

th, td {
  margin: 0;
  padding: 8px;
  text-align: left;
  border: none;
}

label {
  margin-bottom: 16px;
}

label, input, select, textarea {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

input[type=text], textarea, select {
  padding: 4px;
}

input[type=checkbox], input[type=submit], label.checkbox-label {
  display: inline;
}

textarea {
  width: 98%;
  min-height: 96px;
}

input[type=submit] {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  background-color: #7b7b7b;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9a9a9a), color-stop(100%, #7b7b7b));
  background-image: -webkit-linear-gradient(#9a9a9a, #7b7b7b);
  background-image: -moz-linear-gradient(#9a9a9a, #7b7b7b);
  background-image: -o-linear-gradient(#9a9a9a, #7b7b7b);
  background-image: linear-gradient(#9a9a9a, #7b7b7b);
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 4px 12px;
}
input[type=submit].primary {
  background-color: #08462c;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0e5838), color-stop(100%, #041d11));
  background-image: -webkit-linear-gradient(#0e5838, #041d11);
  background-image: -moz-linear-gradient(#0e5838, #041d11);
  background-image: -o-linear-gradient(#0e5838, #041d11);
  background-image: linear-gradient(#0e5838, #041d11);
}

.left {
  float: left;
  clear: left;
  margin: 0 24px 8px 0;
}

.right {
  float: right;
  clear: right;
  margin: 0 0 8px 24px;
}

.video img, .graphic img {
  margin-bottom: 16px;
}
.video .title, .graphic .title {
  font-weight: bold;
}
.video p.caption, .graphic p.caption {
  margin-bottom: 0;
}
 
 
*.left {
  float: left;
  margin: 0 22px 10px 0;  
}
*.right {
  float: right;
  margin: 0 0 10px 22px;
}

.textalignleft {
    text-align: left;
}

.textaligncenter {
    text-align: center;
}

.textalignright {
    text-align: right;
}

.list-heading {
  font-weight: bold;
  margin-bottom: 0;
}

/*
img.framed {
    border: 1px solid black;
    padding: 3px;
    margin: 3px;
}

img.heavyframed {
    border: 5px solid #444;
    padding: 4px;
    margin: 3px;
}

table.heavy {
	border: 3px solid black;
	border-collapse: collapse;
}

table.heavy td {
	border: 2px solid black;
	padding: 5px;
}

table.heavy thead {
    background-color: #ddd;
}

table.heavy tr.sum {
    background-color: #933;
}

table.heavy tr.sum td.total {
    background-color: #000;
    color: #eee;
}

table tr.sum {
    background-color: #eee;
}

table tr.sum td.total {
    background-color: #fee;
}

table.light {
	border: 1px solid #ddd;
	border-collapse: collapse;
	padding: 5px;
}

table.light td {
	border: 1px solid #eee;
	padding: 5px;
}*/




p.note
{
  font-size: smaller;
  padding: 10px;
  background-color: #ffc;
  border: 1px solid #884;
}
