/*  @group: itseiten-extended.css

	@author: 	Milan Matull
	@media: 	Screen
	@browser: 	Mozilla Firefox, Apple Safari
	@fixes: 	None, Internex Explorer Specific CSS files linked by using conditional comments.
------------------------------------------------------------------------------------ */

/*  @group: general
	@desc:	Set basic line height, colors and common html elements.
------------------------------------------------------------------------------------ */

body {
	background: #fff url(/assets/design/body-bg.jpg) 0 0 repeat-x; /* Sets gradient background to repeat horizontally */
	color: #111; /* Use a slightly lighter color than black for body text */
	font-family: arial, helvetica, sans-serif;
  	_font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2",sans-serif;
	background: #fff;
}

p, .p, li, dt, dd, td, th, label, address, legend {
	font-size: 11px;
	line-height: 15px;
}

th, td {
	text-align: left;
	vertical-align: top;
}

strong {
	font-weight: bold;
}

.title p,
.title .p,
.title h1,
.title .h1,
.title h2,
.title .h2,
.title h3,
.title .h3,
.title h4,
.title .h4,
.title h5,
.title .h5,
.title h6,
.title .h6{
    padding-left: 5px;
}


p, .p {
	margin: 0 0 15px 0;
}

h1, .h1 {
	margin: 0 0 15px;
	font-weight: bold;
	font-size: 18px;
	line-height: 15px;
	font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2", arial, helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
	color: inherit;
}

h2, .h2 {
	margin: 0 0 15px;
	font-weight: bold;
	font-size: 15px;
	line-height: 15px;
	font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2", arial, helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
	color: inherit;
}

h3, .h3 {
	margin: 0 0 15px 0;
	font-weight: bold;
	font-size: 11px;
	line-height: 15px;
	text-transform: none;
	color: inherit;
}

h4, .h4 {
	margin: 0 0 15px 0;
	font-size: 11px;
	line-height: 15px;
	color: #666;
	text-transform: none;
}

h5, .h5 {
	font-size: 10px;
	line-height: 15px;
	text-transform: uppercase;
	color: #999;
}

a {
	color: #EB7200;
	color: #06c;
	color: #570099; /* violet */
	color: #039; /* darkblue */
}

input.prefill {
	color: #999; /* Make prefilled text inputs light medium grey text */
}

.loading {
	background: transparent url(/assets/design/spinner.gif) 0 50% no-repeat !important; /* spinner animation for while ajax updates */
}

input, select {
	font-family: arial, helvetica, sans-serif;
	font-size: 12px;
}

table {
	width: 100%;
}

a:active,
a:focus {
	outline: none; /* remove dashed outline from selected links in mozilla */
}


/*  @group: global-wrapper
	@desc:	used for overlay of abstract line background.
------------------------------------------------------------------------------------ */

#global-wrapper {
	float: left;
	width: 100%;
/*	background: transparent url(/assets/design/global-wrapper-bg.jpg) 0 0 no-repeat; */
	border-bottom: 20px solid #fff;
}

/*  @group: global
	@desc: 	wrapper for element page content, margin from top,
			because leaderboard advertisement ist placed absolute.
------------------------------------------------------------------------------------ */

#global {
	float: left;
	width: 825px;
	margin: 120px 0 20px;
	background: #fff;
	padding: 0 9px;
	background: #fff url(/assets/design/global-bg.png) 0 0 repeat-y;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
/*
     -moz-box-shadow: 0px 0px 10px #ccc;
  -webkit-box-shadow: 0px 0px 10px #ccc;
          box-shadow: 0px 0px 10px #ccc;
*/
}

/*  @group: header
	@desc: 	wrapper for page header, holds background, position set to relative so we
			can position elements inside easier by using absolute units, but relative
			coordinates.
------------------------------------------------------------------------------------ */

#header {
	position: relative;
	float: left;
	/*
	width: 825px;
	background: #70c1eb;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	*/
	width: 843px;
	height: 130px;
	margin: -9px -9px 0;
	background: #70c1eb url(/assets/design/header-bg.png) 0 0 no-repeat;

}

#global-wrapper #vendors #header {
	border-bottom: none; /* make bottom border disappear if there is no sub-nav */
}

#header ul,
#header li {
	float: left; /* float all lists in header so we don't have to re-declare it on specific elements. */
	width: auto;
}

#header a {
	text-decoration: none;
}

/*  @group: logo
------------------------------------------------------------------------------------ */

#logo {
	position:absolute; /* position is relative to header. So top 34px equals 154px */
	left: 15px; /* new logo position. */
	left: 24px;
	top: 30px;
}

#logo span {
	display: none;	/* text replacements method: we got a <span> inside the <a>, we make it disappear */
}

#logo a {
	display:block;
	width: 257px;
	height: 86px;
	background:transparent url(/assets/design/itseiten-logo-4_round_nosubline.png) no-repeat scroll 0 0;/* new logo */
}

/*  @group: nav-meta
	@desc: 	holds navigation items of secondary importance, such as login, help, ...
------------------------------------------------------------------------------------ */

#nav-meta {
/*	position: absolute;
	right: 20px;  position is relative to header. So right 0 equals 825px 
	top: 20px;*/

	float: right;
	margin-right: 20px;
	margin-top: 20px;
}

#nav-meta p,
#nav-meta-loginstate{
	float: left;
	width: auto;
	padding: 5px 10px; /* logged in as ... – vertically alligned with following menu. */
}

#nav-meta-loginstate span{
	float: left;
	margin-right: 5px;
}

#nav-meta ul {
	float: right;
	_background: #f3f6f6;
}

#nav-meta li {
	font-weight: bold;
	font-size: 11px;
	line-height: 10px;
}

#nav-meta li a{
	float: left;
	width: auto;
	_border-left: 1px solid #b7b7c1;
	_background: #f3f6f6 url(/assets/design/nav-meta-right-bg.gif) 0 100% repeat-x;
	color: #666;
	color: rgba(0,0,0,0.6);
}

#nav-meta p a{
	color: #666;
	color: rgba(0,0,0,0.6);
	font-weight:  bold;
}

#nav-meta a:hover {
	text-decoration: underline;
}

#nav-meta a span {
	float: left;
	width: auto;
	padding: 5px 10px;
}

#nav-meta #nav-meta-accounts a { /* accounts got rounded left corner, so needs special treatment */
	border-left: none;
}

#nav-meta #nav-meta-accounts a span {
	_background: #f3f6f6 url(/assets/design/nav-meta-left-bg.gif) 0 100% no-repeat;
}

#global-wrapper #watchlist #nav-meta-watchlist a,
#global-wrapper #help #nav-meta-help a,
#global-wrapper #login #nav-meta-login a { /* set selected state via ##global-wrapper content ids */
	_background: #fafcfc url(/assets/design/nav-meta-right-bg.gif) 0 -175px repeat-x;
	color: #000;
}

#global-wrapper #accounts #nav-meta-accounts a span {
	_background: #f3f6f6 url(/assets/design/nav-meta-left-bg.gif) 0 -175px no-repeat;
	color: #000;
}

/*  @group: login
	@desc: 	Login-page
------------------------------------------------------------------------------------ */

#global-wrapper #login div.submit {
	float: left;
	width: auto;
}

#global-wrapper #login fieldset.action p {
	float: left;
	width: auto;
	margin: 5px 0 0 10px;
}

#global-wrapper #login div.section {
	background: none;
    padding-top: 30px;
}

/*  @group: nav-signup
	@desc: 	huge signup badge, displayed if not logged in.
------------------------------------------------------------------------------------ */


#nav-signup a {
	background: #000;
	display: block;
	padding: 0px 2px;
	/*
	margin-top: 9px;
	margin-left: 24px;
	*/
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#nav-signup a span{
	color: #fff;
}

/*  @group: nav-main
	@desc:	main-navigation, using sliding doors ( http://www.alistapart.com/articles/slidingdoors/ )
			by Doug Bowman for the rounded corners.
------------------------------------------------------------------------------------ */

#nav-main {
	position: absolute;
	bottom: 0; /* position is relative to header, so 0 is bottom of header not the viewport */
	left: 24px;
}

#nav-main li {
	margin: 0 5px 0 0;
	font-size: 14px;
	font-weight: bold;

	font-size: 16px;
	font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2", arial, helvetica, sans-serif;
	font-weight: normal;
}

#nav-main a {
	float: left;
	width: auto;
	padding: 0 15px 0 0;
	color: #000;
	background: transparent url(/assets/design/nav-main-right-bg.png) 100% 0 no-repeat;
	color: #161400;
}

#nav-main a span {
	float: left;
	width: auto;
	padding: 5px 0 5px 15px;
	background: transparent url(/assets/design/nav-main-left-bg.png) 0 0 no-repeat;
}

#nav-main a:hover {
	text-decoration: underline;
}

#global-wrapper #home #nav-home a,
#global-wrapper #vendors #nav-vendors a,
#global-wrapper #cms #nav-news a,
#global-wrapper #news #nav-news a,
#global-wrapper #jobs #nav-jobs a,
#global-wrapper #specials #nav-specials a,
#global-wrapper #events #nav-events a,
#nav-main li.selected a {
	background-position: 100% -200px; /* set selected state via ##global-wrapper content ids */
}

#global-wrapper #home #nav-home a span,
#global-wrapper #vendors #nav-vendors a span,
#global-wrapper #cms #nav-news a span,
#global-wrapper #news #nav-news a span,
#global-wrapper #jobs #nav-jobs a span,
#global-wrapper #specials #nav-specials a span,
#global-wrapper #events #nav-events a span,
#nav-main li.selected a span {
	background-position: 0 -200px;
}


/*  @group: nav-sub
	@desc: 	second order navigation, horizontal list, holds main vendor categories.
------------------------------------------------------------------------------------ */

#nav-sub {
	float: left;
	width: 795px;
	padding: 5px 15px 4px;
	border-bottom: 1px solid #FF8C00;
	background: #ffe600;
	background: #000;
	border-bottom: none;

	padding: 0;
}

#nav-sub ul,
#nav-sub li {
	display: inline;
	font-size: 12px;
	line-height: 20px;
	color: #86addd;
}

#nav-sub a {
	color: #9a7600;
	text-decoration: none;
}

#nav-sub a:hover {
	text-decoration: underline;
}

#nav-sub li.selected a {
	text-decoration: underline;
}

/*  @group: nav-vendor
	@desc:	wrapper for so called anbieter finder and vendor search. relative position
			so we can align child elements easier.
------------------------------------------------------------------------------------ */

#nav-vendor {
	position: relative;
	float: left;
	width: 825px;
	height: 29px;
	border-bottom: 1px solid #e6ecf2;
	background: #eff3f4 url(/assets/design/nav-vendor-bg.gif) 0 0 repeat-x;
}

/*  @group: nav-finder
	@desc:	toggle for the anbieter finder.
------------------------------------------------------------------------------------ */

#nav-finder {
	position: absolute;
	top: 0;
	left: 0;
	float: left;
	width: 150px;
	height: 30px;
	background: transparent url(/assets/design/nav-spacer-bg.gif) 100% 100% no-repeat;
}

#nav-finder.selected {
	background: #eef8fd;
	width: 149px;
	border-right: 1px solid #eeb;
}

#nav-finder p {
	margin: 0;
	font-size: 12px;
}

#nav-finder p a {
	display: block;
	padding: 8px 15px 7px 15px;
	background: transparent url(/assets/design/arrow-down.gif) 90% 50% no-repeat;
	color: #666;
	text-decoration: none;
}

#nav-finder.selected p a {
	background: transparent url(/assets/design/arrow-up.gif) 90% 50% no-repeat;
	color: #998;
	-moz-outline: none;
}

#nav-finder p a:hover {
	text-decoration: underline;
}


/*  @group: nav-search
	@desc: 	vendor search form, always visible in vendor area
------------------------------------------------------------------------------------ */

#nav-search {
	float: right;
	width: 645px;
	_height: 15px;
	padding: 8px 15px 7px;

	padding: 5px 15px;
	_overflow: hidden;

}

#nav-search h3,
#nav-search fieldset {
	float: left;
	width: auto;
	margin: 0;
}

#nav-search h3 {
	width: 120px;
	color: #666;
	font-size: 12px;
	font-weight: normal;

	line-height: 20px;

}

#nav-search fieldset.search {
	width: 180px;
	position: relative;
}

#nav-search fieldset.category {
	width: 90px;
}

#nav-search fieldset.category input {
	float: left;
	margin: 0 5px 0 0;
}

#nav-search fieldset.category label {
	float: left;
	width: auto;
	margin: 0 5px 0 0;

	line-height: 20px;

}

#nav-search label {
	float: left;
	width: 30px;
	margin: 0 15px 0 0;
	color: #EB7200;
	font-size: 12px;
	line-height: 20px;
	text-align: right;

	color: #666;
}

#nav-search fieldset.search input {
	float: left;
	width: 116px;
	border: 1px solid #eb7200;
	padding: 0px;
	color: #eb7200;
	font-size: 11px;

	padding: 2px;
	border: 1px solid #ccc;
	color: #666;
}


#nav-search fieldset.search select {
	float: left;
	width: 116px;
	border: 1px solid #eb7200;
	padding: 0px;
	color: #eb7200;
	font-size: 11px;
    padding: 1px;
	border: 1px solid #ccc;
	color: #666;
}

#nav-search fieldset.search div.search-suggestion {
	position: absolute;
	float: left;
	top: 16px;
	left: 45px;
	width: 216px;
	background: #EFF3F4 url("/assets/design/nav-vendor-bg.gif") repeat-x left top;
	border-left: 1px solid #E6ECF2;
	border-right: 1px solid #E6ECF2;
	z-index: 200;
}

