/*
Theme Name: H und P Consulting
Theme URI: http://tropixel.com.au
Description: Custom Template for H und P Consulting.
Version: 1.0
Author: Tropixel
Author URI: http://tropixel.com.au
Tags: blue, widgets

*/


body {
	margin: 0;
	padding: 0;
	height: 100%;
	text-align: center;
	min-width: 955px;
	font-size: 13px;
}
html {
	margin: 0;
	padding: 0;
	height: 100%;
	text-align: center;
	min-width: 955px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
	color: #3964a6;
	padding: 0px;
	margin: 0px 0px 8px 0px;
}
h2, h3, h4, h5, h6 {
	margin: 20px 0px 8px 0px;
}
div + h2, div + p {
	margin-top: 0px;
}
h3, h4 {
	color: #000;
}
h1 {
	font-size: 20px;
}
h2 {
	font-size: 16px;
}
h3 {
	font-size: 14px;
}
p {
	padding: 0;
	margin: 0 0 8px 0;
}
#bgcontain {
	width: 955px;
	margin: 0 auto;
	text-align: left;
}
/* IE min height hack */ * html .container {
	height: 250px;
}
.container {
	float: left;
	width: 915px;
	clear: both;
	min-height: 250px;
	background: #FFF;
	padding: 20px;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.header h1.HeaderImage {
	padding: 0;
	margin: 20px 0 19px 0;
	float: left;
	height: 76px;
}
.header {
	width: 955px;
	position: relative;
	height: 192px;
}
/* Top Menu (Site Menu - SiteMenuPanel.html) 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 

.TopMenu { position: absolute; top: -23px; left: 0px; }
.TopMenu ul { padding: 0px; margin: 0px;}
.TopMenu li { padding: 0px 5px; margin: 0px; list-style-type: none; display: inline; font-size: 10px;}
.TopMenu li a { text-decoration: underline;}
.TopMenu li a:visited { text-decoration: underline;}
.TopMenu li a:hover { text-decoration: none; text-decoration: underline;}*/

/* DropDown Menu ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.menu {
	float: left;
	clear: both;
	left: 0px;
	line-height: 40px;
}
.menu a, .menu li a:visited {
	cursor:pointer;
	display:block;
	height:39px;
	padding:0 15px;
	position:relative;
	text-decoration:none;
}
.menu a:link, .menu a:visited {
	color:#FFF;
}
/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	background-image: none;
	list-style-image: none;
}
.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	clear: none; 	/* move all main list items into one row, by floating them */
	position: relative; /* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5; /* thus we need to apply explicit z-index here... */
	color: FFF;
	font-size: 12px;
	background-image: none;
	list-style-image: none;
}
.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}
.menu a:hover {
	text-decoration: none;
}
.menu li:hover/*>a*/ {
	color: white;
	background: url(images/MenuBullet.jpg) no-repeat top center;
}
.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
	width: 750px;
	height: auto;
	clear: none;
}
.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}
.menu li li {
	float: left;
	padding: 0;
	margin: 0;
	line-height: 38px;
	height: auto;
	/*position: relative;*/
	clear: none;
	white-space: nowrap;
	position: relative;
	width: auto;
}
.menu ul a, .menu ul a:visited, .menu ul a:link, .menu ul a:visited {
	color: #2f5289;
	padding: 0 10px;
}
.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}
.menu li li:hover>a {
	color: white;
	background: url(images/SubMenuBullet.gif) no-repeat top center;
}
/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0; /*display: block; */
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	width: 955px;/*padding: 11px 30px 30px 30px;
	margin: -10px 0 0 -30px;*/
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
/*.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}*/
/* ie 6 only style */
* html .menu a:hover, * html .menu .adxmhoverA {		/* li:hover>a selector */
	color: white;
	text-decoration: none;
}
/* -- sticky.submenu.END -- */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.content {
	float: left;
	width: 600px;
	padding: 0px;
	padding-right: 20px;
	border-right: solid 1px #CCC;
}
/* BreadCrumb */
.content .BreadCrumb {
	background: #f2f2f2;
}
.content .BreadCrumb {
	font-size: 11px;
	margin: 0px 0px 15px 0px;
	padding:7px;
	color:#666;
}
.content .BreadCrumb ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px 0px 0px 20px;
	background: url(images/BreadCrumbIcoUl.png) no-repeat left center;
}
.content .BreadCrumb li {
	background: url(images/trail_arrow.gif) no-repeat left center;
	margin: 0px 4px 0px 0px;
	padding: 0px 0px 0px 10px;
	text-decoration: none;
	display: inline;
}
.content .BreadCrumb li a {
	margin: 0px;
	padding: 0px;
	text-decoration: underline;
}
/* article */
.content .PostItem {
	display: block;
	clear: both;
}
.Intro {
	margin-bottom: 20px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Articles {
	margin: 0px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Featured {
	margin: 0px 0px;
	clear: left;
}
.Featured h1 {
	padding-left: 25px;
	background: url(images/FeaturedIcoHeading.png) no-repeat left center;
	margin-bottom: 10px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.RecentArticles {
	margin: 20px 0px;
}
.RecentArticles h1 {
	margin-bottom: 10px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Categories {
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Blogs {
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* IE min height hack */ * html .Authors {
	height: 150px;
}
.Authors {
	min-height: 150px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Pages {
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.News {
}
.News h1 {
	padding-left: 25px;
	background: url(images/NewsIcoHeading.png) no-repeat left center;
	margin-bottom: 10px;
}
.News h2 {
	font-size: 11px;
	letter-spacing: -1px;
	padding: 0px;
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.News .Post {
	padding: 3px 0px;
	border-bottom: solid 1px #e0e0e0;
}
.News .Post .PostInfo {
	padding: 0px;
	margin: 0px;
	font-size: 9px;
	color:#ad9f98;
}
.News .Post .PostContent {
	font-size: 11px;
	color:#333;
	line-height: 15px;
}
.News .Post .PostContent p {
	padding: 4px 0px;
	margin: 4px 0px;
	font-size: 11px;
}
.News .Post .readmore {
	background: url(images/icon_FullStory.png) no-repeat left center;
	padding-left: 17px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.SearchResults {
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#RecentBlogsPanel {
	float: right;
	width: 220px;
}
/* Recent Blogs */
.RecentBlogs {
	background: #fff;
	font-size: 11px;
	padding: 0px 0px 0px 20px;
	float: right;
	width: 220px;
}
.RecentBlogs h1 {
	padding-left: 25px;
	background: url(images/RecentBlogIcoHeading.png) no-repeat left center;
	margin-bottom: 10px;
}
.RecentBlogs ul {
	padding: 0px;
	margin: 10px 0px;
}
.RecentBlogs li {
	padding: 5px 0px;
	margin: 0px;
	list-style-type: none;
	font-size: 9px;
	border-bottom: solid 1px #e0e0e0;
}
.RecentBlogs big {
	font-size: 11px;
	display: block;
	font-weight: bold;
	letter-spacing: -1px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Post */
.Post {
	padding: 0px;
	margin: 0px;
}
/* Post Author left side from the article */
.Post .PostAuthorDetails {
	float: right;
	padding: 10px;
	margin: 0px 0px 10px 20px;
	width: 200px;
	font-size: 11px;
	border-bottom: #fff 10px solid;
	border-left: #fff 10px solid;
}
.Post .PostAuthorDetails h2 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: normal;
	padding: 0px 0px 5px 0px;
	margin: 0px;
}
.Post .PostAuthorDetails p {
	font-size: 10px;
	padding: 3px 0px;
	margin: 0px;
	color:#333;
}
.Post .PostAuthorDetails img {
	margin: 0px 10px 0px 0px;
	padding: 1px;
	border: solid 1px #ccc;
	float: left;
}
/* Post Head */
.Post .PostHead {
}
.Post .PostHead h1 {
	padding: 2px 0px;
	margin: 2px 0px;
}
.Post .PostHead h2 {
	padding: 2px 0px;
	margin: 0 0 15px 0;
}
/* Post Info/Details */
.Post .PostInfo {
	padding: 5px;
	margin: 0px 0px 10px 0px;
	font-size: 10px;
	background: #f6f6f6;
	color:#7e8996;
}
.Post .PostInfo li {
	padding: 0px;
	margin: 0px;
	display: inline;
	list-style-type: none;
}
.Post .PostInfo a {
	color: #7e8996;
	text-decoration: underline;
	font-weight: bold;
}
.Post .PostInfo .Author {
	border-right: solid 1px #7e8996;
	padding: 0px 5px 0px 0px;
	display: none;
}
.Post .PostInfo .Time {
	border-right: solid 1px #7e8996;
	padding: 0px 5px 0px 5px;
}
.Post .PostInfo .Categ {
	border-right: solid 1px #7e8996;
	padding: 0px 5px 0px 5px;
}
.Post .PostInfo .Rating {
	padding: 0px 0px 0px 5px;
}
/* Post Content */
.Post .PostContent {
	margin: 0px;
	padding: 10px 0px;
	font-size: 11px;
	line-height: 15px;
}
.Post .PostContent img {
	margin: 0px 10px 10px 0px;
	padding: 1px;
	border: solid 1px #ccc;
}
.Post .PostContent p {
	font-size: 11px;
	line-height: 15px;
}
/* Post Content -Single Page */
.Post .PostContentSingle {
}
.Post .PostContentSingle img {
}
.Post .PostContentSingle h1 {
}
.Post .PostContentSingle p {
	padding: 0;
	margin: 6px 0px;
}
/* Post Bottom - Printer Version +  Full story + Visit Site */
.Post .PostBottom {
	padding: 5px 0px 15px 0px;
	margin: 0px;
}
.Post .PostBottom li {
	padding: 2px 0px;
	margin: 0px 5px 0px 0px;
	list-style-type: none;
	display: inline;
	font-size: 10px;
}
.Post .PostBottom li a {
	text-decoration: underline;
}
.Post .PostBottom li a:visited {
	text-decoration: underline;
}
.Post .PostBottom li a:hover {
	text-decoration: underline;
}
.Post .PostBottom .FullStory {
	background: url(images/icon_FullStory.png) no-repeat left center;
	padding-left: 17px;
}
.Post .PostBottom .VisitSite {
	background: url(images/icon_VisitSite.png) no-repeat left center;
	padding-left: 17px;
}
.Post .PostBottom .PrinterVersion {
	background: url(images/icon_PrinterVersion.png) no-repeat left center;
	padding-left: 17px;
}
.Post .PostBottom .EditArticle {
	background: url(images/icon_EditArticle.png) no-repeat left center;
	padding-left: 17px;
}
/* Article More Related Info */
.Post .PostMore {
	padding: 0px;
	margin: 5px 0px 5px 0px;
}
.Post .PostMore h1 {
	font-size: 23px;
	padding: 5px 0px;
	margin: 0px;
}
/* Article Comments */
.Post .PostMore .Comment, .Post .PostMore .CommentAlt {
	padding: 5px 10px 10px 10px;
}
.Post .PostMore .Comment .Title, .Post .PostMore .CommentAlt .Title {
	font-size: 12px;
	padding: 4px 3px;
	padding-left:40px;
	margin: 0px;
}
.Post .PostMore .Comment .Details, .Post .PostMore .CommentAlt .Details {
	font-size: 9px;
	padding: 0px 3px;
	padding-left:40px;
	margin: 0px;
	color: #7E8996;
}
.Post .PostMore .Comment .Reply, .Post .PostMore .CommentAlt .Reply {
	float: right;
	font-size: 9px;
	padding-top:4px;
	color: #7E8996;
	clear: both;
}
.Post .PostMore .Comment .Content, .Post .PostMore .CommentAlt .Content {
	font-size: 11px;
	padding: 10px 0px 0px 5px;
	margin: 0px;
}
/* Article Submit Comments */
.PostSubmitComments {
	font-size: 10px;
}
/* Article Navigation */
/* IE min height hack */ * html .ArtNav {
	height: 15px;
}
.ArtNav {
	font-size: 11px;
	line-height: 13px;
	background: #f5f5f5;
	padding: 6px;
	min-height: 15px;
}
.ArtNav strong {
	letter-spacing: -1px;
}
.ArtNavLeft {
	float: left
}
.ArtNavRight {
	float: right
}
/* Paging */
.Paging {
	text-align: right;
	padding: 6px;
	margin: 5px 0px;
	font-size: 10px;
	line-height: 15px;
}
.Paging strong {
	letter-spacing: -1px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Category Top ( Only on the Category page)  */
.Category {
	padding: 0px;
	margin: 10px 0px 10px 0px;
}
.Category h1 {
	font-size: 25px;
	float:left;
}
.Category .Desc {
	font-size: 10px;
	line-height: 14px;
	clear: both;
}
.Category .rss {
	float: right;
	padding-top: 14px;
}
.Category .SubCategory ul {
	padding: 15px 0px 5px 0px;
	margin: 0px;
}
.Category .SubCategory li {
	padding: 2px 0px 2px 15px;
	margin: 0px;
	font-size: 11px;
	list-style-type: none;
}
.Category .SubCategory ul {
	width: 38em;
}
.Category .SubCategory ul li {
	float: left;
	width: 15em;  /* accommodate the widest item */
}
/* stop the floating after the list */
.Category .SubCategory br {
	clear: left;
}
/* separate the list from what follows it */
.Category .SubCategory {
	clear: both;
	margin-bottom: 1em;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Authors A-Z - ( Only on the Author page) */
.AZ {
	padding: 0px;
	margin: 15px 0px;
	position: relative;
	font-size: 10px;
	font-weight: bold;
}
.AZ ul {
	padding: 5px 0px;
	margin: 0px;
}
.AZ li {
	padding: 0px 1px;
	margin: 0px;
	list-style-type: none;
	display: inline;
}
.AZ a {
	padding: 0px 3px;
	margin-right: 1px;
}
.AZ a:visited {
	padding: 1px 3px;
}
.AZ a:hover {
	padding: 1px 3px;
}
.ListAuthors {
}
.ListAuthors ul {
	margin: 0px;
	padding: 0px 0px 0px 20px;
}
.ListAuthors li {
	line-height: 16px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* PageForms */

.PageForms tr td {
	padding: 10px;
}
.PageForms tr td table tr td {
	padding: 3px;
	font-size: 11px;
}
.PageForms tr td table tr td table tr td {
	padding: 0px;
	font-size: 11px;
}
.PageForms {
	font-size: 10px;
}
.PageForms form {
}
.PageForms tr td {
	padding: 10px;
}
.PageForms th {
	padding: 10px 2px 10px 10px;
	text-align: left;
	font-size: 13px;
	font-family: "Trebuchet MS";
	font-weight: normal;
}
.PageForms tr td table tr td {
	padding: 3px;
	font-size: 11px;
}
.PageForms tr td table tr td table tr td {
	padding: 0px;
	font-size: 11px;
}
.PageForms td table td input {
	padding: 3px;
}
.PageForms td table td input.keyfield {
	border: inset 1px #ccc;
	padding: 3px;
}
.PageForms td table td textarea {
	border: inset 1px #ccc;
	padding: 5px;
}
.PageForms td table td select {
	border: inset 1px #ccc;
	padding: 2px;
}
.PageForms .Button {
	font-size: 10px;
	padding: 2px 5px;
	border: outset 2px #e0e0e0;
	font-weight: bold;
}
.PageForms .Required {
	color:#FF0000;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Message */
.Message {
	color: #ff4e00;
	background: url('images/warning.gif') #FFFFCC no-repeat 5px center;
	font-size: 11px;
	padding: 5px 5px 5px 25px;
	line-height: 16px;
	border: 1px solid #FFCC66;
	margin-left: 5px;
}
.ErrorMessage {
	color: #ff0000;
	background: url('images/exclamation.png') no-repeat left center;
	font-size: 11px;
	padding-left: 20px;
	line-height: 16px;
}
.SuccessMessage {
	color: #66ad00;
	background: url('images/success.png') no-repeat left center;
	font-size: 11px;
	padding-left: 20px;
	line-height: 16px;
}
/* tabs styles */
#tabnav {
	height: 26px;
	margin: 0px 0px 10px 0px;
	padding-left: 6px;
	background: url('images/tab_bottom.gif') repeat-x bottom;
}
#tabnav li {
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}
#tabnav li a {
}
#tabnav li a:visited {
}
#tabnav li a:hover {
}
#tabnav .navlinks {
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
	float: right;
}
.tablink {
	float: left;
}
#tabnav .tablink a:link, #tabnav .tablink a:visited {
	float: left;
	font-size: 10px;
	line-height: 14px;
	font-weight: bold;
	padding: 5px 10px 5px 10px;
	margin: 0px 4px 0px 0px;
	text-decoration: none;
}
#tabnav .tablink a:link.active, #tabnav .tablink a:visited.active {
}
#tabnav a:hover {
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.ViewAll {
	background: url(images/ico_view_all.png) no-repeat left center;
	padding-left: 13px;
	font-size: 10px;
	font-weight: bold;
	color:#33b0ee;
}
.ViewAll a {
	color:#33b0ee;
}
.ViewAll a:visited {
	color:#33b0ee;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.right {
	float: left;
	width: 250px;
	padding-left: 25px;
}
.right ul { /*padding: 10px ; margin: 10px; list-style-image: url(images/ArrowLeft.png);*/
}
.right li {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}
.right h2 {
	padding: 0px 0px 10px 0px;
	font-size: 14px;
	line-height: 14px;
	margin: 0px;
}
.right li a {
	font-size: 11px;
}
.right li a:visited {
}
.right .Categories {
	margin-bottom: 15px;
}
.right .Categories h2 { /*background: url(images/IcoCategories.png) no-repeat left top; padding-left: 20px; margin-bottom: 10px;*/
}
.right .Categories ul {
	margin: 0;
	padding: 0;/*padding:0px; margin:0px;padding-top: 0px;  border-top: solid 1px #dfe6ec; padding-bottom: 0px; list-style-image: none;*/
}
.right .Categories li a {
	text-decoration: none; /*font-size: 12px; padding-left: 15px;display: block; border-bottom: solid 1px #dfe6ec; background: url(images/ArrowLeft.png) no-repeat left top; padding-top: 3px; padding-bottom: 3px;*/
}
.right .Categories li a:hover {
}
.right .Categories li {
}
.right .ArticleOptions {
	margin-bottom: 15px;
}
.right .ArticleOptions h2 {
	background: url(images/IcoArticleOptions.png) no-repeat left top;
	padding-left: 20px;
}
.right .ArticleOptions li a {
}
.right .ArticleOptions .EmailToFried {
	background: url(images/ArticleOptionsEmail.png) no-repeat left center;
	padding-left: 15px;
}
.right .ArticleOptions .PrintArticle {
	background: url(images/ArticleOptionsPrint.png) no-repeat left center;
	padding-left: 15px;
}
.right .ArticleOptions .RemoveFavorites {
	background: url(images/ArticleOptionsFavorites.png) no-repeat left center;
	padding-left: 15px;
}
.right .ArticleOptions .AddToFavorites {
	background: url(images/ArticleOptionsFavorites.png) no-repeat left center;
	padding-left: 15px;
}
.right .ArticleOptions .ArticlesToRead {
	background: url(images/ArticleOptionsRead.png) no-repeat left center;
	padding-left: 15px;
}
.right .ArticleOptions .RemoveRead {
	background: url(images/ArticleOptionsRead.png) no-repeat left center;
	padding-left: 15px;
}
.right .PopularArticles {
	margin-bottom: 15px;
}
.right .PopularArticles h2 {
	background: url(images/IcoPopularArticles.png) no-repeat left top;
	padding-left: 20px;
}
.right .PopularArticles li a {
}
.right .FavoriteArticles {
	margin-bottom: 15px;
}
.right .FavoriteArticles h2 {
	background: url(images/IcoFavoriteArticles.png) no-repeat left top;
	padding-left: 20px;
}
.right .FavoriteArticles li a {
}
.right .ArticlesToRead {
	margin-bottom: 15px;
}
.right .ArticlesToRead h2 {
	background: url(images/IcoArticlesToRead.png) no-repeat left top;
	padding-left: 20px;
}
.right .ArticlesToRead li a {
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.EmailToFriend {
	background: #fff;
	margin: 30px;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.footer {
	padding: 5px;
	width: 945px;
	line-height: 25px;
	margin: 0 auto;
	background: #f3f3f3;
	clear: both;
	color:#999;
}
.footer p {
	padding: 0px;
	margin: 0px;
	font-size: 10px;
}
.footer .search {
	width: 300px;
	padding: 3px 0 0 0;
	float: right;
}
.footer .search h2 {
	float: left;
	font-size: 10px;
	color:#999;
	margin: 0 5px 0 0;
	padding: 0px;
}
.footer .search strong {
	display: none;
}
.footer .search form {
	padding: 0px;
	margin: 0px;
}
.footer .search .input {
	float: left;
	background:#fff;
	font-size: 11px;
	padding: 2px;
	border: solid 1px #ccc;
	margin: 0px;
}
.footer .search .arrow {
	float: left;
	width: 17px;
	height: 20px;
	background: url(images/Search.gif) no-repeat;
}
.footer .search p {
	padding: 3px 0px;
	margin: 0px;
	font-size: 10px;
}
.footer .search p a {
}
/* Spread the Word */
.SpreadTheWord {
}
.SpreadTheWord ul {
	padding: 0px;
	margin: 0px;
}
.SpreadTheWord li {
	padding: 0px 2px;
	margin: 0px;
	list-style-type: none;
	display: inline;
	font-size: 11px;
	line-height: 16px;
}
/* Paging */
.Paging {
	text-align: right;
	padding: 6px;
	margin: 5px 0px;
	font-size: 10px;
	line-height: 15px;
}
.Paging strong {
	letter-spacing: -1px;
}
.Paging a {
	display: inline;
	padding: 2px 5px;
}
.Paging a:visited {
}
.Paging a:hover {
	text-decoration: none;
}
.PagingDisabled {
	display: inline;
	padding: 2px 5px;
}
.PagingCurrentPageNumber {
	display: inline;
	font-weight: bold;
	padding: 2px 5px;
}
.msgWarning {
	background-image: url('images/warning.gif');
	background-repeat: no-repeat;
	background-position: 6px 7px;
	font: normal 11px/18px Tahoma;
	padding: 5px;
	margin-bottom: 15px;
	padding-left: 25px;
	border: dotted 1px #C0C0C0;
	background-color: lightyellow;
	color: #333333;
	text-decoration: none;
	display: '';
	z-index:1000;
	width: 220px;
}
.ArticleExtraContent {
	font-size: 11px;
}
.ArticleExtra ol, .ArticleExtra ol li {
	font-size: 11px;
}
.ArticleExtra ul, .ArticleExtra ul li {
	font-size: 11px;
}
.ArticleExtra ul {
	padding-top: 0px;
	padding-bottom: 0px;
	margin:0px;
	list-style-type: none;
	padding-left: 20px;
}
.ArticleExtra ul li a {
	font-size: 11px;
	display: block;
	padding-left: 20px;
	background: url(images/ArrowLeft.png) no-repeat left top;
}
.FloatNone {
	float: none;
}
.FloatRight {
	float: right;
}
.FloatLeft {
	float: left;
}
/* Summary Article Attachment */
.AttachmentList {
	padding: 6px;
}
.AttachmentList ul {
	padding-top: 0px;
	padding-bottom: 0px;
	margin:0px;
	list-style-type: none;
	padding-left: 20px;
}
.AttachmentList ul li {
	padding: 3px;
}
.AttachmentList ul li a {
	font-size: 10px;
	display: block;
	padding-left: 20px;
}
.AttachmentHeading {
	font-size: 11px;
	font-weight: bold;
	font-family:Arial, Helvetica, sans-serif;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.right .Newsletter {
	margin-bottom: 15px;
	font-size: 11px;
}
.right .Newsletter h2 {
	background: url(images/IcoNewsletter.png) no-repeat left top;
	padding-left: 20px;
	margin-bottom: 10px;
}
/* Teaser Image Styles */
.FeatureImageSpan {
	font-size: 9px;
	margin: 5px;
}
.FeatureImageCaption {
	padding-left: 3px;
	padding-right: 3px;
}
/* --------------------------------------------------------------------------- Wordpress Things */

.loginFooter {
	width: 100%;
	border-bottom: dotted 1px #CCCCCC;
	border-top: dotted 1px #CCCCCC;
	padding: 10px 0;
	margin: 10px 0;
	float: left;
	clear: both;
	font-size: 10px;
}
.loginFooter p.editPage {
	width: 50%;
	padding: 0;
	margin: 0;
	text-align: left;
	float: left;
}
.loginFooter p.logOut {
	width: 50%;
	padding: 0;
	margin: 0;
	text-align: right;
	float: right;
}
.changeLanguage {
	float: right;
	width: 100px;
	display: block;
	font-size: 9px;
	text-align: right;
}
.changeLanguage a {
	display: block;
	width: 80px;
	padding-right: 20px;
	height: 40px;
	line-height: 40px;
	color: #81A1CF;
	text-decoration: none;
	background: right 15px no-repeat;
}
.changeLanguage a:hover {
	color: #FFFFFF;
}
.changeLanguage a.english {
	background-image: url(images/gb.png);
}
.changeLanguage a.german {
	background-image: url(images/de.png);
}
.HundPTable td {
	padding: 3px 10px;
	border-bottom: 1px solid #DDD;
}
.HundPTable tr:hover {
	background: #f1f1f1;
}
.HundPTable h3 {
	margin: 0;
	padding: 0;
}
.HeaderData {
	background: #3965a6;
	line-height: 16px;
	color: #fff;
	font-size: 13px;
}
ul.forms {
	padding: 0;
	margin: 0;
	width: auto;
}
ul.forms li {
	list-style: none;
	background: none;
	border-bottom: solid 1px #EFEFEF;
	clear: left;
	padding: 2px 0;
}
ul.forms label {
	float: left;
	width: 150px;
	text-align: right;
	padding-right: 15px;
}
ul.forms input, ul.forms textarea, ul.forms select {
	border: solid 1px #3965a6;
	padding: 2px;
}
ul.forms .Submit input {
	background: #3965a6;
	padding: 2px 5px;
	margin-left: 140px;
	color: #FFF;
}
ul.forms li.Submit {
	border: none;
}
.alignleft {
	float: left;
	margin-right: 10px;
}
/* Custom ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#sidebar ul {
	margin: 0;
	padding: 0;
	width: auto;
}
#sidebar ul li {
	margin: 0;
	padding: 0;
	width: auto;
	list-style: none;
	background: none;
}
#LeftCol {
	float: left;
	width: 600px;
	padding-right: 20px;
	border-right: solid 1px #CCC;
}
#LeftCol img {
	float: left;
	margin-right: 10px;
}
#RightCol {
	float: left;
	width: 274px;
	padding:0 0 50px 20px;
}
.Workshops, .Workshops2 {
	width: 403px;
	height: 211px;
	background: url(images/WorkshopBg.jpg) no-repeat;
	text-decoration: none;
	color: #333333;
	float: left;
	font-size: 13px;
	padding: 0 20px;
	margin-bottom: 25px;
}
.Workshops:hover, .Workshops2:hover {
	color: #3864a5;
}
.Workshops2 {
	background-position: -443px top;
}
.Workshops li, .Workshops2 li {
	line-height: 125%;
}
.Workshops ul, .Workshops2 ul {
	margin: 0;
}
.Workshops h2, .Workshops2 h2 {
	padding: 0;
	line-height: 36px;
	margin: 0 0 10px 0;
	display: block;
	text-align: center;
	color: #FFF;
}
li#categories-3 ul li, .QuickNaviProdukt li, .QuickNavi li, .right .Categories li {
	font-size: 13px;
	line-height: 27px;
	background: url(images/QuickNaviLi.jpg) no-repeat;
	background-position: -275px top;
	padding: 0 15px;
	margin: 0 0 1px 0;
	list-style: none;
	list-style-image: none;
	width: 245px;
}
li#categories-3 ul li, .QuickNaviProdukt, .QuickNavi, .right .Categories {
	list-style: none;
}
li#categories-3 ul li, .QuickNavi li, .right .Categories li {
	background-position: -275px -27px;
}
.QuickNaviProdukt li:hover {
	background-position: left top;
}
li#categories-3 ul li:hover, .QuickNavi li:hover, .right .Categories li:hover {
	background-position: left -27px;
}
li#categories-3 ul li a, .QuickNavi li a, .QuickNaviProdukt li a {
	color: #333;
	text-decoration: none;
	display: block;
}
li#categories-3 ul li a {
	display: inline;
}
.QuickNavi, .QuickNaviProdukt {
	padding: 0;
	margin: 0 0 20px 0;
}
.BorderBottom td {
	border-bottom: solid 1px #CCC;
}
.GlossarTable td {
	padding: 1px 5px;
	border-bottom: solid 1px #EFEFEF;
}
#sidebar li#recent-posts-3 li {
	margin-bottom: 7px;
}
#sidebar li#recent-posts-3 li a {
	text-decoration: none;
}
#sidebar li#recent-posts-3 li a:hover {
	text-decoration: underline;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Posts Listing */

.postList .post {
	border-top:1px dotted #CBCBCB;
	margin:20px 0;
	padding:10px 0;
}
.post h2 {
	font-size:20px;
	font-weight:normal;
	text-decoration:none;
}
.postList small {
	color:#D9D9D9;
	display:block;
	margin:-5px 0 15px;
}
.post p {
	clear: left;
}
.navigation {
	padding: 10px 0;
	border-bottom:1px dotted #CBCBCB;
	height: 20px;
}
.navigation a:link, .navigation a:visited, .navigation a:active {
	color: #CBCBCB;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Events */

#bgcontain .ec3_list, #bgcontain table.ec3_schedule {
	background-color: #B5D512;
	color: #FFF;
	padding: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-weight:bold;
	border: none;
	font-size: 90%;
}
#bgcontain .ec3_list ul {
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color:#FFFFFF;
	margin-top:5px;
	padding:2px;
	font-weight: normal;
}
#bgcontain table.ec3_schedule {
	clear: both;
}
#bgcontain table.ec3_schedule td {
	color: #FFF;
	font-weight: normal;
	padding:3px 6px;
}
.ec3_schedule td:before {
	content: "Event Datum ";
}
.ec3_eventday, .ec3_postday {
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #B5D512;
	color: #FFF;
}
.ec3_postday {
	background-color: #DFEF86;
}
.ec3_postday:hover {
	background-color: #B5D512;
}
#bgcontain .ec3_eventday a.eventday, #bgcontain .ec3_postday a {
	color: #FFF !important;
	width: 100%;
	height: 100%;
	display: block;
}
#bgcontain #wp-calendar table td:hover, #bgcontain #wp-calendar table #today {
	border: 1px solid #B5D512;
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Resources */
#linkcat-8 li {
	background: url(images/trail_arrow.gif) no-repeat left center;
}
.postmetadata {
	display: noen;
}

