@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 	1px;	/* for Gecko-based browsers */
	margin-bottom: 		-1px;	/* for Gecko-based browsers */
}
.hide
{
	display: 			none;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 			0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't want this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 		5px;
	margin-bottom: 		10px;
	padding-top: 		10px;
	padding-bottom: 	0px;
}
/* content specific settings follow */

.top
{
	color:				#FFCC00; /* yellow text #FFCC00 */
	background:			#0033CC; /* blue background 0033CC */
	border-color:		#000000; /* black box border */
	border-style:		solid;
	border-width:		4px;
	margin:				1px 0 0 0;
	padding:			1px 0 0 0;
	border-collapse:	collapse;
}
.logo
{
	margin: 0px 0 -4px 0;
	height: 8em; /*110px;*/
	width: 11em;  /*145px;*/
	padding-bottom:		-1em;
}
.main_heading
{
	margin-left:		auto;
	margin-right:		auto;
}

h1
{
  	color:				#FF0000; /* red */
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	font-weight:		bold;
	font-size:			150%;
	font-style:			normal;
	text-align:			center;
	vertical-align:		middle;
}
table
{
	border-collapse:	collapse;
	width:				100%;
	margin:				0px;
	padding:			0px;
}
td
{
	padding:			0;
	margin:				0;
}

td.subh1
{
	font-family:		Georgia, "Times New Roman", Times, serif;
	font-style:			italic;
	font-size:			150%; /* 22px */
	padding-right:		20px;
	padding-bottom:		10px;	
	text-align:			right;
	vertical-align:		bottom;
}
td.headingtext
{
	font-family:		Georgia, "Times New Roman", Times, serif;
	font-weight:		bold;
	font-size:			300%; /* 45px */
	font-style:			italic;
	margin:				20px 0 0 0;
	padding:			0;
	text-align:			center;
	vertical-align:		middle;
}

h2
{
  	color:				#FF0000; /* red */
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	font-weight:		bold;
	font-size:			150%;
	font-style:			normal;
	text-align:			center;
}
h3
{
	font-size:			100%; /* 15px */
	color:				#0033CC; /* blue */
	margin-top:			20px;
	padding:			0px;
	text-align: 		left;
}
h4
{
	font-size: 			100%;
}
h5
{
	font-size: 			90%;
	color:				#0033CC; /* blue */
}
h6
{
	font-size: 			70%;
}
.ruler {
	background-color:	#0033CC; /* blue ruler line to separate the headers and footers from the main body */
	height:				2px;
	width:				100%;
	padding:			0px;
	margin-left:		auto;
	margin-right:		auto;
	border-width:		0px;
}
/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: 	none;
}
a:hover
{
	text-decoration: 	none;
}
code
{
	font-family: 		"Courier New", Courier, monospace;
}
label
{
	cursor: 			pointer;
}
table
{
	font-size: 			100%;
}
td, th
{
	vertical-align: 	top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 			2px 1%;	/* margin instead of padding for the gutterspace around 
	 			  					 the layout because IE breaks the layout when 
	 			  					 horizontal padding is applied to the body element.
	 			 					 % over pixels for that horizontal gutterspace so that
	 			 					 it automatically goes below 20px on low-res browsers
	 			  					 to create more space for the content. */
	font-size: 			100.1%;	/* resolve some font size issues in some layouts for
				   					some browsers. (in other words, I got no clue.) */
}
#pageWrapper
{
	border-left:		1px solid #fff;
	border-right:		1px solid #fff;
	border-top:			0px solid #fff;
	border-bottom:		0px solid #fff;
	min-width: 			45em;	/* IE doesn't understand this property. EMs are used
				  				so that as the font size increases, the proportional
				  				limitations (min-width) increase with it, rather
				  				than creating a middle column that can only fit
				   				3 or 4 characters in it. */
	width: 				auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: 		break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border-left:		0px solid #000000;
	border-right:		0px solid #000000;
	border-top:			0px solid #000000;
	border-bottom:		0em solid #000000;
	padding:			0px; 
}