div.search-suggestion ul li {
	padding: 4px 4px 5px;
	line-height: 15px;
	border-bottom: 1px solid #E5E5E5;
	float: left;
	width: 208px;
}

div.search-suggestion ul li a {
	text-decoration: none;
	float: left;
	width: 100%;
	cursor: pointer;
	color: #000;
}

div.search-suggestion ul li a:hover {

}


div.search-suggestion-content {
	float: left;
	width: 340px;
	background: #EFF3F4 url("/assets/design/nav-vendor-bg.gif") repeat-x left top;
	border-left: 1px solid #E6ECF2;
	border-right: 1px solid #E6ECF2;
	z-index: 200;
    margin-left: 135px;
}


div.search-suggestion-content ul li {
	padding: 4px 0px 5px;
	line-height: 15px;
	border-bottom: 1px solid #E5E5E5;
	float: left;
	width: 340px;
}

div.search-suggestion-content ul li a {
	text-decoration: none;
	float: left;
	width: 100%;
	cursor: pointer;
	color: #000;
}

#jobfinder div.search-suggestion {
    width: 220px;
    padding-left: 135px;
}

#nav-search fieldset.submit input,
#global-wrapper .spoiler div.section input.submit {
	float: left;
	width: auto;
	border: 1px solid #ccc;
	border-color: #9dbfeb #4476b8 #4476b8 #9dbfeb;
	padding: 0;
	background: #eb7200 url(/assets/design/search-bg.gif) 0 0 repeat-x;
	color: #000;
	font-size: 10px;


	border: none;
	background: #70c1eb;

	padding: 2px;
	background: #000;
	color: #fff;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

/*  @group: nav-breadcrump
	@desc: 	Breadcrummp navigation in vendor list.
------------------------------------------------------------------------------------ */

#nav-breadcrump {
	float: left;
	width: 620px;
	padding: 15px 0;
	background: #FFF; /* overlay dashed border on right side */
}

#vendors.overview #nav-breadcrump,
#vendors.detail #nav-breadcrump,
#vendors.about #nav-breadcrump,
#vendors.news #nav-breadcrump,
#vendors.jobs #nav-breadcrump,
#vendors.references #nav-breadcrump,
#vendors.team #nav-breadcrump,
#vendors.downloads #nav-breadcrump,
#vendors.products #nav-breadcrump,
#vendors.screenshots #nav-breadcrump,
#vendors.partners #nav-breadcrump {
	width: 795px;
}

#nav-breadcrump h1 {
	margin: 0;
}

#nav-breadcrump ul.browse {
	width: 645px;
	float: left;
}

#nav-breadcrump li {
	display: inline;
	color: #999;
	font-size: 11px;
}

#nav-breadcrump li.selected,
#nav-breadcrump li.selected a {
	color: #000;
}

#nav-browse {
	float: right;
	width: 150px;
}

#nav-browse li.disabled {
	color: #999;
}

/*  @group: main
	@desc:	wrapper for content and context
------------------------------------------------------------------------------------ */

#main {
	position: relative;
	float: left;
	width: 795px;
	border-bottom: 1px solid #ccc;
	padding: 15px;
	background: transparent url(/assets/design/dots-vertical.gif) 645px 0 repeat-y; /* dashed vertical line in background */
}

#global-wrapper #vendors #main,
#global-wrapper #jobs #main,
#global-wrapper #events #main,
#global-wrapper #news #main {
	padding: 0 15px;
}

#main a {
	color: #EB7200;
	color: #06c;
	color: #570099; /* violet */
	color: #039; /* darkblue */
	text-decoration: none;
}

#main a:hover {
	text-decoration: underline;
}

/*  @group: rate indicators,  */

#main a.rate {
	font-size: 11px;
}

#main a.gold {
	color: #322;
	background: #ff9;
}

#main a.silver {
	color: #223;
	background: #eef;
}

#main a.free {
	background: #eee;
	color: #333;
}

#main a img,
#main img {
	padding: 1px;
	border: 1px solid #cfd7e5;
}

/*  @group: content
	@desc: contains the actual content of a page
------------------------------------------------------------------------------------ */

#content {
	float: left;
	width: 630px;
}

#content div.section {
	float: left;
	width: 615px;
	margin: 0 0 0 0;
}

#content div.last {
	margin: 0 !important; /* clear all margins on last item, used various times throughout the site */
}

#content div.break {
	clear: both;
}

#global-wrapper #vendors #content div.section {
	background: transparent; /* clear background at vendor index */
	padding: 15px 0 0 0;
}

#content div.list { /* list styling at vendor index */
	float: left;
	width: 300px;
}

#content div.list h2 {
	margin: 0;
}

#content div.list h2 a {
	display: block;
	padding: 5px 0;
	color: #000;
}

#global-wrapper #vendors #main #content div.section div.item div.list ul li {
	padding: 0;
}

#global-wrapper #vendors #main #content div.section div.item div.list ul li a {
	display: block;
	padding: 5px 0 !important;
}

#content div.list ul {
	border-top: 1px solid #e5e5e5;
}

#content div.list li,
#content div.list p {
	position: relative;
	display: block;
	border-bottom: 1px solid #e5e5e5;
	padding: 5px 5px 4px 5px;
}

#content div.list p {
	border-top: 1px solid #e5e5e5;
}

#content div.list li a span.count,
#content div.list li span.count,
#content div.list li a span.new,
#content div.list li span.action {
	position: absolute; /* position counters to right side of list item */
	right: 0;
	color: #000;
}

#content div.list li a:hover span.count {
	text-decoration: underline;
}

#content div.list li a span.new { /* new item indicator in overview (messages, ...) */
	/*background: #c00;*/
	/*color: #fff;*/
	font-weight: bold;
	text-transform: uppercase;
}

#content div.list li span.action { /* spacing divider | to medium grey */
	color: #666;
}

#content div.list li span.action a {
	display: inline;
	font-size: 10px;
}

/*  @group: microsite
	@desc:	content modules for microsite display. One .section may contain several
			.items – specific styling through section ids like #team, #references, #partners.
------------------------------------------------------------------------------------ */

div.section {
	float: left;
	width: 100%;
	width: 630px;
	padding: 15px 0;
	background: transparent url(/assets/design/dots-horizontal.gif) 0 0 repeat-x;
}

div.first { /* clear background border on first item */
	background: none;
}

div.blank {
	padding: 0 0 30px 0;
}

div.section div.title {
	float: left;
	width: 100%;
	margin: 0 0 15px 0;
}

div.section div.item.is_quarter div.title {
	margin: 0 0 10px 0;
}

div.section div.title h2,
div.section div.title p { /* Make browse links appear inline */
	display: inline;
}

div.section div.title p {
	font-size: 11px;
}


#vendors.team div#team div.image{
	float: left;
}

div#team.single div.item {
	height: auto;
	min-height: 45px;
}

div#about div.item div.description{
	float: left;
	width: 100%;
    padding-left: 0px;
}

div.section div.item div.description h3 {
	margin: 0;
	font-weight: bold;
	font-size: 11px;
	line-height: 15px;
}

#content div.section div.item div.description h3 a {
	color: #000;
}

div.section div.item div.description p {
	margin: 0;
	font-size: 11px;
	line-height: 15px;
}

/*  @group: head
	@desc:	Microsite header, contains vendor loogo title, categories, #nav-microsite, #nav-actions
------------------------------------------------------------------------------------ */

div#head {
	position: relative; /* for easier positioning of child elements */
	float: left;
	width: 795px;
	_background: transparent url(/assets/design/head-middle-bg2.gif) 0 0 no-repeat; /* middle part of-3 slice header */
	border-bottom: 15px solid #fff; /* overlay dashed border background */
	background: #eeeeee url(/assets/design/head-middle-bg.png) 0 0 repeat-y;

	/*
	border: 1px solid #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	*/
}

div#head div.head-top { /* top part w/ rounded corners of 3-slice background */
	background: transparent url(/assets/design/head-top-bg.png) 0 0 no-repeat;
	width: 795px;
	height: 4px;
}

div#head div.head-bottom { /* bottom part w/ rounded corners of 3-slice background */
	position: absolute;
	bottom: 0;
	left: 0;
	width: 795px;
	height: 4px;
	background: transparent url(/assets/design/head-bottom-bg.png) 0 0 no-repeat;
}

div#head h1 { /* vendor title */
	font-size: 18px;
	margin: 10px 0;
}

div#head div.image { /* vendor logo */
	float: left;
	height: 150px;
	width: 150px;
	/*width: 75px;*/
	margin: 6px 10px 25px 15px;
	text-align: center; /* center align the logo */
}

div#head div.image a img {
	float: none; /* reset float so we can center the image */
	border: 1px solid #cfd7e5;
	padding: 1px;
}

div#head div.description { /* list of categories */
	float: left;
	width: 405px;
}

div#head div.description h2 {
	margin: 0 0 30px;
	font-size: 11px;
	font-weight: normal;
	font-family: arial, helvetica, sans-serif;
}

/*  @group: nav-microsite
	@desc:
------------------------------------------------------------------------------------ */

#nav-microsite {
	position: absolute;
	/*left: 195px;*/ left: 15px;
	bottom: 0; /* bottom edge of header */
	bottom: -1px;
}

#nav-microsite ul,
#nav-microsite li {
	float: left;
	width: auto;
}

#nav-microsite li {
	font-size: 12px;
}

#nav-microsite a {
	display: block;
	padding: 0 0 0 10px;
	_border-right: 1px solid #ccc;
}

#nav-microsite a span {
	display: block;
	padding: 5px 10px 5px 0;
}

/* selected state, referenced through ##global-wrapper content classes */

#nav-microsite li.selected a,
#global-wrapper .about #nav-microsite li#nav-microsite-about a,
#global-wrapper .overview #nav-microsite li#nav-microsite-overview a,
#global-wrapper .references #nav-microsite li#nav-microsite-references a,
#global-wrapper .team #nav-microsite li#nav-microsite-team a,
#global-wrapper .news #nav-microsite li#nav-microsite-news a,
#global-wrapper .jobs #nav-microsite li#nav-microsite-jobs a,
#global-wrapper .products #nav-microsite li#nav-microsite-products a,
#global-wrapper .detail #nav-microsite li#nav-microsite-detail a,
#global-wrapper .partners #nav-microsite li#nav-microsite-partners a,
#global-wrapper .downloads #nav-microsite li#nav-microsite-downloads a,
#global-wrapper .skills #nav-microsite li#nav-microsite-skills a,
#global-wrapper .certificates #nav-microsite li#nav-microsite-certificates a,
#global-wrapper .languages #nav-microsite li#nav-microsite-languages a,
#global-wrapper .experiences #nav-microsite li#nav-microsite-experiences a,
#global-wrapper .profileskills #nav-microsite li#nav-microsite-profileskills a,
#global-wrapper .screenshots #nav-microsite li#nav-microsite-screenshots a {
	background: #fff url(/assets/design/nav-microsite-left-bg.png) 0 0 no-repeat;
	color: #000;
}

#nav-microsite li.selected a span,
#global-wrapper .about #nav-microsite li#nav-microsite-about a span,
#global-wrapper .overview #nav-microsite li#nav-microsite-overview a span ,
#global-wrapper .references #nav-microsite li#nav-microsite-references a span,
#global-wrapper .team #nav-microsite li#nav-microsite-team a span,
#global-wrapper .news #nav-microsite li#nav-microsite-news a span,
#global-wrapper .jobs #nav-microsite li#nav-microsite-jobs a span,
#global-wrapper .products #nav-microsite li#nav-microsite-products a span,
#global-wrapper .detail #nav-microsite li#nav-microsite-detail a span,
#global-wrapper .partners #nav-microsite li#nav-microsite-partners a span,
#global-wrapper .downloads #nav-microsite li#nav-microsite-downloads a span,
#global-wrapper .skills #nav-microsite li#nav-microsite-skills a span,
#global-wrapper .certificates #nav-microsite li#nav-microsite-certificates a span,
#global-wrapper .languages #nav-microsite li#nav-microsite-languages a span,
#global-wrapper .experiences #nav-microsite li#nav-microsite-experiences a span,
#global-wrapper .profileskills #nav-microsite li#nav-microsite-profileskills a span,
#global-wrapper .screenshots #nav-microsite li#nav-microsite-screenshots span {
	background: transparent url(/assets/design/nav-microsite-right-bg.png) 100% 0 no-repeat;
}


#global-wrapper .overview #main #content div.section {
	background: transparent url(/assets/design/dots-horizontal.gif) 0 0 repeat-x;
	padding: 15px 0 0 0;
}

#global-wrapper .overview #main #content div.first {
	background: none;
}

/*  @group: context
	@desc: context column, display of actions in me_index
------------------------------------------------------------------------------------ */

#context {
	float: right;
	width: 150px;
}

#context p,
#context li {
	font-size: 11px;
}

#context div.title {
	float: left;
	width: 100%;
	margin: 0 0 15px;
	padding: 7px 0 6px 0;
}

#context.vendors div.title {
	float: left;
	width: 100%;
	margin: 0 0 15px;
	padding-left: 0px;
	padding: 5px 0 4px 0;
}

#context div.title h2,
#context div.title p {
	display: inline;
}

#context div.title p.google-maps-error {
	display: block;
	color: #665;
}

/*  @group: nav-actions
------------------------------------------------------------------------------------ */

#nav-actions {
	float: right;
	width: 150px;
	padding: 0 0 15px 0;

	padding: 0;
	width: 165px;
	border-left: 1px solid #ccc;
}

