/*	-------------------------------------------------------------
	Axaragua website
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	Description:	Styles for Axaragua website
	Filename:		axaragua.css
	Version:		1.0
	Date:			June 2007
	-------------------------------------------------------------	*/

/*	Bug hunting
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

/* * { border: 1px solid red; }

	
/*	-------------------------------------------------------------
	CSS reset
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
		
	body,div,dd,dl,dt,ul,li,ol,h1,h2,h3,h4,h5,h6,pre,input,form,fieldset,p,blockquote,th,td { 
		margin:0; padding:0; 
	}
	li, dd { margin-left:5%; }

/*	-------------------------------------------------------------
	Base body styles
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	includes:	Links and headlines
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	body {
		background-color: #fff; 
		background:url(/img/pic_tlo.jpg) top center;
		background-repeat: no-repeat;
		margin: 0px;
		margin-bottom:20px;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 75%;
		color:#075a9a;
	}
	html>body {
		font-size: 12px; 
	}
	p { 
		font-size:1em;
		margin-top: 1.5em;
		margin-bottom: 1.5em;
		line-height: 1.5em;
		text-align:justify;
	}
	img {
		border:0px;
	}
	ul, li {
		font-size:1em;
		margin-top: 0.5em;
		margin-bottom: 0.5em;
		line-height: 1.5em;
	}
	
	
/*	Links
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	a {
		color:#118aff;
		text-decoration:none;
	}
	a:link {
		color:#118aff;
		text-decoration:none;
	}
	a:visited {
		color: #118aff;
		text-decoration:none;
	}
	a:hover {
		text-decoration: underline;
		color: #75bbff;
	}
	a:active {
		text-decoration: none;
		color: #75bbff;
	}
	
/*	Headlines
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	.horizontal_line {
		width:100%;
		height:1px;
		background:url(/img/line_dotted.gif) repeat-x;
		margin-bottom:18px;
		clear:both;
	}
	
	h1 {
		font-size:1.83em;
		font-weight:normal;
		line-height:1em;
		margin-bottom:0.73em;
		padding-left:26px;
		background:url(/img/wybicie_h1.gif) no-repeat 0px 4px;
	}
	h2 {
		font-size:1.25em;
		line-height:1.07em;
		margin-bottom:1.07em;
		margin-top:1.20em;
		width:100%;
	}

/*	Headlines
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	.button {
		padding-right:16px;
		background:url(/img/b_more_wybicie.gif) no-repeat right 2px;
		margin:5px 0 18px 0;
		float:right;
	}

/*	-------------------------------------------------------------
	Wrapper
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	includes:	Logo, Top icons, URL, Menu, Infobox
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#wrapper {
		position: relative;
		width: 510px;
		min-height: 300px;
		margin: 0 auto;
		padding-top:100px;
		padding-left:260px;
	}
	
/*	Logo
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#logo {
		position:absolute;
		top:19px; left:263px;
		width:52px; height:62px;
		background:url(/img/logo_axaragua.gif) no-repeat;
		text-indent:-9000px;
	}

/*	Top icons
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#top_icons {
		position:absolute;
		top:46px; right:0px;
		width:107px; height:10px;
	}
	#top_icons img {
		margin-right:6px;
	}
	img[alt=Login] {
		padding-bottom:2px;
	}

/*	URL
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#url {
		width:508px; height:28px;
		background:url(/img/url_tlo.gif) no-repeat;
		margin-bottom:20px;
		padding: 7px 0 0 10px; 
	}
	
/*	Menu
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

	ul#menu {
		position:relative;
		display:block;
		margin:0px; padding: 0px;
		width:510px; height:30px;
		margin-bottom:36px;
		z-index:100;
	}
	#menu ul, #menu li {
		padding:0px;
		margin:0px;
		list-style-type:none;
		float:left;	
	}
	#menu li {
		position:relative;
		width:94px; height:30px;
		margin-right:10px;
		background:url(/img/menu_tlo_left.gif) no-repeat;
	}
	#menu .last-child {
		margin-right:0px;
	}
	#menu li span , #menu li a {
		display:block;
		width:88px; height:25px;
		background:url(/img/menu_tlo_right.gif) no-repeat right;
		padding-top:5px; padding-left:6px;
		text-decoration:none;
		color:#fcfcfc;
	}
	#menu li a:hover {
		color:#b6dbff;
	}
	#menu li.first-child span, #menu li.first-child a {
		width:90px;
		padding-left:4px;
	}


	
	
/*	Submenu
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	ul#menu ul {
		position:absolute;
		visibility:hidden;
		float:none;
		top:30px;
		left:0px;
		width:197px;
		height:auto;
		
	}
	#menu li:hover ul, #menu li.hover ul{
		visibility:visible;
	}
	ul#menu ul li {
		width:100%;
		background:url(/img/submenu_tlo_left.png) no-repeat 0px 7px;
		padding-top:7px;
		height:20px;
	}
	ul#menu ul li a {
		margin-left:5px;
		width:190px; height:19px;
		background:url(/img/submenu_tlo_right.png) no-repeat right;
		padding-top:1px; padding-left:3px;
		font-size:0.92em;
	}
	ul#menu ul li a:hover { color:#ffea73; }
	#menu li.first-child ul li a {
		width:190px;
		padding-left:3px;
	}
	
/*	Welcome
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#welcome {
		width:370px;
		padding-left:140px;
		margin-top:-4px;
		margin-bottom:40px;
	}
	#welcome img {
		margin-left:-140px;
		margin-top:5px;
		float:left;
	}
	
/*	Infobox
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#infobox {
		width:100%;
		min-height:190px;
		background:url(/img/infobox_tlo.gif) no-repeat;
		clear:both;
	}
	#infobox ul {
		clear:both;
	}
	#infobox .left {
		padding-left:65px;
		padding-right:20px;
		width:165px; min-height:190px;
		float:left;
	}
	#infobox .left img, #infobox .right img {
		margin-left:-45px;
		margin-top:13px;
		float:left;
	}
	#infobox .left h2, #infobox .right h2 {
		float:left;
	}
	#infobox .left p, #infobox .right p {
		clear:both;
		margin-top:-4px;
		text-align:left;
	}
	#infobox .right {
		padding-left:65px;
		padding-right:20px;
		width:165px; min-height:190px;
		float:right;
	}
	
/*	Botom menu
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#bottom_menu {
		margin-top:50px;
		width:100%;
		text-align:center;
	}
	#bottom_menu .horizontal_line {
		margin-bottom: 10px;
	}
	#bottom_menu a {
		padding:7px 15px 10px 15px;
		background:url(/img/line_dotted_vertical.gif) no-repeat right;
		color:#075a9a;
	}
	#bottom_menu a.last-child {
		background:none;
	}
/*	Axaragua map
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
	#axa_map {
		width: 770px; 
		height: 450px;
		margin-left: -260px;
		border:1px solid;
		border-color:#075a9a;
		overflow:hidden;
	}

.centrologic {
	width:29px;
	height:30px;
	background:url(/view/img/logo_centrologic.png) no-repeat;
	color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}


