slickmap css

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta name="author" content="Matt Everson of Astuteo, LLC – astuteo.com/slickmap" />
    <title>SlickMap CSS Demo</title>

    <!--[if lte IE 7]> <link rel="stylesheet" type="text/css" media="screen,print" href="slickmap-ie.css" /> <![endif]-->
    
    
</head>

<body>

    <div class="sitemap">
        
        <h1>Project Title</h1>
        <h2>Preliminary Site Map &mdash; Version 1.0</h2>
    
        <ul id="utilityNav">
            <li><a href="/register">Register</a></li>
            <li><a href="/login">Log In</a></li>
            <li><a href="/smap">Site Map</a></li>
        </ul>

        <ul id="primaryNav">
            <li id="home"><a href="http://astuteo.com">Home</a></li>
            <li><a href="/about">About Us</a>
                <ul>
                    <li><a href="/history">Our History</a></li>
                    <li><a href="/mission">Mission Statement</a></li>
                    <li><a href="/principals">Principals</a></li>
                </ul>
            </li>
            <li><a href="/services">Services</a>
                <ul>
                    <li><a href="/services/design">Graphic Design</a></li>
                    <li><a href="/services/development">Web Development</a></li>
                    <li><a href="/services/marketing">Internet Marketing</a>
                        <ul>
                            <li><a href="/social-media">Social Media</a></li>
                            <li><a href="/optimization">Search Optimization</a></li>
                            <li><a href="/adwords">Google AdWords</a></li>
                        </ul>
                    </li>
                    <li><a href="/services/copywriting">Copywriting</a></li>
                   ...

CSS

/* ------------------------------------------------------------
    Reset Styles (from meyerweb.com)
------------------------------------------------------------ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

/* ------------------------------------------------------------
    NUMBER OF COLUMNS: Adjust #primaryNav li to set the number
    of columns required in your site map. The default is 
    4 columns (25%). 5 columns would be 20%, 6 columns would 
    be 16.6%, etc. 
------------------------------------------------------------ */

#primaryNav li {
    width:25%;
}

#primaryNav li ul li {
    width:100% !important;
}

#primaryNav.col1 li { width:99.9%; }
#primaryNav.col2 li { width:50.0%; }
#primaryNav.col3 li { width:33.3%; }
#primaryNav.col4 li { width:25.0%; }
#primaryNav.col5 li { width:20.0%; }
#primaryNav.col6 li { width:16.6%; }
#primaryNav.col7 li { width:14.2%; }
#primaryNav.col8 li { width:12.5%; }
#primaryNav.col9 li { width:11.1%; }
#primaryNav.col10 li { width:10.0%; }
#primaryNav.col11 li { width:9.0%; }

/* ------------------------------------------------------------
    General Styles
------------------------------------------------------------ */

body {
    background: white;
    color: black;
    padding: 40px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
}
.sitemap {
    margin: 0 0 40px 0;
    float: left;
    width: 100%;
}
h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
   ...