#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: 		solid 16em #000000;
	border-right: 		solid 0em #000000;
}
#innerColumnContainer
{
	/* compensate for the borders because of
				   100% width declaration */
	border-left:		0px solid #fff;
	border-right:		0px solid #fff;
	border-top:			0px solid #fff;
	border-bottom:		0px solid #fff;
	margin:				0 -1px;
	width: 				100%;
	z-index: 			1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: 				left;
	margin: 			0 -1px 0 0;
	width: 				100%;
	z-index: 			3;
}
#middleColumn
{
	float: 				right;
	margin: 			0 0 0 -1px;
	width: 				100%;
	z-index: 			5;
}
#leftColumn
{
	float: 				left;
	margin: 			0 0 0 -16em;
	width: 				16em;
	z-index: 			4;
}
#rightColumn
{
	float: 				right;
	width: 				0em;
	margin: 			0 0em 0 1px;
	z-index: 			2;
}
#footer
{
	border-left:		0px solid #000000;
	border-right:		0px solid #000000;
	border-top:			1px solid #000000;
	border-bottom:		1px solid #000000;
	padding:			0.5em; 
}
p.fontsize-set
{
	text-align: 		left;
}
p.fontsize-set img
{
	border-width: 		0;
}
/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav, .avnav
{
	margin: 			0;
}
.vnav ul, .vnav ul li, .avnav ul, .avnav ul li
{
	margin: 			0px;
	padding: 			2px;
	list-style-type: 	none;
	display: 			block;
}
.vnav ul, .avnav ul
{
	border-left:		1px solid #fff;
	border-right:		1px solid #fff;
	border-top:			1px solid #fff;
	border-bottom:		1px solid #fff; 
}
.vnav ul li, .avnav ul li
{
	border-bottom: 		solid 0px #fff;
}
.vnav ul li, .vnav ul li a, .avnav ul li, .avnav ul li a
{
	margin: 			0;
	display: 			block;
	padding: 			0;
	line-height: 		normal;
}
.vnav ul li a, .avnav ul li a
{
	display: 			block;
	padding: 			0;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover, .avnav ul li a, .avnav ul li a:link, .avnav ul li a:visited, .avnav ul li a:active, .avnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3, .avnav h3
{
	margin-bottom: 		0;
	padding-bottom: 	0;
	font-size: 			126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 			0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}
* html .avnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 			0.01%;
}
* html .avnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}
/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .avnav ul, .avnav ul li, .vnav ul li
{
	border-color: 		#FFF3D9;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: 	#FFF3D9;
	color: 				#000;
	font-family: 		arial, helvetica, sans-serif;
	text-align:			justify;
}
#pageWrapper
{
	font-size: 100%;	/* set your default font size here. */
}
#outerColumnContainer
{
	border-left-color: 	#FFF3D9;	/* left column background color */
	border-right-color: #FFF3D9;	/* right column background color */
	background-color: 	#FFF3D9;	/* set the background color for the middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: 	none;
	background-color: 	#cdc;
	color: 				#000;
}
.avnav ul li a:link, .avnav ul li a:visited, .avnav ul li a:active
{
	text-decoration: 	none;
	background-color: 	#89ca90;
	color: 				#000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: 	#ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: 	none;
	background-color: 	#898;
	color: 				#fff;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 			90%;
}
#rightColumn .inside .vnav
{
	font-size: 			110%;
}
#footer
{
	background-color: 	#FFF3D9;
	color: 				#000000;
}
.licence {
	font-size:			90%;
	color:				#0033CC;
}

