/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
	
HTML:
	<div class="slideshow">
		<div class="slideshow-images" />
		<div class="slideshow-captions" />
		<div class="slideshow-controller" />
		<div class="slideshow-loader" />
		<div class="slideshow-thumbnails" />
	</div>
	
Notes:
	These next four rules are set by the Slideshow script.
	You can override any of them with the !important keyword but the slideshow probably will not work as intended.
*/

.slideshow {
	float:left;
	display: block;
	z-index: 0;
		
	
}
.slideshow-images {
	display: block;
	float:left;
}		
.slideshow-images img {
	
	z-index: 1;
	float:left;
}		
.slideshow-thumbnails {
	overflow: hidden;
	float:left;
}

/**
HTML:
	<div class="slideshow-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.
*/

.slideshow-images {
	float:left;
	display:none;
}		
.slideshow-images-visible { 
	opacity: 1;
	
}	
.slideshow-images-prev { 
	opacity: 0; 
}
.slideshow-images-next { 
	opacity: 0; 
}
.slideshow-images img {
	float: left;

	
}	

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/

.slideshow {
	
	float:left;
}
.slideshow a img {
	border: 0;
	
}

/**
HTML:
	<div class="slideshow-captions">
		...
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the captions animation.
*/

.slideshow-captions {
	background: #000;
	bottom: 0;
	color: #FFF;
	font: normal 12px/22px Arial, sans-serif;
	left: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	width: 100%;
	z-index: 10000;
}
.slideshow-captions-hidden {
	height: 0;
	opacity: 0;
}
.slideshow-captions-visible {
	height: 22px;
	opacity: .7;
}

/**
HTML:
	<div class="slideshow-controller">
		<ul>
			<li class="first"><a /></li>
			<li class="prev"><a /></li>
			<li class="pause play"><a /></li>
			<li class="next"><a /></li>
			<li class="last"><a /></li>
		</ul>
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the controller animation.
*/

.slideshow-controller {
	background: url(controller.png) no-repeat;
	height: 42px;
	left: 50%;
	margin: -21px 0 0 -119px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	width: 238px;
	z-index: 10000;
}
.slideshow-controller * {
	margin: 0;
	padding: 0;
}
.slideshow-controller-hidden { 
	opacity: 0;
}
.slideshow-controller-visible {
	opacity: 1;
}
.slideshow-controller a {
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 12px;
}
.slideshow-controller a.active {
	background-position: 0 18px;
}
.slideshow-controller li {
	list-style: none;
}
.slideshow-controller li.first a {
	background-image: url(controller-first.gif);
	left: 33px;
	width: 19px;
}
.slideshow-controller li.last a {
	background-image: url(controller-last.gif);
	left: 186px;
	width: 19px;
}
.slideshow-controller li.next a {
	background-image: url(controller-next.gif);
	left: 145px;
	width: 28px;
}
.slideshow-controller li.pause a {
	background-image: url(controller-pause.gif);
	left: 109px;
	width: 20px;
}
.slideshow-controller li.play a {
	background-position: 20px 0;
}
.slideshow-controller li.play a.active {
	background-position: 20px 18px;
}
.slideshow-controller li.prev a {
	background-image: url(controller-prev.gif);
	left: 65px;
	width: 28px;
}

/**
HTML:
	<div class="slideshow-loader" />
	
Notes:
	Customize the hidden / visible classes to affect the loader animation.
*/

.slideshow-loader {
	height: 28px;
	right: -60;
	margin: 150px 0px 0px 250px;
	position: absolute;
	top: 0;
	width: 28px;
	z-index: 10001;
}
.slideshow-loader-hidden {
	opacity: 0;
}
.slideshow-loader-visible {
	opacity: 1;
}

/**
HTML:
	<div class="slideshow-thumbnails">
		<ul>
			<li><a class="slideshow-thumbnails-active" /></li>
			<li><a class="slideshow-thumbnails-inactive" /></li>
			...
			<li><a class="slideshow-thumbnails-inactive" /></li>
		</ul>
	</div>
	
Notes:
	Customize the active / inactive classes to affect the thumbnails animation.
	Use the !important keyword to override FX without affecting performance.
*/

