@charset "UTF-8";
/* CSS Document */

 body {
	margin-left: 0px;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 0px;
	font: normal 0.8em/1.4em Verdana, Arial, Helvetica, sans-serif;
	word-spacing: normal;
	line-height: 1.3em;
	background-color: #ffffff;
}

#container {
    position: relative; 
	margin: 0 auto;  
	padding: 0 0 0 0;
	font-size: .9em;
	color: #333333;
	width: 1000px;
/*    min-height: 700px;  */
/*    overflow: hidden;  */
	background-color: #ffffff;
	}
   
#header_pic {
    position:absolute;
    top: 5px;
    left: 0px;
    width: 70px;
    height: 70px;
    z-index: 20;
	}
	
#header_pic img {
	float: left;
	padding-left: 10px;
	}

#banner {
    position: absolute; 
    top: 0px;
    left: 0px;
    width: 1000px;
    height: 100px;
	margin: 0 auto;  
	padding: 0 0 0 0;
	background-color: #ffffff;
	background-image: url(../images/header_bg.jpg);  
	background-repeat: repeat-x; 
    z-index: 1;
	}

#header_text {
    position: absolute;
    top: 17px;
	left: 69px;
	width: 500px;
    height: 25px;
    z-index: 20;
	}

#header_text .truecaps {
	font-size: 3.0em;
	color: #006633;
	font-family: "Times New Roman", Times, serif;
	line-height: 0.8em;
	font-weight: light;
    font-variant: small-caps;
    font-style: normal;
    }

#header_text2 {
    position: absolute;
    top: 54px;
	left: 71px;
	width: 400px;
    height: 25px;
    z-index: 20;
	}

#header_text2 .credit {
	color: #000000;
	font-size: 1em;
	font-weight: bold;
    font-style: normal;
    }

#searchArea {
    position: absolute;
    top: 5px;
    right: 0px;
	color: #006633;
	font-weight: bold;
	padding: 16px 0 14px 0;
	text-align: right;
    z-index: 20;
	}

#searchArea a {
	text-decoration: none;
	color: #006633;
	}	
	
#topNav {
    position: absolute;
    top: 52px;
    right: 0px;
	padding: 1px 10px 0 0;
	margin: 0;
    z-index: 20;
	}
	
#topNav ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: right;
	font-weight: bold;
	}
	
#topNav li {
	display: inline;
	padding: 1px 2px 1px 2px;
	margin: 0 2px 2px 0;
	font-size: .9em;
	color: #FFFACD;
	}
	
#topNav ul li a:link {
	color: #FFFACD;
	text-decoration: none;
	}
	
#topNav ul li a:visited {
	color: #FFFACD;
	text-decoration: none;
	}

#topNav ul li a:hover {
	color: #FFFACD;
	text-decoration: underline;
	}

#topNav ul li a:active {
	color: #FFFACD;
	text-decoration: underline;
	}

#date {
    position: absolute;
    top: 79px;
	right: 0px;
    height: 20px;
	text-align: right;
	font-size: .9em;
	line-height: 1em;
	font-weight: bold;
	padding: 0 6px 0 0;
	margin: 0px 0 0 0;
    z-index: 25;
	}

#main {
    position: absolute;
    top: 93px;
	margin: 6px 0 0 0;
	padding: 0 0 0 0;
	background-color: #ffffff;
	width: 1000px;
	clear: both;	
	}

#navBar {
	float: left;
	width: 190px;
	padding: 0 0 0 0x;
	margin: 0;
		}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* navigation                                                      */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

#mainNav {
	background-image: url(../images/brown_square.jpg);
	margin: 0 0 20px 0;
	z-index: 1500;
	padding: 0;
	}
	
#mainNav ul.makeMenu {
  width: 190px;                 /* sets the size of the menu blocks */
  /*border: 1px solid #000; */     /* puts a black border around the menu blocks */
  background-color: #e5e5c7;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  background-image: url(../images/brown_gradient.jpg);
  background-repeat: repeat-y; 
  padding: 0;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin: 0px; 
 					           /* Opera 7 final's margin and margin-box model cause problems */
}

#mainNav ul.makeMenu ul {
width: 190px;
background-image: url(../images/brown_gradient.jpg);
/*background-image: url(../images/news_gradient.jpg); */
background-repeat: repeat-y; 
padding: 0;
margin: 0;
border-top: 1px solid #CDC0B0;
border-right: 1px solid #CDC0B0;
border-bottom: 1px solid #666666;
border-Left: 1px solid #666666;

}

