/* definition list */

dl.table{
    margin:  0 0 1em 0;
    padding: 0;
    font-size: 1em;
    line-height: 1.5;
    display: block;
    }

.table dt {
    float: right;
	clear: both;
    width: 33%;
    position: relative;
    left: -1%; /*close rounding gaps */
    overflow: hidden; /* long links */     
	margin: 0;
    padding: 0 0 0.5em 0;  
	border-top: 1px dotted #ff7f00;
}

.table dd {
    margin: 0;
    padding: 0 0 0.5em 0;
    width: 66%;
    border-top: 1px solid #A0A0A8;
    position: relative;
    }

/* P.I.E. clearfix implementation to allow for dt taller than dd: dd-bottom clears dt */

.table dd:after {
    visibility: hidden;
    clear: right;
    font-size: 0;
    height: 0;
    display: block;
    content: ".";
	}


.table dd p {
    margin: 0;
    padding: 0.5em 0.5em 1em 0.5em;
    }

.table dt a {
    display: block;
    padding: 0.5em 1em;
    text-decoration: underline;
    }
	