.slideshow-thumbnails {
float:left;
	bottom: -65px;
	height: 65px;
	left: 0;
	position: absolute;
	width: 100%;
}
.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails ul {
	height: 65px;
	left: 0;
	position: absolute;
	top: 0;
	width: 10000px;
}
.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 5px 5px 15px 0;
	position: relative;
}
.slideshow-thumbnails a {
	display: block;
	float: left;
	padding: 1px;
	position: relative; 
}
.slideshow-thumbnails a:hover {
	
	opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
	float:left;
}
.slideshow-thumbnails-active {
	
	opacity: 1;
}
.slideshow-thumbnails-inactive {
	
	opacity: .5;
}





/*
-----------------------------------------------
Author:   aktivwerk 2009
Version:  15.2
----------------------------------------------- */
/* Main 
----------------------------------------------- */

html, body
{
    margin:0;
   padding:0px;
   height:100%;
   	width:100%;
	background-position: center top;
background-repeat: no-repeat; 
	
	
  } 
  
body {
	
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height: 16px;
	
	

}

	
h1 { 

	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color:#000000; 
	font-weight: normal;
	padding: 10px 0px 10px 0px;
	
	margin:5px 0px 0px 0px;
	line-height: 8px;
	}
	 h2 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 33px;
	color:#999999; 
	font-weight: normal;
	padding: 8px 0px 10px 0px;
	line-height: 30px;
	margin:0px 0px 10px 0px;

	}
	
#site{
	 width: 920px;
 	margin:0 auto;
	
 	
}

.link-login
{
	background-image: url(../../img/ic_contact.gif);
	background-repeat:no-repeat;
	padding-left:22px;
	background-position: 0px 0px;
	text-decoration:none;
	color: #666666;
	font-weight:normal;
	margin: 0px 3px 0px 3px;
	font-size: 11px;


}
 #spacer{
 
	float:right;
	width: 470px;
	padding: 4px 0px 0px 0px;	
	
	margin: 0px 0px 0px 0px;
	
 

}
 .top-box { 
float:right;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 20px;
}

#switch{
	width: 920px;
	height: 40px;
	
	margin:0 auto;
	font-size: 11px;
	color: #666666;
	padding: 0px 0px 0px 0px;

	
	

 
	

}
#site2{
	position:absolute;
	
 	margin:0 auto;
  
background-color: #ffffff;

	z-index: -1;
		padding:0px;
		width: 100%;

 	
}
.switch-nav{
	
	margin: 0px 3px 0px 3px;
	
	font-size: 11px;
	color: #666666;
	text-decoration: none;

}
.switch-nav:hover{
		margin: 0px 3px 0px 3px;
	
	font-size: 11px;
	color:#ffffff; 
	text-decoration: none;

}
#logo{
	float:left;
	width: 175px;
	padding:0px 0px 0px 0px;
	margin:0px 0px 8px 0px;
	height: 36px;
		
 }
 .head { 
width: 920px;
height: 30px;
padding: 0px 0px 0px 0px;
margin: 15px 0px 15px 0px;
	background-image:  url(../../img/bg_nav_2.gif);
	background-repeat: repeat-x;
	background-attachment: scroll;
	background-position: left  bottom;

}
 .top { 

margin:0 auto;
height: 40px;
align:center;
background-position: center top;
background-repeat: no-repeat;  
background-image:  url(../../img/bg_top.gif);
}
.content{
	float:left;
	width: 640px;
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 25px 0px;
 }

 .content-box{
	
 	padding: 10px 30px 25px 0px;
	
 }
  .c-line{
	
	background-image:  url(../../img/c_line.gif);
	background-repeat:repeat-x;
	width: 690px;
	height: 2px;
	background-position: left  bottom;
	
 }

   .f-line{
	margin: 0px 0px 10px 0px;
	background-image:  url(../../img/c_line.gif);
	background-repeat:repeat-x;
	width: 690px;
	height: 2px;
	background-position: left  bottom;
	
 }
   .copy{
	
	padding: 0px 0px 0px 0px;
	
 }
 
