/* **************************************************	*/
/*  Author:		    Roy DeHaven                         */
/*  CSS editor:		Roy DeHaven                         */
/*  editor Email: rynait@rt66.com                     */
/*  Current File:	centerLi.css                        */
/*  Version: 		  1.0                                 */
/*  Purpose:		  creating Standard CSS               */
/*  Modified from: 	                                  */
/*  Create/edit: 	06/11/2009                          */
/*                                                    */
/* based on HTML sample from Matthew James Taylor     */
/* http://matthewjamestaylor.com                      */
/*                                                    */
/*        (as of 6/2009)                              */
/*                                                    */
/* Note: this code removes bullet or numbering scheme */
/*       therefore must restore via html code         */
/*                                                    */
/*                                                    */
/* **************************************************	*/
/* guide: 												                    */
/*                                                    */
/* use html coding base below, *** html & data ***    */
/*   means is your information - code                 */
/* **************************************************	*/
/*                              						          */
/*  <div class='centerLi'>                            */
/*                              						          */
/*  <!-- Listing start -->            			          */
/*  <ul>                              			          */
/*  <li> *** html and data here ***					          */
/*  </li>                             			          */
/*  <li> *** html and data here ***					          */
/*  </li>                             			          */
/*  </ul>                        						          */
/*                              						          */
/*  </div>    <!-- end centerLi div -->               */
/*                              						          */
/* **************************************************	*/

.centerLi {
float:left;
width:100%;
background:#fff;
/* border-bottom:4px solid #000; */
overflow:hidden;
position:relative;
text-align:center;
}

.centerLi ul {
clear:left;
float:left;
list-style:none;
margin:0;
padding:0;
position:relative;
left:50%;
text-align:left;
}

.centerLi ul li {
display:block;
/* float:left; */
list-style:none;
margin:0;
padding:0;
position:relative;
right:50%;
}
