/*   
Theme Name: Ovaalstuudio
Theme URI: www.ovaal.ee
Description: A Wordpress theme created for the webstite of Ovaalstuudio.
Author: Tanel Kärp
Author URI: http://nerthum.com/tkid
Template: thematic
Version: 3.0
.
Thematic is © Ian Stewart http://themeshaper.com/
.
*/

/* Reset browser defaults */
@import url('../thematic/library/styles/reset.css');

/* Apply basic typography styles */
@import url('../thematic/library/styles/typography.css');

/* Apply a basic layout */
@import url('../thematic/library/layouts/2c-r-fixed.css');

/* Apply basic image styles */
@import url('../thematic/library/styles/images.css');

/* Apply default theme styles and colors */
/* It's better to actually copy over default.css into this file (or link to a copy in your child theme) if you're going to do anything outrageous */
@import url('../thematic/library/styles/default.css');

/* Prepare theme for plugins */
@import url('../thematic/library/styles/plugins.css');



/* =Global Elements
-------------------------------------------------------------- */

body {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000!important;
	font-size: 13px;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.5em;
}
body {
    width: 940px;
}
body {
    background:#4E0D51;
}
#wrapper {
	position: absolute; 
	margin-left: -480px;
	left: 50%;
	top: 70px;
	display:block;
	width: 940px;
	text-align: left;
	background: transparent;
	z-index:2;
}
#backcont {
	width: 100%;
	height: 100%;
	overflow: hidden;
	zoom:1;
	display:block;
	position: fixed;
	z-index:1;
	background: url(images/backrep.png) repeat-x;
}
p, ul, ol, dd, pre {
    margin-bottom:5px;
}
pre, code {
	font:14px Monaco, monospace;
	line-height:22px;
}
blockquote {
    color:#666;
    font-style: normal;
}
table {
    border:0;
    font-size:13px;
    line-height:1.45em;
    margin:0 0 0 0;
    text-align:left;
}
caption {
    text-align:left;
}
tr {
    border-bottom:0;
}
th, td {
    padding: 0;
}
hr {
    background-color:#ccc;
    border:0;
    color:#ccc;
    height:1px;
    margin-bottom:22px;
}
a:link {
    color:#fb7a05;
}
a:visited {
    color:#fb7a05;
}
a:active,
a:hover {
    color: #fb7a05;
	text-decoration:underline;
}


/* =Header
-------------------------------------------------------------- */

#header {
    z-index:3;
	background:transparent url(images/header.png) no-repeat top center;
	height: 105px;
	width: 100%;
	position:absolute;
}
#headercontainer {
	background:transparent;
	height: 80px;
	position: absolute; 
	margin-left: -480px;
	left: 50%;
	display:block;
	width: 940px;
	text-align: left;
}
#branding {
    padding:0 0 5px 0;
	margin-right:5px;
}



/* =Menu
-------------------------------------------------------------- */

.skip-link {
    display:none;
}
#access {
    border-bottom:none;
    height:62px;
    font-size:13px;
    overflow:visible;
	margin-left: 90px;
	width: 470px;
}
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** THEMATIC SKIN ***/
.menu {
	margin-top:25px!important;
}
.sf-menu {
    border-right:none;
	float:left;
}
.sf-menu a {
	border-left:none;
	border-top:none;
	border-bottom:none;
	padding:9px 9px;
	text-decoration:none;
}
.sf-menu .current_page_item a,
.sf-menu .current_page_ancestor a,
.sf-menu .current_page_parent a {
    border-bottom-color:transparent;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color: #ffffff;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	text-shadow: none;
	font-size:14px;
	height: 20px;
	line-height: 34px;
	font-weight: 700;
	text-decoration: none;
	text-transform:uppercase;
}
.sf-menu li {
	background:		transparent;
}
.sf-menu li li {
	background:		transparent;
}
.sf-menu li li li {
	background:		transparent;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    background:     transparent;
	outline:		0;
	color:			#F6A71D;
    border-bottom-color:transparent;
}
.sf-menu ul {
    border-right:none;
    border-bottom:none;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	top:32px; /* overriding essential styles */
}
.sf-menu ul ul {
    margin-top:0;
}
.sf-menu ul a {
    background:#fafafa;
	border-bottom:none;
}
.sf-menu ul a:hover {
    color: #FF4B33;
}