/* Left column of images */
#photocolumn
{
	padding: 			20px 0 0px 0;
}
#photocolumn table
{
	border-style: 		solid;
	border-color: 		black;
	border-width: 		1px;
	background-color: #F8D7A1;
	color:				black;
	width: 				99%;
	margin:				0 0px 0 0px;
}
#photocolumn td.columnpicture
{
	text-align: 		center;
	margin: 			0 0 0 0px;
	padding-left:		0.1em;
}
#photocolumn td.columnpicture img
{
	width:				12.5em;
	height:				10em;
	border-style: 		solid;
	border-width: 		1px;
	border-color:		black;
	margin: 			10px 0px 0 0;
}
#photocolumn td.smwidecolumnpicture
{
	text-align: 		center;
	margin: 			0 0 0 0px;
	padding-left:		0.1em;
}
#photocolumn td.smwidecolumnpicture img
{
	width:				12.5em;
	height:				9.5em;
	border-style: 		solid;
	border-width: 		1px;
	border-color:		black;
	margin: 			0px 0px 0 0;
}

#photocolumn td.portraitcolumnpicture img
{
	width:				10em;
	height:				12.5em;
	border-style: 		solid;
	border-width: 		1px;
	border-color:		black;
	margin:				0 1.5em 0 1.5em;
}
p.columnpicturedescription
{
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			justify;
	font-weight:		normal;
	font-size:			90%;
	margin:				0 0 0 0;
	padding-bottom:		10px;
	width:				90%;
	padding-top:		10px;
	margin-left:		auto;
	margin-right:		auto;
}
p.portraitcolumnpicturedescription
{
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			justify;
	font-weight:		normal;
	font-size:			90%;
	margin:				0 0 0 0;
	padding-bottom:		10px;
	width:				70%;
	padding-top:		10px;
	margin-left:		auto;
	margin-right:		auto;
}

table.note tr td
{
text-align:				justify;
font-size:				70%;
width:					70%;
}
.invisibleimage
{
	display:			none;
}
.smalldescription
{
border-collapse:		collapse;
text-align:				left;
font-size:				95%;
}

/*Horizontal menu css*/

.menuh-container
	{
	position: relative;		
	font-size: 95%;
	top: 0;
	float: left;
	width: 100%;
	margin: 2px;
	border: 1px solid #FFF3D9;
	}
.bottom-menuh-container
	{
	position: relative;		
	font-size: 95%;
	top: 0;
	left: 40%;
	margin: 2px;
	border: 1px solid #FFF3D9;
	}

.menuh
	{
	font-size: 110%;
	font-family: arial, helvetica, sans-serif;
	width:	100%;
	float:	left;
	margin:	1em;
	margin-top: 0.1em;
	}
		
.menuh a
	{
	text-align: center;
	display:block;
	border: 1px solid #555;
	white-space:nowrap;
	margin:0;
	padding: 0.2em;
	}
	
.menuh a, .menuh a:visited	/* menu at rest */
	{
	color: black;
	background-color: cornflowerblue;
	text-decoration:none;
	}

.menuh a:hover	/* menu at mouse-over  */
	{
	color: black;
	background-color: #F8D7A1;
	}	

.menuh ul
{
list-style:	none;
margin:		0;
padding:	0;
float:		left;
width:		9.5em; /* width of all menu boxes */
}

.menuh li
{
position:relative;
min-height: 1px; /* Sophie Dennis contribution for IE7 */
vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
}

.menuh ul li a#thispage
{
background-color: #F8D7A1;
}

.menuh ul ul
{
position:absolute;
z-index:500;
top:auto;
display:none;
padding: 1em;
margin:-1em 0 0 -1em;
}

.menuh ul ul ul
{
top:0;
left:100%;
}

div.menuh li:hover
{
cursor:pointer;
z-index:100;
}

div.menuh li:hover ul ul,
div.menuh li li:hover ul ul,
div.menuh li li li:hover ul ul,
div.menuh li li li li:hover ul ul
{display:none;}

div.menuh li:hover ul,
div.menuh li li:hover ul,
div.menuh li li li:hover ul,
div.menuh li li li li:hover ul
{display:block;}

/* End CSS Popout Menu */

/* Thumbnail Gallery */
#gallery {
	align: center;
	padding: 40px 10px 40px 60px;
	width: 70%;
}
#gallery table {
	background-color: #F8D7A1;
	color:	black;
	align: right;
}

