﻿/*
Theme Name: AlbinoMouse
Description: Using some AlbinoMouse styles in the TinyMCE editor.
*/

/*----------------------------------------------------------------------------------------------
> G L O B A L 
-----------------------------------------------------------------------------------------------*/

body.mceContentBody {
	color: #4c4b4a;
	font-family: sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

/*--- Headings ---*/
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	letter-spacing: 1px;
	line-height: 1.2;
	word-spacing: 2px;
}
h1 {
	font-size: 3em;
	margin: 0.3em 0 0.3em -2px;
}
h2 {
	font-size: 2.75em;
	margin: 0.6em 0 0.4em -2px;
}
h3 {
	font-size: 2.25em;
	margin: 0.8em 0 0.4em -1px;
}
h4 {
	background-color: rgba(196,198,199,0.3);
	font-size: 1.5em;
	margin: 0.6em 0;
	padding: 5px 3px 3px;
}
h5 {
	font-size: 1.5em;
	margin: 0.75em 0 0.5em;
}
h6 {
	font-size: 1.2em;
	margin: 0.75em 0 0.5em;
}

/*--- Text elements ---*/
p {
	clear: both;
	margin-bottom: 1em;
	overflow: hidden;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {	
	margin: 0 0 1.5em 3em;
}
ul {
	list-style-type: disc;
}
ol {
	list-style: decimal;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	font-size: 1.5em;
	font-style: italic;
	line-height: 1.4;
	margin-bottom: 1em;
}
blockquote cite{
	font-size: 0.7em;
	font-style: normal;
	font-weight: bold;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 1.6em;
	padding: 1.6em;
	overflow: auto;
	max-width: 100%;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}
figure {
	margin: 0;
}

/*--- Tables ---*/
table {
	border-collapse: collapse;
	margin: 0 0 1.5em;
	width: 100%;
}
caption {
	font-size: 0.9em;
	font-weight: bold;
	line-height: 1.5em;
	padding: 0 0 10px 0;
	text-align: center;
	text-transform: uppercase;
}
}
thead {
	border-bottom: 1px solid #4c4b4a;
}
th {
	font-weight: bold;
}
tbody tr {
	border-bottom: 1px solid rgb(196,198,199);
}
th,
td {
	padding: 0 3px;
}
td:hover {
	font-weight: bold;
}

/*--- Alignment ---*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}