#nav-actions ul,
#nav-actions li {
	float: left;
	width: 150px;
}

#nav-actions li {
	_background: #fff url(/assets/design/nav-bg.png) 0 100% repeat-x;
}

#nav-actions a {
	float: left;
	width: 125px;
	padding: 0 0 0 25px;
	background-position: 0% 50%;
	background-repeat: no-repeat;

	background-position: 15px;
	padding: 2px 0 2px 40px;
	border-bottom: 1px solid #ccc;
/*	-moz-outline: none; */
}

#nav-actions li {
	font-size: 11px;
	line-height: 20px;
}


/*  @group: job-actions, news-actions
------------------------------------------------------------------------------------ */

#job-actions div.title,
#news-actions div.title {
    margin: 0 0 5px;
}

#global-wrapper .show #context .widget .quicksearch div.title {
    margin-top: 25px;
}

#job-actions ul,
#job-actions li,
#news-actions ul,
#news-actions li {
	float: left;
	width: 150px;
}

#job-actions a,
#news-actions a {
	float: left;
	width: 125px;
	padding: 0 0 0 25px;
	background-position: 0% 50%;
	background-repeat: no-repeat;

	background-position: 15px;
	padding: 2px 0 2px 40px;
	border-bottom: 1px solid #ccc;
/*	-moz-outline: none; */
}

#job-actions li,
#news-actions li {
	font-size: 11px;
	line-height: 20px;
}


/*  @group: highlights */

#global-wrapper .messages #nav-actions-messages a,
#global-wrapper .jobs #nav-actions-jobs a,
#global-wrapper .partners #nav-actions-partners a,
#global-wrapper .addressbook #nav-actions-addressbook a,
#global-wrapper .mydata #nav-actions-mydata a,
#global-wrapper .myentry #nav-actions-myentry a,
#global-wrapper .statistics #nav-actions-statistics a,
#global-wrapper .products #nav-actions-products a,
#global-wrapper .pressboxes #nav-actions-pressboxes a,
#global-wrapper .news_all #nav-actions-news_all a,
#global-wrapper .events #nav-actions-events_all a,
#global-wrapper .presslists #nav-actions-presslists a,
#global-wrapper .newschannels #nav-actions-newschannels a,
#nav-actions li.selected a {
	color: #000;
	font-weight: bold;
}

#nav-actions li.messages a,
#job-actions li.messages a,
#news-actions li.messages a {
	background-image: url(/assets/design/icons/message.gif);
	background-image: url(/assets/design/icons/mail_icon&16.png);
	background-image: url(/assets/design/icons/mail_icon&16_60.png);
}

li.watchlist-add a {
	background-image: url(/assets/design/icons/watchlist-add.gif);
	background-image: url(/assets/design/icons/lightbulb_icon&16.png);
	background-image: url(/assets/design/icons/lightbulb_icon&16_60.png);
}

li.application-add a {
	
	background-image: url(/assets/design/icons/lightbulb_icon&16.png);
	background-image: url(/assets/design/icons/lightbulb_icon&16_60.png);
    background-image: url(/assets/design/icons/application-add-context.png);
}

#nav-actions li.addressbook-add a {
	background-image: url(/assets/design/icons/addressbook-add.gif);
/*	_background-position: 2px 50%;*/
	background-image: url(/assets/design/icons/notepad_2_icon&16.png);
	background-image: url(/assets/design/icons/notepad_2_icon&16_60.png);
}

li.vcard a {
	background-image: url(/assets/design/icons/vcard.gif);
}

li.print a {
	background-image: url(/assets/design/icons/print.gif);
	background-image: url(/assets/design/icons/print_icon&16.png);
	background-image: url(/assets/design/icons/print_icon&16_60.png);
}

li.recommend a {
	background-image: url(/assets/design/icons/recommend.gif);
	background-image: url(/assets/design/icons/export_icon&16.png);
	background-image: url(/assets/design/icons/export_icon&16_60.png);
	border-bottom: none !important;
}

/*  @group: my account */

li.partners a {
	background-image: url(/assets/design/icons/partners.gif);
	background-image: url(/assets/design/icons/users_icon&16.png);
	background-image: url(/assets/design/icons/users_icon&16_60.png);
}

#nav-actions li.addressbook a {
	background-image: url(/assets/design/icons/addressbook.gif);
	background-image: url(/assets/design/icons/notepad_2_icon&16_60.png);

/*	background-position: 2px 50%;*/
}

li.products a {
	background-image: url(/assets/design/icons/products.png);
	background-image: url(/assets/design/icons/bookmark_2_icon&16_60.png	);
}

li.presslists a {
	background-image: url(/assets/design/icons/presslist.png);
}

li.pressboxes a {
	background-image: url(/assets/design/icons/pressbox.png);
}

li.newschannels a {
	background-image: url(/assets/design/icons/newschannel.png);
}

li.news_all a {
	background-image: url(/assets/design/icons/news.png);
}

li.events_all a {
	background-image: url(/assets/design/icons/event.png);
}

li.mydata a {
	background-image: url(/assets/design/icons/mydata.gif);
	background-image: url(/assets/design/icons/cog_icon&16_60.png);
}

#nav-actions li.myentry a {
	background-image: url(/assets/design/icons/myentry.gif);
	background-image: url(/assets/design/icons/user_icon&16_60.png);
/*	background-position: 1px 50%;*/
}

#nav-actions li.statistics a {
	background-image: url(/assets/design/icons/statistics.gif);
	background-image: url(/assets/design/icons/chart_bar_icon&16_60.png);
/*	background-position: 1px 40%;*/
}

#nav-actions li.jobs a {
	background-image: url(/assets/design/icons/job.png);
}

/*  @group: secondary */

#global-wrapper .jobs #nav-actions-jobs ul li a,
#global-wrapper .messages #nav-actions-messages ul li a,
#global-wrapper .newschannels #nav-actions-newschannels ul li a,
#global-wrapper .partners #nav-actions-partners ul li a,
#global-wrapper .addressbook #nav-actions-addressbook ul li a,
#global-wrapper .mydata #nav-actions-mydata ul li a,
#global-wrapper .myentry #nav-actions-myentry ul li a,
#global-wrapper .statistics #nav-actions-statistics ul li a {
	padding: 0 0 0 45px;
	background: none;
	font-weight: normal;
	color: #003399;
}

/*  @group: parent */

#global-wrapper .applications #nav-actions-jobs a,
#global-wrapper .inbox #nav-actions-partners a,
#global-wrapper .outbox #nav-actions-partners a,
#global-wrapper .manage #nav-actions-partners a,
#global-wrapper .email #nav-actions-newschannels a,
#global-wrapper .wordpress #nav-actions-newschannels a,
#global-wrapper .editorialoffice #nav-actions-newschannels a,
#global-wrapper .facebook #nav-actions-newschannels a,
#global-wrapper .overview #nav-actions-newschannels a,
#global-wrapper .import #nav-actions-newschannels a,
#global-wrapper .twitter #nav-actions-newschannels a,
#global-wrapper .tumblr #nav-actions-newschannels a,
#global-wrapper .inbox #nav-actions-messages a,
#global-wrapper .create #nav-actions-messages a,
#global-wrapper .outbox #nav-actions-messages a,
#global-wrapper .ignorelist #nav-actions-messages a,
#global-wrapper .profiles #nav-actions-myentry a,
#global-wrapper .profiledetails #nav-actions-myentry a,
#global-wrapper .maincategory #nav-action-myentry a,
#global-wrapper .softwareorders #nav-action-myentry a,
#global-wrapper .references #nav-actions-myentry a,
#global-wrapper .team #nav-actions-myentry a,
#global-wrapper .news #nav-actions-myentry a,
#global-wrapper .categories #nav-actions-myentry a,
#global-wrapper .badges #nav-actions-myentry a,
#global-wrapper .password #nav-actions-mydata a,
#global-wrapper .contact #nav-actions-mydata a,
#global-wrapper .invoices #nav-actions-mydata a,
#global-wrapper .orders #nav-actions-mydata a {
	font-weight: normal;
}

/*  @group: child */


#global-wrapper .applications #nav-actions-jobs #nav-actions-jobs-applications a,
#global-wrapper .inbox #nav-actions-partners #nav-actions-partners-inbox a,
#global-wrapper .outbox #nav-actions-partners #nav-actions-partners-outbox a,
#global-wrapper .manage #nav-actions-partners #nav-actions-partners-manage a,
#global-wrapper .inbox #nav-actions-messages #nav-actions-messages-inbox a,
#global-wrapper .outbox #nav-actions-messages #nav-actions-messages-outbox a,
#global-wrapper .create #nav-actions-messages #nav-actions-messages-create a,
#global-wrapper .ignorelist #nav-actions-messages #nav-actions-messages-ignorelist a,
#global-wrapper .profiles #nav-actions-myentry #nav-actions-myentry-profiles a,
#global-wrapper .contact #nav-actions-myentry #nav-actions-myentry-contact a,
#global-wrapper .profiledetails #nav-actions-myentry #nav-actions-myentry-profiledetails a,
#global-wrapper .maincategory #nav-actions-myentry #nav-actions-myentry-maincategory a,
#global-wrapper .softwareorders #nav-actions-myentry #nav-actions-myentry-softwareorders a,
#global-wrapper .references #nav-actions-myentry #nav-actions-myentry-references a,
#global-wrapper .team #nav-actions-myentry #nav-actions-myentry-team a,
#global-wrapper .categories #nav-actions-myentry #nav-actions-myentry-categories a,
#global-wrapper .badges #nav-actions-myentry #nav-actions-myentry-badges a,
#global-wrapper .news #nav-actions-myentry #nav-actions-myentry-news a,
#global-wrapper .password #nav-actions-mydata #nav-actions-mydata-password a,
#global-wrapper .orders #nav-actions-mydata #nav-actions-mydata-products a,
#global-wrapper .contact #nav-actions-mydata #nav-actions-mydata-contact a,
#global-wrapper .invoices #nav-actions-mydata #nav-actions-mydata-invoices a,
#global-wrapper .downloads #nav-actions-myentry #nav-actions-myentry-downloads a,
#global-wrapper .certificates #nav-actions-myentry #nav-actions-myentry-certificates a,
#global-wrapper .languages #nav-actions-myentry #nav-actions-myentry-languages a,
#global-wrapper .experiences #nav-actions-myentry #nav-actions-myentry-experiences a,
#global-wrapper .profileskills #nav-actions-myentry #nav-actions-myentry-profileskills a,
#global-wrapper .eventprofiles #nav-actions-myentry #nav-actions-myentry-events a,
#global-wrapper .screenshots #nav-actions-myentry #nav-actions-myentry-screenshots a,
#global-wrapper .snippets #nav-actions-mydata #nav-actions-mydata-snippets a,
#global-wrapper .email #nav-actions-newschannels #nav-actions-newschannels-overview a,
#global-wrapper .import #nav-actions-newschannels #nav-actions-newschannels-import a,
#global-wrapper .wordpress #nav-actions-newschannels #nav-actions-newschannels-overview a,
#global-wrapper .editorialoffice #nav-actions-newschannels #nav-actions-newschannels-overview a,
#global-wrapper .twitter #nav-actions-newschannels #nav-actions-newschannels-overview a,
#global-wrapper .tumblr #nav-actions-newschannels #nav-actions-newschannels-overview a,
#global-wrapper .facebook #nav-actions-newschannels #nav-actions-newschannels-overview a,
#global-wrapper .overview #nav-actions-newschannels #nav-actions-newschannels-overview a {
	color: #000;
	font-weight: bold;
}



/*  @group: contact
------------------------------------------------------------------------------------ */

#contact {
	float: left;
	width: 100%;
	padding: 10px 0;
}

#contact h3,
#functions h3,
#global-wrapper #presslists h3,
#advantages h3,
#prices h3,
#profilelinks h3 {
	margin: 0;
	font-size: 13px;
	line-height: 15px;
	font-weight: normal;
	font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2",arial,helvetica,sans-serif;
}

#contact p {
	font-size: 11px;
	line-height: 15px;
}



/*  @group: footer
------------------------------------------------------------------------------------ */

#footer {
	float: left;
	text-align: center;
	width: 825px;
	width: 843px;
	padding: 10px 0;
	margin: 0 -9px;
	background: #fff url(/assets/design/footer-bg.png) 50% 100% no-repeat;
	/*
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	*/
}

#footer li {
	display: inline;
	font-size: 11px;
	color: #999;
}

#footer li a {
	text-decoration: none;
}

#footer li a:hover {
	text-decoration: underline;
}

#footer p {
	color: #666;
	font-size: 11px;
}

#footer p.now-reading strong {
	font-weight: normal;
}

#footer p.now-reading strong a {
	text-decoration: none;
	color: #666;
}


/*  @group: advertising
------------------------------------------------------------------------------------ */

#leaderboard {
	position: absolute;
	top: 15px;
	left: 0;


	width: 825px;
	height: 90px;
	z-index: 100;


/*
	float: left;
	width: 825px;
	background: #f00;
	margin: 15px 0;
*/
}

#leaderboard img {
	float: right;

}

#skyscraper {
	position: absolute;
	left: 925px;
	top: 120px;

	width: 160px;
	height: 600px;
	z-index: 90;
}

#skyscraper img {
	float: left;
}

#leaderboard ,
#skyscraper  {
/*	display: none; */
}

/*  @group: anbieter-listing
------------------------------------------------------------------------------------ */

div.vendor {
	float: left;
	width: 100%;
	width: 615px;
	padding: 15px 0;
	background: transparent url(/assets/design/dots-horizontal.gif) 0 100% repeat-x;
}