#gallery td.thumbcell, #gallery td.portraitthumbcell {
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-color: black;
	border-width: 1px;
	vertical-align: middle;
	padding: 20px 20px 5px 20px;
	width: 15%;
}
#gallery td.thumbcell img{
	border-style: solid;
	border-width: 1px;
	border-color:	black;
	height: 135px;
	width: 180px;
}
#gallery td.portraitthumbcell img {
	border-style: solid;
	border-width: 1px;
	border-color:	black;
	height: 180px;
	width: 135px;
	margin-left: 20px;
}

/* Photograph Caption */
.caption {
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 0.8em;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	padding: 0 20px 10px 20px;
	border-top-style: none;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: black;
	border-width: 1px;
}
.portraitcaption {
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 0.8em;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	padding: 0 35px 10px 35px;
	border-top-style: none;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: black;
	border-width: 1px;
}

.largephoto
{
	padding: 			20px 0 40px 0;
}
.largephoto table
{
	border-style: 		solid;
	border-color: 		black;
	border-width: 		1px;
	background-color: 	#F8D7A1;
	color:				black;
	width: 				99%;
	margin:				0 0px 0 0px;
}
.largephoto td.largepicture
{
	text-align: 		center;
	vertical-align: 	middle;
	margin: 			0 0 0 0px;
	padding-left:		0.1em;
}
.largephoto td.largepicture img
{
	width:				640px;
	height:				480px;
	border-style: 		solid;
	border-width: 		1px;
	border-color:		black;
	margin: 			10px 0px 0 0;
}
.largephoto td.portraitlargepicture img
{
	width:				480px;
	height:				640px;
	border-style: 		solid;
	border-width: 		1px;
	border-color:		black;
	margin:				0 1.5em 0 1.5em;
}
p.largepicturedescription
{
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			justify;
	font-weight:		normal;
	font-size:			90%;
	margin:				0 0 0 0;
	padding-bottom:		10px;
	width:				640px;
	padding-top:		10px;
	margin-left:		auto;
	margin-right:		auto;
}
td.portraitmediumpicturedescription
{
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			justify;
	font-weight:		normal;
	font-size:			80%;
	color:				blue;
	margin:				0 0 0 0;
	padding-bottom:		10px;
	width:				336px;
	padding-top:		10px;
	margin-left:		auto;
	margin-right:		auto;
}
td.mediumpicturedescription
{
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			justify;
	font-weight:		normal;
	font-size:			80%;
	color:				blue;
	margin:				0 0 0 0;
	padding-bottom:		10px;
	width:				448px;
	padding-top:		10px;
	margin-left:		auto;
	margin-right:		auto;
}
p.portraitlargepicturedescription
{
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			justify;
	font-weight:		normal;
	font-size:			90%;
	margin:				0 0 0 0;
	padding-bottom:		10px;
	width:				480px;
	padding-top:		10px;
	margin-left:		auto;
	margin-right:		auto;
}

.largepicture {
	padding:			30px 0 0 0;
	width:				640px;
	height:				426px;
	border-style:		none;
}
.widelargepicture {
	padding:			30px 0 0 0;
	width:				722px;
	height:				480px;
	border-style:		none;
}

.mediumpicture {
	padding:			30px 0 0 0;
	width:				448px;
	height:				336px;
	border-style:		none;
}
.smwidepicture {
	padding:			0px 0 0 0;
	width:				160px;
	height:				106px;
	border-style:		none;
}

.portraitlargepicture {
	padding:			20px 0 0 0px;
	height:				640px;
	width:				480px;
	align:				center;
	border-style:		none;
}
.portraitmediumpicture {
	padding:			20px 0 0 0px;
	height:				448px;
	width:				336px;
	align:				center;
	border-style:		none;
}