#mainNav ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #fff;                 /* sets the default font colour to white */
}

#mainNav ul.makeMenu li > ul { /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 2px;                    /* position slightly lower than the parent menu item */
  left: 184px;  
  z-index:2020;                /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}

#mainNav ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #fff;      /* gives the active menu items a yellow background */
  color: #993300; 
 z-index:2021;                 /* makes the active menu item text black */ 
}

#mainNav ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;  
            /* specially to go with the className changes in the behaviour file */
}

#mainNav ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;  
            /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
#mainNav ul.makeMenu li a { 
	color: #666666;
	font-weight: bold; 
	display: block; 
	text-decoration: none;
	border-bottom: 1px solid #CDC0B0;
	padding: 6px 4px 6px 8px; 
		}
		
	#mainNav ul.makeMenu li ul li a { 
	color: #666666;
	font-weight:300; 
	display: block; 
	text-decoration: none;
	border-bottom: 1px solid #CDC0B0;
	padding: 6px 4px 6px 8px; 
		}
	
#mainNav ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #993300; }
#mainNav ul.makeMenu li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */

<!--[if gt IE 5.0]><![if lt IE 7]>

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
#mainNav ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( IEmen.htc );
}
#mainNav ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 2px; left: 78px;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  */

	
#bottom_nav {
	background-image: url(../images/green_square.jpg);   
	margin: 0 0 20px 0;
	z-index: 1000;
	padding: 0;
	}
	
#bottom_nav ul.makeMenu {
  width: 190px;                 /* sets the size of the menu blocks */
  /*border: 1px solid #000; */     /* puts a black border around the menu blocks */
  background-color: #99CC99;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  background-image: url(../images/green_gradient.jpg);
  background-repeat: repeat-y; 
  padding: 0;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin: 0px; 
 					           /* Opera 7 final's margin and margin-box model cause problems */
}

#bottom_nav ul.makeMenu ul {
width: 190px;
background-image: url(../images/green_gradient.jpg);
background-repeat: repeat-y; 
padding: 0;
margin: 0;
border-top: 1px solid #CDC0B0;
border-right: 1px solid #CDC0B0;
border-bottom: 1px solid #666666;
border-Left: 1px solid #666666;

}

#bottom_nav ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #fff;                 /* sets the default font colour to white */
}

#bottom_nav ul.makeMenu li > ul { /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 2px;                    /* position slightly lower than the parent menu item */
  left: 184px;  
  z-index:2020;                /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}

#bottom_nav ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #fff;      /* gives the active menu items a yellow background */
  color: #993300; 
 z-index:2021;                 /* makes the active menu item text black */ 
}

#bottom_nav ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;  
            /* specially to go with the className changes in the behaviour file */
}

#bottom_nav ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;  
            /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
#bottom_nav ul.makeMenu li a { 
	color: #000000;
	font-weight: normal; 
	display: block; 
	text-decoration: none;
	border-bottom: 1px solid #CDC0B0;
	padding: 6px 4px 6px 8px; 
		}
		
	#bottom_nav ul.makeMenu li ul li a { 
	color: #000000;
	font-weight:300; 
	display: block; 
	text-decoration: none;
	border-bottom: 1px solid #CDC0B0;
	padding: 6px 4px 6px 8px; 
		}
	
#bottom_nav ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #993300; }
#bottom_nav ul.makeMenu li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */

<!--[if gt IE 5.0]><![if lt IE 7]>

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
#bottom_nav ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( IEmen.htc );
}
#mainNav ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 2px; left: 78px;
}


/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  */

/* pictures of science below the nav bar */

#bottom_pics {
	margin: 0 0 20px 0;
	z-index: 1000;
	padding: 0;
	}

#bottom_pics_fig {
	padding: 0;
	}

#bottom_pics_fig img{
	padding: 5px 5px 5px 5px;
	}

#bottom_pics_fig img.small {
	width: 170px;
    }

#bottom_pics_fig img.very_small {
	height: 130px;
    }

#bottom_pics_text {
	padding: 5px 5px 5px 5px;
	}

#subHeader {
	margin-top: 10px;
	margin-left: 210px;  
	background-image: url(../images/subheader_bckd.jpg);
  	background-repeat: no-repeat;
 	height: 100px;
	padding: 50;
    z-index: 25;
	}

#subHeader .truecaps {
	font-size: 4em;
	padding: 20px 0 0 10px;