div.vendor div.image {
	float: left;
	width: 120px;
	margin: 0 15px 0 0;
	display: inline; /* ie 6 */
	text-align: center;
	overflow: hidden;
}

div.image img {
	float: left;
}

div.vendor div.image a img {
	width: auto;
	float: none;
	border: 1px solid #cfd7e5;
	padding: 1px;
}

div.description {
	float: left;
	width: 405px;
}

div.vendor div.title {
	float: left;
	width: 100%;
	width: 480px;
	margin: 0 0 10px 0;
}

div.basics {
	float: left;
	width: 75%;
}

div.basics h2 {
	margin: 0;
}

div.basics ul {
	margin: 0;
	line-height: 11px;
	max-height: 45px;
	overflow: hidden;
}

div.basics li {
	display: inline;
	color: #999;
	font-size: 11px;
}

div.meta {
	float: left;
	width: 25%;
	text-align: right;
}

div.meta h3 {
	text-align: right;
	margin: 0;
}

div.meta p {
	margin: 0;
	font-size: 11px;
}

/* @group: labels */

div.meta h3 a {
	display: block;
	width: 84px;
	width: 100%;
	height: 14px;
	margin: 0 0 1px;
	background-repeat: no-repeat;
	background-position: 100% 0;
}

div.meta h3 a.vendor-artist-gold { background-image: url(/assets/design/vendor-artist-gold.jpg); }
div.meta h3 a.vendor-artist-silver { background-image: url(/assets/design/vendor-artist-silver.jpg); }
div.meta h3 a.vendor-business-gold { background-image: url(/assets/design/vendor-business-gold.jpg); }
div.meta h3 a.vendor-business-silver { background-image: url(/assets/design/vendor-business-silver.jpg); }

div.meta h3 a span {
	display: none;
}


div.vendor-info {
	float: left;
	width: 100%;
	padding: 0 0 15px;
}

div.vendor-info p {
	margin: 0;
}


/* = meta, microsite-context */

#contact div.meta {
	width: 100%;
	margin: 0 0 0px;
}

#contact div.meta h3 a {
	background-position: 0 0;
}



/*  @group: action */

div.action {
	float: left;
	width: 100%;
}

div.action li {
	float: left;
	width: auto;
	margin: 0 15px 0 0;
	font-size: 11px;
	line-height: 16px;
}

div.action li.watchlist {
}

#main div.action a {
	float: left;
	width: auto;
	color: #666;
	padding: 0 0 0 20px;
}

#main div.action li.watchlist a,
#main div.item .watchlist li.watchlist a {
	background: transparent url(/assets/design/icons/watchlist-add.gif) 0 0 no-repeat;
}

#main div.action li.application a,
#main div.item .application li.application a {
	background: transparent url(/assets/design/icons/application-add.gif) 0 0 no-repeat;
}

#main div.action li.addressbook a {
	background: transparent url(/assets/design/icons/addressbook-add.gif) 0 0 no-repeat;
}


/*  @group: nav-page
------------------------------------------------------------------------------------ */

div.nav-page {
	float: left;
	width: 615px;
	padding: 5px 0;
}

div.top {
	background: transparent url(/assets/design/dots-horizontal.gif) 0 100% repeat-x;
}

div.paging {
	float: left;
	width: 315px;
}

div.total {
	float: left;
	width: 300px;
}

div.paging ul {
	text-align: right;
	margin: 0;
}

div.paging li {
	display: inline;
	color: #ccc;
	font-size: 11px;
}

div.paging ul li div {
	display: inline;
	color: #666;
}

div.total p {
	text-align: left;
	font-size: 11px;
	color: #666;
	margin: 0;
}

/*  @group: finder
------------------------------------------------------------------------------------ */

#finder,
#newsfinder,
#jobfinder {
	position: absolute;
	left: 0;
	top: 0;
	width: 825px;
	background: #ddeffa url(/assets/design/finder-bg.gif) 0 0 repeat-x;
	border-bottom: 1px solid #ddc;
	z-index: 100;
}

#finder div.list{
	float: left;
	width: 270px;
	margin: 15px 0;
	/*height: 200px;*/ /* Don't do this, the height is dynamic!'*/
	overflow: auto;
}

#jobfinder div.list,
#newsfinder div.list {
	float: left;
	width: 300px;
	margin: 15px 0;
	/*height: 200px;*/ /* Don't do this, the height is dynamic!'*/
	overflow: auto;
}

#finder div.list ul {
	float: left;
	width: 240px;
	margin: 0 0 0 15px;
}

#jobfinder div.list ul,
#newsfinder div.list ul {
	float: left;
	width: 260px;
	margin: 0 0 0 15px;
}

#finder div.list li a,
#jobfinder div.list li a,
#newsfinder div.list li a {
	position: relative;
	display: block;
	padding: 5px 0 4px;
	border-bottom: 1px solid #ddc;
}

/*
#finder div.list li {
	position: relative;
}
*/

#finder div.list a span.title,
#jobfinder div.list a span.title,
#newsfinder div.list a span.title{
}

#finder div.list a span.count,
#jobfinder div.list a span.count,
#newsfinder div.list a span.count {
	float: right;
	padding-left: 5px;
	color: #000;
}

#finder fieldset,
#jobfinder fieldset.action,
#newsfinder fieldset {
	float: left;
	margin: 0;
	width: 795px;
	border-top: 1px solid #ddc;
	padding: 5px 15px;
	background: #c2eaff;
	text-align: right;
}

#jobfinder fieldset.search {
	float: left;
	margin: 0;
	width: 795px;
/*	border-top: 1px solid #ddc;*/
	padding: 15px 15px;
	background: #ffc url(/assets/design/finder-bg.gif) 0 0 repeat-x;
	text-align: left;
}

#jobfinder div.input {
    width: 395px;
}

#jobfinder div.text input,
#jobfinder div.select select {
    width: 220px;
}

#jobfinder fieldset.search label {
	float: left;
	width: 120px;
	margin: 0 15px 0 0;
	color: #666;
	text-align: left;
}

#finder fieldset div.submit,
#jobfinder fieldset div.submit,
#newsfinder fieldset div.submit {
	padding: 0;
	width: 795px;
}

#finder fieldset div.submit input,
#jobfinder fieldset div.submit input,
#newsfinder fieldset div.submit input {
	margin: 0;
}

#finder li.selected a,
#finder a.selected,
#jobfinder li.selected a,
#jobfinder a.selected,
#newsfinder li.selected a,
#newsfinder a.selected {
	font-weight: bold;
	color: #000;
	-moz-outline-style: none; /* prevent link outline */
}

#main a.cancel {
	color: #c00;
}

/*  @group: myaccount forms
------------------------------------------------------------------------------------ */

#content form,
#content fieldset {
	float: left;
	width: 100%;
}

div.input {
	float: left;
	width: 615px;
	padding: 0 0 10px 0;
}

div.text label,
div.date label,
div.select label,
div.password label,
div.textarea label,
div.file label,
div.captcha label,
div.radio fieldset legend {
	float: left;
	width: 120px;
	margin: 0 15px 0 0;
	color: #666;
	text-align: left;
}

#CertificateType,
#ExperienceType,
#RessortType,
#DistributionType,
#FrequencyType {
    margin-left: 135px;
    margin-top: 5px;
    width: 340px;
}

#MediumFocusType {
    margin-top: 5px;
    width: 340px;
}

div.radio fieldset legend {
	font-size: 11px;
	line-height: 15px;
}


div.radio fieldset label,
#accounts div.radio fieldset label,
#signup div.radio fieldset label{
	width: 300px;
}

#signup div.multiple div.radio-item {
    float: left;
    margin: 0 5px 0 0;
    padding-bottom: 10px;
    width: 445px;
}

/*
color:#110000;*/

div.text input,
div.password input {
	float: left;
	width: 340px;
	font-family: "lucida grande", "lucida sans unciode", verdana, sans-serif;
	font-family: arial, helvetica, sans-serif;
	font-size: 13px;
	line-height: 15px;
}

div.small input {
	width: 115px;
}

/*  @group: textarea */

div.textarea textarea {
	width: 343px;
	height: 150px;
	float: left;
	font-family: arial, helvetica, sans-serif;
	font-size: 13px;
	line-height: 15px;
}

div.textarea div.cleditorMain {
	width: 343px;
	height: 250px;
	float: left;
	font-family: arial, helvetica, sans-serif;
	font-size: 13px;
	line-height: 15px;
}

div.small textarea {
	height: 45px;
}

/*  @group: checkbox */

div.checkbox input {
	float: left;
	width: auto;
	margin: 0px 5px 0 135px;
}

div.checkbox label {
	float: left;
	width: 460px;
	color: #666;
}

/*  @group: checkbox */

div.radio input {
	float: left;
	width: auto;
	margin: 0px 5px 0 135px;
}

div.radio fieldset {

}

div.radio label {
	float: left;
	width: 460px;
	color: #666;
}

/*  @group: select checkbox */

div.radio div.multiple,
div.select div.multiple {
	float: left;
	width: 460px;
	margin: 0px 5px 0 0;
}

div.select select {
	width: 340px;
}

div.select select.small {
	width: 200px;
    margin-right: 10px;
}

div.select div.checkbox {
	width: 220px;
	float: left;
	margin: 0px 5px 5px 0;
}

div.multiple div.radio-item {
	width: 345px;
	float: left;
	margin: 0px 5px 0 0;
}

div.radio div.multiple input,
div.select div.checkbox input {
	float: left;
	width: auto;
	margin: 0px 5px 0 0;
}

div.radio div.multiple label,
div.select div.checkbox label {
	float: left;
	width: 100px;
	color: #666;
}

div.radio fieldset legend {
	float: left;
	width: 115px;
}

/* help */

div.input span.help {
	float: left;
	margin: 0 0 0 15px;
	font-size: 11px;
	line-height: 10px;
}

div.input a.addressbook {
	float: left;
	padding: 5px 0 5px 20px;
	background: transparent url(/assets/design/icons/addressbook.gif) 0 2px no-repeat;
}


/*  @group: errors & hints */

div.input div.error-message,
div.input span.hint {
	float: left;
	margin: 0 0 0 165px;
	margin: 0 0 0 135px;
	width: 345px;
	color: #665;
	font-size: 11px;
	line-height: 15px;
}

#global-wrapper .publish div.input span.hint {
	float: left;
	margin: 0 0 0 0px;
	width: 345px;
	color: #665;
	font-size: 11px;
    font-weight: bold;
	line-height: 15px;
}

div.input div.error-message {
	background: #fee;
	color: #c00;
	border-bottom: 1px solid #f66;
}

fieldset.action,
fieldset div.image {
	float: left;
	width: 450px;
	margin: 0 0 0 165px;
	margin: 0 0 0 135px;
}

fieldset.action span,
fieldset.action a {
	font-size: 11px;
	line-height: 15px;
}


fieldset h3 {
	margin: 15px 0 15px 165px;
	margin: 15px 0;
	float: left;
	width: 450px;
	width: 555px;
	width: 615px;
	border-bottom: 1px solid #ccc;
}

/*  @group: errors */

div.error fieldset legend,
div.error label {
	color: #c00;
}

div.error textarea,
div.error input,
div.error select {
	border: 1px solid #f66;
}

/*  @group: news
------------------------------------------------------------------------------------ */

div.title {
	float: left;
	width: 615px;
	margin: 0 0 15px;
	position: relative;
}

/*  @group: simplify,
	everything in my accounts will look like this
*/

#global-wrapper .partners #content .list{
	width: 600px;
}

.widget .title,
#global-wrapper #about .title,
#global-wrapper #agb .title,
#global-wrapper #help .title,
#global-wrapper #functions .title,
#global-wrapper #presslists .title,
#global-wrapper #advantages .title,
#global-wrapper #prices .title,
#global-wrapper #press .title,
#global-wrapper #legal-notice .title,
#global-wrapper #signup .title,
#global-wrapper #accounts div.title,
#global-wrapper #accounts .newschannels div.title,
#global-wrapper .spoiler div.title,
#global-wrapper .functions div.title{
	_background: transparent url(footer-bg.gif) 0 0 repeat-x;
	background: #eee;
	padding: 7px 0px 6px 0px;
	border: 1px solid #ccc;
	border-width: 1px 0px;

    height: 15px;
    
    /*
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;    
	border-radius: 2px;
    */
}

#main div.newschanneltypebox a img {
    border: none;
    padding: 1px;
    float: left;
}

#global-wrapper #press div.press,
#global-wrapper #prices div.prices,
#global-wrapper #accounts div.newschanneltypebox,
#global-wrapper #signup div.prices {
    padding: 5px;
	text-align: center;
	background: #ccc;
	background: #e5e5e5;
	background: transparent url(footer-bg.gif) 0 -1px repeat-x;
	border: 1px solid #ccc;
	color: #333;
	font-weight: bold;
    width: 270px;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

#global-wrapper #signup div.prices span.social_media_posts,
#global-wrapper #signup div.offer span.social_media_posts,
#global-wrapper #prices div.prices span.social_media_posts,
#global-wrapper #prices div.offer span.social_media_posts {
    font-family: arial,helvetica,sans-serif;
    font-weight: normal;
    text-align:left;
    font-size: 11px;
    line-height: 10px;
}

#global-wrapper #prices div.offer,
#global-wrapper #signup div.offer {
    padding: 5px;
	text-align: center;
	background: #ccc;
	background: #e5e5e5;
	background: transparent url(footer-bg.gif) 0 -1px repeat-x;
	border: 1px solid #ccc;
	color: #333;
	font-weight: bold;
    width: 567px;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

