/* comment lines are declared like this */

/* body is the default - if nothing is declared for the rest then the body definition is the one used */
BODY {
	MARGIN:0px;				/* if only a single value is specified then it applies to all margins */
	BACKGROUND-IMAGE: url(../turkish-properties-images/smiley-properties-design-background.jpg);   /* can also be a url - url (../images/backgroundimage.jpg) */
	BACKGROUND-REPEAT: repeat-x;	/* other values no-repeat, repeat-x (horizontal), repeat-y (vertical)*/
	BACKGROUND-ATTACHMENT: fixed;  /* other value scroll */
	BACKGROUND-POSITION: 0% 0%;	/* values can be a percentage or a fixed length or one of top centre bottom/left centre right */
	BACKGROUND-COLOR: #067cd4;	/* background colour should be specified even with an image incase the image doesn't load other value is transparent */
}
/* definition of a Heading Level 1 tag */
H1 {
	font-size: small !important;
	font-size: small;
}
H2 {
	font-size: small !important;
	font-size: small;
}
/* definition of a paragraph */
P {
	FONT-FAMILY: "Trebuchet MS", Tahoma, sans-serif; /* trebuchet then tahoma is the font family and sans-serif is a generic family */
	FONT-STYLE: normal;              /* other values are italic and oblique */
	FONT-VARIANT: normal;            /* other values are small-caps */
	FONT-WEIGHT: normal;             /* other values are  bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900  */
	FONT-SIZE: small;   /* absolute (xx-small, x-small, small, medium, large, x-large), relative (larger, smaller) length (12pt) and percentage (120%) */
}
/* definition for all cells */
TD {
	FONT-FAMILY: "Trebuchet MS", Tahoma, sans-serif; /* tahoma is the font family and sans-serif is a generic family */
	FONT-SIZE: small !important;	 /* Using the notation to signify for Firefox to ingnore subsequent decalrations */
	font-size: small;				 /* IE will always use the last declaration it finds - hence cascading */
	COLOR: #000000;					 /* or colour name, red, blue, black, white, etc */
	TEXT-DECORATION: none;			 /* other values are underline, overline, line-through, blink */
	VERTICAL-ALIGN: top;	/* other possible values are baseline, sub, super, text-top, middle, bottom, text-bottom or a percentage */
	TEXT-TRANSFORM: none;			 /* other values are capitalize, uppercase, lowercase */
	TEXT-ALIGN: left;				 /* other values are right, center, justify */
	TEXT-INDENT: 0;					 /* values are <length> or <percentage> indent before text begins*/
	LINE-HEIGHT: normal;			 /* other values number (e.g. 1.2), length (1.2em), percentage (120%) */
	background-color:#FFFFFF;
}
/* definition of image format with uneven border and relative padding */
IMG {
	BORDER: 0;
	display: block;
}
/* list item decalration - bullet points*/
LI {
	DISPLAY: list-item;			/* other values are block, inline, none */
	WHITE-SPACE: normal;		/* other values are  pre, nowrap */
	LIST-STYLE-TYPE: disc;		/* other values are circle, square, decimal, lower-roman, upper-roman, lower-alpha, upper-alpha, none */
	LIST-STYLE-IMAGE: none;	/* other values are the image url */
	LIST-STYLE-POSITION: outside; /* other value is inside */
}
/* link style definitions */
A {
	text-decoration: none;
}
A:link {
	color: #0000ff;
}
A:visited {
	color: #0000FF;
}
A:hover, A:focus {
	color: #800000;
}
A:active {
	color: #0000ff;
}


#menu A {
	text-decoration: none;
}
#menu A:link {
	color: #ffffff;
}
#menu A:visited {
	color: #74eefb;
}
#menu A:hover, A:focus {
	color: #00e4ff;
}
#menu A:active {
	color: #FFFFFF;
}
/* declaration of a user defined class */

/* definition of a class with borders set left and right to 1px */
.withborders {
	BORDER-TOP-WIDTH: 0px;		/* other values are medium, thick or a length */
	BORDER-RIGHT-WIDTH: 2px;	/* other values are medium, thick or a length otherwise equal to border top width */
	BORDER-BOTTOM-WIDTH: 0px;	/* other values are medium, thick or a length otherwise equal to border top width */
	BORDER-LEFT-WIDTH: 1px;	/* other values are medium, thick or a length otherwise equal to border top width */
	BORDER-COLOR: #006ad6;			/* colour of all borders or can set individually as width above */
	BORDER-STYLE: solid;			/* other values are dotted, dashed, solid, double, groove, ridge, inset, outset */
}

.menu 
{
	line-height:170%;
	background-position: center center;
    background-repeat: no-repeat;
 	background-image: url(../turkish-properties-images/smiley-properties-design-menu.jpg);
	text-align:center;
	BORDER-TOP-WIDTH: 0px;		/* other values are medium, thick or a length */
	BORDER-RIGHT-WIDTH: 2px;	/* other values are medium, thick or a length otherwise equal to border top width */
	BORDER-BOTTOM-WIDTH: 0px;	/* other values are medium, thick or a length otherwise equal to border top width */
	BORDER-LEFT-WIDTH: 1px;	/* other values are medium, thick or a length otherwise equal to border top width */
	BORDER-COLOR: #006ad6;			/* colour of all borders or can set individually as width above */
	BORDER-STYLE: solid;			/* other values are dotted, dashed, solid, double, groove, ridge, inset, outset */
}

.texts {
	padding-right:20px;
	padding-left:0px;
}

.boxtexts {
	padding:10px;
}


.box {
	border-color:#e0efff;
	border-style:solid;
	border-width:1px;
	background-color:#e0efff;
	margin-left: 10px;
	margin-right: 10px;
}




/* These relative units are supported:

H1 { margin: 0.5em }       ems, the height of the element's font  e.g. if font is 12pt then this margin is 6pt
H1 { margin: 1ex }         x-height, ~ the height of the letter 'x' 
P  { font-size: 12px }     pixels, relative to canvas 

Absolute length units are only useful when the physical properties of the output medium are known. These absolute units are supported:

H1 { margin: 0.5in }       inches, 1in = 2.54cm 
H2 { line-height: 3cm }    centimeters 
H3 { word-spacing: 4mm }   millimeters 
H4 { font-size: 12pt }     points, 1pt = 1/72 in 
H4 { font-size: 1pc }      picas, 1pc = 12pt 

*/