/*	margin: 10 0 0 90; */
	color: #006633;
	font-family: "Times New Roman", Times, serif;
	line-height: 0.8em;
	font-weight: light;
    font-variant: small-caps;
    font-style: normal;
    }

#subHeader .truecaps2 {
	font-size: 4em;
	padding: 20px 0 0 10px;
/*	margin: 10 0 0 90; */
	top: 30px;
	color: #006633;
	font-family: "Times New Roman", Times, serif;
	line-height: 0.8em;
	font-weight: light;
    font-variant: small-caps;
    font-style: normal;
    }

#subHeader .truecaps3 {
	font-size: 3.5em;
	padding: 20px 0 0 10px;
/*	margin: 10 0 0 90; */
	color: #006633;
	font-family: "Times New Roman", Times, serif;
	line-height: 0.8em;
	font-weight: light;
    font-variant: small-caps;
    font-style: normal;
    }

/* pictures of science on top of Physics Division subheader image */
div#pictures-top1 {
position: absolute;
top: 19px; left: 645px;
height: 70px;
z-index: 20;
}

div#pictures-top1 img {
margin: 0px 5px 0px 5px;
height: 70px;
}


/* NEWSBAR ... for group pages and also for the main index page   */
/*  a menu bar on the right side of the page  */

#newsBar {
	margin: 0;
	padding: 4px 10px 10px 12px;
	float: right;
/*	width: 234px; */
	width: 180px; 
	border: 1px solid #d1d0a3; 
	background-image: url(../images/news_gradient.jpg);
	background-repeat: repeat-y;
    z-index: 2025;
	}
	

#newsBar h1 {
	font-size: 1.5em;
	color: #006633;
	padding: 4px 0 4px 0;
	margin: 2px 0 6px 0;
	border-bottom: 2px solid #CDC0B0;
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
	}
	
#newsBar h1 a {
	text-decoration: none;
	color: #006633;
	}
	
#newsBar ul {
	margin: 0 0 0 16px;
	padding: 0 0 10px 0;
	color: #006633;
	list-style: square;
	}

#newsBar li {
	padding: 0 0 4px 0;
	}
	
#newsBar a {
	text-decoration: none;
	color: #333333;
	}
	
#newsBar a:hover {
	text-decoration: underline;
	color: #333333;
	}
	
#newsBar img.review {
	margin: 0 0 10px 0;
	padding: 3px 3px 3px 3px;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
}

/* end newsbar   */

/* for pages WITH the slideshow in the center */
#content {
	position: relative;
	margin: 0 254px 10px 196px;
	padding: 0 0 10px 14px;
/*	width: 780px; */
	z-index: 0;
	}

/* for pages WITHOUT the slideshow in the center */
#content_wide {
	position: relative;
	margin: 0 254px 10px 196px;
	padding: 0 0 10px 14px;
	width: 780px; 
	z-index: 0;
	}

#researchHeader {
	padding: 0;
	margin: 0;
	}

#researchHeader .truecaps {
	font-size: 2.8em;
	padding: 2px 10px 0px 10px;
/*	margin: 10 0 0 90; */
	color: #006633;
	font-family: "Times New Roman", Times, serif;
	line-height: 0.8em;
	font-weight: light;
    font-variant: small-caps;
    font-style: normal;
    }

#subfields {
	padding: 5px 0 2px 0px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#subfields_subhead {
	padding: 5px 0 2px 0px;
	margin: 2px 0 0px 0;
	top: 0;
    }
    
#subfields_subhead .truecaps {
	font-size: 2.5em;
	color: #006633;
	font-family: "Times New Roman", Times, serif;
	line-height: 0.8em;
	font-weight: light;
    font-variant: small-caps;
    font-style: normal;
    }

#subfields_list {
	padding: 5px 0 2px 10px; 
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;  
	font-style: normal;
	font-weight: light;
	}

#subfields_list li {
    margin-left: 0px; 
    padding-left: 20px;
    color: black;
	}

#subfields_list ul {
    margin-left: 0px; 
    padding-left: 30px;
    color: black;
	}
	
#subfields_list a {
	text-decoration: none;
	color: #333333;
	}
	
#subfields_list a:hover {
	text-decoration: underline;
	color: #333333;
	}

#subfields_list table {
    border-collapse: collapse;
	}

#subfields_list table tr td {
    border: 1px solid #333333;
    padding: 2px;
	}
    
#research_general {
	padding: 5px 0 2px 0px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#research_gen_fig {
	float: right;
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#research_gen_fig img {
	padding: 5px 5px 5px 5px;
	margin: 2px 2px 2px 2px;
    }

