/* 
  ZUI - default pod, with shadow.
*/

.pod {
 position:relative;
 margin:0px auto;
 z-index:1;
 margin-left:10px; /* default, width of left corner */
}

.pod .content,
.pod .t,
.pod .b,
.pod .b div {
 background:transparent url(../img/zui-pod-plain.png) no-repeat top right;
 _background:transparent url(../img/zui-pod-plain.png) no-repeat top right;
}

.pod .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:10px 10px 0px 0px;
}

.pod .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:10px; /* top slice width */
 margin-left:-10px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.pod .b {
 /* bottom */
 position:relative;
 width:100%;
}

.pod .b,
.pod .b div {
 height:10px; /* height of bottom cap/shade */
 font-size:1px;
}

.pod .b {
 background-position:bottom right;
}

.pod .b div {
 position:relative;
 width:10px; /* bottom corner width */
 margin-left:-10px;
 background-position:bottom left;
}


.pod .wrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:1000px;
 overflow:auto; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}


