/**
 * This typography file is included in the WYSIWYG editor and the front end. It provides
 * a place to add link styles and font styles you would like in the CMS and the Front End.
 */


/* GENERIC STYLES
-------------------------------------------- */
div.typography {
	font-family: "Segoe UI", Arial, Verdana, Lucida, sans-serif;
    clear: left;
}

/* PARAGRAPHS
-------------------------------------------- */
.typography p {
 	color: #222;
 	font-size: 0.875em;
	margin: 0 0 1em 0;
	line-height: 1.5em;
	display: block;
}

/* Semantic Styles
-------------------------------------------- */
.typography blockquote {
	margin: 10px;
	font-size: 1.0em;
	color: #777;
	font-style: italic;
}
q {
	display:block;
	font-size: 0.8em;
	margin: 1em 1em;
	padding: 0.5em;
	border: 1px #ccc solid;
}

.typography em {}
.typography strong {font-weight: bold;}
.typography abbr{border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #cccccc; cursor: help;}
.typography span{}
.typography hr{
    margin: 1em auto;
    border-color: red;
}

/* LINKS
-------------------------------------------- */

.typography a {
 	text-decoration: none;
	color: #3E91C4;
}
	.typography a:hover {
 		text-decoration: underline;
	}

	/* LINK ICONS - shows type of file
	------------------------------------ */
	.typography a[href$=".pdf"],
	.typography a[href$=".PDF"]{
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_acrobat.png) no-repeat left center;
	}
	.typography a[href$=".doc"],
	.typography a[href$=".DOC"] {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_word.png) no-repeat left center;
	}
	.typography a[href$=".xls"],
	.typography a[href$=".XLS"] {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_excel.png) no-repeat left center;
	}
	.typography a[href$=".gz"],
	.typography a[href$=".GZ"],
	.typography a[href$=".gzip"],
	.typography a[href$=".GZIP"],
	.typography a[href$=".zip"],
	.typography a[href$=".ZIP"] {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_zip.png) no-repeat left center;
	}
	.typography a[href$=".exe"],
	.typography a[href$=".EXE"]{
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/application.png) no-repeat left center;
	}

/* LIST STYLES
-------------------------------------------- */
.typography ul, .typography ol {
	margin: 1em 0 18px 24px;
	color: #666;
}
	.typography li {
		margin: 5px 10px;
		font-size: 1em;
	}
    .typography ul.tick li {list-style-image: url('../images/tick-small.png');}
		.typography li li {font-size: 0.8em;}

/* HEADING STYLES
-------------------------------------------- */

.typography h2 {
	font-size: 1.275em;
	color: #333;
	font-family: Arial, verdana;
	font-weight: 600;
	line-height: 18px;
	margin: 0 0 16px 0;
	padding: 0.3em 0.3em 0.4em;
}
.typography h3 {
	color: #222;
	margin: 0 0 18px 0;
	font-weight: 300;
	font-size: 18px;
    line-height: 1.25em;
}
.typography h4 {
	font-size: 1.1em;
	color: #333;
	margin: 0 0 0.5em 0;
}
.typography h5 {
	font-size: 14px;
	color: #222;
	font-weight: 700;
	margin: 0 0 12px 0;
}
.typography h6 {
	font-size: 13px;
	color: #555;
	line-height: 1.4em;
	margin: 0 0 12px 0;
}

/* PRE STYLES
-------------------------------------------- */
.typography pre {
	font-family: "Courier New",Courier;
	display: block;
	font-size: 1.0em;
	margin: 2em 5em;
	padding: 0.5em;
	border:1px #ccc solid;
	background: #eee;
}

/* TABLE STYLING
-------------------------------------------- */
.typography table {
	margin: 0 0 18px 0;
	border-collapse: collapse;
    font-size: 0.875em;
}
.typography tr {}
.typography th {}
.typography td {
/*	border: 0px solid #999;
	padding: 0px; */
}

/* WYSIWYG EDITOR ALIGNMENT CLASSES
-------------------------------------------- */
.typography .left {text-align: left;}
.typography .center {text-align: center;}
.typography .right {text-align: right;}
.typography .clear-left {clear:left;}
.typography .clear-right {clear:right;}
.typography .clear-both {clear:both;}
.typography .readmore {
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    display: block;
    -moz-border-radius: 8px; /* Firefox */
    -khtml-border-radius: 8px; /* Konquerer */
    -o-border-radius: 8px; /* Opera */
    -webkit-border-radius: 8px;
    border-radius: 8px; /* css3(ish) */
    background: white;
    padding: 3px 5px;
    margin: 0;
    -webkit-box-shadow: #888 1px 1px 4px;
    -moz-box-shadow: #888 1px 1px 4px;
    box-shadow: #888 1px 1px 4px;
}

/* IMAGES
-------------------------------------------- */
.typography img {
	border: none;
}
	.typography img.right {
		float: right;
		margin-left: 20px;
	}
	.typography .captionImage {
		border: 1px solid #aaa;
		padding: 5px;
	}
	.typography img.left{
		float: left;
	}
	.typography img.leftAlone{
        float: left;
		margin-right: 100%;
	}
	.typography img.center {
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

/* A special rule for the button on the home page */
.typography a.button {
    margin-left: 55px;
    margin-top: 0.5em;
    display: inline-block;
    width: 291px;
    height: 42px;
    background: url(../images/button-bg-orange.png) no-repeat bottom;
    text-align: center;
    color: white;
    text-shadow: black 1px 1px 0.1em;
    font-size: 2em;
    padding-top: 15px;
}
.typography a.button:hover {
    background-position: top;
    text-decoration: none;
}

.typography div.hpsection {
    width: 280px;
    min-height: 20em;
    margin: 5px 10px;
    padding: 5px 5px 1em;
    background: #eee;
    float: left;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: #888 2px 2px 6px;
    -moz-box-shadow: #888 2px 2px 6px;
    box-shadow: #888 2px 2px 6px;
}
.typography div.hpsection h2 {
    margin: -5px 0 15px -5px;
    padding: 8px 5px 10px 5px;
    left:0; top:0;
    color: #fff;
    width: 100%;
    text-align: center;
    text-shadow: #000 1px 1px 0.1em;
}

.rounded-top{
    -moz-border-radius: 10px 10px 0 0; /* Firefox */
    -khtml-border-radius: 10px 10px 0 0; /* Konquerer */
    -o-border-radius: 10px 10px 0 0; /* Opera */
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px; /* Chrome/Safari & used by CurvyCorners script */
    border-radius: 10px 10px 0 0; /* css3(ish) */
}
.rounded-all-5{
    -moz-border-radius: 5px; /* Firefox */
    -khtml-border-radius: 5px; /* Konquerer */
    -o-border-radius: 5px; /* Opera */
    -webkit-border-radius: 5px;
    border-radius: 5px; /* css3(ish) */
}
.content-box{border: #ddd solid 1px; margin: 0 0 2em; overflow: auto; border-bottom-width: 4px; position: relative; background: #eef;}
a.actionbutton{background: transparent url(../images/actionbutton.png) no-repeat; width:150px; height: 30px; text-align: center; color:#fff;font-weight: bold;padding-top: 0.2em;display:block;}
#col1{background-color:#e65714}
#col2{background-color:#42b4ac}
#col3{background-color:#7d63a9}

/* This overrides the CMS logo */
    #top #Logo a {
        background: none;
    }