#research_gen_fig img.small {
	height: 100px;
    }

#research_gen_fig img.large {
	width: 300px;
    }

#research_gen_text {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;  
	font-style: normal;
	font-weight: light;
	}

#research_gen_text h1 {
	color: #006633;
    }

#research_gen_text table,td,th {
    padding:5px;
    }

#mid_clear {
    clear: right;
    }

#research_detailed {
	padding: 5px 0 2px 0px;
	margin: 2px 0 0 0;
	top: 0;
	}

#research_det_fig {
	float: right;
	padding: 5px 0 2px 10px;
	margin: 2px 0 0 0;
	top: 0;
	}

#research_det_fig img {
	padding: 5px 5px 5px 5px;
	margin: 2px 2px 2px 2px;
    }

#research_det_fig img.small {
	height: 100px;
    }

#research_det_text {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#research_det_text h1 {
	color: #006633;
    }

#research_technical {
	padding: 5px 0 2px 0px;
	margin: 2px 0 0 0;
	top: 0;
	}

#research_tech_fig {
	float: right;
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#research_tech_fig img {
	padding: 5px 5px 5px 5px;
	margin: 2px 2px 2px 2px;
    }

#research_tech_fig img.small {
	height: 100px;
    }

#research_tech_text {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#research_tech_text h1 {
	color: #006633;
    }

#research_progress {
	padding: 5px 0 2px 0px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#research_prog_fig {
	float: right;
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#research_prog_fig img {
	padding: 5px 5px 5px 5px;
	margin: 2px 2px 2px 2px;
    }

#research_prog_fig img.small {
	height: 100px;
    }

#research_prog_text {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#research_prog_text h1 {
	color: #006633;
    }

#research_hilite {
	padding: 5px 0 2px 0px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#research_hilite_fig {
	float: right;
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	}

#research_hilite_fig img {
	padding: 5px 5px 5px 5px;
	margin: 2px 2px 2px 2px;
    }

#research_hilite_fig img.small {
	height: 100px;
    }

#research_hilite_text {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#research_hilite_text h1 {
	color: #006633;
    }

#publications {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
Dear Executive Committee Members,
Ê
Our next business this year is lobbying. Last year we had a successful visit to Washington in early March, and we presented a letterÊ
signed by many of the US members of our organization to Senators, Representatives, and OMB officials. We would like to do that againÊ
this year. The visit is scheduled for March 5. We will use the same letter as last year, but get a new round of signatures from our members.Ê
Here is a draft ofÊan email to all our members living in the US [this is likely to be sent out on Monday of next week to coincide with the budget release, and I willÊfill in the proposed amount for FRIB now marked with XXX in the draft below]:

	}

#publications h1 {
	color: #006633;
    }

#presentations {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#presentations h1 {
	color: #006633;
    }

#awards {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#awards h1 {
	color: #006633;
    }

#contacts {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#contacts h1 {
	color: #006633;
    }

#more_info {
	padding: 5px 0 2px 10px;
	margin: 2px 0 0px 0;
	top: 0;
	font-size: 1.2em;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: light;
	}

#more_info h1 {
	color: #006633;
    }
	
#bottom_clear {
    clear: both;
    }
    
/*  F O O T E R  ################################# */

#footer {
	margin: 22px 0 4px 0;
	padding: 10px 0 6px 0;
	text-align: center;
	border-top: 2px solid #CDC0B0;  
	border-bottom: 2px solid #CDC0B0; 
	font-size: .9em;
/*	border: 3px solid #FF0000;  */
	}
	
#footerLinks {
	text-align: center;
	margin: 0 0 10px 0;
	}

	
#footerLinks ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: .9em;
	}
	
	
#footer li {
	display: inline;
	padding: 0 0 0 0;
	}

#footer p {
	font-size: .9em;
	color: #333333;
	padding: 0;
	margin: 0;
	text-align: center;
	}
		
#footer a:link {
	text-decoration: none;
	color: #006633;
	}
	
#footer a:visited {
	text-decoration: none;
	color: #006633;
	}
	
#footer a:hover {
	text-decoration: underline;
	color: #006633;
	}
	
#footer a:active {
	text-decoration: none;
	color: #006633;
	}
	
#footer table {
	padding: 0 0 18px 0;
	margin: 0 0 6px 0;
	width: 100%;
	}
	
#footer td {
	padding: 0;
	}
	
#footer table img {
	padding: 0 0 5px 0;
}