/* =Content
-------------------------------------------------------------- */

#main {
    clear:both;
	width: 940px!important;
    padding:5px 0 5px 0;
}
.page-title {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.1em;
	color: #000000;	
    padding:0 0 22px 0;
}
.attachment .page-title {
    font-style: normal;
}
.page-title a {
    color:#666;
    text-decoration:none;
}
.page-title a:active,
.page-title a:hover {
    color: #fb7a05;
}
.page-title span {
    font-style: normal;
}
.page-title .meta-nav {
    font-style:normal;
}
.hentry {
    padding:0 0 22px 0;
}
.single .hentry {
    padding:0;
}
.home #content .sticky {
    border:1px solid #ccc;
    margin:0 0 66px 0;
    padding:22px 20px 0 20px;
}
.entry-title {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.1em;
	color: #000000;	
    padding:0;
	margin-left: -0.7px;
}
.entry-title-dark {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.1em;
	color: #ffffff;	
    padding:0;
	margin-left: -0.7px;
}
.entry-title a {
    color:#cd76e9;
    text-decoration:none;
}
.entry-title a:active,
.entry-title a:hover {
    color: #fb7a05;
}
.entry-meta {
    color:#666;
    font-size:12px;
    font-style: normal;
    line-height:1.4em;
	padding-top: 5px;
}
.event-meta {
    font-size:17px;
	min-height: 47px;
	width: 221px;
	padding-left:5px;
	padding-top:19px;
	padding-bottom: 5px;
    line-height:1.25em;
	color: #000000;
	text-shadow: none;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	background:#F6A71D;
	float: left;
}
.meta-sep, .author, .meta-prep-author, .entry-utility {
	display:none;
}
.entry-meta .n {
    font-size:12px;
    font-style:normal;
	text-transform: capitalize;
}
.entry-meta a {
    color:#666;
    text-decoration:none;
}
.entry-meta a:active,
.entry-meta a:hover {
    color: #666;
	text-decoration:underline;
}
.entry-meta abbr {
    border:none;
    cursor:text;
    font-size:12px;
    font-style:normal;
    letter-spacing:0.05em;
	text-transform: lowercase;	
}
.entry-content {
    padding-top:20px;
	width: 560px;
}
.entry-content h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
 	color: #000000;	
	font-size:17px!important;
	font-style: normal!important;
    font-weight:bold;
    line-height:19px;
    padding:28px 0 14px 0;
}
.entry-content h2 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
 	color: #000000;	
	font-size:17px!important;
	font-style: normal!important;
    font-weight:bold;
    line-height:19px;
    padding:14px 0 7px 0;
}
.entry-content h3 {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.4em;	
 	color: #000000;	
    padding:28px 0 14px 0;
}
.entry-content h4 {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.4em;	
 	color: #000000;	
    padding:8px 0 2px 0!important;
}
.entry-content table {
    margin-left:1px;
}
.entry-content embed {
    margin:0 0 22px 0;
}
.entry-utility {
    color:#666;
    font-size:13px;
    line-height:18px;
    margin:0 0 44px 0;
}
.entry-utility a {
    color:#fb7a05;
    font-style: normal;
    text-decoration:none;
}
.entry-utility a:active,
.entry-utility a:hover {
    color: #fb7a05;
	text-decoration:underline;
}
.page-link {
    font-size:13px;
    font-weight:bold;
    line-height:18px;
    margin:0 0 22px 0;
    padding:22px 0 0 0;
    word-spacing:0.5em;
}
.page-link a {
    border:1px solid #ccc;
    color:#fb7a05;
    font-weight:normal;
    padding:0.5em 0.75em;
    text-decoration:none;
}
.page-link a:active,
.page-link a:hover {
    color: #fb7a05;
	text-decoration:underline;
}
ul#links-page,
ul#archives-page {
    list-style:none;
    margin-left:0;
    overflow:hidden;
}
li.content-column {
    float:left;
    margin-right:20px;
    width:45%;
}
.gallery {
    padding:0 0 22px 0;
}
.wp-caption-text,
.gallery-caption {
    color:#666;
    font-size:13px;
    line-height:18px;
}
#author-info {
    margin:0 0 44px 0;
    overflow:hidden;
}
#author-info .avatar {
    float:left;
    margin:.3em 1em 0 0;
}


/* =Attachments
-------------------------------------------------------------- */

