/* CSS Reset */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* Core Layout */

html {
	background: #f8f8f8 url("../img/MainBack.png");
}

body {
   	position: relative;
    width: 100%;
	font-family: "Lucida Grande", helvetica;
	font-size: 14px;
	line-height: 22px;
	color: #505050;
}

header {
	height: 60px;
	margin: 20px auto;
	position: relative;
	width: 940px;	
}

#browserWarning {
	position: relative;
	width: 858px;
	padding: 10px 40px;
	color: black;
	background-color: yellow;
	border: 1px solid black;
	margin: 0 auto 40px auto;
	text-align: center;
	font-weight: bold;
	font-size: 10px;
}

h1 {
	position: relative;
}

div.title {
	display: block;
	float: right;
	height: 22px;
	line-height: 22px;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

div.title span {
	line-height: 20px;
	font-size: 20px;
	font-weight: bold;
	vertical-align: baseline;
}

div.content {
    background-color: #f8f8f8;
	background-color: rgba(255, 255, 255, 0.7);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: 0 2px 2px #cecece;
	-webkit-box-shadow: 0 2px 2px #cecece;	
	margin: 0 auto 20px auto;
	overflow: hidden;
	padding: 40px 40px 0 40px;
	position: relative;
	width: 860px;	
}

/* Header */

header a.logo {
	background: url("../img/Logo.png") no-repeat center center;
	display: block;
	height: 60px;
	left: 0;
	text-decoration: none;
	width: 363px;
}

header nav {
	bottom: 0;
	height: 20px;
	margin: 0;
	position: absolute;
	right: 0;
	width: 470px;
}

header nav ul {
	margin: 0;
	position: relative;
	right: 0;
}

header nav ul li {
	float: left;
	display: inline;
	list-style: none;
	position: relative;
}

header nav a {
	position: relative;
	display: block;
	margin-left: 40px;
	overflow: hidden;
	text-align: center;
	line-height: 20px;
	font-size: 16px;
	font-weight: bold;
	color: #3a3a3a;
	text-decoration: none;
}

header nav a:visited, nav a:active, nav a:hover {
	color: #3a3a3a;
	text-decoration: none;
}

header nav a#navCurrent {
	border-bottom: 2px solid #3a3a3a;
}

nav {
	display: block;
	height: 22px;
	line-height: 22px;
	font-size: 14px;
	font-weight: bold;
	margin: 0 auto 20px auto;
	position: relative;
	text-decoration: none;
	width: 940px;
}

nav ul {
	display: block;
	float: right;
	margin: 0;
	position: relative;
	right: 0;
}

nav ul li {
	float: left;
	display: inline;
	list-style: none;
	position: relative;
}

nav a {
	position: relative;
	display: block;
	margin-left: 30px;
	overflow: hidden;
	text-align: center;
	line-height: 22px;
	font-size: 14px;
	font-weight: bold;
	color: #3a3a3a;
	text-decoration: none;
}

nav a:visited, h1 nav a:active, h1 nav a:hover {
	color: #3a3a3a;
	text-decoration: none;
}

nav .navCurrent {
	border-bottom: 2px solid #3a3a3a;
}


/* Footer */

footer {
	clear: both;
	font-size: 10px;	
	height: 40px;
	line-height: 20px;
	margin: 0 auto 20px auto;
	position: relative;
	text-align: center;
    width: 940px;
}

/* Generic */

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

a:hover {
	text-decoration: underline;
}

a:active {
	color: #006EDA;
	text-decoration: underline;
}

a:visited {
	color: #006EDA;
}

h1, h2, h3 {
    margin: 0 0 20px 0;
    padding: 0;
	font-weight: bold;
}

h1 {
	font-size: 20px;
}

h2 {
	font-size: 18px;
}

h3 {
	margin-bottom: 0px;
	font-size: 15px;
}

p {
    margin-bottom: 20px;
    padding: 0;
}

.marked {
}

.normal {
	color: #a3a3a3;
}

.left {
	float: left;
}

.right {
	float: right;
	margin-left: 10px;
}

::selection {
    background: #a0a0a0;
}

::-moz-selection {
    background: #a0a0a0;
}

section {
	clear: both;
	margin: 0 0 40px 0;
	padding: 0;
	position: relative;
	width: 860px;
}

article {
	margin-bottom: 40px;
	padding: 0;
	position: relative;	
}


