/* COOKIE BAR
---------------------------------------------------------------------- */

#cookiebar {
	position: fixed; bottom: 0; left: 0;
	width: 100%;z-index:5000;
}

#cookiebar .link:link,
#cookiebar .link:visited {
	border-bottom: 1px solid rgb(19,19,19); 
	color: rgb(255,255,255);
	padding-bottom: 2px;
}

#cookiebar .link:hover,
#cookiebar .link:active,
#cookiebar .link:focus {
	border-color: rgb(47,47,47);
	color: rgb(102,102,102);
}

#cookiebar .more {
	border-bottom: 1px solid rgb(19,19,19); 
	color: rgb(255,255,255);
	cursor: pointer;
	padding-bottom: 2px;
    font-weight: bold;
}

#cookiebar .more:hover {
	border-color: rgb(47,47,47);
	color: rgb(102,102,102);
}

#cookiebar .agree {
	position: absolute;	right: 20px; top: 23px;
	margin: 0;
}

#cookiebar .agree a {
	background: transparent url(../../images/cookies/agree.png) no-repeat 0 0;
	display: block;	
	height: 47px;
	overflow: hidden;
	text-indent: -101%; /* Use alternative hide method */
	width: 245px;
}

#cookiebar .agree a:hover,
#cookiebar .agree a:active,
#cookiebar .agree a:focus {background-position: 0 -47px;}


	/* COOKIE BAR / Header
	------------------------------------------------------------------ */	

	#cookiebar .header {
        background: transparent url(../../images/cookies/semitrans.png) repeat 0 0; /* No RGBA Support Alternative */
		background: rgba(30,30,30, .95);
		padding: 20px;
		position: relative;
	}

        #cookiebar .header h3 {
            margin-bottom: 0;
        }

	#cookiebar .header .title {
		color: rgb(255,255,255);
		font-size: 20px;
	}

	#cookiebar .header .details {
		font-size: 14px;
		margin: 0;
        color: #fff;
	}


	/* COOKIE BAR / Content
	------------------------------------------------------------------ */	

	#cookiebar .content {
		background: rgb(30,30,30) url(../../images/cookies/line.png) repeat-x 0 0;
		display: none;
		overflow: hidden;
	}
	
	#cookiebar .content .col {
		float: left;
		width: 25%;
		*width: 24.9%; /* IE 7 Hack - Move to IE Only Stylesheet */
	}
	
	#cookiebar .content .col .inner {padding: 20px;}

	#cookiebar .content .col h4	{
		color: rgb(255,255,255);
		font-size: 14px;
		font-weight: 700; 
		line-height: 24px;
		height: 24px;
		margin-bottom: 9px;
	}
	
	
	