.attachment-jpeg #container,
.attachment-png #container,
.attachment-jpeg #fullcontainer,
.attachment-png #fullcontainer {
    width:100%;
}
.attachment-jpeg #content,
.attachment-png #content,
.attachment-jpeg #fullcontent,
.attachment-png #fullcontent {
    width:930px;
}
.attachment-jpeg #comments,
.attachment-png #comments {
    width:540px;
    overflow:hidden;
}
.attachment-jpeg .main-aside,
.attachment-png .main-aside {
    display:none;    
}


/* =Navigation
-------------------------------------------------------------- */

.navigation {
    color:#666;
    font-size:13px;
    line-height:18px;
    margin:0px 0 22px 0;
    overflow:hidden;
}
.navigation a {
    color:#666;
    font-style: normal;
    text-decoration:none;
}
.navigation a:active,
.navigation a:hover {
    color: #FF4B33;
}
.navigation .meta-nav {
    font-style:normal;
}
.nav-previous {
	float: left;
	width:50%;
}
.nav-next {
	float: right;
	width:50%;
	text-align:right;
}
#nav-above,#nav-below {
	width: 100%;
}
#nav-above {
    display:none;
}
.paged #nav-above {
    display:block;
    padding:0 0 44px 0;
}


/* =Comments
-------------------------------------------------------------- */

#comments {
    padding:22px 0 0 0;
	clear:both;
}
#comments,
#comments input,
#comments textarea {
    font-size:13px;
    line-height:18px;
}
#comments code {
    font-size:12px;
    line-height:18px;
}
#comments h3 {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.4em;
 	color: #000000;	
    padding:0 0 18px 0;
}
#comments-list {
    padding:0 0 18px 0;
}
#comments-list ol,
#comments-list ul {
    list-style:none;
    margin:0;
}
#comments-list ol {
    border-bottom:none;
    margin:0 0 18px 0;
}
#comments-list li {
    background:transparent;
    border-bottom:1px dotted #111111;
    padding:18px 0 0 0;
    position:relative;
}
#comments-list li.alt {
    background:transparent;
}
#comments-list li.bypostauthor {
    background:transparent;
}
#comments-list ul li {
    margin:0 0 18px 0;
}
#comments-list li .avatar {
    position:absolute;
    top:22px;
    left:0;
    width:36px;
    height:36px;
}
#comments-list .comment-author {
    font-weight:bold;
    padding:9px 0 0 46px;
}
#comments-list .comment-meta {
    color:#666;
    font-size:13px;
    padding:0 0 9px 46px;
}
#comments-list .comment-meta a {
    color:#fb7a05;
    font-style: normal;
    text-decoration:none;
}
#comments-list .comment-meta a:active,
#comments-list .comment-meta a:hover {
    color: #fb7a05;
	text-decoration:underline;
}
.comment-reply-link {
    font-size:13px;
    padding:0 0 18px 0;
    text-align:right;
}
.comment-reply-link a {
    color:#fb7a05;
    font-style: normal;
    text-decoration:none;
}
.comment-reply-link a:active,
.comment-reply-link a:hover {
    color: #fb7a05;
	text-decoration:underline;
}
.comment-navigation {
    font-weight:bold;
    padding:0 0 18px 0;
    margin-right:0.5em;
}
.comment-navigation a {
    border:1px solid #ccc;
    color:#666;
    font-weight:normal;
    padding:0.5em 0.75em;
    text-decoration:none;
}
.comment-navigation a:active,
.comment-navigation a:hover {
    color: #FF4B33;
}
.comment-navigation a,
.comment-navigation span {
    margin-right:0.5em;
}
#trackbacks-list .comment-content {
    position:absolute;
    left:-9000px;
}
#respond {
    background:transparent;
    margin-bottom:22px;
    overflow:hidden;
    padding:18px 0 0 0;
    position:relative;
}
#comments-list #respond {
    border-bottom:1px solid #ccc;
    margin:0 0 18px 0;
    padding:18px 1.5em;
}
#comments-list ul #respond {
    margin:0;
}
#cancel-comment-reply {
    font-size:13px;
    position:absolute;
    top:18px;
    right:1.5em;
}
#cancel-comment-reply a {
    color:#666;
}
#respond .required {
    color:#FF4B33;
    font-weight:bold;
}
.form-section label {
    font-size:13px;
}
.form-section input {
    margin:0 0 18px 0;
    width:98%;
}
.form-section textarea {
    width:99%;
}
#form-allowed-tags p {
    color:#666;
    font-size:13px;
    margin:0;    
}
#form-allowed-tags span {
    font-style: normal;
}
#form-allowed-tags code {
    font-size:13px;
    line-height:normal;
}
.form-submit {
    padding:18px 0 0 0;
    text-align:right;
}
.subscribe-to-comments {
    color:#666;
    float:left;
    font-size:13px;
    margin:0;
    padding:18px 0 0 0;
}
.solo-subscribe-to-comments {
    color:#666;
    font-size:13px;
    padding:18px 0 0 0;
}
.comment_license {
    color:#666;
    clear:both;
    font-size:13px;
    margin:0;
    padding:18px 0 0 0;
}