.content-wrapper
{
	float:left;
	margin: 15px 0px 50px 0px;
	padding: 0px 0px 0px 0px;
	width:920px;
	
	border-top-width: 0px;
	border-top-style: solid;
	border-top-color: #999999;	
 		
 }
 #box-intro-img{
  	background-repeat: no-repeat;
	background-position: left  top;	
 	float:left;		
	margin: 0px 0px 15px 0px;
	width:920px;
	

}

/* Top-Navigation */

.topnav {
float:right;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 20px;
	

	
}
.topnav:hover {

	
}
.topnav-active {
font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #333333;
	text-decoration: none;
	margin: 0px 40px 0px 0px;
	padding: 5px 8px 0px 5px;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #E0151F;
	display:inline-block;
	width: 60px;
	height: 27px;
	text-align: center;
}
 /* FOOTER
----------------------------------------------- */
 #footer {
	
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 0px 0px;
	width:620px;
	
		
		


}
 #nav-footer-info{
	
	font-size: 11px;
	color:#999999; 

}
 #nav-footer{
		float:right;
		margin: -20px 0px 0px 0px;
	
	font-size: 11px;
	color:#999999; 
	
}
.nav-impress{
	margin: 0px 5px 0px 5px;
	font-size: 11px;
	color:#999999;
	text-decoration: none;
}
.nav-impress:hover {
	
	color: #666666;
	
}
 
 /* Navigation Right */

#nav-right{
	
  	float:right;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	


 }
 	.copy-link{
  text-decoration: none;
color: #000000;
}
	.copy-link:hover{
  text-decoration: none;
color: #999999;
}
 .contact-box{
	
	padding: 8px 0px 0px 0px;
 }
 .contact-label {
 	margin: 8px 0px 0px 0px;
  	display: block;
  	float: left;
  	width: 90px; 
   	border-top-width: 0px;
	border-top-style: solid;
	border-top-color: #999999;
}
	.contact-adress{
  	margin: 0px 8px 0px 0px;
	padding: 0px 0px 0px 0px;
	width:50px;
	float:left;
	height: 12px;

}

