/************************
**  JQDOCK : DEMO CSS  **
************************/
/*place the various demo menus around the screen (note: 1, 3, 4 and 7 are horizontal; 2, 5 and 6 are vertical)...
 *also note that the relative menu (#menu1) is positioned (z-indexed) below any vertical menus so as not to interfere...*/
  #menu1 {position:relative; padding-top:90px; padding-left:130px; z-index:10;}
  /*...menu2 needs enough width to show the shrunken images, because it's positioned fully to the right...*/
  #menu2 {position:absolute; top:0; right:0; width:48px; z-index:15;}
  #menu3 {position:absolute; top:346px; left:130px;}
  #menu4 {position:absolute; top:510px; left:130px;}
  #menu5 {position:absolute; top:0; left:0; z-index:15;}
  /*...menu6 has zero width, which might affect its position in different browsers depending on doctype...*/
  #menu6 {position:absolute; top:190px; right:200px; width:0; z-index:15;}
  #menu7 {position:absolute; top:140px; left:580px;}
  /*if you really, really need to space the images out you can pad them...*/
  #menu4 img {padding:0 4px;}

/*dock styling...*/
/*docks (div.jqDock) get absolute position, zero padding and margin, and visible overflow; width and height are calculated*/
  /*...set a default dock background colour...*/
  div.jqDock {background-color:transparent;}
  /*...override background colour and/or border for specific demo docks...*/
  #menu2 div.jqDockWrap {background-color:#999999;}
  #menu3 div.jqDock {border:2px solid #ff9900;}
  #menu4 div.jqDock {background-color:#cccccc; border:1px solid #000000;}
  #menu5 div.jqDock {background-color:#000000;}
  #menu6 div.jqDock {background-color:#e0e0ff; border:3px solid #0000ff;}
  #menu7 div.jqDock {border:1px solid #0000cc;}

/*label styling...*/
/*labels (div.jqDockLabel) only get absolute position and zero margin (with top and left being calculated); the rest is up to you*/
  /*...let's set some defaults...*/
  div.jqDockLabel {border:0 none; padding:0 4px; font-weight:bold; font-size:14px; font-style:italic; white-space:nowrap; color:#000000; background-color:transparent;}
  div.jqDockLabelLink {cursor:pointer;}
  div.jqDockLabelImage {cursor:default;}
  /*...and some overrides...*/
  /*...give the right-hand vertical a smaller, non-bold, deep red label, on a white background...*/
  #menu2 div.jqDockLabel {color:#cc0000; background-color:#ffffff; padding:1px; font-size:12px; font-weight:normal;}
  /*...and the left-hand vertical (with the black background) a white label...*/
  #menu5 div.jqDockLabel {color:#ffffff; padding:0 1px;}