div.entry {
	position: relative;
	margin-bottom: 40px;
	clear: both;
}

div.block {
	position:relative;
}

div.smallContent {
	position: relative;
	width: 860px;
	margin: 20px auto;
	padding: 20px 40px;
    background-color: #f8f8f8;
	background-color: rgba(255, 255, 255, 0.7);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	overflow: hidden;
	-moz-box-shadow: 0 2px 2px #cecece;
	-webkit-box-shadow: 0 2px 2px #cecece;	
}

div.smallContent h1 {
	line-height: 26px;
	margin: 0;
	padding: 0;
}


div.smallContent span.headline {
	display: block;
	float: left;
	font-size: 16px;
	font-weight: bold;
	line-height: 36px;
	padding-right: 8px;
}

div.smallContent ul {
	background-color: transparent;
	display: block;
	float: left;
	height: 40px;
	line-height: 36px;
	list-style-type: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	top: 1px;
	width: 600px;
}

div.smallContent ul li {
	display: block;
}

a.headline, a:hover.headline, a:active.headline, a:visited.headline {
	text-decoration: none;
}

div.smallContent a.page {
	display: inline;
	float: none;
}

a.feed {
	background: #FFAA00;
	background: -moz-linear-gradient(top, #FFAA00 0%, #E08506 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFAA00), color-stop(100%,#E08506));
	border: 1px solid #E08506;
}

a.feed:hover {
	text-decoration: none;
}

a.feed:active {
	background: #FFBB32;
	background: -moz-linear-gradient(top, #FFBB32 0%, #DD9333 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFBB32), color-stop(100%,#DD9333));
	text-decoration: none;
}

a.inlineButton {
	position: relative;
	top: -2px;
}

div.pagination {
	background-color: #f0f0f0;
	background-color: rgba(240,240,240,0.7);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 40px;	
	margin-top: 10px;
	padding: 5px;
	position: relative;
	text-align: center;
}

/* Home/Products/Download Pages */

.newsticker {
	background: #1e1e1e;
}

.bubbleInfo {
	position: relative;
	float: right;
	vertical-align: baseline;
	line-height: 20px;
	top: 8px;
}

.productIntroBox {
    background-color: #f8f8f8;
	background-color: rgba(255, 255, 255, 0.7);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: 0 2px 2px #cecece;
	-webkit-box-shadow: 0 2px 2px #cecece;	
	box-shadow: 0 2px 2px #cecece;	
	display: block;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 940px;
	z-index: 0;
}

a.productIntro {
	background-color: transparent;
	display: block;
	height: 500px;
	left: 0;
	position: absolute;
	top: 0;
	width: 940px;
	z-index: 2;
}

a.productIntroHidden {
	z-index: 1;
}

a.productIntro:hover {
	text-decoration: none;
}

a.productIntro div.text {
	color: #505050;
	display: block;
	left: 40px;
	position: absolute;
	top: 100px;
	width: 360px;
}

a.productIntro div.textHidden {
	top: -200px;
}

a.productIntro img.mac {
	border: 0;
	display: block;
	height: 400px;
	right: 40px;
	outline: 0;
	position: absolute;
	top: 40px;
	width: 450px;
}

a.productIntro img.macHidden {
	right: -500px;
}

div.product {
	background-color: #f0f0f0;
	background-color: rgba(240,240,240,0.7);
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;	
	color: #373737;
	display: block;
	float: left;
	margin-bottom: 40px;
	margin-right: 40px;
	overflow: hidden;
	padding: 20px 20px;
	position: relative;
	text-align: center;
	width: 220px;
}

div.product img {
	border: 0;
	display: block;
	height: 128px;
	margin: 0 auto;
	outline: 0;
	width: 128px;
}

div.productRight {
	margin-right: 0;
}

div.productBanner p {
	font-size: 12px;
}

div.bigRibbon {
	bottom: 18px;
	color: white;
	display: block;
	font-size: 16px;
	left: -40px;
	line-height: 36px;
	height: 36px;
	padding: 0 14px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	text-shadow: #3a3a3a 0 1px 2px;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 120px;
}

div.bigRibbonHidden {
	bottom: -182px;
	left: -240px;
}

html.nocsstransforms div.bigRibbon {
	display: none;
}

div.ribbon {
	top: 12px;
	color: white;
	font-size: 13px;
	left: -30px;
	line-height: 24px;
	height: 24px;
	padding: 0 14px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	text-shadow: #3a3a3a 0 1px 2px;
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 80px;
}

html.nocsstransforms div.ribbon {
	display: none;
}

.updatedApp {
	background: #8EFF7A; /* old browsers */
	background: -moz-linear-gradient(top, #8EFF7A 0%, #27CE0A 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8EFF7A), color-stop(100%,#27CE0A)); /* webkit */
}

.newApp {
	background: #ff0000;
	background: -moz-linear-gradient(top, #ff0000 0%, #aa0000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#aa0000));	
}

/* Product Pages */

a.button {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0 2px 2px #777;
	-webkit-box-shadow: 0 2px 2px #777;
	color: white;
	display: inline-block;
	font-size: 13px;
	line-height: 24px;
	height: 24px;
	padding: 0 14px;
	text-shadow: #3a3a3a 0 1px 2px;
}

a.moreInfo {
	background: #8EFF7A; /* old browsers */
	background: -moz-linear-gradient(top, #8EFF7A 0%, #27CE0A 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8EFF7A), color-stop(100%,#27CE0A)); /* webkit */

	border: 1px solid #27CE0A;
}

a.moreInfo:hover {
	text-decoration: none;
}

a.moreInfo:active {
	text-decoration: none;
	background: #A2FF93; /* old browsers */
	background: -moz-linear-gradient(top, #A2FF93 0%, #37D11F 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#A2FF93), color-stop(100%,#37D11F)); /* webkit */

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#A2FF93', endColorstr='#37D11F',GradientType=0 );
}

a.download {
	background: #7abcff; /* old browsers */
	background: -moz-linear-gradient(top, #7abcff 0%, #0A60D8 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7abcff), color-stop(100%,#0A60D8)); /* webkit */
	border: 1px solid #0A60D8;
}

a.download:hover {
	text-decoration: none;
}

a.download:active {
	text-decoration: none;
	background: #93C9FF; /* old browsers */
	background: -moz-linear-gradient(top, #93C9FF 0%, #206FD6 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#93C9FF), color-stop(100%,#206FD6)); /* webkit */

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#93C9FF', endColorstr='#206FD6',GradientType=0 );
}

a.buy {
	background: #8EFF7A; /* old browsers */
	background: -moz-linear-gradient(top, #8EFF7A 0%, #27CE0A 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8EFF7A), color-stop(100%,#27CE0A)); /* webkit */
	border: 1px solid #27CE0A;

}

a.buy:hover {
	text-decoration: none;
}

a.buy:active {
	text-decoration: none;
	background: #A2FF93; /* old browsers */
	background: -moz-linear-gradient(top, #A2FF93 0%, #37D11F 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#A2FF93), color-stop(100%,#37D11F)); /* webkit */

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#A2FF93', endColorstr='#37D11F',GradientType=0 );
}

a.support {
	background: #E87AFF; /* old browsers */
	background: -moz-linear-gradient(top, #E87AFF 0%, #AB0ACC 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E87AFF), color-stop(100%,#AB0ACC)); /* webkit */
	border: 1px solid #AB0ACC;
}

a.support:hover {
	text-decoration: none;
}

a.support:active {
	text-decoration: none;
	background: #EB93FF; /* old browsers */
	background: -moz-linear-gradient(top, #EB93FF 0%, #AC1ECC 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EB93FF), color-stop(100%,#AC1ECC)); /* webkit */

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EB93FF', endColorstr='#AC1ECC',GradientType=0 );
}

img.product_star {
	position: absolute;
	display: block;
	top: -32px;
	left: -50px;
	margin: 0;
	padding: 0;
	z-index: 25;
	display: none;
}

div.historyPar {
	width: 720px;
	margin-bottom: 40px;
}


a.screenshotLeft {
	height: 200px;
	margin: 0 40px 40px -40px;
	padding: 0;
	width: 320px;
	float: left;
}

a.screenshotRight {
	height: 200px;
	margin: 0 -40px 40px 40px;
	padding: 0;
	width: 320px;
	float: right;
}

a.screenshotLeft:hover, a.screenshotRight:hover {
	border: 0;
	outline: 0;
}

section img.universalLogo {
	float: right;
	margin: 0 0 10px 10px;
	border: 0;
	outline: 0;
	width: 95px;
	height: 60px;
}

section img.universalLogo:hover {
	border: 0;
}

div.historyPar ul {
	margin-left: 20px;
	list-style-type: disc;
}

div.hotPlanBack {
	background: #f8f8f8 url("../img/hot_plan/Big.png") no-repeat top right;
	background: rgba(255, 255, 255, 0.7) url("../img/hot_plan/Big.png") no-repeat 530px -130px;
}

div.changesMeterBack {
	background: #f8f8f8 url("../img/changes_meter/Big.png") no-repeat top right;
	background: rgba(255, 255, 255, 0.7) url("../img/changes_meter/Big.png") no-repeat 530px -130px;
}

div.rotateFilesBack {
	background: #f8f8f8 url("../img/rotate_files/Big.png") no-repeat top right;
	background: rgba(255, 255, 255, 0.7) url("../img/rotate_files/Big.png") no-repeat 530px -130px;
}

/* Support Page */


div.productSupport {
	background-color: #f0f0f0;
	background-color: rgba(240,240,240,0.7);
	display: block;
	float: left;
	margin-bottom: 40px;
	margin-right: 40px;
	overflow: hidden;
	padding: 20px 20px;
	position: relative;
	text-align: center;
	width: 220px;
}

div.supportRight {
	margin-right: 0;;
}

div.productSupport img {
	border: 0;
	height: 128px;
	margin: 0;
	outline: 0;
	width: 128px;
}

div.form {
	position: relative;
	margin-left: 110px;
	overflow: hidden;
	width: 860;
}

form div.input {
	position: relative;
	clear: both;
	height: 20px;
	line-height: 20px;
	margin-bottom: 10px;
	padding: 10px;
	width: 610px;
}

form div.input label {
	position: relative;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	display: block;
	float:left;
	width: 170px;
	padding-top: 2px;
	font-weight: bold;
}

form div.input input {
	background-color: #eEeEeE;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid #eEeEeE;
	color: #232323;
	float: left;
	font-family: "Lucida Grande", helvetica;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	outline: 0;
	padding-left: 10px;
	width: 410px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-color: #f0f0f0;
	background-color: rgba(255,255,255,0.7);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid #ddd;
	box-shadow: inset 2px 5px 15px #dcdcdc;
}

.form div.error label {
	font-size: 13px;
	color: #a3a3a3;
	text-align: left;
	line-height: 13px;
}

.form div.error-message {
	position: relative;
	font-size: 10px;
	clear: left;
	color: black;
	text-align: left;
	top: -12px;
	left: 0px;
}

form div.textarea {
	clear: both;
	padding: 10px;
	margin-bottom: 10px;
	height: 270px;
	width: 800px;
	line-height: 20px;
}

.form div.textarea div.error-message {
	position: relative;
	font-size: 10px;
	clear: left;
	text-align: left;
	top: -260px;
	left: 0px;
}

form div.input textarea {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #eEeEeE;
	border: 2px solid #eEeEeE;
	color: #232323;
	float: left;
	font-family: "Lucida Grande", helvetica;
	font-size: 12px;
	height: 270px;
	outline: 0;
	padding-left: 10px;
	resize:none;
	width: 410px;
	background-color: #f0f0f0;
	background-color: rgba(255,255,255,0.7);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid #ddd;
	box-shadow: inset 2px 5px 15px #dcdcdc;
}

.form div.submit {
	clear: left;
	height: 28px;
	margin-top: 20px;
	padding: 0;
	position: relative;
	text-align: left;
}


.form div.submit input {
	position: absolute;
	right: 146px;
	outline: 0;
	color: white;
	display:inline-block;
	background: #E87AFF; /* old browsers */
	background: -moz-linear-gradient(top, #E87AFF 0%, #AB0ACC 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E87AFF), color-stop(100%,#AB0ACC)); /* webkit */

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #AB0ACC;
	-webkit-box-shadow: 0 2px 2px #777;
	-moz-box-shadow: 0 2px 2px #777;
	height: 22px;
	padding: 0 12px;
}

.form div.submit input:active {
	background: #EB93FF;
	background: -moz-linear-gradient(top, #EB93FF 0%, #AC1ECC 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EB93FF), color-stop(100%,#AC1ECC));
	text-decoration: none;
}

.curFocus label {
	color: #0A90FE !important;
}

.curFocus input,.curFocus textarea {
	border: 2px solid #0A90FE  !important;
}

/* Blog */

a.facebook {
	background: #2d4486; /* old browsers */
	background: -moz-linear-gradient(top, #6d84b4 0%, #2d4486 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6d84b4), color-stop(100%,#2d4486)); /* webkit */
	border: 1px solid #27489D;
}

a.facebook:hover {
	text-decoration: none;
}

a.facebook:active {
	background: #27489D; /* old browsers */
	background: -moz-linear-gradient(top, #6F90D1 0%, #27489D 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6F90D1), color-stop(100%,#27489D)); /* webkit */
	text-decoration: none;
}

a.twitter {
	background: #87e0fd; /* old browsers */
	background: -moz-linear-gradient(top, #87e0fd 0%, #05abe0 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#87e0fd), color-stop(100%,#05abe0)); /* webkit */

	border: 1px solid #05abe0;
}

a.twitter:hover {
	text-decoration: none;
}

a.twitter:active {
	background: #B0EAFC; /* old browsers */
	background: -moz-linear-gradient(top, #B0EAFC 0%, #27B3DD 100%); /* firefox */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#B0EAFC), color-stop(100%,#27B3DD)); /* webkit */

	text-decoration: none;
}


div.leftColumn {
	position: relative;
	float: left;
	padding: 0 40px 0 0;
	margin-bottom: 40px;
	width: 213px;
}

div.centerColumn {
	position: relative;
	float: left;
	padding: 0 40px 0 0;
	margin-bottom: 40px;
	width: 213px;	
}

div.rightColumn {
	position: relative;
	float: left;
	padding: 0;
	margin-bottom: 40px;
	width: 213px;		
}

div.search {
	float: right;
	height: 28px;
	line-height: 28px;
	position: relative;
}

div.search span {
	float: left;
	position: relative;
	font-size: 14px;
	font-weight: normal;
}

div.search form.search {
	float: left;
	position: relative;
}

div.search input {
	background-color: #f0f0f0;
	background-color: rgba(255,255,255,0.7);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid #ddd;
	box-shadow: inset 2px 5px 15px #dcdcdc;
	color: #232323;
	font-family: "Lucida Grande", helvetica;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	outline: 0;
	width: 300px;
}

div.search input:focus {
	border: 2px solid #0A90FE;
}

div.search #goSearch {
	display: none;
	width: 30px;
	border: 0;
	background-color: #2E2E2E;
	padding: 1px;
	color: #232323;
}

div.bookmarks {
	margin: 20px 0;
}

form#PostAddForm {
	display: inline;
}

.message {
	padding-left: 40px;
}

#flashMessage {
	color: red;
}
#errorMessage {
	color: #720000;
	background-color: #ffcfcd;
	
}

.post {
	position: relative;
	margin-bottom: 40px;
}

.post .body {
}

.post .meta {
	position: relative;
	top: -20px;
}

.otherPosts {
	clear: both;
}

.commentlist {
	position: relative;
	margin-bottom: 40px;
	clear: both;
}

.comment {
	}

.comment .meta {
	font-weight: bold;
}

.commentnumber {
	font-size: 14px;
	color: white;
}

#commentsclosed {
	color: #777;
	text-align: center;
	margin: 0;
	padding: 0;
	font-size: 13px;
	}
	
small, blockquote, strike {
	color: #777;
	}

code {
	font: 11px 'Courier New', Courier, Fixed;
	}

acronym, abbr, span.caps{
	font-size: 9px;
	letter-spacing: 0.7px;
}

acronym, abbr, span.caps {
	cursor: help;
}

acronym, abbr {
	border-bottom: 1px dashed #999;
}

blockquote {
	margin: 5px 5px 0 5px;
	padding-left: 20px;
	border-left: 5px solid #ddd;
}

blockquote cite {
	margin: 5px 0 0;
	display: block;
}

pre {
	font-size: 11px;
}

/* Errors */

img.errorImage {
	border: 0;
	display: block;
	float: left;
	height: 192px;
	padding-right: 40px;
	width: 192px;
}

div.error {
	float:left;
	font-size: 28px;
	font-weight: bold;
	line-height: 48px;
	margin-bottom: 40px;
	text-align: center;
	width: 860px;
}

#nav_zone div.logo {
	position: absolute;
	display: block;
	padding: 0;
	top: 10px;
	left: 4px;
	width: 298px;
	height: 62px;
	background: url("../img/Logo.png") no-repeat center center;
}