.nav-1 {
	
	background-image:  url(../../img/nv_3_n.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left  top;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
	padding: 4px 5px 0px 20px;
	display: block;
	
	width: 180px;
	height: 21px;
}
.nav-1:hover {
	background-image:  url(../../img/nv_3_o.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left  top;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
	padding: 4px 5px 0px 20px;
	display: block;

	width: 180px;
	height: 21px;
}
.nav-1-active {
	background-image:  url(../../img/nv_3_o.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left  top;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
	padding: 4px 5px 0px 20px;
	display: block;

	width: 180px;
	height: 21px;
}
  /* Newsteaser Right */
  .link-read
{
	background-image: url(../../img/ic_contact.gif);
	background-repeat:no-repeat;
	padding-left:22px;
	background-position: 0px 0px;
	text-decoration:none;
	color: #666666;
	font-weight:normal;
	margin: 0px 3px 0px 3px;
	font-size: 11px;


}
.news-teaser{
	background-image:  url(../../img/nt_footer.gif);
	background-repeat: no-repeat;
	color: #333333;
	background-position: left  bottom;
  
	margin: 5px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 200px;


 }
 .news-teaser-box{
	
padding: 0px 0px 8px 0px;



 }

.news-teaser-top{
	background-image:  url(../../img/nt_head.gif);
	background-repeat: no-repeat;

	background-position: left  top;
  
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 205px;
	height: 21px;

 }
 .news-teaser-top-b{
font-weight:bold;
	padding: 4px 0px 0px 0px;
color:#999999;

 }
 .news-teaser-headline{
	
	font-weight:bold;

 }
 /* Projekte */
 
.pro-thumb {
	filter:alpha(opacity=50);
	cursor:pointer;
	width: 227px;
 	margin: 4px 4px 0px 0px;
	padding: 0px 0px 0px 0px;
	height: 30px;
	
	background-repeat: repeat-y;
	background-color: #E8E8E8;
	background-position: left  top;
	float:left;


}
.pro-thumb:hover{
	filter:alpha(opacity=100);
	


}
.pro-thumb-r {
	filter:alpha(opacity=50);
	cursor:pointer;
	width: 227px;
 	margin: 4px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	height: 30px;
	
	background-repeat: repeat-y;
	background-color: #E8E8E8;
	background-position: left  top;
	float:left;


}
.pro-thumb-r:hover{
	
	filter:alpha(opacity=100);



}
.project{
  	background-repeat: no-repeat;
	background-position: left  top;	
 			
	margin: 0px 0px 50px 0px;
	
	

}
.project-wrapper{
  	float:left;
	width:920px;
	argin: 0px 0px 20px 0px;

}
.project-slider{
  	float:left;
	width:552px;
	height: 402px;
 	margin: 10px 0px 20px 0px;

	
	

}
.project-container{
position:absolute;  background-image: url(../img/img001.gif); background-repeat:no-repeat;
	z-index: 3;  width:552px; height:402px; margin: 10px 0px 0px -555px; 	float: right;
	

}
.project-content{
	float:right;
  	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width:300px;
	color: #666666;
	line-height: 17px;
	
	
	

}
.nav-back {
	
	background-image:  url(../../img/nv_back.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
	padding: 0px 5px 0px 20px;
	margin: 0px 0px 0px 0px;
	display: block;
	float:left;
	width: 270px;
	height: 21px;
}
.nav-more {
	
	background-image:  url(../../img/nv_more.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
	padding: 0px 5px 0px 20px;
	margin: 0px 0px 0px 0px;
	display: block;
	float:left;
	width: 270px;
	height: 21px;
}
.nav-more-active {
	
	background-image:  url(../../img/nv_more_o.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333333;
	text-decoration: none;
	padding: 0px 5px 0px 20px;
	margin: 0px 0px 0px 0px;
	display: block;
	float:left;
	width: 270px;
	height: 21px;
}
.project-titel{
  	margin: 0px 8px 0px 0px;
	padding: 0px 0px 0px 0px;
	width:70px;
	float:left;
	height: 12px;
	color: #000000;

}
#more-close{
  display:none;

}
 h3 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 26px;
	color:#999999; 
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	line-height: 26px;
	margin:0px 0px 5px 0px;
	

	}
	 h4 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color:#666666; 
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	line-height: 26px;
	margin:0px 0px 5px 0px;
	

	}

   .p-line{
	
	background-image:  url(../../img/c_line.gif);
	background-repeat:repeat-x;
	width: 300px;
	height: 2px;
	margin: 3px 0px 3px 0px;
	background-position: left  bottom;
	
 }
    .p2-line{
	
	
	width: 300px;
	height: 2px;
	margin: 0px 0px 0px 0px;
	background-position: left  bottom;
	
 }
.project-titel-more{
  	margin: 0px 8px 0px 0px;
	padding: 0px 0px 0px 0px;
	width:180px;
	float:left;
	height: 12px;
	color: #000000;

}
.project-description{
  width:330px;
	float:left;
	

}
.description-titel{
  	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	float:left;
	width:70px;
	display:block;
	
	color: #000000;

}
.project-description-label{
  	margin: 0px 0px 8px 0px;
	padding: 0px 0px 0px 0px;
	display:block;
	width:252px;
	height: auto;
	float:right;
	color: #666666;

}

.link-pr-overview
{
	background-image: url(../../img/ic_contact.gif);
	background-repeat:no-repeat;
	padding-left:22px;
	background-position: 0px 0px;
	text-decoration:none;
	color: #666666;
	font-weight:normal;
	margin: 0px 3px 0px 3px;
	font-size: 11px;


}
.project-content-overview{
	float:left;
	width: 920px;
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 25px 0px;
 }
   .t-line{
	float:left;
	background-image:  url(../../img/c_line.gif);
	background-repeat:repeat-x;
	width: 920px;
	height: 2px;
	background-position: left  bottom;
	
 }
 .topnav-login {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #999999;
	text-decoration: none;
	margin: 0px 40px 0px 0px;
	padding: 5px 8px 0px 0px;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #E0151F;
	display:inline-block;
	width: 60px;
	height: 27px;
	text-align: left;
	
}
.topnav-login:hover{
	color: #666666;
	
}
 /*---slider----*/
 
 
a:focus {
	outline: none;
}
#panel-wrapper{
z-index:10;
position:fixed; 
bottom:0;
text-align:center;
width:100%;
background: url(../../img/slider_bg.gif) repeat-x left top;

font-size: 11px;
	color:#999999; 
}

#panel-head {
 width: 920px;
 	margin:0 auto;
	text-align:left;
}
.panel-subhead {
 font-weight: bold;
}
.panel-content {
width:920px;
text-align:left;
float:left;
display: block;

}
.col1 {
width:255px;
margin-top: -6px;
float:left;
display: block;

}
.col2 {
width:275px;
margin-top: -6px;
float:left;
display: block;

}
.col3 {
width:320px;
margin-top: -6px;
float:left;
display: block;

}
#panel {
	 width: 920px;
 	margin:0 auto;
	height: 200px;
	display: none;
		clear:both;
}
.slide {
	margin:0 auto;
	padding: 0px;
	text-align:left;
	
	
	
	
}
.slider {
	width: 96px;
	height: 49px;
	float:right;
	
	background: url(../../img/slider.gif) no-repeat center top;

	margin: 0 auto;
	display: block;
	

}
.slider:hover {
	background: url(../../img/slider_o.gif) no-repeat center top;
	

}
.active {
	
}
.nav-2 {
	
	background-image:  url(../../img/nv_4_n.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#999999; 
	text-decoration: none;
	padding: 3px 5px 4px 20px;
	display: block;
	
	width: 180px;
	height: 14px;
}
.nav-2:hover {
	
	background-image:  url(../../img/nv_4_o.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#666666; 
	text-decoration: none;
	padding: 3px 5px 4px 20px;
	display: block;
	
	width: 180px;
	height: 14px;
}
.nav-2-contact {
	
	background-image:  url(../../img/nv_4_contact.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#999999; 
	text-decoration: none;
	padding: 3px 5px 4px 0px;
	display: block;
	
	width: 180px;
	height: 14px;
}

/*small login */

.login-button-small{
 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	text-align: center;
	vertical-align: bottom;
	font-weight: normal;
	text-decoration: none;
	margin: 0px 0px 2px 5px;
	background-image:   url(../../img/login_n.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left  top;
	border-width: 0px;
	height: 17px;
	width: 35px;
	cursor:pointer;
 }
 .login-button-small:hover{
 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	text-align: center;
	vertical-align: bottom;
	font-weight: normal;
	text-decoration: none;
	margin: 0px 0px 2px 5px;
	background-image:   url(../../img/login_o.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left  top;
	border-width: 0px;
	height: 17px;
	width: 35px;
 }
 .input-login{
	margin: 0px 0px 0px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 50px; 
	height: 12px;
   	border-width: 1px;
	border-style: solid;
	border-color: #999999;
	background-color: #ffffff;
	color: #666666;

}
	.form-login{
	margin: -1px 8px 0px 0px;
 }
 .link-login
{
	float:right; 
	background-image: url(../../img/ic_login.gif);
	background-repeat:no-repeat;
	padding-left:22px;
	background-position: 0px 0px;
	text-decoration:none;
	color: #666666;
	font-weight:normal;
	margin: 7px 9px 0px 3px;
	font-size: 11px;
	


}
 .link-close
{
	float:right; 
	margin: 8px 12px 0px 0px;
	width: 16px;
height: 16px;

}
 .login-wrapper
{
	margin: 0px 0px 0px 0px;
	width: 300px;
	height: 32px;
background-image: url(../../img/bg_login_002.gif);
	background-repeat:no-repeat;
	
	background-position: right bottom;

}
 .link-wrapper
{
	margin: 0px 0px 0px 0px;
	width: 150px;
	height: 32px;
background-image: url(../../img/bg_login_001.gif);
	background-repeat:no-repeat;
	
	background-position: right bottom;

}
.my-login{

	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	float:right; 
	padding: 8px 5px 10px 0px;
	color:#666666;
	

	
		
}
