/******************************************************************************
 * Siikir CMS Common Styles                                                   *
 ******************************************************************************/

body {
	font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
	font-size: small;
	color: #000000;
	margin: 0px;
	padding: 0px;
}

h1,h2,h3,h4 {
	font-family: "Trebuchet MS",Verdana,Arial,Helvetica;
	font-weight: bold;
	margin: 14px 0px;
	color: #FF9922;
	text-shadow: 1px 1px 1px #000000;
	-moz-text-shadow: 1px 1px 1px #000000;
	-webkit-text-shadow: 1px 1px 1px #000000;
}

h1 {
	margin-top: 0px;
}
h1.error {
	color: #FF4400;
}

a:link, a:visited {
	color: #0066FF;
	text-decoration: underline;
}
a:hover, a:active {
	text-decoration: none;
}
a img {
	border: 0px;
}

fieldset {
	border: 2px ridge #000099;
	padding: 10px 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
fieldset legend {
	font-weight: bold;
	font-size: larger;
	color: #000099;
}

input[type="text"], input[type="password"], input[type="number"], input[type="url"], input[type="email"], textarea {
	background-color: transparent;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: small;
	color: #000000;
	padding: 2px 4px;
	border: 1px solid #0099FF;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 4px 0px;
}
input[type="submit"], input[type="button"], input[type="reset"] {
	background-color: #FFCC00;
	color: #000000;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: small;
	font-weight: bold;
	padding: 4px;
	border: 1px outset #000000;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
input.fullWidth, textarea.fullWidth {
	width: 98%;
}

.bigger {
	font-size: 16pt;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}

/* A div to contain floated divs */
div.floater {
	position: relative;
}
div.floater div.left {
	float: left;
}
div.floater div.right {
	float: right;
	text-align: left;
	padding: 6px;
	margin: 2px;
	border: 2px solid #0099FF;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
div.floater div.clear {
	clear: both;
}

/* Make a photo look nice. */
img.portrait {
	display: inline;
	background-color: #FFFFFF;
	padding: 4px;
	border: 1px solid #000000;
	box-shadow: 2px 2px 2px #000000;
	-moz-box-shadow: 2px 2px 2px #000000;
	-webkit-box-shadow: 2px 2px 2px #000000;
}
img.portrait.online {
	background-color: #66FF66;
}
span.online {
	font-weight: bold;
	color: #009900;
	background-color: #CCFFCC;
	padding: 1px;
	margin: 2px;
	border: 1px solid #009900;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

/* Container for an avatar/name box */
div.avatar {
	float: right;
	display: block;
	padding: 2px;
	width: 96px;
	border: 1px solid #000000;
	background-color: #FFFFFF;
	text-align: center;
	box-shadow: 2px 2px 2px #000000;
	-moz-box-shadow: 2px 2px 2px #000000;
	-webkit-box-shadow: 2px 2px 2px #000000;
}

/* Indent time stamps under messages or blog posts etc */
div.timestamp {
	display: block;
	line-height: 40px;
	padding-left: 32px;
	font-style: italic;
}

/* Generic clear all div */
div.clear {
	clear: both;
}



/********
 * Blog *
 *******/

/* Blog titles when shown on index view */
a.blog-title-index:link, a.blog-title-index:visited {
	font-family: "Trebuchet MS",Verdana,Arial,Helvetica;
	font-weight: bold;
	margin: 14px 0px;
	color: #FF9922;
	text-shadow: 1px 1px 1px #000000;
	-moz-text-shadow: 1px 1px 1px #000000;
	-webkit-text-shadow: 1px 1px 1px #000000;
}
a.blog-title-index:hover, a.blog-title-index:active {
	text-decoration: underline;
}

/* Poster's avatar box */
.blog-author, .comment-author {
	float: right;
	background-color: #FFFFFF;
	border: 1px solid #000000;
	padding: 2px;
	margin-left: 10px;
	margin-bottom: 10px;
	width: 100px; /* 96 avatar width + 4px padding */
	text-align: center;
	font-weight: bold;
}
.blog-author img, .comment-author img {
	margin-left: auto;
	margin-right: auto;
}

/* Timestamp and author line below blog titles */
.blog-timestamp {
	font-size: smaller;
	font-style: italic;
	padding-left: 30px;
	padding-top: 5px;
	padding-bottom: 10px;
}

/* Blog comment wrapper */
.comment {
	border: 1px dashed #006699;
	padding: 5px;
}
