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

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

.pod .content,
.pod .t,
.pod .b,
.pod .b div {
 background:transparent url(/_assets/img/common/zui_pod_main_content.gif) no-repeat top right;
}

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

.pod .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:11px; /* top slice width */
 margin-left:-11px;
 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:11px; /* height of bottom cap/shade */
 font-size:1px;
}

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

.pod .b div {
 position:relative;
 width:11px; /* bottom corner width */
 margin-left:-11px;
 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. */
}


/* V2 Pod - More Flexible, less page weight, IE6 bugs in previous version irradicated (height and width adjusted via ID in relevant page css) - VIP */
/* Currently used on hotel page, tab container */

.curvedBoxTop                       { float:left; }
.curvedBoxTop .left                 { float:left; display:inline; width:20px; height:20px; background:transparent url(/_assets/img/common/zui_pod_v2/top_left.gif) no-repeat; }
.curvedBoxTop .centre               { float:left; display:inline; height:20px; background:transparent url(/_assets/img/common/zui_pod_v2/top_centre.gif) repeat-x; }
.curvedBoxTop .right                { float:left; display:inline; width:20px; height:20px; background:transparent url(/_assets/img/common/zui_pod_v2/top_right.gif) no-repeat; }

.curvedBoxMain                      { float:left; clear:left; background:transparent url(/_assets/img/common/zui_pod_v2/left_centre.gif) top left repeat-y; }
.curvedBoxContent                   { float:left; position:relative; padding:10px; background:transparent url(/_assets/img/common/zui_pod_v2/right_centre.gif) top right repeat-y;   }

.curvedBoxBottom                    { float:left; clear:left; }
.curvedBoxBottom .left              { float:left; display:inline; width:20px; height:20px; background:transparent url(/_assets/img/common/zui_pod_v2/bottom_left.gif) no-repeat; }
.curvedBoxBottom .centre            { float:left; display:inline; width:900px; height:20px; background:transparent url(/_assets/img/common/zui_pod_v2/bottom_centre.gif) repeat-x; }
.curvedBoxBottom .right             { float:left; display:inline; width:20px; height:20px; background:transparent url(/_assets/img/common/zui_pod_v2/bottom_right.gif) no-repeat; }
