a {
  color: #00aa4f;
  text-decoration: none; }
  a img {
    border: none; }

p {
  padding: .5em 0;
  margin: 0; }

.clear,
.pagination {
  clear: both; }

.pagination {
  margin: 1em 0 0; }
  .pagination span {
    border: 1px solid;
    padding: 0 .5em; }
  .pagination a {
    border: 1px solid;
    padding: 0 .5em; }
    .pagination a:hover {
      background-color: #00aa4f;
      border-color: #00aa4f;
      color: #fff; }
  .pagination .disabled {
    color: #ccc; }

.hidden {
  display: none; }

body {
  background-image: url(/images/bg.jpg);
  color: #222222;
  font-family: Geneva,'Helvetica Nueue',Arial,sans-serif;
  font-size: 12px;
  margin: 0;
  padding: 0; }

#container {
  margin: 0 auto;
  width: 722px;
  position: relative;
  display: block; }
  #container #header {
    background-image: url(/images/header.png);
    background-position: top center;
    background-repeat: no-repeat;
    height: 187px;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative; }
    #container #header h1 {
      text-indent: -10000px; }
      #container #header h1 a {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 187px;
        width: 100%; }
    #container #header h2 {
      display: none; }
  #container #middle {
    }
    #container #middle #right {
      float: right;
      width: 160px;
      margin: 0;
      padding: 0;
      color: #222222; }
      #container #middle #right h2 {
        font-size: 1.1em;
        font-weight: bold;
        padding: 0 29px 0 0; }
      #container #middle #right small {
        font-weight: bold;
        padding: 0 29px 0 0; }
    #container #middle #content {
      margin: 0;
      width: 550px;
      float: left; }
      #container #middle #content h1 {
        font-weight: bold;
        font-size: 18px;
        color: #a1a1a5; }
      #container #middle #content h3 {
        font-weight: bold;
        font-style: italic;
        font-size: 1.4em;
        margin-top: .5em; }
      #container #middle #content #highlights {
        clear: left; }
        #container #middle #content #highlights .contentbox {
          border: 1px solid #ebebeb;
          color: #000000;
          float: left;
          margin: 18px 4px 0 0;
          padding: 1px 0 0 0;
          width: 177px; }
          #container #middle #content #highlights .contentbox h2 {
            background-color: #232323;
            color: #ffffff;
            font-size: 10px;
            font-weight: normal;
            height: 14px;
            padding: 1px 0 0 0;
            text-indent: 4px; }
          #container #middle #content #highlights .contentbox p {
            padding: 2px 0 1px 0; }
  #container #footer {
    background: #222222;
    clear: both;
    color: #a1a1a5;
    text-align: center;
    width: 100%;
    margin: 15px auto 0;
    padding: 1px 0 0; }


/*

 SoundManager 2: In-page MP3 player example
 ------------------------------------------

 Clicks on links to MP3s are intercepted via JS, calls are
 made to SoundManager to load/play sounds. CSS classes are
 appended to the link, which are used to highlight the
 current play state and so on.

 Class names are applied in addition to "sm2_link" base.

 Default:

 sm2_link

 Additional states:

 sm2_playing
 sm2_paused

 eg.

 <!-- default -->
 <a href="some.mp3" class="sm2_link">some.mp3</a>

 <!-- playing -->
 <a href="some.mp3" class="sm2_link sm2_playing">some.mp3</a>


 Note you don't require ul.graphic / ul.flat etc. for your use
 if only using one style on a page. You can just use .sm2_link{}
 and so on, but isolate the CSS you want.

 Side note: Would do multiple class definitions eg.

 a.sm2_default.sm2_playing{}

 .. except IE 6 has a parsing bug which may break behaviour,
 applying sm2_playing {} even when the class is set to sm2_default.


 If you want to make your own UI from scratch, here is the base:

 Default + hover state, "click to play":

 a.sm2_link {}
 a.sm2_link:hover {}

 Playing + hover state, "click to pause":

 a.sm2_playing {}
 a.sm2_playing:hover {}

 Paused + hover state, "click to resume":

 a.sm2_paused {}
 a.sm2_paused:hover {}


*/