/* =Asides, Sidebars & Widget-Ready Areas
-------------------------------------------------------------- */

.aside,
.aside input {
    font-size:13px;
	font-weight:normal;
    line-height:18px;
    margin-bottom:6px;
}
.aside ul,
.aside ol,
.aside dd,
.aside pre {
    margin-bottom:0px;
}
.aside p {
    margin-bottom:2px;
}
.aside pre,
.aside code {
    font-size:12px;
    line-height:18px;
}
.aside .current_page_item a, .current_page_item, .current_page_item a, .current_page_ancestor, .current_page_parent, .current_page_ancestor a,  .current_page_parent a {
    color: #fb7a05!important;
}

.listmenu .current_page_ancestor, .listmenu .current_page_parent, .listmenu .current_page_ancestor a, .listmenu .current_page_parent a {
    color: #ffffff!important;
}

.aside .current_page_item .page_item a {
    color:#fb7a05;
}
.aside .current_page_item .page_item a:hover,
.aside .current_page_item .page_item a:active {
    color: #fb7a05;
	text-decoration:underline;
}
.aside {
    color:#000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px!important;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: 0.03em;
	line-height: 1.5em;
	text-shadow: none;
}
.aside a {
    color:#fb7a05;
}
.aside a:active,
.aside a:hover {
    color: #fb7a05;
	text-decoration:underline;
}
.aside h3 {
    font-size:18px;
    font-style: normal;
    line-height:1.3em;
	font-weight: bold;
	color: #000000;
	margin-bottom: 8px;
	margin-top: 18px;
}
.aside h3 a {
    text-decoration:none;
	color: #F6A71D;
}
.aside caption {
    font-size:13px;
    font-family:Arial,sans-serif;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:0.05em;
}
.aside ul {
    list-style:none;
    margin-left:0;
}
.aside ul ul {
    list-style:none;
    margin:0;
}
.aside ul ul li {
    padding:1px 0;
}
.aside ul ul ul {
    margin-bottom:0;
}
.aside form,
.aside table {
    margin-bottom:22px;
}
.aside table {
    border:none;
}
.aside thead {
    border:0;
}
.aside tbody {
    border:0;
}
.aside th, .aside td {
    border-right:0;
    padding:0;
}
.aside tfoot tr {
    border:none;
}
.aside tfoot td {
    border-color:transparent;
}
.widget_tag_cloud {
    margin:0 0 22px 0;
}
.aside #searchsubmit {
	display: none;	
}
/*
    Main Asides
*/
.main-aside ul {
    padding:0;
}
.main-aside h3 {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.4em;
}
.main-aside ul ul {
    padding:0;
}
#primary {
    border:0;
    padding:0;
	background-color: transparent;
	margin: 0;
}

#primary .widgetcontainer, #secondary .widgetcontainer {
	background: transparent url(images/container.png) repeat;	
	border-left: 1px solid #ccc;
	padding: 35px 30px 50px 30px;
}
/*
    Content Asides
*/
#content .aside {
    border-top:0;
	border-bottom:0;
	border-left:0;
	border-right:0;
    margin:0 0 20px 0;
    padding:10px 0 0 0;
	background: transparent;
}
#content .aside ul {
    padding:0 10px;
}
#content .aside h3 {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.4em;
	color: #000000;
	margin-bottom: 5px;
}
#content .aside ul ul {
    padding:0;
}
/*
    Footer Asides
*/
#subsidiary {
    padding:18px 0 0 0;    
}


