@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background:#666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color:#000000;
	min-width:700px;
    min-height:500px;
	border:0;
}
a{color:#000000; text-decoration:none; }
a:hover{color:#e81e75  ;  text-decoration:underline;}
a:active{color:#e81e75  ; text-decoration:none;}
.ecStyle #container { 
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.ecStyle #header {
	padding: 0 10px 5px 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #44b4e4;
	font-size:0.8em;
} 
.ecStyle #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.ecStyle table{display:none;}

/*advice for comms bar
1. This appears at both top and bottom of page and therefore should have no margins top or bottom that differ
2. Needs to be styled for whitelabel versions of the site so should have contrasting colours for both text and background to remain readable.
*/
.ecStyle #commsbar{
	font-weight:bold;
	background-color:#b8d8e5;
	padding-top:5px;
	padding-right:5px;
	padding-bottom:5px;
	padding-left:20px;
	color:#000000;
	clear:both;
}
/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".ecStyle #sidebar1 p" rule.
*/
.ecStyle #sidebar1 {
	float: right; 
	width: 12em; /* since this element is floated, a width must be given */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin:10px 5px;
	
	}
	
/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.ecStyle #mainContent {
  margin: 0 13em 0 10px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
} 
.didyoumean{
	font-size:1em;
	color:#CC0000;
	padding: 5px 0 0 10px;
	}
.didyoumean a {
	font-style:italic;
	}
.ecStyle #askLogo{
	float: right;
	font-size:0.7em;
	color:#666666;

	}
.organicResults {
	margin-left:10px;
	font-size:1em;
}
.orgLinkTop {color:#0000CC; font-size:1em;}/**/
.orgLinkBtm {color:#339966; font-size:0.8em; text-decoration:none;}/*the green one*/
.orgLinkTop a:visited{ color:#993366;}

.highlightedResult li{
	list-style-image:url(/images/mouse_hilighter.gif);
	font-size:1em;
	margin-left:10px;
}

.news{
	list-style-image:url(/images/news_bullet.gif);
	margin-left:5px;
	font-size:1em;
	padding-left:5px;
}

.ecStyle #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color:#44b4e4;
	font-size:0.8em;
	color:#fff;
	line-height:2em;
	display:none;
} 
.ecStyle #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:1em;
	}
.ecStyle #footer a {
	text-decoration:underline;
	font-weight:bold;
	color:#fff;
	font-size:1em;
}
.ecStyle #footer a:hover {
	text-decoration:underline;
	font-weight:bold;
	color:#000;
}
 #copyright{
	font-size:0.7em;
	}
.adspaceBtm{
	display:none;
	margin-left:40px;
}
.adspaceBtm img{
	border:0;
}
.adspaceBtm a{
	text-decoration:none;
	color:#000;
	font-size:0.8em;
}
.adspaceBtm a:hover{
	color:#e81e75  ;
}
.compulsoryCharityBit{
	font-size:0.8em;
	color:#999999;
	margin-left:40px;
	display:none;
}
.compulsoryCharityBit h2{
	font-size:1em;
	color:#333;
}
#srchTypeSelect{
	color:#fff;
	line-height:1.5em;
	margin:0;
	padding-top:15px;
	vertical-align:text-bottom;
	display:none;
}
#srchTypeSelect a{
	text-decoration:underline;
	color:#fff;
}
#srchTypeSelect a:visited{
	color:#fff;
}

#srchTypeSelect a:hover{
	color:#000;
}
#srchTypeSelect a:active{
	color:#000;
	font-weight:bold;
	text-decoration:none;
}
.OneToTen{
	margin-top:10px;
	margin-left:87px;
	font-size:0.9em;
}
.OneToTen a{
	font-size:0.9em;
	text-decoration:underline;
}
.secondSearchControl{
	margin-top:10px;
	display:none;
}
.secondSearchControl #srchTypeSelect{
	color:#000;
	line-height:1.5em;
	margin-top:0;
	padding-top:5px;
}
.secondSearchControl #srchTypeSelect a{
	text-decoration:underline;
	color:#000;
}
.secondSearchControl #srchTypeSelect a:visited{
	color:#000;
}
.secondSearchControl #srchTypeSelect a:hover{
	color:#e81e75  ;
}
.secondSearchControl #srchTypeSelect a:active{
	font-weight:bold; 
	text-decoration:none;
}