a.graphic,
a.graphic.sm2_link {
 /* assume all items will be sounds rather than wait for onload etc. in this example.. may differ for your uses. */
 display:inline-block;
 padding:0 0 0 20px;
 border:3px solid #666;
 background:#666 url(/images/icon_play.png) no-repeat 0px 50%;
  _background-image:url(/images/icon_play.gif); /* IE 6 */
 -moz-border-radius:3px;
 -webkit-border-radius:3px;
 border-radius:3px;
 text-decoration:none;
 font-weight:bold;
 color:#fff;
 font-size: 80%;
 line-height: 1em;
 float: right;
}

a.graphic.sm2_link {
 /* safari 3.1+ fun (or, proprietary crap. TBD.) */
 -webkit-transition-property: hover;
 -webkit-transition: all 0.15s ease-in-out;
}

a.graphic.sm2_link:hover {
 background-color:#333;
 border-color:#333;
}

a.graphic.sm2_paused {
 background:#999 url(/images/icon_pause.png) no-repeat 0px 50%;
 _background-image:url(/images/icon_pause.gif);
 border-color:#999;
}

a.graphic.sm2_paused:hover {
 background-image:url(/images/icon_play.png);
 _background-image:url(/images/icon_play.gif);
}

a.graphic.sm2_playing,
a.graphic.sm2_playing:hover {
 background:#336699 url(/images/icon_pause.png) no-repeat 0px 50%;
 _background-image:url(/images/icon_pause.gif);
 border-color:#336699;
 text-decoration:none;
}


# pagination styles

.digg_pagination {
  background: white;
  /* self-clearing method: */ }
  .digg_pagination a, .digg_pagination span {
    padding: .2em .5em;
    display: block;
    float: left;
    margin-right: 1px; }
  .digg_pagination span.disabled {
    color: #999;
    border: 1px solid #DDD; }
  .digg_pagination span.current {
    font-weight: bold;
    background: #2E6AB1;
    color: white;
    border: 1px solid #2E6AB1; }
  .digg_pagination a {
    text-decoration: none;
    color: #105CB6;
    border: 1px solid #9AAFE5; }
    .digg_pagination a:hover, .digg_pagination a:focus {
      color: #003;
      border-color: #003; }
  .digg_pagination .page_info {
    background: #2E6AB1;
    color: white;
    padding: .4em .6em;
    width: 22em;
    margin-bottom: .3em;
    text-align: center; }
    .digg_pagination .page_info b {
      color: #003;
      background: #6aa6ed;
      padding: .1em .25em; }
  .digg_pagination:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }
  * html .digg_pagination {
    height: 1%; }
  *:first-child+html .digg_pagination {
    overflow: hidden; }
 
.apple_pagination {
  background: #F1F1F1;
  border: 1px solid #E5E5E5;
  text-align: center;
  padding: 1em; }
  .apple_pagination a, .apple_pagination span {
    padding: .2em .3em; }
  .apple_pagination span.disabled {
    color: #AAA; }
  .apple_pagination span.current {
    font-weight: bold;
    background: transparent url(apple-circle.gif) no-repeat 50% 50%; }
  .apple_pagination a {
    text-decoration: none;
    color: black; }
    .apple_pagination a:hover, .apple_pagination a:focus {
      text-decoration: underline; }
 
.flickr_pagination {
  text-align: center;
  padding: .3em; }
  .flickr_pagination a, .flickr_pagination span {
    padding: .2em .5em; }
  .flickr_pagination span.disabled {
    color: #AAA; }
  .flickr_pagination span.current {
    font-weight: bold;
    color: #FF0084; }
  .flickr_pagination a {
    border: 1px solid #DDDDDD;
    color: #0063DC;
    text-decoration: none; }
    .flickr_pagination a:hover, .flickr_pagination a:focus {
      border-color: #003366;
      background: #0063DC;
      color: white; }
  .flickr_pagination .page_info {
    color: #aaa;
    padding-top: .8em; }
  .flickr_pagination .prev_page, .flickr_pagination .next_page {
    border-width: 2px; }
  .flickr_pagination .prev_page {
    margin-right: 1em; }
  .flickr_pagination .next_page {
    margin-left: 1em; }