/* =Footer
-------------------------------------------------------------- */

#footer {
	border: 0 !important;
    margin-top:10px;
	width: 940px;
	background: transparent;
}
.footertxt {
	font-family: "Trebuchet MS", sans-serif;
	color: #cccccc!important;
}
#siteinfo {
    color:#cccccc;
    font-size:13px;
    line-height:18px;
    padding:10px 0 10px 0;
}
#siteinfo a {
    color:#fb7a05;
}
#siteinfo a:active,
#siteinfo a:hover {
    color: #fb7a05;
	text-decoration:underline;
}


/* =PageNavi
-------------------------------------------------------------- */

/* Using !important to override PageNavi CSS */

.wp-pagenavi {
    margin:0 0 0 -.5em;
    padding:0.5em 0;    
}
.wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi span {
    border:1px solid #ccc !important;
    color:#666!important;
    font-style:normal;
    margin:0 .375em !important;
    padding:0.5em 0.25em !important;
}
.wp-pagenavi a:visited {
    border:1px solid #ccc !important;
    color:#666 !important;
}
.wp-pagenavi a:hover {
    border:1px solid #ccc !important;
    color:#FF4B33 !important;
}
.wp-pagenavi a:active {
    border:1px solid #ccc !important;
    color:#FF4B33 !important;
}
.wp-pagenavi span.pages {
    border:none !important;
    color:#666 !important;
    margin:0 !important;
    padding:0 !important;
}
.wp-pagenavi span.current {
    border:none !important;
    color:#666 !important;
    font-weight:normal !important;
    margin:0 !important;
    padding:0 !important;
}
.wp-pagenavi span.extend {
    background-color:#FFFFFF;
    border:1px solid #000000;
    color:#000000;
    margin:2px;
    padding:2px 4px;
}

/* Moves blog logo and link to the left */
#branding {
  float: left;
  width: 90px;
}


/* Moves the new widgetized area to the right and levels it with #branding */
#header-aside {
  float: right;
  width: 370px;
  height: 60px;
  overflow: visible;
  padding: 0;
  padding-top: 8px;
  text-align:right;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-size: 11px;
}

/* Logging in areas */
.logininput, .logininput-main {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px!important;
	height: 19px;
	line-height: 19px;
	width: 90px;
	vertical-align:middle;
	margin-right:8px;
	margin-left:3px;
	padding-left:10px;
	padding-top:3px;
	background: transparent url(images/loginback.png) no-repeat;
	color: #ffffff!important;
	border: 0;
	margin-top:2px;	
}

input.loginbtn {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 13px!important;
	height: 19px;
	line-height: 15px;
	width: 80px;
	background: transparent;
	color: #ffffff!important;
	border: 0;
	margin-right: 3px;
	cursor:pointer;
	margin-top:2px;
}

.logininput-main {
	background: transparent;
	color: #000000!important;
	margin: 0;
}



#container {
	width: 620px!important;
	margin: 0;
	background: url(images/container.png);
}

#fullcontainer {
	width: 940px!important;
	margin: 0;
	background: url(images/container.png) left top repeat;
}

#fullcontainerdark {
	width: 940px!important;
	margin: 0;
	background: url(images/containerdark80.png) left top repeat;
}

#content {
	width: 580px!important;
	margin-left: 20px !important;
	margin-top: 50px !important; 
	padding-bottom: 30px;	
}

#fullcontent {
	width: 900px!important;
	margin-left: 20px !important;
	padding-top: 50px !important;
	padding-bottom: 30px;
}

.main-aside {
 	right: 0;
	width: 320px;
 }
 
.login-avatar {
	border: #999999 1px solid;
	width: 50px;
	float: right;
	margin-left: 10px;
	margin-top: 2px;
}

.login-link, .login-link a:link, .login-link a:visited {
	color: #ffffff!important;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif!important;;
	font-size: 11px!important;
	text-decoration: none!important;
	word-spacing: -0.1em;
	text-shadow: none;
	font-weight: normal;
	text-decoration: none;	
}

.login-link a:hover, .login-link a:active {
	color: #F6A71D!important;
}

.login-links {
	list-style:	none!important;
	display: inline!important;
	min-height: 0;
}

.login-links li {
	float: right!important;
	margin-left: 10px;
}