#global-wrapper #prices ul.prices,
#global-wrapper #prices ul.offer {
    padding-left: 30px;
    margin-bottom: 15px;
    list-style-type: disc;
}

#global-wrapper #prices ul.prices li {
    line-height: 20px;
}

#global-wrapper #press ul.press,
#global-wrapper #accounts ul.newschannels {
    padding-left: 30px;
    margin-bottom: 15px;
    list-style-type: disc;

    float: left;
    width: 580px;
}

#global-wrapper #press ul.press li {
    float: left;
    line-height: 20px;
    width: 280px;
}

#global-wrapper #about #context .title,
#global-wrapper #agb #context .title,
#global-wrapper #help #context .title,
#global-wrapper #press #context .title,
#global-wrapper #legal-notice #context .title{
	background: #eee;
	padding: 7px 0 6px 0px;
	border: 1px solid #ccc;
	border-width: 1px 0px;
}

#global-wrapper content div.title h1,
#global-wrapper content div.title h2 {
	float: left;
	margin: 0 0px 0 0px;
    padding-left: 5px;
}

#global-wrapper #vendors div.title h1,
#global-wrapper #vendors div.title h2{
    padding-right: 10px;
    padding-left: 0px;
    float: none;
}

#global-wrapper #vendors #context .widget div.title h1,
#global-wrapper #vendors #context .widget div.title h2{
    padding-left: 5px;
    float: left;
}

#global-wrapper #accounts div.intro,
#global-wrapper .spoiler div.intro{
	width: 615px;
}

#global-wrapper .index div.title h1 {
	margin: 0;
}

#global-wrapper .index div.item div.title {
	width: 100%;
}

#global-wrapper .index div.item div.title h2,
#global-wrapper .index div.item div.title p {
	display: inline;
}

#global-wrapper .index div.item div.title p,
#global-wrapper .mydata div.item div.title p,
#global-wrapper .partners div.item div.title p{
	text-align: right;
	float: right;
	margin: 0px;
	padding-top: 3px;
	padding-right: 5px;
}

#global-wrapper .index #content div.section {
	margin: 0 0 30px 0;
}

div.title ul.actions {
    float: right;
}

div.title ul.actions li {
    float: left;
    padding-right: 5px;
    line-height: 19px;
}

#content div.title ul.actions a {
	color: #003399;
}


/*  @group: news front
------------------------------------------------------------------------------------ */
#global-wrapper #news .item .date p,
#global-wrapper #news .item .user p{
	margin-bottom: 5px;
}

#global-wrapper #news .item .rating,
#global-wrapper .news .item .rating{
	margin-bottom: 25px;
    margin-left: 15px;
    width: 300px;
    float: left;
}

#global-wrapper #news .item .watchlist{
	margin-top: 19px;
    width: 300px;
    float: left;
}

#global-wrapper #news .item .rating-teaser{
	margin-bottom: 0px;
}

#global-wrapper #news.show .section .item {
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.item em {
	font-style: italic;
}


/*  @group: references front
------------------------------------------------------------------------------------ */


div#references div.detail {
	float: left;
	width: 615px;
}

div#references div.detail div.last {
	width: 90px;
}

div#references div.detail div.description {
	float: left;
	width: 615px;
}

div.item div.description{
	width: 600px;
}

div.image div.description
{
	width: 460px;
}

/*  @group: about
------------------------------------------------------------------------------------ */

div#about.detail p {
	margin: 0 0 15px 0;
}

/*  @group: detail
------------------------------------------------------------------------------------ */

div#detail div.section div.item h4 {
	margin: 0 0 0 0;
}

/*  @group: accounts-page
------------------------------------------------------------------------------------ */

#global-wrapper #accounts fieldset.action { /* specified width fixed duplicate content bug in ie6 */
	margin: 15px 0 0 135px;
	width: 475px;
}

#global-wrapper #accounts.jobs fieldset.action { /* specified width fixed duplicate content bug in ie6 */
	margin: 5px 0 0 0px;
	width: 175px;
}

#global-wrapper #accounts.newschannels .internal fieldset.action {
	width: 150px;
    clear: both;
}

#global-wrapper #accounts.newschannels fieldset.action {
	width: 600px;
}

#global-wrapper #accounts div.section {
	background: none;
	padding: 0;
}

#global-wrapper #accounts #nav-breadcrump,
#global-wrapper #watchlist #nav-breadcrump {
	border: none;
	margin-bottom: 15px;
	width: 615px;
}

#global-wrapper #accounts #context {
	margin: -30px 0 0 0;
}

/*  @group: news-back */

#global-wrapper #accounts #jobs div.item,
#global-wrapper #accounts #presslists div.item,
#global-wrapper #accounts #news div.item,
#global-wrapper #accounts #downloads div.item,
#global-wrapper #accounts #screenshots div.item,
#global-wrapper #accounts #profileskills div.item,
#global-wrapper #accounts #references div.item,
#global-wrapper #accounts #partners div.item,
#global-wrapper #accounts #pressboxes div.item,
#global-wrapper #accounts #team div.item {
	background: #fff url(/assets/design/dots-horizontal.gif) 0 100% repeat-x;
}

#global-wrapper #accounts #references div.item,
#global-wrapper #accounts #team div.item {
	width: 615px;
}
/*  @group: sort */

ul#sort {
	float: left;
	width: 100%;
}

ul#sort li {
	cursor: move;
}

ul.both li {
	float: left;
	width: auto;
}

ul.both li div.image {
	width: auto;
}

ul.vertical li {
	float: left;
	width: 100%;
}

/*  @group: references front */

#references div.item {
/*	height: 105px; */
	overflow: hidden;
}

#references div.detail div.description {
	margin: 0 0 15px 0;
}

#references div.detail div.movie {
	float: left;
	width: 100%;
}

/*  @group: messages
------------------------------------------------------------------------------------ */

div.message {
	float: left;
	width: 580px;
	margin: 0 0 15px 0;
	padding: 4px 5px 4px 30px;
}

div #microsite-message {
    width: 795px;
    float: left;
	padding: 0;
	background: #FFF; /* overlay dashed border on right side */
}

div #microsite-message .message {
    width: 760px;
}

div.message h3,
div.message p {
	margin: 0;
}

div.global-success {
	display: block;
	border-bottom: 1px solid #9c9;
	border-top: 1px solid #9c9;
	background: #efe url(/assets/design/icons/success.gif) 5px 4px no-repeat;
}

div.global-success h3 {
	color: #060;
}

div.global-error {
	display: block;

	border-bottom: 1px solid #c66;
	border-top: 1px solid #c66;
	background: #fee url(/assets/design/icons/error.gif) 5px 4px no-repeat;
}

div.global-error h3 {
	color: #600;
}

div.global-warning {
	display: block;
	border-bottom: 1px solid #CCCC66;
	border-top: 1px solid #CCCC66;
	background: #fff url(/assets/design/icons/warning.gif) 5px 4px no-repeat;
}

/*  @group: prompts
------------------------------------------------------------------------------------ */

p.prompt,
div.prompt {
	background: #ffe;
}

div.prompt {
	position: relative;
	float: left;
	width: 595px;
	margin: 0 0 15px 0;
	padding: 9px 10px;
	border-top: 1px solid #cc6;
	border-bottom: 1px solid #cc6;
}

div.prompt h2,
div.prompt p {
	margin: 0;
	text-align: center;
	text-align: left;
}

p.prompt {
	display: block;
	padding: 5px !important;
}

#content div.prompt p a {
	text-decoration: underline !important;
}

div.prompt p.hide {
	position: absolute;
	right: 10px;
	top: 10px;
}

#content div.prompt p.hide a {
	color: #660;
}

div.first-visit h2 {
	margin: 0 0 10px 0;
}

div.first-visit h3 {
	margin: 0 0 0 0;
}

div.first-visit ol {
	margin: 10px 0 0 0;
}

div.first-visit ol li {
	padding: 10px 0 10px 35px;
}

div.first-visit ol li.categories {
	background: transparent url(/assets/design/prompt-list-1.gif) 0 10px no-repeat;
}

div.first-visit ol li.main_category {
	background: transparent url(/assets/design/prompt-list-2.gif) 0 10px no-repeat;
}

div.first-visit ol li.my-entry {
	background: transparent url(/assets/design/prompt-list-3.gif) 0 10px no-repeat;
}

div.first-visit ol li.my-products {
	background: transparent url(/assets/design/prompt-list-4.gif) 0 10px no-repeat;
}

div.first-visit ol li.checked {
	background: transparent url(/assets/design/prompt-list-checked.gif) 0 10px no-repeat;
}

/*  @group: partners
------------------------------------------------------------------------------------ */
#global-wrapper .inbox #partners div.list {
	width: 615px;
}

/*  @group: messages
------------------------------------------------------------------------------------ */

li.unread a,
tr.unread a {
	font-weight: bold;
}

#global-wrapper .inbox table,
#global-wrapper .outbox table {
	float: left;
	width: 100%;
}

th {
	font-weight: bold;
	border-bottom: 1px solid #ccc;
}

th.sort-desc {
	background: transparent url(/assets/design/icons/sort-down.gif) 95% 50% no-repeat;
}

th.sort-asc {
	background: transparent url(/assets/design/icons/sort-up.gif) 95% 50% no-repeat;
}

td {
	padding: 5px 0;
	background: transparent url(/assets/design/dots-horizontal.gif) 0 100% repeat-x;
}

#content th a {
	display: block;
	color: #000;
}

th.checkbox,
td.checkbox {
	width: 30px;
	padding: 5px 15px 5px 0;
	text-align: right;
}

th.checkbox {
	padding: 0 15px 5px 0;
}

th.subject,
tr.subject,
th.contact,
td.contact {
	width: 225px;
}

.jobs th.contact,
.jobs td.contact {
	width: 150px;
}

.jobs th.note,
.jobs td.note,
.jobs th.status,
.jobs td.status {
	width: 175px;
}

.jobs th.action,
.jobs td.action,
.jobs th.matching,
.jobs td.matching,
.jobs th.created,
.jobs td.created {
	width: 75px;
}


span.date,
span.time {
	float: left;
	width: 50%;
}

span.time {
	text-align: left;
}

/*  @group: view */

div.message-head {
	width: 615px;
	margin: 0 0 15px;
	border-bottom: 1px solid #ccc;
	padding: 0 0 14px;
}

div.message-head dt {
	float: left;
	width: 75px;
	margin: 0 15px 0 0;
	font-weight: bold;
	color: #666;
	text-align: right;
}

div.message-head dd.subject {
	font-weight: bold;
}

div.message-content {
	margin: 0 90px;
}

/*  @group: submit */

#global-wrapper #watchlist.inbox fieldset.action,
#global-wrapper #accounts.inbox fieldset.action,
#global-wrapper #accounts.outbox fieldset.action {
	margin: 5px 0;
}

#global-wrapper #watchlist.inbox fieldset.action p,
#global-wrapper #accounts.inbox fieldset.action p,
#global-wrapper #accounts.outbox fieldset.action p {
	float: left;
	width: 255px;
	margin: 5px 15px 0 0;
	text-align: right;
}

/*  @group: watchlist
------------------------------------------------------------------------------------ */

td.addressbook-add,
td.addressbook-delete,
td.addressbook-edit,
td.addressbook-agb,
td.addressbook-userdata,
#watchlist td.delete,
td.view,
td.mail,
td.delete {
	padding: 0;
	width: 25px;
}


td.addressbook-add a,
td.addressbook-delete a,
td.addressbook-edit a,
td.addressbook-agb a,
td.addressbook-userdata a,
td.view a,
td.mail a,
td.delete a {
	float: left;
	width: 100%;
	padding: 5px 0;
}

td.addressbook-add a {
	background: transparent url(/assets/design/icons/addressbook-add.gif) 0 4px no-repeat;
	text-indent: -9999px;
}

td.addressbook-delete a {
	background: transparent url(/assets/design/icons/delete.gif) 0 4px no-repeat;
	text-indent: -9999px;
}

td.addressbook-edit a {
	background: transparent url(/assets/design/icons/edit.png) 0 4px no-repeat;
	text-indent: -9999px;
}

td.addressbook-userdata a {
	background: transparent url(/assets/design/icons/myentry.gif) 0 4px no-repeat;
	text-indent: -9999px;
}

td.addressbook-agb a {
	background: transparent url(/assets/design/icons/agb.png) 0 4px no-repeat;
	text-indent: -9999px;
}

td.delete a {
	background: transparent url(/assets/design/icons/delete.gif) 6px 4px no-repeat;
}

td.mail a {
	background: transparent url(/assets/design/icons/message.gif) 6px 4px no-repeat;
}

td.view a {
	background: transparent url(/assets/design/icons/myentry.gif) 6px 4px no-repeat;
}

#watchlist td.addressbook-add a span,
td.view a span,
td.mail a span,
td.delete a span {
	display: block;
	text-indent: -10000px;
}

#watchlist tr.watchlist-head td {
	background: transparent;
}

#watchlist td.note-label {
	text-align: right;
	vertical-align: top;
	font-weight: bold;
}

#watchlist td.contact {
	width: 175px;
	padding: 5px 15px 5px 0;
}

#watchlist td.note {
	width: 215px;
	padding: 5px 15px 5px 0;
}

#watchlist td.type{
	width: 75px;
	padding: 5px 15px 5px 0;
}

#watchlist td.note div.textarea textarea {
	width: 250px;
}

#watchlist td.note p {
	margin: 0;
}

#watchlist fieldset.action {
	margin: 0;
}

