
/* body has white background with image repeated along left hand side. 
Text colour is black.
The overall font used for the site is arial. 
*/
body 
{
background: url(images/blendC2cropped.jpg) #fff;
background-repeat: repeat-y;
background-position: left top;
color: black;
font-family: arial, helvetica, sans-serif;
border: 0;
padding: 1em;
margin: 0px;
}

h2
{color: #900}

/* defines banner size for top of page */
div.banner 
{
width: 100%;
height: 145px;

}
/*by floating logo to left text positions on its right rather than underneath */
.logo
{float: left;
}

.title
{
float: left;
margin-left:50px;
}


/* SET UP STYLES FOR LINKS */

/* style for links within text blocks */
a.nav
{
text-decoration: none;
color: black;
background-color: inherit;
}

/* make links within text go red when moused over */
a.nav:hover {color: #f00;}

/* for links that keep the underlining just set colours 
(background inherits whatever background it is on) */ 
a.underlinedlink
{
background-color: inherit;
color: black;
}
/*Make visited underlined links dark red i.e. not those ones on the navigation bars*/
a.underlinedlink:visited 
{
color: #600;
background-color: inherit;
}


/* HOME PAGE */

/* set style for text links on lhs of home page */
div.leftlinks
{
padding: 1em;
font-weight: bold;
}
/* set style for picture links on lhs of home page */
div.piclinks
{
float: left;
border: 0;
background-color: inherit;
margin: 0.5em;
clear: left;
}


/* sidebar and main window both scroll together */

#sidebar {
float: left;
width: 160px;

}
/*float against sidebar */
#main {
margin-top: 10px;
float: left;
width:80%;

}

.column 
{float: left;
margin-left: 5%;
width: 40%;
}

/* size and position for blocks of text on home page and aboutus page*/
p.home
{
float: left;
padding-right: 2%;
width: 50%;
text-align: justify;
}

p.widehome
{
float: left;
padding-right: 2%;

text-align: justify;
}
/* position main images on home page and about us- no margin on lhs*/
img.home
{
float: left;
margin: 0.25em 1em 0.25em 0em;
border: inset #ffcc99;
}

/* layout for general blocks of text on Paris Moon and Tango Select pages */
p.blurb
{
float: left;
margin: 0;
margin-top: 0%;
padding: 1em;
}

/* style for quotes */
.quote
{color: #cc3300;
font-style: italic;
padding-top: 1em;
}


p.clearfloat
{clear: left;
margin-top: 30px;
}


/* style for explanatory text */
.postscript
{
clear: both;
font-size: smaller;
}

