/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.gdialog {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:760px; /* based on image dimensions - not quite consistent with drip styles yet */
		
 color:#000000;
 z-index:1;
 margin-left:18px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}

.gdialog .gcontent,
.gdialog .t,
.gdialog .b,
.gdialog .b div {
 background:transparent url(images/sitecolors/ntransbackground1.png) no-repeat top right;
/* background:transparent url(images/sitecolors/dialog2-orange-800x1600.png) no-repeat top right;
*/ _background-image:url(dialog2-blue.gif);
}

.gdialog .gcontent {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding:20px 32px 10px 10px;
}

.gdialog .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:18px; /* top slice width */
 margin-left:-18px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.gdialog .b {
 /* bottom */
 position:relative;
 width:100%;
}

.gdialog .b,
.gdialog .b div {
	height:60px; /* height of bottom cap/shade */
	font-size:1px;
}

.gdialog .b {
 background-position:bottom right;
}

.gdialog .b div {
 position:relative;
 width:18px; /* bottom corner width */
 margin-left:-18px;
 background-position:bottom left;
}

.gdialog .hd,
.gdialog .bd,
.gdialog .ft {
 position:relative;
}

.gdialog .gwrapper {
 /* 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. */
}

.gdialog h1,
.gdialog p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.gdialog h1 {
 padding-bottom:0px;
}

/* 	White back	-------------------------------------------------------------------------------------------------- */
.gdialogwhite {
 position:relative;
 margin:0px auto;
 min-width:870px;
 max-width:1000px; /* based on image dimensions - not quite consistent with drip styles yet */
		
 color:#000000;
 z-index:1;
 margin-left:18px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}

.gdialogwhite .gcontentwhite,
.gdialogwhite .t,
.gdialogwhite .b,
.gdialogwhite .b div {
 background:transparent url(images/sitecolors/ntransbackgroundwhite1.png) no-repeat top right;
/* background:transparent url(images/sitecolors/dialog2-orange-800x1600.png) no-repeat top right;
*/ 
/*_background-image:url(dialog2-blue.gif);*/
}

.gdialogwhite .gcontentwhite {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding:10px 10px 10px 10px;
}

.gdialogwhite .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:18px; /* top slice width */
 margin-left:-18px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.gdialogwhite .b {
 /* bottom */
 position:relative;
 width:100%;
}

.gdialogwhite .b,
.gdialogwhite .b div {
	height:15px; /* height of bottom cap/shade */
	font-size:1px;
}

.gdialogwhite .b {
 background-position:bottom right;
}

.gdialogwhite .b div {
 position:relative;
 width:18px; /* bottom corner width */
 margin-left:-18px;
 background-position:bottom left;
}

.gdialogwhite .hd,
.gdialogwhite .bd,
.gdialogwhite .ft {
 position:relative;
}

.gdialogwhite .gwrapperwhite {
 /* 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. */
}

.gdialogwhite h1,
.gdialogwhite p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.gdialogwhite h1 {
 padding-bottom:0px;
}