.login-message {
	color: #ffffff!important;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif!important;;
	font-size: 16px!important;
	text-decoration: none!important;
	font-weight: normal !important;
	word-spacing: -0.1em;
	padding-top: 12px;
	margin-bottom: 4px;
	background: transparent;
	min-height: 0;
	margin-top: 0;
}

/* Styling for the events page template */
#eventscontainer {
	width: 780px!important;
	float: right;
	background: url(images/container.png);	
	padding-bottom: 20px;
}


#eventscontent {
    margin:50px 20px 0px 20px;
}
#eventscontent h1,
#eventscontent h2 {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.1em;
    padding:0px 0 14px 0;
 	color: #000000;	
}
#eventscontent h3 {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;	
    font-size:17px;
    line-height:19px;
	font-weight:700;
    font-style: normal;
    padding:14px 0 7px 0;
}
#eventscontent h4 {
    font-size:14px;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-weight:bold;
    text-transform:none;
	padding-top: 5px;
	padding-bottom: 2px;
}

/* Widget titles and stuff  */
.widgettitle, .widgettitle h1, .widgettitle h2, .widgettitle h3 {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif!important;
}

/* Twitter widget formating */
.widget_twitter .entry-meta .from-meta {
    display:none;
}

.widget_twitter .entry-meta .time-meta {
	display:none;
}

.reginput{
	font-size: 13px;	
	width: 250px;
	padding: 3px;
	margin-right: 6px;
	border:solid 1px #E6DB55;
	background-color:#FFFFE0;	
	height: 20px;	
}

.inputinput, .logininput-main{
	font-size: 13px;	
	width: 250px;
	padding: 3px;
	margin-right: 6px;
	margin-bottom: 1px;
	border:solid 1px #cccccc;
	background-color:#eeeeee;	
	height: 17px;	
}

.textinput{
	font-size: 13px;	
	width: 300px;
	padding: 3px;
	margin-right: 6px;
	border:solid 1px #cccccc;
	background-color:#eeeeee;	
	margin-bottom: 10px;	
}

.button, #submit, .button a, #submit a, .addthis_share_btn a, .addthis_share_btn a:visited, input.loginbtn-main, .button a:visited, .button:visited {
	background: #fc9200 url(images/alert-overlay.png) repeat-x;
	display: inline-block;
	padding: 5px 10px 6px;
	font-size: 13px!important;	
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold !important;
	color: #fff!important;	
	text-decoration: none;
	font-weight: bold;
	line-height: 1!important;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25) !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;	
	min-height: 0; /* fir for IE */
}

.button:hover, #submit:hover, .addthis_share_btn a:hover {
	background: #E89C21;
	border:solid 1px #E89C21;
	text-decoration:none !important;	
}

.labelclass{
	font-family: Arial, Helvetica, sans-serif!important;
	font-size: 13px;
	font-weight: normal;	
	width: 150px;
	padding-top: 3px;
	margin-right: 6px;
	float: left;
	display: block;
}

.frontlabel{
	font-family: Arial, Helvetica, sans-serif!important;
	font-size: 13px;
	font-weight: bold;	
	width: 70px;
	padding-top: 3px;
	margin-right: 6px;
	float: left;
	display: block;
}

.frontinput {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;	
	width: 160px;
	padding: 3px;
	margin-right: 6px;
	border:solid 1px #cccccc;
	background-color:#eeeeee;	
	margin-bottom: 5px;	
}
.mininput {
	font-size: 13px;	
	width: 50px;
	padding: 3px;
	margin-right: 6px;
	border:solid 1px #cccccc;
	background-color:#eeeeee;	
	margin-bottom: 1px;	
}

.selinput {
	width: 148px;	
	margin-bottom: 1px;	
}


#userphoto-status-pending {
	background-color:yellow;
	padding:3px;
}
#userphoto-upload-error,
#userphoto-status-rejected {
	color:red;
}

#userphoto .field-hint {
	color:gray;
	font-size:smaller
}
#userphoto_delete {
	width:auto !important;
}
#userphoto-approvalstatus-controls.pending label {
	background-color:yellow;
	/*padding:3px;*/
	padding:4px 0 4px 5px;
}
#userphoto-approvalstatus-controls select {
	vertical-align:middle;
}

#userphoto_level_moderated option.none,
#userphoto_admin_notified option.none {
	font-style: normal;
}