#global-wrapper #accounts.jobs td.note div.textarea textarea {
	width: 150px;
}

#global-wrapper #accounts.jobs td.status div.select select {
	width: 150px;
}

/*  @group: nav-content
------------------------------------------------------------------------------------ */

#nav-content {
	position: relative;
	float: left;
	width: 615px;
	height: 25px;
}

#nav-content ul,
#nav-content li {
	float: left;
	width: auto;
}

#nav-content ul {
	position: absolute;
	left: 0;
	bottom: -1px;
}

#nav-content li {

}

#nav-content li a {
	float: left;
	padding: 5px 5px 4px 5px;
	width: 143px;
	color: #003399;
	border-bottom: 1px solid #ccc;
}

.newschannels #nav-content li a{
	width: 104.7px;
}

#nav-content li#nav-content-search a {
	width: 146px;
}

#nav-content li.selected a {
	border: 1px solid #ccc;
	border-bottom: 1px solid #fff;
	padding: 4px;
	color: #003399;
	font-weight: bold;
}

/*  @group: nav-content-sub
------------------------------------------------------------------------------------ */

#nav-content-sub {
	float: left;
	width: 613px;
	margin: 0 0 15px 0;
	border: 1px solid #ccc;
	border-top: none;
}

#nav-content-sub a {
}

#nav-content-sub li.selected a {
	color: #000;
	font-weight: bold;
}

div.alphabet li,
div.view-tags li,
div.categories li {
	display: inline;
}

div.alphabet span,
div.alphabet a {
	float: left;
	width: auto;
	padding: 5px;
}

div.alphabet span {
	color: #999;
}


div#nav-content-sub.view-tags,
div#nav-content-sub.categories {
	width: 605px;
	padding: 4px;
}


div.view-tags ul,
div.categories ul {
	line-height: 10px;
}

/*  @group: search */

div.search {
	padding: 14px 0;
}

div.search label {
	margin: 0 15px 0 5px;
	width: 115px;
}

#content div.search fieldset.action {
	margin: 0 0 0 135px;
}

/*  @group: addressbook
------------------------------------------------------------------------------------ */

#global-wrapper .addressbook th.contact,
#global-wrapper .addressbook td.contact {
	width: 165px;
	padding-right: 15px;
}

th.zip {
	width: 45px;
}

th.city {
	width: 90px;
}

td.label {
	text-align: right;
	padding-right: 15px;
	color: #666;
}

td.categories li,
td.tags li {
	display: inline;
}

#content td.categories li a,
#content td.tags li a {
	color: #000;
	text-decoration: underline;
}

td.tags p {
	margin: 0;
}

td.note p {
	margin: 0;
}

td.note p span.modified {
	color: #666;
}

tr.internal td {
	background: none;
}

/*  @group: AJAX BROWSER
------------------------------------------------------------------------------------ */

#browser-overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 100;
	background-color: #000;
	-moz-opacity: 0.4;
	opacity: 0.4;
}

#browser {
	position: absolute;
	width: 650px;
	height: 560px;
	left: 50%;
	margin-left: -25%;
	top: 80px;
	z-index: 101;
}

#browser-content {
	position: absolute;
	width: 630px;
	padding: 10px;
	height: 500px;
	background-color: #FFF;
	overflow: auto;
	right: 0px;
	top: 25px;
	background-color: #FFF;
	z-index: 101;
/*	border: 1px solid #000;*/
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
}

#browser-content.browser-loading {
	background: #fff url('spinner.gif') no-repeat 50% 50%;
}

#browser-close-link {
	position: absolute;
	right: 0px;

	width: 15px;
	height: 15px;

	padding: 10px 10px;


	margin-left: -25%;
	z-index: 102;
	background: #fff;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
}

#browser-close-link a {
	display: block;
	width: 13px;
	height: 13px;
	border: 1px solid #ccc;
	color: #999;
	text-align: center;
	text-decoration: none;
	line-height: 13px;
	font-size: 11px;
}

#browser-close-link a:hover {
	color: #000;
	border: 1px solid #000;
}

#map-browser {
	position: absolute;
	width: 630px;
	padding: 10px;
	height: 500px;
	overflow: auto;
	left: 50%;
	margin-left: -25%;
	top: 100px;
	background-color: #FFF;
	z-index: 101;
	border: 1px solid #000;
}

#map-browser iframe {
	width: 100%;
	height: 100%;
	border: none;
}

#main.ajax {
	width: 630px;
	background-image: none;
	margin: 0;
	padding: 0;
}

div embed {
	width: 100%;
}

#map {
	float: left;
	width: 630px;
	height: 500px;
}

/*  @group: statistics
------------------------------------------------------------------------------------ */

#global-wrapper .statistics object,
#global-wrapper .statistics embed {
	float: left;
	width: 100%;
	margin: 0 0 15px 0;
}

#global-wrapper .statistics div.item {
	width: 100%;
}

#global-wrapper .statistics table {
	width: 100%;

}

th.day,
td.day {
	width: 100px;
	padding-right: 15px;
}

th.visit,
td.visit {
	text-align: center;
}

th.visit {
	color: #cc6600;
}

th.impression,
td.impression {
	text-align: center;
}

table.overview th.impression {
	width: 25px;
}

table.overview th.impression {
	color: #000;
}

th.impression {
	color: #6699cc;
}

th.listings {
	color: #aef227;
}

td.listings {
	text-align: center;
}

th.downloadrequests {
	color: #f227f2;
}

#DownloadrequestRequestForm {
	float: left;
	width: 100%;
}

td.downloadrequests {
	text-align: center;
}

/*  @group: email & website */

span.print {
	display: none;
}


/*  @group: signup
------------------------------------------------------------------------------------ */

#signup #main {
	background: #fff;
}

#signup div.title {
	font-size: 24px;
}

#signup div.title h1 {
	margin: 10px 0 5px;
}

#signup div.title h2 {
}

#signup h2 {
	font-size: 13px;
	margin: 0;
}

#signup.products div.title,
#signup.products div.content {
	float: left;
	width: 795px;
}

#signup table#products-table,
#prices table#products-table {
	width: 100%;
	border-top: 1px solid #e5e5e5;
}

#signup th,
#signup td,
#prices th,
#prices td {
	text-align: left;
	font-weight: normal;
	width: 14%;
	background-image: none;
/*	border: 1px solid #000;*/
	border-left: 1px solid #ccc;
}

#signup td span.register_link a {
    color: #003399;
    font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2",arial,helvetica,sans-serif;
    font-size: 18px;
    font-weight: bold;
}

/*
#signup #CustomerOrderForm .submit input{
	-moz-border-radius: 2px 2px 2px 2px;
    background: none repeat scroll 0 0 #000000;
    background: #eee;
    border: 1px solid #777;
    color: #FFFFFF;
    color: #111;
    font-size: 10px;
    padding: 2px;
    width: auto;
}*/

th span.price {
	font-size: 18px;
	font-weight: bold;
}

th span.statement {
	font-size: 12px;
	font-weight: bold;
}

th span.contract-time {
	font-size: 11px;
/*	color: #666;*/
display: block;
}

th span.plan {
	font-weight: bold;
}

#signup tr.plans th,
#prices tr.plans th {
	padding: 10px 5px;
/*	border-right: 1px solid #ccc; */
	border-bottom: 1px solid #CCCCCC;
	text-align: center !important;
	background: transparent url(footer-bg.gif) 0 -1px repeat-x;
}

#signup tr.comment th,
#prices tr.comment th {
	padding: 5px;
/*	border-right: 1px solid #fff; */
	border-bottom: none;
	text-align: center;
	background: #ccc;
	background: #e5e5e5;
	background: transparent url(footer-bg.gif) 0 -1px repeat-x;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color: #333;
	font-weight: bold;
}

#signup th.feature,
#prices th.feature {
	text-align: right;
	padding: 5px 15px;
}

#signup td.yes,
#prices td.yes {
	background: transparent url(/assets/design/icons/add.gif) 50% 50% no-repeat;
	text-indent: -9999px;
}

#signup tr.feature td,
#prices tr.feature td {
	border-bottom: 1px solid #e5e5e5;
	text-align: center;
}

#signup tr.feature th.feature,
#prices tr.feature th.feature {
	background: transparent url(footer-bg.gif) 0 -1px repeat-x;
}


#signup.products th.last,
#signup.products td.last,
#prices.products th.last,
#prices.products td.last {
	border-right: 1px solid #ccc;
}

th.gold {
	color: #cc0;
}

th.silver {
	color: #99c;
}

th.free a {
	color: #666;
}

th.free span.price {
	color: #666;
}

th.free span.contract-time {
	color: #999;
	color: #666;
}

th.free span.plan {
	color: #666;
}

th.silver a {
	color: #669;
}

th.silver span.price {
	color: #669;
}

th.silver span.contract-time {
	color: #99c;
	color: #669;
}

th.silver span.plan {
	color: #669;
}

th.gold a {
	color: #990;
}

th.gold span.price {
	color: #990;
}

th.gold span.statement {
	color: #990;
}

th.gold span.contract-time {
	color: #cc0;
	color: #990;
}

th.gold span.plan {
	color: #990;
}

#signup tr.submit td,
#prices tr.submit td {
	text-align: center;
}

#signup tr.submit td,
#prices tr.submit td {
	background: transparent url(footer-bg.gif) 0 -1px repeat-x;
	border-bottom: 1px solid #ccc;
}

tr.submit a {
	font-size: 14px;
	font-weight: bold;
}

tr.submit em {
	color: #333;
}

#signup th.free,
#signup td.free,
#prices th.free,
#prices td.free {
	border-left: 1px solid #666;
}


#signup td.free,
#signup td.silver,
#signup td.gold,
#signup th.free,
#signup th.silver,
#signup th.gold,
#prices td.free,
#prices td.silver,
#prices td.gold,
#prices th.free,
#prices th.silver,
#prices th.gold {
}


/*  @group: order */

#signup #content form {
	width: 615px;
}

div.radio fieldset .hint,
#signup div.radio fieldset .hint{
	margin-left: 0px !IMPORTANT;
    clear: left !IMPORTANT;
}

#signup form div.description {
	float: left;
	width: 615px;
	margin: 0 0 15px 0;
}

#signup form div.description p {
	margin: 0 135px 0 135px;
}

#signup fieldset.coupon {
    margin-bottom: 20px;
}

#signup fieldset.payment div.radio input {
	float: left;
	margin: 2px 5px -2px 135px;
}

#signup fieldset.confirm input {
	margin: 2px 5px -2px 135px;
}

#global-wrapper .order #content {
	margin: 0 0 0 65px;
}

#signup div.text label,
#signup div.password label {
	text-align: left;
}

#signup div.prefix input {
	width: 210px;
}

div.prefix input.prefixed-slug {
	width: 210px;
}

span.prefix {
	float: left;
	font-size: 11px;
	line-height: 20px;
	margin: 0 5px 0 0;
}

#signup div.radio {

}

#signup div.radio label {
	float: left;
	width: 325px;
}

/*
#signup h3 {
	width: 480px;
	padding: 0 0 0 135px;
}
*/

/*  @group: categories
------------------------------------------------------------------------------------ */

#global-wrapper .categories h4 {
	float: left;
	width: 300px;
	margin: 10px 0 5px 0;
	padding: 0;
	color: #000;
	font-weight: bold;
}

#global-wrapper .categories div.checkbox {
	width: 300px;
}

#global-wrapper .categories div.checkbox input {
	margin-left: 0;
}

#global-wrapper .categories div.checkbox label {
	width: auto;
}

#global-wrapper .categories fielset.action {
	margin: 0 !important;
}

#global-wrapper .categories div.item {
	float: left;
	width: 300px;
	margin: 0 15px 0 0;
}

#global-wrapper .categories #main fieldset.action {
	position: fixed;
	left: 510px;
/*	top: 500px;*/
	bottom: 0;
	width: 150px !important;
	margin: 15px 0;
	padding: 15px 15px;
	background: #eee;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

#global-wrapper .categories fieldset.action p.order {
	margin: 10px 0 0 0;
}

#global-wrapper .categories #content fieldset.action p.order a {
	color: #666;
	text-decoration: underline;
}

/* ein- und ausklappen */

#global-wrapper .categories fieldset.open div.item {
	display: block !important;
}

#global-wrapper .categories fieldset.closed div.item {
	display: none !important;
}

#global-wrapper .categories fieldset.open h3,
#global-wrapper .categories fieldset.closed h3 {
	text-indent: 15px;
	cursor: pointer;
}

#global-wrapper .categories fieldset.open h3 {
	background: transparent url(/assets/design/arrow-down.gif) 1px 5px no-repeat;
}

#global-wrapper .categories fieldset.closed h3 {
	background: transparent url(/assets/design/arrow-right.gif) 3px 2px no-repeat;
}



/*  @group: cms
------------------------------------------------------------------------------------ */

#cms #content,
#news #content,
#specials #content {
	width: 630px;
}

#cms #context,
#news #context,
#specials #context {
	float: right;
}

#global-wrapper #cms #header,
#global-wrapper #news #header,
#global-wrapper #specials #header {
	border-bottom: none;
}

#cms #footer,
#news #footer,
#specials #footer {
	border-top: none;
}

#cms #nav-sub li,
#news #nav-sub li,
#specials #nav-sub li {
	margin-right: 15px;
}

/*  @group: products
------------------------------------------------------------------------------------ */

#global-wrapper .orders #content div.section,
#global-wrapper .softwareorders #content div.section {
	margin: 0 0 20px 0;
}

.products-number {
	width: 60px;
}

