/* BASE TYPOGRPHY */

/* These are the default styles for the Simple theme */
body {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: black;
    font-family: Courier, Times, Serif;
}
  body a { text-decoration: none; } /* this removes the underline from all links */


/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
}
.typography h1 {
	font-family: Times New Roman, Times, Serif;
	font-size: 36px;
	margin: 0 0 25px 0;
}
.typography h2 { font-size: 16px; margin-bottom: 0; }
.typography h3 { font-size: 15px; margin-bottom: 0; }
.typography h4 { font-size: 14px; margin-bottom: 0; }
.typography h5 { font-size: 14px; margin-bottom: 0; }
.typography h6 { font-size: 14px; margin-bottom: 0; }


/* PARAGRAGHS */
.typography  p { margin: 0 0 20px; }

/* LINKS */
.typography a{
    color: #008500;
    text-decoration: none;
}
  .typography a:hover {
	text-decoration: none; 
  }
  .typography .article a:hover {
  	text-decoration: underline;
  }


/* LIST STYLES
-------------------------------------------- */
.typography ul, 
.typography ol,
.typography dl { margin: 0 0 20px 25px; }
.typography ul li { list-style-type: disc; } /* adds disc style bullet to the list */
  .typography li { margin-bottom: 5px; }


/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
    text-align: left
}
.typography .center {
    text-align: center
}
.typography .right {
    text-align: right
}


/* IMAGES 
-------------------------------------------- */
.typography img {
    border: 0 none;
    height: auto; /* resets the image height so that it maintains its aspect ratio when width is set */
    background: transparent url(../images/ajax-loader.gif) no-repeat center center;
}
.typography img.left {
    float: left;
    max-width: 100%;
    margin: 5px 20px 10px 0;
}
.typography img.right {
    float: right;
    max-width: 100%; /* Responsive width */
    margin: 5px 0 10px 20px;
}
.typography img.leftAlone {
    float: left;
    margin-right: 100%;
    margin-bottom: 10px;
    clear: both;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}