#userphoto p.image {
	border:solid 1px #CCC;
	margin-top: 15px;
	text-align:center;
	padding:3px;
	float:left;
	margin-right:20px;
	margin-bottom:15px;
	background-color:white;
}
#userphoto hr {
	clear:both;
	margin:0;
	padding:0;
	height:1px;
	visibility:hidden;
}

#userphoto p.image img {
	/*padding:2px;*/
	border:solid 1px #CCC;
}

#userphoto_options_form input[type=number],
#userphoto_options_form input[type=range]{
	text-align:right;
}
/* Colors for the input fields */
input, textarea {
	font-family: Georgia, serif;
	font-size: 13px;
	color: #222222!important;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.45em;
}

/* calendar sign */
.daysign {
	display: block;
	float: left;
	background-color: #F6A71D;
	width: 54px;
	height: 61px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height:19px;
	padding-top: 2px;
	text-shadow:none !important;
	color: #ffffff;
	font-weight:bold;
}
.daysigninner {
	display: block;
	background-color: #ffffff;
	width: 46px;
	height: 39px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height:42px;
	text-shadow:none !important;
	color: #000000;
	font-weight:bold;
	margin-left:4px;
}
.clearer, .clear {
	clear: both;
	min-height: 0; /*fix for IE*/
}

.regulartitle {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 24px!important;
	font-style: normal!important;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.2em;	
	color: #000000;	
    padding:15px 0 10px 0!important;
}

.regulartitle a {
	text-decoration: none;
	color: #ffffff;
}

.smallertitle {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
 	color: #000000;	
	font-size:16px!important;
	font-style: normal!important;
    font-weight:bold;
    line-height:19px;
    padding:8px 0 2px 0!important;
}
.daysleft {
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px!important;
	font-style: normal!important;
    font-weight:bold;
    line-height:18px;
    padding:0 0 2px 0!important;
}

.message {
    padding: 5px;
    background-color: transparent;
    color: #ffffff;
	font-size:13px;
	font-weight:normal;
}

.message-cal {
    padding: 5px;
    background-color: #f6a71d;
    color: #000;
	font-size:13px;
	font-weight:normal;
  	-moz-border-radius: 4px;
  	-webkit-border-radius: 4px;
  	border-radius: 4px;	
}

.howto
{
	color: #666;
	font-style: normal;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.4em;
}
.formvalue
{
	float: left;
	display: block;
	width: 240px;
	padding-top: 3px;
	font-size: 12px;
	font-weight: bold;
}

.draftvent, .specvent, .repvent, .newvent
{
	color: #fff;
	font-style: normal;
	display: inline!important;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding: 2px 0 2px 0;
	margin-left: 5px;
	overflow: hidden;
	text-transform:uppercase;
	line-height: 1.4em;
}

.draftvent
{
	background-color:#FF0000;
}

.repvent
{
	background-color:#cccccc;
}

p.repvent a
{
	color:#ffffff!important;
}

.specvent
{
	background-color:#ffae00;
}

.newvent
{
	background-color:#465b9b;
}

.viewsw, .viewsw a, .viewsw a:visited, .viewsw:visited {
	background: #cccccc url(images/alert-overlay.png) repeat-x;
	display: inline-block;
	padding: 5px 10px 6px;
	font-size: 13px!important;	
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold !important;
	color: #fff!important;	
	text-decoration: none;
	line-height: 1!important;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25) !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;	
}

.node {
	color: #000000;
	font-style: normal;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.3em;
	z-index: 1;
	background: url(images/container.png) left top repeat;	
}

.usernode {
	padding: 20px;
	z-index: 9;
	min-height: 0px;	
	background: url(images/container.png) left top repeat;	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;	
}

#inner-details {
	color: #000000;
	font-style: normal;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.4em;
	min-height: 2px;
}

.nodec {
	margin-top:-50px;
	padding:10px;
	background: transparent;
	cursor: move;
}

#node190 {
	background: transparent !important;	
}

.package, .package-1, .package-2, .package-3, .package-4
{
	color: #fff;
	font-style: normal;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding: 8px;
	line-height: 1.3em;
/*	background: url(images/containerdark80.png) left top repeat; */
	opacity: 0.8;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin-bottom: 10px;
}

.package-1 {
	background: #465b9b;
	margin-top: 10px;
}

.package-2 {
	background: #467a27;
}