.products-title {
	width: 270px;
}

.products-title-big {
	width: 394px;
}

.products-valid-from,
.products-price {
	width: 135px;
}

#orders td.action,
.orders td.products-action,
#orders td.products-action,
#softwareorders td.action {
	text-align: right;
    padding-right: 5px;
}

/*  @group: confirm */

#global-wrapper .orders div.section p,
#global-wrapper .orders div.section dl,
#global-wrapper .softwareorders div.section p,
#global-wrapper .softwareorders div.section dl {
	float: left;
	margin: 0 0px 15px;
}

#global-wrapper .orders dt,
#global-wrapper .deliveryreport dt,
#global-wrapper .jobprofile dt,
#global-wrapper .softwareorders dt,
#global-wrapper .eventprofiles dt {
	float: left;
	width: 135px;
	/*border-bottom: 1px solid #eee;*/
	font-weight: bold;
	display: inline; /* ie6 */
}

#global-wrapper .orders dd,
#global-wrapper .softwareorders dd {
	float: left;
	width: 400px;
    padding-bottom: 5px;
	/*border-bottom: 1px solid #eee;*/
}

#global-wrapper .deliveryreport dd,
#global-wrapper .jobprofile dd,
#global-wrapper .eventprofiles dd {
	float: left;
	width: 400px;
    padding-bottom: 5px;
	/*border-bottom: 1px solid #eee;*/
}


/*  @group: microsite, backlink
------------------------------------------------------------------------------------ */

div.back {
	float: left;
	width: 100%;
	margin: 15px 0 0 0;	/* kontext-bezogen ändern */
}

#global-wrapper .about div.back {
	margin: 0;
}

/*  @group: addressbook
------------------------------------------------------------------------------------ */

table td div.input {
	width: 100%;
}

span.tooManyCharacters {
	background: #ffe;
	color: #443;
	border-bottom: 1px solid #cc6;
	border-top: 1px solid #cc6;
}

#global-wrapper .addressbook th.toggle a,
#global-wrapper .jobs th.toggle a,
#global-wrapper .newschannels th.toggle a {
	float: right;
	display: block;
	width: 21px;
	height: 11px;
	background: transparent url(/assets/design/toggle-view.gif) 0 -11px no-repeat;
	text-indent: -10000px;
}

#global-wrapper .addressbook th.toggle a:focus,
#global-wrapper .jobs th.toggle a:focus,
#global-wrapper .newschannels th.toggle a:focus {
	outline: none;
}

#global-wrapper .addressbook th.toggle a.extended,
#global-wrapper .jobs th.toggle a.extended,
#global-wrapper .newschannels th.toggle a.extended {
	background: transparent url(/assets/design/toggle-view.gif) 0 0 no-repeat;
}

/*  @group: table styles
------------------------------------------------------------------------------------ */

th.sort-asc a {
	padding: 0 15px 0 0;
	display: inline !important;
	background: transparent url(/assets/design/arrow-up-black.gif) 100% 3px no-repeat;
}

th.sort-desc a {
	padding: 0 15px 0 0;
	display: inline !important;
	background: transparent url(/assets/design/arrow-down-black.gif) 100% 3px no-repeat;
}


/*  @group: invoices
------------------------------------------------------------------------------------ */

#main td.paypal img {
	border: none;
}

/*  @group: confirm
------------------------------------------------------------------------------------- */
div#confirm-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 100;
	background-color: #000;
	-moz-opacity: 0.4;
	opacity: 0.4;
}

div#confirm {
	position: absolute;
	width: 330px;
	padding: 10px;
	height: 200px;
	overflow: auto;
	left: 50%;
	margin-left: -25%;
	top: 100px;
	background-color: #FFF;
	z-index: 101;
}

#confirm-close-link {

	position: absolute;
	left: 50%;
	top: 75px;

	width: 15px;
	height: 15px;

	padding: 10px 10px;


	margin-left: -25%;
	z-index: 102;
	background: #fff;
}

#confirm-close-link a {
	display: block;
	width: 13px;
	height: 13px;
	border: 1px solid #ccc;
	color: #999;
	text-align: center;
	text-decoration: none;
	line-height: 13px;
	font-size: 11px;
}

#confirm-close-link a:hover {
	color: #000;
	border: 1px solid #000;
}

div#confirm p.action {
	font-size: 12px;
	padding: 10px;
}

div#confirm p.action a {
	display: block;
	float: left;
	padding: 10px;
}

div.feedback{
    position:   fixed;
    top:        200px;
    right:      -5px;
    z-index:    99;
}

div.recommend{
	position: fixed;
	top: 100px;
	right: -5px;
	z-index: 99;
}

div.feedback .img{
    height:     74px;
    width:      38px;
    display:	block;
    text-indent: -9999;
    background-image: url('/assets/design/feedbacknew.png');
}

div.recommend .img{
	height:     74px;
    width:      38px;
    display:	block;
    text-indent: -9999;
    background-image: url('/assets/design/recommendnew.png');
}

div.feedback:hover,
div.recommend:hover{
    right: 0px;
}

iframe{
	border: none;
}

div.pagination{
	clear: both;
	position: relative;
	text-align: center;
    font-size: 11px;
	/*font-weight: 700;*/
    line-height: 15px;
}

div.pagination .left{
	float: left;
}

div.pagination .right{
	float: right;
}

div.pagination .head{
	width: 0px;
	margin: 0% auto;
    overflow: visible;
}

#global-wrapper #news.show #main{
    padding: 0 15px;
}

#global-wrapper .browse #content div.leftcol{
	margin-right: 15px;
}

/*#global-wrapper .browse #content .item,*/
#global-wrapper .spoiler #content .item{
	background: #fff url(/assets/design/dots-horizontal.gif) 0 100% repeat-x;
}

#global-wrapper .skills #content #skills .section{
	background: #fff url(/assets/design/dots-horizontal.gif) 0 100% repeat-x;
    margin-bottom: 15px;
}

#global-wrapper .skills #content #skills div.last{
	margin-bottom: 0px !IMPORTANT;
}

#global-wrapper .skills #content #skills #languages div.last{
    margin-bottom: 15px !IMPORTANT;
}

#global-wrapper .skills #content #skills #experiences.section  {
	background: none;
}

#global-wrapper .spoiler #content .item{
	padding-bottom: 0px;
}

/* Jello-Layout */
#global-wrapper{
	width: 1000px;
	width: 1018px;
	margin: 0 auto;
	float: none;
}

#skyscraper{
	float: right;
	position: static;
	margin-top: 25px;
	/*margin-right: 110px;*/
}

#global{
	margin-top: 25px;
}

#global-wrapper #accounts.categories #main fieldset.action {/* specified width fixed duplicate content bug in ie6 */
	position: static;
	clear: both;
	padding-right: 0px;
	float: right;
	margin: 0px;
	height: 250px;
	z-index: 10;
}

#global-wrapper #vendors div.last{
	margin-bottom: 15px !IMPORTANT;
}

/*             styles for the star rater                */
.star-rating{
	list-style:none;
	margin: 5px 0px;
	padding: 0px;
	width: 125px;
	height: 25px;
	position: relative;
	overflow:hidden;
	background: url(/assets/design/alt_star.gif) top left repeat-x;
}
.star-rating li{
	padding:0px;
	margin:0px;
	width:25px;
	height:25px;
	/*\*/
	float: left;
	/* */
}
.star-rating li a{
	display:block;
	width:25px;
	height: 25px;
	line-height:25px;
	text-decoration: none;
	text-indent: -9000px;
	z-index: 20;
	position: absolute;
	padding: 0px;
	overflow:hidden;
}
.star-rating li a:hover{
	background: url(/assets/design/alt_star.gif) left bottom;
	z-index: 2;
	left: 0px;
	border:none;
}
.star-rating a.one-star{
	left: 0px;
}
.star-rating a.one-star:hover{
	width:25px;
}
.star-rating a.two-stars{
	left:25px;
}
.star-rating a.two-stars:hover{
	width: 50px;
}
.star-rating a.three-stars{
	left: 50px;
}
.star-rating a.three-stars:hover{
	width: 75px;
}
.star-rating a.four-stars{
	left: 75px;
}
.star-rating a.four-stars:hover{
	width: 100px;
}
.star-rating a.five-stars{
	left: 100px;
}
.star-rating a.five-stars:hover{
	width: 125px;
}
.star-rating li.current-rating{
	background: url(/assets/design/alt_star.gif) left center;
	position: absolute;
	height: 25px;
	display: block;
	text-indent: -9000px;
	z-index: 1;
}

.news-latest-rating{
	padding: 5px 0px;
	border: 1px dashed #ccc;
	border-width: 1px 0px;
}

.rating-teaser{
	font-size: 0.7em;
}

.average-rating, .self-rating{
	font-size: 0.5em;
}

div#context div.activity h3{
    margin: 0px;
    padding-bottom: 10px;
}

div#context div.activity .bar{
	padding-top: 5px;
}

div#context div.activity img.bar{
    border: none;
    padding: 0px;
    height: 12px;
    width: 118px;
    background:url("/assets/design/percentImage_back.png") no-repeat scroll 1px 0 white;
}

.recaptchatable{
	width: 340px;
}

#signup.order h3 div.entry{
	float: left;
}

#signup.order h3 div.submit{
	float: right;
}

#signup.order .action div{
	float: left;
	padding-right: 10px;
}

#signup.order .payment select,
#signup.order .payment input,
#accounts.contact #CustomerContactGender,
#accounts.contact #CustomerContactNameFirst
{
	margin-right: 10px;
}

#signup input.link{
	background: none !IMPORTANT;
	border: none !IMPORTANT;
	color: #039 !IMPORTANT;
}

#signup h3 .entry{
	float: left;
}

#signup h3 .submit{
	float: right;
}

#signup.products #products-table h1{
	margin: 10px 0px;
}

.ui-datepicker{
	font-size: 12px !IMPORTANT;
}

#global-wrapper content #content > p{
	padding-right: 15px;
}

#global-wrapper #watchlist div.title {
	_background: transparent url(footer-bg.gif) 0 0 repeat-x;
	background: #eee;
	padding: 10px 0 9px 0;
	border: 1px solid #ccc;
	border-width: 1px 0px;
}

#global-wrapper #watchlist div.title h1 {
	float: left;
	width: 385px;
	margin: 0 230px 0 5px;
}

#global-wrapper #watchlist div.section{
	padding-top: 0px;
}

.team.index item.left{
	clear: left;
}

/**
* $text->truncate closes open tags of WYSIWYG editor after ending "a.more"
* this rules fixes the style.
*/
i a.more,
em a.more,
b a.more,
strong a.more,
font a.more {
	font-style: normal;
	font-weight: normal;
	color: #EB7200;
}

/**
* overflow: hidden
*/
div.description,
#context,
.section .item {
	overflow: hidden;
}

/**
*	overwrite basics
*	to include new style
*/

div.item{ /* two columns (300px * 2) + right-margin (15px) in one row (615px) */
	float: left;
	width: 615px;
	margin: 0 15px 15px 0;
	padding: 0px 0px 15px 0px;
}

div.item div.download,
div.item div.image {
	float: left;
	width: 125px;
	margin: 0px 5px 4px 0px;
	padding: 0px;
}

div.item div.description{
	float: left;
	padding: 0px 0px 0px 0px;
	width: 600px;
}

div.has_image div.description{
	padding-top: 10px;
	width: 460px;
}

div.has_download div.description {
	width: 460px;
}

div.has_image div.actions {
	padding-top: 10px;
}

#accounts div.item div.description{
	width: 465px;
}

#accounts div.has_image div.description{
	width: 350px;
}

#accounts div.item div.actions{
	float: right;
	width: 90px; /* ??? */
	width: 120px;
	margin: 0 15px 0 0;
	text-align: right; /* */
}

div.is_half{
	width: 300px;
}

div.section div.is_quarter {
	width: 145px;
    margin-right: 10px;
    background: none;
}

#global-wrapper .deliveryreport div.section div.is_quarter {
    width: 134px;
    margin-right: 10px;
    padding: 5px;
	text-align: center;
	background: #ccc;
	background: #e5e5e5;
	background: transparent url(footer-bg.gif) 0 -1px repeat-x;
	border: 1px solid #ccc;
	color: #333;
	font-weight: bold;
}

p.rate_total {
    font-size: 24px;
    margin-top: 5px;
}

p.rate_type {
    font-size: 16px;
    margin-bottom: 5px;
}

#global-wrapper .spoiler #content .item.is_quarter {
    background: none;
}

div.item.is_quarter div.description {
	width: 145px;
    padding-bottom: 10px;
}

div.is_half div.description{
	width: 160px;
}

#global-wrapper .browse div.title,
#global-wrapper .show div.title{
	_background: transparent url(/assets/design/footer-bg.gif) 0 0 repeat-x;
	background: #eee;
	padding: 7px 0 6px 0;
	border: 1px solid #ccc;
	border-width: 1px 0px;
}

#global-wrapper .browse div.title h1 {
	float: left;
	width: 385px;
	margin: 0 230px 0 5px;
}

#global-wrapper .show div.section,
#global-wrapper .browse div.section{
	background: none;
	padding-top: 0px;
}
/* Localized */

.message-content p{
	overflow: hidden;
}

.socialize {
    background-image: url("../design/socialize-facebook.png");
}

.facebook-find {
    float: left;
    margin-top: 23px;
    margin-bottom: 30px;
}

.facebook-find span.itbiene {
    background-position: 0 0;
    background-repeat: no-repeat;
    height: 148px;
    margin-bottom: 3px;
    overflow: hidden;
    text-indent: 250px;
    white-space: nowrap;
    width: 180px;
	display: block;
}

