mini-country.css
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #FADDA1;
	color: #663D1F;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0 0 0 0;
	padding: 0px;
	background-image: url('images/bord_mini_country_002.gif');
	background-repeat: repeat-x;
}
body img {
	border: 0px;
}
/* Commonly used to style page titles. */
h1, h2, h3, h4 {
	color: #663D1F;
}
h1 {
  
  font-size: 1.5em;
}
/* Commonly used to style section titles. */
h2 {
  font-size: 1.3em;
}
h3 {
	font-size: 1em;
}
/* Sets the style for unvisited links. */
/*==============all site links==============*/
a:link {
	font-weight: bold;
	color: #636384;
	background: transparent;
	text-decoration: underline;
}
a:visited {
	font-weight: bold;
	color: #990000;
	background: transparent;
	padding: 0px;
	text-decoration: underline;
}
a:hover {
	font-weight: bold;
	text-decoration : none;
	background: #804000;
	color: #FADDA1;
}
a:active {
	font-weight: bold;
	text-decoration : underline;
	background: #D5D2D9;
	color: #000000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #FEF6E7;
	width: 80%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 65px auto 0 auto; 
	border-right: double 1px #634231;
	border-bottom: double 1px #634231;
	border-left: double 1px #634231;
	
}
#outerWrapper #header {
	background-position: center center;
	background-color: #FEF6E7;
	padding: 10px 0px 10px 0px;
	background-image: url('images/site-logo2.gif');
	height: 75px;
	background-repeat: no-repeat;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#outerWrapper .ubercolortabs{
padding: 0;
width: 100%;
overflow: hidden;
background: transparent;
}

#outerWrapper .ubercolortabs ul{
font: bold 11px Arial, Verdana, sans-serif;
margin: 0;
padding: 0;
list-style: none;
}

#outerWrapper .ubercolortabs li{
display: inline;
margin: 0 2px 0 0;
padding: 0;
text-transform: uppercase;
}


#outerWrapper .ubercolortabs a{
float: left;
color: white;
background: #804000 url('images/roundleft.gif') no-repeat left top; /*default background color of tabs, left corner image*/
margin: 0 2px 0 0;
padding: 0 0 1px 3px;
text-decoration: none;
letter-spacing: 1px;
}

#outerWrapper .ubercolortabs a span{
float: left;
display: block;
background: url('images/roundright.gif') no-repeat right top; /*right corner image*/
padding: 7px 9px 3px 6px;
cursor: pointer;
}

#outerWrapper .ubercolortabs a span{
float: none;
}


#outerWrapper .ubercolortabs a:hover, .ubercolortabs li.selected a{
background-color: #AE5300; /*background color of tabs onMouseover*/
color: white;
}

.ubercolortabs a:hover span{
background-color: transparent;
}


#outerWrapper .ubercolordivider{ /*CSS for horizontal line.*/
clear: both;
padding: 0;
width: 100%;
height: 5px;
line-height: 5px;
background: #804000; /*background color of horizontal line*/
border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
}


/* Contains the main page content.  */
#outerWrapper #contentWrapper #content {
  padding: 10px 10px 10px 10px; 
  margin: 0 0 0 0; 
}

/*===========content area list items==============*/
#content ul li {
	list-style-image: url('images/bullet.gif');
	margin: 2px;
	padding: 2px;
}
#content li li {
	list-style-image: url('images/bullet.gif');
	padding: 2px 0;
}

#outerWrapper #footer {
	background-color: #FEF6E7;
	border-top: solid 1px #666;
	padding: 10px 10px 10px 10px;
	text-align: center;
	font-size: .9em;
}

#outerWrapper #footer p {
	margin: 0px;
}

/*================used to center anything==============*/
.center {
	text-align: center;
}
/* ============floats images to right or left ============*/
.imgrgt {
	float: right;
	padding: 7px;
}
.imglft {
	float: left;
	padding: 7px;
}
.smtxt {
	font-size: small;
}