table.largepicturetable {
	padding-top:		20px;
	width:				640px;
	height:				426px;
	margin-left:		auto;
	margin-right:		auto;
	border-style:		none;
}
table.portraitlargepicturetable {
	padding-top:		20px;
	width:				480px;
	margin-left:		auto;
	margin-right:		auto;
	border-style:		none;
}
div#backnav {
	padding: 			20px 0 30px 0;

}
div#backnav a {
	text-decoration:	underline;
}
.inset_left_picture
{
	padding:			0px 15px 0px 15px;
	width:				180px;
	height:				135px;
	border-style:		none;
	float:				left;
}
.feedback_1
{
	margin:				5px 0px 5px 0px;
	padding:			5px 5px 5px 5px;
	background-color: 	#FFFAB2;
	border-style:		solid;
	border-width: 		1px;
	border-color:		black;
	list-style:			none;
	width:				80%;
}
.feedback_2
{
	margin:				5px 0px 5px 0px;
	padding:			5px 5px 5px 5px;
	background-color: 	#BFE2F0;
	border-style:		solid;
	border-width: 		1px;
	border-color:		black;
	list-style:			none;
	width:				80%;
}

/* The containing box for the gallery. */
#container {position:relative; width:800px; height:500px; margin:20px auto 0px auto; border:1px solid black; background:#F8D7A1 url(../villapictures/360x270images/med_villa_kalithea_front_DSC_2799_DXO.jpg) 418px 11px no-repeat;}

/* Removing the list bullets and indentation - add size - and position */
#container ul {width:380px; height:450px; margin:10px; padding:0px; list-style-type:none; float:left;}

#container li {float:left;}

/* Remove the images and text from sight */
#container a.gallery span {position:absolute; width:1px; height:1px; top:0px; left:-1px; overflow:hidden; background:#F8D7A1; font-size:85%;}

/* Adding the thumbnail images */
#container a.gallery, #container a.gallery:visited {display:block; color:black; text-decoration:none; border:1px solid black; margin:1px 2px 1px 1px; text-align:left; cursor:default;}
#container a.slidea {background:url(../villapictures/120x90images/th_almirida_bay_view_3519.jpg); height:90px; width:120px;}
#container a.slideb {background:url(../villapictures/120x90images/th_kitchen_balcony_3654.jpg); height:90px; width:120px;}
#container a.slidec {background:url(../villapictures/120x90images/th_lounge_terrace_3500.jpg);height:90px; width:120px;}
* html #container a.slidec {width:120px; w\idth:120px;}
#container a.slided {background:url(../villapictures/120x90images/th_villa_sunset_5802.jpg); height:90px; width:120px;}
#container a.slidee {background:url(../villapictures/120x90images/th_villa_front_5948.jpg); height:90px; width:120px;}
#container a.slidef {background:url(../villapictures/120x90images/th_villa_terrace_2444.jpg); height:90px; width:120px;}
* html #container a.slidef {width:120px; w\idth:120px;}
#container a.slideg {background:url(../villapictures/120x90images/th_villa_garden_3569.jpg); height:90px; width:120px;}
#container a.slideh {background:url(../villapictures/120x90images/th_Villa_Kalithea_pool_5780.jpg); height:90px; width:120px;}
#container a.slidei {background:url(../villapictures/120x90images/th_villa_terrace_3481.jpg); height:90px; width:120px;}
* html #container a.slidei {width:120px; w\idth:120px;}
#container a.slidej {background:url(../villapictures/120x90images/th_White_Mountain_view_5392.jpg); height:90px; width:120px;}
#container a.slidek {background:url(../villapictures/120x90images/th_Villa_Kalithea_garden_3428.jpg); height:90px; width:120px;}
#container a.slidel {background:url(../villapictures/120x90images/th_villa_pool_at_night_6009a.jpg); height:90px; width:120px;}
* html #container a.slidel {width:120px; w\idth:120px;}



/* styling the hovers */
#container a.gallery:hover {border:1px solid red;}
#container a.gallery:hover span {position:absolute; width:370px; height:480px; top:10px; left:412px; color:black; text-overflow: hidden; background:#F8D7A1;}
#container a.gallery:hover img {border:1px solid #fff; margin:0 0 10px 5px;}

/* Making external links open in new page */
a.external
{
	padding-left: 0px;
}
	