#secondryHeaderLink{
	color:#000;
	margin-left:8px;
	clear:both;
}
#secondryHeaderLink a{
	color:#000;
	text-decoration:underline;
}
#secondryHeaderLink a:hover{
	color:#fff;
}
.secondSearchControl #secondryHeaderLink a:hover{
	color:#e81e75  ;
}

#secondryHeaderLink a:active{
	color:#000;
	font-weight:bold;
}
#secondaryScopeSelect{
	margin-left:87px;
}

.logo_topleft{
	float:left;
	margin:5px 5px 0 5px;
	vertical-align:text-bottom;
}
.logo_Btmleft{
	float:left;
	margin:-1em 5px 0 0;
	vertical-align:text-bottom;
}

#query {
    width:305px;
    height:20px;
    border:1px solid #9DA2AD;
    padding-top:3px;
    padding-left:5px;
}
.searchBox label{ 
	font-size:0.8em; vertical-align:middle;
	}

.searchShopBtn, .searchNewsBtn, .searchCharityBtn, .searchImageBtn,.searchBtn, .searchWebBtn{
	background-image: url(/images/a1.png);
	border:0px none;
    padding:0;
    margin:0;
    cursor:pointer;
	height:26px;
	}
.searchWebBtn{width:107px; background-position:-288px -133px;}	
.searchShopBtn{width:114px; background-position:-154px -133px;}
.searchNewsBtn{width:106px; background-position:-288px -68px;}
.searchCharityBtn{width:106px; background-position: -288px -101px;}
.searchImageBtn{width:106px; background-position: -288px -37px;}
.searchBtn{	width:76px; background-position: -288px -164px;
}



/*---------------Login Navigation ---------------------------*/
#loginNav {
	float:right;
	color:#000;
	clear:right;
	display:none;
}
#loginNav a{
	text-decoration:underline;
	color:#000;
}
#loginNav a:visited{
	color:#000;
}
#loginNav a:hover{
	text-decoration:underline;
	color:#fff;
}

