@charset "UTF-8";
/* In this CSS document, we have all the CSS for all the HTML tags that we will be using. This is used to define all the different sections that we have used. 
When using CSS tags like in this document, it will mnake every instance of the tag have the same characteristics.*/

/*Setting the background colour to be the color we are looking for is a very good place to start.*/
body
{
	top-margin:0px;
	background:#2A3C28;
}

/*These next few steps take us from having a standard list that we see in normal day, to having the tabs for the menu that we have in the site.*/
ul
{
	color:#FFFFFF;
	margin-left: 10px;
	list-style: none;
}


#boxlist1 ul
{
	margin-left: auto;
	text-align: left;

}


#covlist1 ul
{
}

#covlist2 ul
{
}

#boxlist1 li
{
	color:#FFFFFF;
	list-style-type: disc;
	text-align: left;
}


#covlist1 li.ireland
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/ireland.jpg);
}

#covlist1 li.france
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/france.jpg);
}

#covlist1 li.belgium
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/belgium.jpg);
}

#covlist1 li.holland
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/holland.jpg);
}

#covlist1 li
{
	color:#5b725d;
	
}

#covlist2 li.germany
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/germany.jpg);
}

#covlist2 li.denmark
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/denmark.jpg);
}

#covlist2 li.poland
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/poland.jpg);
}

#covlist2 li.spain
{
	color:#5b725d;
	list-style-image: url(http://www.mrdhorsetransport.com/images/spain.jpg);
}




#covlist2 li
{
	color:#5b725d;
}

li
{
	float:left;
	color:#5b725d;
	margin:1.1em;
}


/*These are defining the size and colour of the links as they appear on the site*/





a
{
	color:#5b725d;
	text-decoration:none;
	outline:none;
}


a.orange
{
	color:#AA864A;
	text-decoration:none;
	outline:none;
	font-size: 18px;
}
/*This is defining the hover attribute to the link we have created.*/
a:hover
{
	color:#090;
}


hr
{
	position:relative;
	width:650px;
	color:#5b725d;
	#top:-18px;
	top: -20px;
}

hr1
{
	position:relative;
	width:650px;
	color:#5b725d;
	#top:-18px;
}

/*This is defining every paragraph marker to have these types of attributes.*/
p
{
	color:#2c442c;
	font-family:"Times New Roman", Times, serif;
	text-align:center;
	font-size:14px;
}

textarea
{
	width:300px;
	height:75px;
	font-family:"Times New Roman", Times, serif;
	font-size:12px;
}

label
{
	line-height:5px;
}

img
{
	border:none;
}