.facebook-find span.itbiene-widget1 {
    background-image: url("../design/itbiene-widget01.jpg");
}

.facebook-find span.itbiene-widget2 {
    background-image: url("../design/itbiene-widget02.jpg");
    height: 180px;
}

.facebook-find span.itbiene-widget3 {
    background-image: url("../design/itbiene-widget03.jpg");
    height: 150px;
}

.facebook-find span.itbiene-widget4 {
    background-image: url("../design/itbiene-widget04.jpg");
    height: 140px;
}

.facebook-find span.itbiene-widget5 {
    background-image: url("../design/itbiene-widget05.jpg");
    height: 150px;
}

.facebook-find span.itbiene-widget6 {
    background-image: url("../design/itbiene-widget06.jpg");
    height: 150px;
}

.facebook-find span.itbiene-widget7 {
    background-image: url("../design/itbiene-widget07.jpg");
    height: 150px;
}

.facebook-find span.itbiene-widget8 {
    background-image: url("../design/itbiene-widget08.jpg");
    height: 150px;
}

.facebook-find span.itbiene-widget9 {
    background-image: url("../design/itbiene-widget09.jpg");
    height: 150px;
}

.facebook-find span.itbiene-widget10 {
    background-image: url("../design/itbiene-widget10.jpg");
    height: 150px;
}

.facebook-find span.facebook {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url("../design/facebook-find.jpg");
    height: 148px;
    margin-bottom: 3px;
    overflow: hidden;
    text-indent: 250px;
    white-space: nowrap;
    width: 180px;
	display: block;
}

.clippingcroc {
    float: left;
    margin-top: 23px;
    margin-bottom: 30px;
    background-image: url("../design/markenbeobachtung-clippingcroc.png");
    background-repeat: no-repeat;
}

.clippingcroc span {
    background-position: 0 0;
    background-repeat: no-repeat;
    height: 148px;
    margin-bottom: 3px;
    overflow: hidden;
    text-indent: 250px;
    white-space: nowrap;
    width: 180px;
	display: block;
}

.socialize span {
    background-position: 0 0;
    background-repeat: no-repeat;
    height: 52px;
    margin-bottom: 3px;
    overflow: hidden;
    text-indent: 250px;
    white-space: nowrap;
    width: 180px;
	display: block;
}

.widget{
	margin-bottom: 15px;
}

.widget .title h2,
#global-wrapper #about .title h2,
#global-wrapper #agb .title h2,
#global-wrapper #help .title h2,
#global-wrapper #press .title h2,
#global-wrapper #legal-notice .title h2,
#global-wrapper #signup .title h1{
	padding: 0 0 0 5px;
	margin: 0;
}

.widget .quicksearch input[type="submit"]{
	-moz-border-radius: 2px 2px 2px 2px;
    background: none repeat scroll 0 0 #000000;
    border: medium none;
    color: #FFFFFF;
    float: right;
    font-size: 10px;
    padding: 2px;
    width: auto;
}

.widget .quicksearch input[type="text"]{
	border: 1px solid #CCCCCC;
}

.widget .quicksearch .submit{
	position: relative;
	top: 5px;
}

.widget .quicksearch input[type="radio"]{
	position: relative;
	top: 2px;
}

.widget .quicksearch fieldset label {
    display: inline-block;
    width: 30px;
    padding-right: 3px;
     margin-bottom: 5px;
}

.widget .quicksearch fieldset input,
.widget .quicksearch fieldset select {
    width: 110px;
    float: right;   
}

#global-wrapper .products div.section,
#global-wrapper .spoiler div.section,
#global-wrapper #functions div.section {
    background-image: none;
}

#global-wrapper .products .welcome,
#global-wrapper .spoiler .welcome,
#global-wrapper #functions div.section {
	padding: 0px;
}

#signup .welcome h2,
#global-wrapper .spoiler .welcome h2 {
	font-size: 11px;
	line-height: 15px;
    font-family: arial, helvetica, sans-serif;
    font-weight: bold;
}

#global-wrapper .spoiler .welcome .item{
	margin-bottom: 0px;
}

#global-wrapper .spoiler div.section div.input {
    width: 500px;
}

#vendors #news .detail .image,
#news.show .detail .image,
div#news.show div.item div.image,
#accounts.publish .detail .image,
#vendors #references .detail .image,
#events.show .detail .image {
	width: 240px;
    padding-right: 10px;
    padding-bottom: 5px;
    margin: 0px;
}

#global-wrapper #legal-notice .section{
	background-image: none;
}


#global-wrapper #legal-notice #content ol{
	list-style-type: decimal;
}

#global-wrapper #legal-notice #content ul{
	list-style-type: circle;
}

#global-wrapper #legal-notice #content ul,
#global-wrapper #legal-notice #content ol{
	margin-left: 15px;
}

#global-wrapper #legal-notice #content ul li,
#global-wrapper #legal-notice #content ol li{
	margin-left: 5px;
}

h1{
	font-size: 15px;
}

#vendors h1{
	font-size: 18px;
}

.wysiwyg-text{
	font-size: 11px;
	line-height: 15px;
	margin-bottom: 15px;
}

.wysiwyg-text ul,
.wysiwyg-text ol{
    list-style-position: inside;
    margin-left: 5px;
}

.wysiwyg-text ul{
	list-style-type: circle;
}

.wysiwyg-text ol{
	list-style-type: decimal;
}

#footer p{
	padding: 0px 25px;
}

#vendors #contact .contact p.text,
#vendors #contact .address p.text,
#vendors #contact .profilelinks p.text{
	margin-top: 10px;
    margin-bottom: 0px;
	display: block;
}

#vendors #contact .contact p.action,
#vendors #contact .address p.action{
	font-size: 11px;
	line-height: 12px;
	display: inline;
}

#vendors #contact .address p{
	margin: 0px;
}

#vendors #contact .activity p {
	margin: 0px;
    float: left;
}

#global-wrapper .skills#vendors #content div.section,
#global-wrapper .skills#vendors #content div.item{
	padding: 0 0 0 0;
}

#ProfileskillValueSlider,
#JobskillValueSlider{
    font-size: 62.5%;
    float: left;
    width: 340px;
}

.profileskills div.search-suggestion,
.jobskills div.search-suggestion {
	float: left;
    position: relative;
    left: -345px;
	width: 115px;
	background: #EFF3F4 url("/assets/design/nav-vendor-bg.gif") repeat-x left top;
	border-left: 1px solid #E6ECF2;
	border-right: 1px solid #E6ECF2;
	z-index: 200;
}

.jobskills div.search-suggestion ul li,
.profileskills div.search-suggestion ul li {
	padding: 2px 2px 3px;
	line-height: 15px;
	border-bottom: 1px solid #E5E5E5;
}

#accounts .slider_basic{
    float: left;
    margin-left: 0px;
    width: 165px;
}

#accounts .slider_expert{
    float: left;
    width: 100px;
}

#jobs .skillbar .bar,
#vendors .skillbar .bar{
    border: none;
    padding: 0px;
    height: 12px;
    width: 200px;
    background:url("/assets/design/percentImage_back402.png") no-repeat scroll 1px 0 white;
}

#accounts .skillbar .bar{
    border: none;
    padding: 0px;
    margin-left: 20px;
    height: 12px;
    width: 200px;
    background:url("/assets/design/percentImage_back402.png") no-repeat scroll 1px 0 white;
}

#CertificateTypesSelect,
#ExperienceTypesSelect,
#skill_type{
    width: 340px;
}

#global-wrapper .browse.facebook #content .section,
#global-wrapper .browse.facebook #content .item {
    width: 100%;
}

#global-wrapper #news .facebook div.is_half {
    width: 240px;
}

#global-wrapper #news .facebook #content div.list {
    float: left;
    width: 240px;
}

#global-wrapper #news .facebook #content,
#global-wrapper #news .facebook #content div.section,
#global-wrapper #news .facebook #content #section,
#news.facebook #content {
    width: 500px;
}

#global-wrapper #news .facebook #content div.title {
    width: 100%;

    background: #eee;
	padding: 7px 0px 6px 0px;
	border: 1px solid #ccc;
	border-width: 1px 0px;

    height: 15px;
    
}

#vendors.facebook h1 {
    font-size: 15px;
}

#skills div.is_half div.description {
    width: 300px;
 }

#vendors.about .item{
     margin-bottom: 0px;
     padding-bottom: 5px;
}

#screenshots.full{
    margin: 10px;
}

.row{
    float: left;
    /*background: url("/assets/design/dots-horizontal.gif") repeat-x scroll 0 100% #FFFFFF;*/
/*    border-bottom: 1px dotted #ccc;*/
    /*padding-top: 15px;*/
}

.row .item{
    padding-top: 15px;
    padding-right: 7px;
    margin-right: 8px;
/*    border-right: 1px dotted #ccc;*/
}

.row .last{
    padding-right: 0px;
    margin-right: 0px;
    border-right: none;
}

.row .item{
    background-image: none;
    margin-bottom: 0px;
}

.row.single{
    width: 100%;
}

.row.single .item{
    width: 605px;
    border-right: none;
}

#jobs .row.single,
#news .row.single,
#events .row.single{
    background: transparent url(/assets/design/dots-horizontal.gif) 0 100% repeat-x;
}

#jobs #jobs_section .item 
#news #news_section .item {
    padding-bottom: 0px;
}

#news .action {
    padding-bottom: 15px;
}

#jobs .action,
#events .action {
    padding-bottom: 15px;
}

.row{
	float: left;
}

.row .last{
    margin-bottom: 15px;
}

#news .featured li,
#jobs .featured li,
.widget .top-news li,
.widget .top-jobs li,
.widget .spoiler-links li{
    border-bottom: 1px dotted #ccc;
    padding: 5px;
    padding-left: 15px;
    list-style: decimal inside none;
}

.widget .spoiler-links {
    padding-bottom: 15px;
}

#context .widget .top-news{
    padding-top: 15px;
}

#spoiler-image {
    padding-bottom: 15px;
}

#news.show #context .widget .quicksearch{
    padding-top: 15px;
}

#global-wrapper .browse div.small_title,
#global-wrapper content #content .small_headline{
    margin: 0px;
}

#publish_news .item{
    margin: 0px;
    padding: 0px;
}

#main #content .item h3,
#main #content .item h3 a{
    color: #000000;
}

#help #context ul{
    margin-left: 10px;
}

.paging ul{
    font-size: 11px;
}

#global .description h4{
    margin: 0px;
    color: #111111;
}

#global .p{
	margin: 0 0 15px 0;
}


#global .h1{
	margin: 0 0 15px;
	font-weight: bold;
	font-size: 18px;
	line-height: 15px;
	font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2", arial, helvetica, sans-serif;
	font-weight: normal;
}

#global .h2{
	margin: 0 0 15px;
	font-weight: bold;
	font-size: 15px;
	line-height: 15px;
	font-family: "ff-typestar-black-web-1","ff-typestar-black-web-2", arial, helvetica, sans-serif;
	font-weight: normal;
}

#global .h3{
	margin: 0 0 15px 0;
	font-weight: bold;
	font-size: 11px;
	line-height: 15px;
}

#global .h4{
	margin: 0 0 15px 0;
	font-size: 11px;
	line-height: 15px;
	color: #666;
}

#global .h5{
	font-size: 10px;
	line-height: 15px;
	text-transform: uppercase;
	color: #999;
}

#global-wrapper content div.box,
#global-wrapper #help div.box,
#global-wrapper #functions div.box,
#global-wrapper #advantages div.box {
    clear: both;
    width: 615px;
    margin: 0 0 30px;
}

.subimage {
    color: #666666;
    font-family: arial,helvetica,sans-serif;
    font-size: 11px;
    line-height: 15px;
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-bottom: 0px;
}

div#reportmisc div.text {
    width: 615px;
    margin: 0 0 15px;
    float: left;
}

div#reportmisc label {
    width: 160px;
}

div#reportmisc label.black {
    width: 300px;
    color: #000;
}

/*  @tags
------------------------------------------------------------------------------------ */

.tags ul {
    margin:1em 0;
    text-align:center;
 }

 #context .tags ul {
     margin: 0;
}

.tags li,
#context .tags li {
    margin:0;
    padding: 5px 2px 0 2px;
    list-style:none;
    display:inline-block;
    line-height: 12px;
}
.tags li a {
    text-decoration:none;
    color:#fff;
    padding:0 2px;
}

.tags li a:hover {
    color:#cff400;
}

.tag1,
#context .tag1 {
    font-size:100%;
}

.tag2,
#context .tag2 {
    font-size:120%;
}

.tag3,
#context .tag3 {
    font-size:140%;
}

.tag4,
#context .tag4 {
    font-size:160%;
}

.tag5,
#context .tag5 {
    font-size:180%;
}

/* alternative layout */

.tags .alt {
    text-align:left;
    padding:0;
    background:none;
}

.tags .alt li {
    padding:2px 10px;
    background:#efefef;
    display:block;
}

.tags .alt .tag1,
.tags .alt .tag2,
.tags .alt .tag3,
.tags .alt .tag4,
.tags .alt .tag5{font-size:100%;}
.tags .alt .tag1{background:#7cc0f4;}
.tags .alt .tag2{background:#67abe0;}
.tags .alt .tag3{background:#4d92c7;}
.tags .alt .tag4{background:#3277ad;}
.tags .alt .tag5{background:#266ca2;}


a.profilelink span {
    padding-left: 10px;
	font-size: 11px;
    font-weight: bold;
    line-height: 15px;
}