/*-----------------skyscraper advert box----------------------------*/
.skyAdBox {margin-top:10px; padding:0; min-width:160px; display:none;}
.skyAdBox img {border:0; padding:0;}
.skyAdBox a{ font-size:0.8em; color:#000;}
.skyAdBox a:hover{color:#e81e75  ;}

/*-----------------not needed if no bounding box on ad----------------------------
.sab1, .sab2, .sab3, .sab4, .sab5, .sab6, .sab7 {display:block; overflow:hidden; font-size:0;}
.sab1, .sab2, .sab3, .sab4, .sab5, .sab6 {height:1px;}
.sab4, .sab5, .sab6, .sab7 {background:#ccc; border-left:1px solid #b8d8e5; border-right:1px solid #b8d8e5;}/*these define the outer side border colours

.sab1 {margin:0 8px; background:#b8d8e5; max-width:150px;}/*top&bottom border (outermost)
.sab2 {margin:0 6px; background:#b8d8e5; max-width:154px;}/*top&bottom border (midouter)
.sab3 {margin:0 4px; background:#b8d8e5; max-width:158px;}/*top&bottom border (outer)
.sab4{margin:0 3px; background:#b8d8e5; border-width:0 5px; max-width:150px;}/*top border (inner)

.sab5 {margin:0 2px; background:#b8d8e5; border-width:0 4px; max-width:154px;}/*top border (inner)
.sab6 {margin:0 2px; background:#b8d8e5; border-width:0 3px; max-width:156px;} /*bottom border (inner)
.sab7 {margin:0 1px; background:#b8d8e5; border-width:0 3px; height:2px; max-width:158px;} /*bottom border (inner)

.skyAdBoxContent {display:block; background:#b8d8e5; border:3px solid #b8d8e5; border-width:0 3px; max-width:160px;}/*central container for copy*/

/*-----------------chunky rounded box----------------------------*/

.chunkybox h1, .chunkybox p {margin:0 10px;}
.chunkybox h1 {font-family: Arial, Helvetica, Sans-serif; font-size:0.7em; font-weight:normal; color:#666666; border:0; padding:0.1em 0 0.5em 0;}
.chunkybox p {font-size:0.85em; padding-bottom:0.5em; color:#000;}

.chunkybox {background:transparent; margin:10px 0 0 0; padding:0;}

.cb1, .cb2, .cb3, .cb4, .cb5, .cb6, .cb7 {display:none; overflow:hidden; font-size:0;}
.cb1, .cb2, .cb3, .cb4, .cb5, .cb6 {height:1px;}
.cb4, .cb5, .cb6, .cb7 {background:#ccc; border-left:1px solid #b8d8e5; border-right:1px solid #b8d8e5;display:none; }/*these define the outer side border colours*/

.cb1 {margin:0 8px; background:#b8d8e5;}/*top&bottom border (outermost)*/
.cb2 {margin:0 6px; background:#b8d8e5;}/*top&bottom border (midouter)*/
.cb3 {margin:0 4px; background:#b8d8e5;}/*top&bottom border (outer)*/
.cb4 {margin:0 3px; background:#fff; border-width:0 5px;}/*top border (inner)*/

.cb5 {margin:0 2px; background:#fff; border-width:0 4px;}/*top border (inner)*/
.cb6 {margin:0 2px; background:#fff; border-width:0 3px;} /*bottom border (inner)*/
.cb7 {margin:0 1px; background:#fff; border-width:0 3px; height:2px;} /*bottom border (inner)*/

.cboxcontent {display:block; background:#fff; border:0; overflow:hidden;}/*central container for copy*/
.cboxcontent p{ margin-left:10px;}


/*----------search assistant base, filled box-----------------*/

.searchAsst h1, .searchAsst p {margin:0 10px; }
.searchAsst h1 {font-size:0.8em; color:#000; padding:0; }
.searchAsst p {font-size:0.75em; color:#000; margin-top:5px;}
.searchAsst ul {margin-top:5px; list-style-position:outside; }/*used for tab list*/
.searchAsst {background:transparent; margin:0; margin-top:5px; padding:0; font:"VAG Rounded Std Light", Arial, Helvetica, Sans-serif;  display:none;}
.sa1, .sa2, .sa3, .sa4, .sa5, .sa6, .sa7 {display:none; overflow:hidden; font-size:0;}
.sa1, .sa2, .sa3, .sa4, .sa5, .sa6 {height:1px;}
.sa4, .sa5, .sa6, .sa7 {background:#ccc; border-left:1px solid #b8d8e5; border-right:1px solid #b8d8e5;}/*these define the outer side border colours*/
.sa1 {margin:0 8px; background:#b8d8e5;}/*top&bottom border (outermost)*/
.sa2 {margin:0 6px; background:#b8d8e5;}/*top&bottom border (midouter)*/
.sa3 {margin:0 4px; background:#b8d8e5;}/*top&bottom border (outer)*/
.sa4 {margin:0 3px; background:#b8d8e5; border-width:0 5px;}/*top border (inner)*/

.sa5 {margin:0 2px; background:#b8d8e5; border-width:0 4px;}/*top border (inner)*/
.sa6 {margin:0 2px; background:#b8d8e5; border-width:0 3px;} /*bottom border (inner)*/
.sa7 {margin:0 1px; background:#b8d8e5; border-width:0 3px; height:2px;} /*bottom border (inner)*/
.saHeader {background:#b8d8e5; border:3px solid #b8d8e5; border-width:0 3px;}/*container for search asst. header*/
.saHeader #HdrHistory, .saHeader #HdrFavourites, .saHeader #HdrRefine_expand, .saHeader #HdrRefine_narrow{display:none;}

#saTabs {
  float:left;
  width:100%;
  background:#b8d8e5;
  line-height:normal;
  padding-left:0;
  border-left:0;
  margin-left:0;
  display:none;
  }
#saTabs ul {
  display:none;
  font-size:0.75em;
  margin:0;
  padding:0 2px 10px;
  list-style:none;
  display:none;
  }
#saTabs li {
  float:left;
  background:url("/images/tab_left.gif") no-repeat left top;
  margin:0;
  padding:0 0 0 9px;
  display:none;
  }
#saTabs a {
  float:left;
  display:block;
  background:url("/images/tab_right.gif") no-repeat right top;
  padding:5px 10px 3px 3px;
  text-decoration:none;
  font-size:0.8em;
  font-weight:bold;
  display:none;
  }
/* Commented Backslash Hack
   hides rule from IE5-Mac \*/
#saTabs a {float:none;}
/* End IE5-Mac hack */

#saTabs #inactive {
  display:none;
  background-image:url("/images/tab_left.gif");
  }
#saTabs #inactive a {
  background-image:url("/images/tab_right.gif");
  color:#999;
  display:none;
  }
#saTabs li.cur{
	background-image:url("/images/tab_left_selected.gif");
	display:none;
}

#saTabs li.cur a{
background-image:url("/images/tab_right_selected.gif");
color:#000;
padding-bottom:5px;
display:none;
}  

.saContainer{
	display:none;
	background:#fff; 
	border:3px solid #b8d8e5; 
	border-width:0 3px; 
	color:#000066;
	padding:10px;
}/*central container for copy*/

/*.saHeader .chunkybox{ margin:0; font-size:0.9em; float:left; background:#b8d8e5; }

.saHeader .cb1 .cb2 .cb3 .cb4 .cb5 .cb6 .cb7 {display:block; overflow:hidden; font-size:0;}
.saHeader .cb1 .cb2 .cb3 .cb4 .cb5 .cb6 {height:1px;}
.saHeader .cb4 .cb5 .cb6 .cb7 {border-left:1px solid #b8d8e5; border-right:1px solid #b8d8e5;}/*these define the outer side border colours*/
/*
.saHeader .cb1 {margin:0 8px; background:#b8d8e5;}
.saHeader .cb2 {margin:0 6px; background:#b8d8e5;}
.saHeader .cb3 {margin:0 4px; background:#b8d8e5;}
.saHeader .cb4 {margin:0 3px; background:#fff; border-width:0 4px;}

.saHeader .cb5 {margin:0 2px; background:#fff; border-width:0 3px;}
.saHeader .cb6 {margin:0 2px; background:#fff; border-width:0 2px;}
.saHeader .cb7 {margin:0; background:#fff;  height:2px;}
.saHeader */.cboxcontent {display:block; background:#fff; border:3px solid #b8d8e5;  border-width:0 3px;}/*central container for copy*/
.filler{background:#b8d8e5; height:1.7em;}

.saContainer ul{
	right:20px;
	font-size:0.75em;
	list-style:none;
	display:none;
	overflow:auto;
	height:150px;
	}

.saContainer h2 {
	font-size:0.8em;
	margin:0;
	color:#999;
    display:none;
	}

/*----------Sponsored links for top and bottom of page styled below-----------------*/

.sponsorBoxTnB h1, .sponsorBoxTnB p {margin:0 10px;}
.sponsorBoxTnB h1 {font-size:1em; border:0;}
.sponsorBoxTnB p {font-size:1em; padding-bottom:0.5em; color:#000;}
.sponsorBoxTnB {background: transparent; margin-top:10px;}

.sbtnb1, .sbtnb2, .sbtnb3, .sbtnb4, .sbtnb5, .sbtnb6, .sbtnb7 {display:none; overflow:hidden; font-size:0;}
.sbtnb1, .sbtnb2, .sbtnb3, .sbtnb4, .sbtnb5, .sbtnb6 {height:1px;}
.sbtnb4, .sbtnb5, .sbtnb6, .sbtnb7 {background:#ccc; border-left:1px solid #f8f8ff; border-right:1px solid #f8f8ff;}/*these define the outer side border colours*/

.sbtnb1 {margin:0 8px; background:#f8f8ff;}/*top&bottom border (outermost)*/
.sbtnb2 {margin:0 6px; background:#f8f8ff;}/*top&bottom border (midouter)*/
.sbtnb3 {margin:0 4px; background:#f8f8ff;}/*top&bottom border (outer)*/
.sbtnb4 {margin:0 3px; background:#f8f8ff; border-width:0 5px;}/*top border (inner)*/

.sbtnb5 {margin:0 2px; background:#f8f8ff; border-width:0 4px;}/*top border (inner)*/
.sbtnb6 {margin:0 2px; background:#f8f8ff; border-width:0 3px;} /*bottom border (inner)*/
.sbtnb7 {margin:0 1px; background:#f8f8ff; border-width:0 3px; height:2px;} /*bottom border (inner)*/

.sbtnbBoxcontent {display:block; background:#f8f8ff; border:0;}/*central container for copy*/
.sbtnbBoxcontent p {padding-left:37px;}/*central container for copy*/
.spLinkTop {color:#0000CC; font-size:1em; text-decoration:underline;}/**/
.spLinkBtm {color:#339966; font-size:0.8em; text-decoration:none;}/*the green one*/

#sponsoredResultLabel{color:#666666; padding-right:1em; font-size:0.70em; float:right;}
/*---------- End of Sponsored links for top and bottom of page -----------------*/

.searchAsst form{
	margin:0;
}

.searchAsst #header {
background:#b8d8e5;
float:left;
font-size:0.8em;
line-height:normal;
width:100%;
display:block; 
border:3px solid #b8d8e5; 
border-width:0 3px;
}
.searchAsst #header ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0;
padding:10px 10px 0;
}
.searchAsst #header li {
background:transparent url(/images/tab_left.gif) no-repeat scroll left top;
float:left;
margin:0;
padding:0 0 0 9px;
}
.searchAsst #header a {
background:transparent url(/images/tab_right.gif) no-repeat scroll right top;
color:#666;
display:block;
float:left;
font-weight:bold;
padding:5px 15px 4px 6px;
text-decoration:none;
}

.searchAsst #header a:hover {
color:#e81e75  ;
}

.saFunctionLink {
	right:20px;
	color:#44b4e4;
	font-size:0.7em;
	vertical-align:middle;
	}	

#History, #Refine_narrow, #Refine_expand, #Favourites {display:none;}

	
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { }/* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */

/*-----------------HOME PAGE STYLING--------------------*/
/*-----------------query box----------------------------*/

.queryBox h1, .queryBox h2, .queryBox p {margin:0 10px;}
.queryBox h2 {font-size:2.5em; color:#fc0;}
.queryBox h1 {font-family:"VAG Rounded Std Light", Arial, Helvetica, Sans-serif; font-size:1em; color:#333; border:0; padding:0.1em 0 0.5em 0;}
.queryBox p {font-size:0.85em; padding-bottom:0.5em; color:#000;}

.queryBox {
	margin:10px 0 0 0;
	padding:0;
	width:300px;
	}

.qb1, .qb2, .qb3, .qb4, .qb5, .qb6, .qb7 {display:block; overflow:hidden; font-size:0;}
.qb1, .qb2, .qb3, .qb4, .qb5, .qb6 {height:1px;}
.qb4, .qb5, .qb6, .qb7 {background:#44b4e4; border-left:1px solid #44b4e4; border-right:1px solid #44b4e4;}

.qb1 {margin:0 8px; background:#44b4e4;}
.qb2 {margin:0 6px; background:#44b4e4;}
.qb3 {margin:0 4px; background:#44b4e4;}
.qb4 {margin:0 3px; background:#44b4e4; border-width:0 5px;}

.qb5 {margin:0 2px; background:#44b4e4; border-width:0 4px;}
.qb6 {margin:0 2px; background:#44b4e4; border-width:0 3px;} 
.qb7 {margin:0 1px; background:#44b4e4; border-width:0 3px; height:2px;}

.qboxcontent {display:block; background:#44b4e4; border:3px solid #44b4e4; border-width:3px; overflow:hidden;}
.qboxcontent p{ margin-left:10px;}

#wrapper {
	background-position: bottom center;
    background-repeat:no-repeat;
    max-width:1600px;
    max-height:1050px;
    min-height:100%;
    height:100%;
    margin:0 auto;;
    position:relative;
    background-color:#ffffff;
	overflow:hidden;
}
#logoimg{
        background-image: url(/images/a1.png)
    }
#topbar, #leftbar, #rightbar, #btmbar {
    background-color:#BCBCBC;
}
#topbar {
    width:100%;
    height:20px;
}

#leftbar {
    position:absolute;
    width:20px;
    height:100%;
}

#rightbar {
    position:absolute;
    width:20px;
    right:0px;
    height:100%;
}

#btmbar {
    width:100%;
    height:20px;
    bottom:0;
    position:absolute;
}
.ecHome #container {
	 	height:200px;
    	position:absolute;
    	top:50%;
    	left:50%;
	    margin-top:-150px;
        width:592px;
        margin-left:-296px;        
 	}
	
#tglow, #bglow {
        background-image:url(/images/vglow.png);
    }
#lglow, #rglow {
        background-image:url(/images/hglow.png);
    }
#tglow, #bglow {
    left:20px;
    height:20px;
    width:100%;
    background-repeat:repeat-x;
}

#bglow {
    background-position:bottom;
}

#rglow {
    background-position:right;
}

#lglow, #rglow {
    top:20px;
    width:20px;
    height:100%;
    background-repeat:repeat-y;
}
#cornerTL,#cornerTR,#cornerBL,#cornerBR {
    background-repeat:no-repeat;
    position:absolute;
    width:32px;
    height:32px;
    z-index:5;
}


#cornerTL {
    top:20px;
    left:20px;
    background-position:-202px -41px;
}
#cornerTR {
    top:20px;
    right:20px;
    background-position:-234px -41px;
}
#cornerBL {
    bottom:20px;
    left:20px;
    background-position:-202px -72px;
}
#cornerBR {
    bottom:20px;
    right:20px;
    background-position:-234px -72px;}
#fcon {
    position:absolute;
    width:100%;
    bottom:40px;
    text-align:center;
}