.package-3 {
	background: #47486a;
}

.package-4 {
	background: #ca974f;
}


/* =Pagination
-------------------------------------------------------------- */

.pagicon {
	display: block;
	padding-top: 50px;
	padding-bottom: 30px;
	clear: both;
	float: left;
	overflow-x: hidden;
	overflow-y: hidden;
	width: 100%;
	text-align:center;
	vertical-align:middle;
}

.pagi {
  	list-style: none;
  	float: left;
  	padding: 0;
  	margin: 0;
	left: 50%;
	position: relative;
}

.pagi li {
  	float: left;
	position: relative;
	right: 50%;	
}

.pagi li a {
  	float: left;
  	width: 19px;
  	height: 19px;
  	margin-right: 6px;
  	text-decoration: none;
  	background-color: #ccc;
  	color: #000000;
  	font-size:12px;
  	line-height: 18px;
  	-moz-border-radius: 9.5px;
  	-webkit-border-radius: 9.5px;
  	border-radius: 9.5px;
}


.pagi li a:visited {
    color:#555555;
	background-color: #ccc;
}
.pagi li a:active,
.pagi li a:hover {
    background-color: #fb7a05;
}

.pagi li.on a {
    background-color: #fb7a05;
	color: #000000;
}

.pagi li.prevnext a:link, .pagi li.prevnext a:visited {
	width:inherit;
    background: transparent;
	color: #000000;
}

.pagi li.prevnext a:active, .pagi li.prevnext a:hover {
	width:inherit;
    background: transparent;
	color: #fb7a05;
}

/*
	SLIDER
*/
.slider-wrap { 
	display: block;
	padding-bottom: 10px;
	clear: both;
	float: left;
	overflow-x: hidden;
	overflow-y: hidden;
	width: 100%;
	vertical-align:middle; 	
}			
.stripViewer .panelContainer 
.panel ul									{ text-align: left; margin: 0 15px 0 30px; }

.stripViewer								{ position: relative; overflow: hidden; width: 260px; height: 260px; }
.stripViewer .panelContainer				{ position: relative; left: 0; top: 0; }
.stripViewer .panelContainer .panel			{ float: left; height: 260px; position: relative; width: 260px; }
.stripNavL, .stripNavR, .stripNav			{ display: none; }
.nav-thumb 									{ margin-right: 5px; }
#movers-row { 
	margin: 0; 
	float: left; 
	padding: 0; 
	margin: 0; 
	left: 50%; 
	position: relative;
}

#movers-row div	{ 
	width: 10px; 
	float: left; 
	margin-right: 5px; 
	position: relative; 
	right: 50%;
}

#movers-row div a.cross-link { 
	float: right; 
}

.photo-meta-data { 
	background: url(images/containerdark.png); 
	padding: 10px; 
	width: 240px;
	position: absolute; 
	bottom: 0; 
	z-index: 50; 
}

.photo-meta-data span { 
	font-size: 13px;
	color: #fff; 
}

.cross-link	{ 
	display: block; 
	width: 10px; 
	margin-top: -9px; 
	position: relative; 
	padding-top: 15px; 
	z-index: 9999; 
}

.active-thumb { 
	background: transparent url(images/uparrow.png) top center no-repeat; 
}

.opacity { 
	opacity: 0.50; 
	filter:alpha(opacity=50);	
}

.nav-thumb-min { 
	position: relative;
	margin-right: 4px;
	z-index: 9999;	
	width: 5px;
}

.nav-thumb-img { 
	padding-top: 7px;
}

.active-thumb-min { 
	background: transparent url(images/uparrow-min.png) no-repeat 50% 0; 
}

.nodisplay {
	display: none;
}

.loader {
	width: 900px;
	height: 300px;
	background: transparent url(images/ajax-loader.gif) center center no-repeat; 	
}

.loader-f {
	width: 260px;
	height: 260px;
	background: transparent url(images/ajax-loader.gif) center center no-repeat; 	
}

.loader-a {
	width: 560px;
	height: 300px;
	background: transparent url(images/ajax-loader.gif) center center no-repeat; 	
}

div .news {
	border-top: 1px solid #CCC;	
	margin-top: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.news a {
	color: #000;
	text-decoration: none;
}
.news a:hover {
	color: #fb7a05;
}
.news h2 {
	font-size: 13px;
	color: #999;
}


