/* ============ Portal Chrome - start ============== */

.p-portal {
	position: relative;
	margin: 0 39px;
}

.ie .p-portal {
	zoom: 1.0; /* what does this fix? */
}

/* ============= Portal Chrome - end =============== */



/* ======= Drag&Drop / column resize - start ========= */

.p-portal-dragPlaceholder {
	position: absolute;
	visibility: hidden;
	left: -1000px;
	top: -1000px;
	border: 1px solid #EEE;
	border-radius: 8px;
	background-color: #F9F9F9;
}

.gecko .p-portal-dragPlaceholder {
	-moz-border-radius: 8px;
}

.webkit .p-portal-dragPlaceholder {
	-webkit-border-radius: 8px;
}

/* drag overlay to prevent problems with iframes */
.p-portal-dragOverlay {
	z-index: 3;
	background-color: #000;
	opacity: 0.0;
	-ms-filter: "alpha(opacity=0)";
	filter: alpha(opacity=0);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.p-column-resize-grippy {
	z-index: 999;
	top: 0;
	left: 0;
	position: absolute;
	border-right: 2px solid white;
	border-left: 2px solid white;
	width: 3px;
	height: 100%;
	background-color: #DDD;
	cursor: col-resize;
}

.p-column-resize-line {
	z-index: 999;
	left: -1000px;
	top: -1000px;
	position: absolute;
	border-right: 4px solid #CCC;
	margin-left: 5px;
	height: 100px;
}

/* ======== Drag&Drop / column resize - end ========== */



/* ============== GadgetWindow Chrome - start ============== */

/*
	.p-gadget               - Wrapping element of the gadgetWindow
	.p-gadget-top-left      - Top left corner
	.p-gadget-top-center    - Top center
	.p-gadget-top-right     - Top right corner
	.p-gadget-middle-left   - Left border of the gadgetWindow
	.p-gadget-center        - The center area of the gadgetWindow
	.p-gadget-middle-right  - Right border of the gadgetWindow
	.p-gadget-bottom-left   - Bottom left corner
	.p-gadget-bottom-center - Bottom center
	.p-gadget-bottom-right  - Bottom right corner
*/

.p-gadget {
	position: absolute; /* GadgetWindows should be positioned absolutely because of the layout model and by default not being visible (top, left coordinates) */
	top: -10000px;
	left: -10000px;
	z-index: 1;
}

.ie6 .p-gadget .p-gadget-top-left {
	zoom: 1.0; /* removes visual artifacts in IE 6 */
}

.ie6 .p-gadget .p-gadget-middle-left {
	zoom: 1.0; /* removes visual artifacts in IE 6 */
}

.ie6 .p-gadget .p-gadget-bottom-left {
	zoom: 1.0; /* removes visual artifacts in IE 6 */
}

.ie .p-gadget .p-gadget-bottom-center {
	overflow: hidden; /* Unless overflow is set to hidden, the height is not correctly applied in IE */
}

/* =============== GadgetWindow Chrome - end =============== */

/* ============== GadgetWindow Shadow - start ============== */

.p-gadget .p-gadget-top-left,
.p-gadget .p-gadget-middle-left,
.p-gadget .p-gadget-bottom-left {
	position: relative; /* added to make the shadow is visible under the gadgetWindow, rather than over it */
}

.p-gadget .p-gadget-shadow {
	/* position: absolute;
	top: 0;
	left: 0;
	bottom: -10px;
	right: -10px;
	display: none; shadow disabled by default */
}

/* =============== GadgetWindow Shadow - end =============== */


/* ============== GadgetWindow Header - start ============== */

.p-gadget-maximized .p-gadget-top-left {
	cursor: default; /* When maximized, a gadgetWindow is not dragable, this should be indicated by the cursor */
}

.p-gadget-icon,
.p-gadget-button {
	width: 16px;
	height: 16px;
	overflow: hidden; /* To prevent font scaling making the element bigger and revealing parts of the background that should not be revealed. */
}

.p-gadget-icon {
	display: none;
}

.p-gadget-button {
	float: right;
	margin-left: 1px;
	color: #999999;
	margin-top: -50px;
	margin-left: 6px;
}

.p-gadget-hover .p-gadget-button {
	margin-top: 0
}

/* showPreferences button */
.p-gadget-button-showPreferences {
	text-decoration: none;
}

.p-gadget-button-showPreferences-hover,
.p-gadget-button-showPreferences-hover:hover {
	color: #0088CE;
	text-decoration: underline;
}

.p-gadget-button-showPreferences-press {
}

.p-gadget-preferences-open .p-gadget-button-showPreferences {
	display: none; /* The preference pane is open, so the button can be hidden. */
}

.p-gadget-minimized .p-gadget-button-showPreferences {
	display: none;
}

/* hidePreferences button */
.p-gadget-button-hidePreferences {
	display: none; /* The preference pane is closed by default, so the button can be hidden. */
	text-decoration: none;
}

.p-gadget-preferences-open .p-gadget-button-hidePreferences {
	display: block;
}

.p-gadget-preferences-open .p-gadget-button-hidePreferences-hover,
.p-gadget-preferences-open .p-gadget-button-hidePreferences-hover:hover {
	color: #000000;
	text-decoration: none;
}

.p-gadget-preferences-open .p-gadget-button-hidePreferences-press {
}

.p-gadget-minimized .p-gadget-button-hidePreferences {
	display: none;
}

/* refresh button */
.p-gadget-button-refresh {
	background-position: -32px 0;
}

.p-gadget-button-refresh-hover {
	background-position: -32px -16px;
}

.p-gadget-button-refresh-press {
	background-position: -32px -32px;
}

.p-gadget-minimized .p-gadget-button-refresh {
	display: none;
}

/* minimize button */
.p-gadget-button-minimize {
	background-image: url('media/gadgetWindow-buttons.png');
	background-position: -48px 0;
}

.p-gadget-minimized .p-gadget-button-minimize {
	display: none; /* The gadgetWindow is minimized, so the button can be hidden. */
}

/* minimizing should not be possible when the gadgetWindow is maximized */
.p-gadget-maximized .p-gadget-button-minimize {
	display: none;
}

.p-gadget-button-minimize-hover {
	background-position: -48px -16px;
}

.p-gadget-maximized .p-gadget-button-minimize-press {
	background-position: -48px -32px;
}

/* restore button */
.p-gadget-button-restore {
	display: none; /* The gadgetWindow is restored by default, so the button can be hidden. */
}

.p-gadget-minimized .p-gadget-button-restore {
	background-image: url('media/gadgetWindow-buttons.png');
	background-position: -64px 0;
	display: block;
	margin-left: 0;
}

.p-gadget-minimized .p-gadget-button-restore {
	background-image: url('media/gadgetWindow-buttons.png');
	background-position: -64px 0;
	display: block;
}

.p-gadget-minimized .p-gadget-button-restore-hover {
	background-position: -64px -16px;
}

.p-gadget-minimized .p-gadget-button-restore-press {
	background-position: -64px -32px;
}

.p-gadget-maximized .p-gadget-button-restore {
	background-image: url('media/gadgetWindow-buttons.png');
	background-position: -80px 0;
	display: block;
}

.p-gadget-maximized .p-gadget-button-restore-hover {
	background-position: -80px -16px;
}

.p-gadget-maximized .p-gadget-button-restore-press {
	background-position: -80px -32px;
}

/* maximize button */
.p-gadget-button-maximize {
	background-image: url('media/gadgetWindow-buttons.png');
	background-position: -96px 0;
}

.p-gadget-button-maximize-hover {
	background-position: -96px -16px;
}

.p-gadget-button-maximize-press {
	background-position: -96px -32px;
}

.p-gadget-maximized .p-gadget-button-maximize {
	display: none; /* The gadgetWindow is maximized so the button can be hidden. */
}

/* unload button */
.p-gadget-button-unload {
	background-image: url('media/gadgetWindow-buttons.png');
	background-position: -112px 0;
}

.p-gadget-button-unload-hover {
	background-position: -112px -16px;
}

.p-gadget-button-unload-press {
	background-position: -112px -32px;
}

.p-gadget-button-text { /* cancels the styling of a button, because there should be text only */
	width: auto;
	height: auto;
	background-image: none;
}

.ie .p-gadget-title-wrapper {
	/* overflow would not be correct without zoom and overflow */
	zoom: 1.0;
	overflow: hidden;
}

.p-gadget-title {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding-bottom: 3px;
	font-family: Arial, sans-serif;
}

.ie .p-gadget-title {
	/* overflow would not be correct without width. This is also the reason why the title wrapper is required. */
	width: 100%;
}

.opera .p-gadget-title,
.gecko .p-gadget-title {
	/* text-overflow is not supported in these browsers. Text will be wrapped like usual, but hidden. */
	white-space: normal;
	height: 15px; /* height based on font size */
}

/* =============== GadgetWindow Header - end =============== */



/* ============= GadgetWindow Content - start ============== */

.p-gadget-content {
	overflow: auto;
}

.ie .p-gadget-content {
	width: 100%; /* Required to have correct scrollable content */
}

.p-gadget-minimized .p-gadget-content {
	height: 0;
}

.ie .p-gadget-minimized .p-gadget-header {
	height: 1em;
}

.ie .p-gadget-minimized .p-gadget-content {
	visibility: hidden; /* it fixes IE bug - elements with position: relative remain visible */
}

.p-gadget-hide-content .p-gadget-content {
	visibility: hidden; /* to hide content during animation - it makes it nicer (no scrollbars, no rendering issues) */
}

.ie .p-gadget-content-wrapper {
	width: 100%; /* Required to have correct scrollable content */
}

/* ============== GadgetWindow Content - end =============== */



/* =========== GadgetWindow Preferences - start ============ */

.p-gadget-preferences {
	background-color: #E0E0E0;
	border-bottom: 1px solid #DDDDDD;
	padding: 5px;
	margin: 0 -20px;
	overflow: hidden;
}

.ie .p-gadget-preferences {
	zoom: 1.0;
}

.p-gadget-preferences table {
	width: 100%;
}

.p-gadget-preferences td {
	vertical-align: top;
	padding: 5px;
}

.p-gadget-preferences label {
	line-height: 22px;
}

.p-gadget-preferences input,
.p-gadget-preferences textarea {
	padding: 2px;
}

.p-gadget-preferences .p-gadget-preferences-name {
	text-align: right;
}

/* ============ GadgetWindow Preferences - end ============= */

.p-gadget-icon {
	width: 0;
}

.p-gadget-header {
	-moz-user-select: none; /* Disables text selection for drag and drop */
	-webkit-user-select: none; /* Disables text selection for drag and drop */
	user-select: none; /* Disables text selection for drag and drop */
	padding: 7px 0;
	overflow: hidden;
}

.p-gadget-title-wrapper {
	margin-left: 0;
	padding-right: 0;
}

.p-gadget .p-gadget-title,
.p-gadget-maximized .p-gadget .p-gadget-title { /* Nested gadgets should not inherit styling. */
	color: #0087cd;
	font-weight: normal;
	font-size: 127.27%;
	line-height: 142.85%;
}

.p-gadget .p-gadget-top-left,
.p-gadget-maximized .p-gadget .p-gadget-top-left { /* Nested gadgets should not inherit styling. */
	background-image: url('media/gadgetWindow-top-bottom.png');
	padding-left: 20px;
	border-bottom: none;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-color: transparent;
	cursor: move; /* Set cursor to indicate dragable state */
}

.p-gadget .p-gadget-top-center,
.p-gadget-maximized .p-gadget .p-gadget-top-center { /* Nested gadgets should not inherit styling. */
	background-image: url('media/gadgetWindow-top-bottom.png');
	background-position: 0 -64px;
	background-repeat: repeat-x;
	background-color: transparent;
	height: 28px;
}

.p-gadget .p-gadget-top-right,
.p-gadget-maximized .p-gadget .p-gadget-top-right { /* Nested gadgets should not inherit styling. */
	background-image: url('media/gadgetWindow-top-bottom.png');
	background-position: 100% -128px;
	background-repeat: no-repeat;
	background-color: transparent;
	padding-right: 17px;
}

.p-gadget .p-gadget-middle-left,
.p-gadget-maximized .p-gadget .p-gadget-middle-left { /* Nested gadgets should not inherit styling. */
	border-left: 1px solid #b5b5b5;
	background-color: #FFFFFF;
}

.p-gadget .p-gadget-middle-right,
.p-gadget-maximized .p-gadget .p-gadget-middle-right { /* Nested gadgets should not inherit styling. */
	border-right: 1px solid #b5b5b5;
}

.p-gadget .p-gadget-bottom-left,
.p-gadget-maximized .p-gadget .p-gadget-bottom-left { /* Nested gadgets should not inherit styling. */
	background-image: url('media/gadgetWindow-top-bottom.png');
	background-position: 0 -189px;
	background-repeat: no-repeat;
	background-color: transparent;
	padding-left: 7px;
	margin-top: 0;
}

.p-gadget .p-gadget-bottom-center,
.p-gadget-maximized .p-gadget .p-gadget-bottom-center { /* Nested gadgets should not inherit styling. */
	background-image: url('media/gadgetWindow-top-bottom.png');
	background-position: 0 -253px;
	background-repeat: repeat-x;
	background-color: transparent;
	height: 8px;
}

.p-gadget .p-gadget-bottom-right,
.p-gadget-maximized .p-gadget .p-gadget-bottom-right { /* Nested gadgets should not inherit styling. */
	background-image: url('media/gadgetWindow-top-bottom.png');
	background-position: 100% -317px;
	background-repeat: no-repeat;
	background-color: transparent;
	padding-right: 7px;
}

.p-gadget .p-gadget-center,
.p-gadget-maximized .p-gadget .p-gadget-center { /* Nested gadgets should not inherit styling. */
	padding: 0 20px;
}

.p-gadget-button-togglePreferences {
	background-image: url('media/gadgetWindow-buttons.png');
}

.p-gadget-button-refresh {
	background-image: url('media/gadgetWindow-buttons.png');
}

.p-gadget-button-minimizeRestore {
	background-image: url('media/gadgetWindow-buttons.png');
}

.p-gadget-minimized .p-gadget-button-minimizeRestore {
	background-image: url('media/gadgetWindow-buttons.png');
}

.p-gadget-maximized .p-gadget-button-maximizeRestore {
	background-image: url('media/gadgetWindow-buttons.png');
}

.p-gadget-button-maximizeRestore {
	background-image: url('media/gadgetWindow-buttons.png');
}

.p-gadget-button-unload {
	background-image: url('media/gadgetWindow-buttons.png');
}

.p-gadget-loading .p-gadget-content {
	background-image: url('media/ziggo_loader_def.gif');
	background-position: center center;
	background-repeat: no-repeat;
	height: 60px;
	overflow: hidden;
}

.gadget-loading .gadget-content * {
	display: none;
}

/* Gadgets without chrome (e.g. no header, border) */
.p-gadget-nochrome .p-gadget-top-left {
	display: none;
}

.p-gadget-nochrome .p-gadget-bottom-left {
	display: none;
}

.p-gadget-nochrome .p-gadget-middle-left,
.p-gadget-nochrome .p-gadget-center,
.p-gadget-nochrome .p-gadget-middle-right {
	border-width: 0;
	padding: 0;
	background-image: none;
	background-color: transparent;
}

.p-gadget-nochrome .p-gadget-content {
	overflow: hidden;
}
/* nochrome END*/

/* Entertainment */
.zp-gadget-entertainment {
	background-color: #000000; /* Just a random dark color to indicate that the entertainment gadget variations have dark colors */
	color: #ECECF1;
}

.zp-gadget-entertainment .p-gadget-middle-left {
	background-color: transparent;
}

.zp-gadget-entertainment-maximized {
	background-color: transparent;
	color: inherit;
}
.ie .zp-gadget-entertainment-maximized {
	background-color: transparent;
	color: #333;
}

.zp-gadget-entertainment .p-gadget-title {
	color: #ECECF1;
}

.zp-gadget-entertainment-loading .p-gadget-content {
	background-image: url('media/ziggo_loader_diap.gif');
}

.zp-gadget-entertainment .p-gadget-button {
	background-image: url('media/gadgetWindow-entertainment-buttons.png');
}

.zp-gadget-entertainment .p-gadget-button-text {
	background-image: none;
	color: #B4B5C5;
}

.zp-gadget-entertainment .p-gadget-button-text:hover {
	color: #FFFFFF;
}

.zp-gadget-entertainment .p-gadget-preferences {
	background-color: #39393F;
	background-image: url('media/gadgetWindow-entertainment-preferences.png');
	background-repeat: repeat-x;
	border-bottom-width: 0;
}

/* Entertainment BLUE*/
.zp-gadget-entertainment-blue {
	background-color: #001B38;
	background-image: url('media/gadgetWindow-entertainment-bg-blue.png');
	background-repeat: repeat-x;
}

.zp-gadget-entertainment-blue .p-gadget-top-left,
.zp-gadget-entertainment-blue .p-gadget-top-center,
.zp-gadget-entertainment-blue .p-gadget-top-right,
.zp-gadget-entertainment-blue .p-gadget-bottom-left,
.zp-gadget-entertainment-blue .p-gadget-bottom-center,
.zp-gadget-entertainment-blue .p-gadget-bottom-right {
	background-image: url('media/gadgetWindow-entertainment-top-bottom-blue.gif');
}

.zp-gadget-entertainment-blue .p-gadget-middle-left {
	border-left: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-blue.gif');
	background-repeat: no-repeat;
}

.zp-gadget-entertainment-blue .p-gadget-middle-right {
	border-right: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-blue.gif');
	background-repeat: no-repeat;
	background-position: 100% 0;
}

.zp-gadget-entertainment-blue-maximized {
	background-image: none;
	background-color: transparent;
}

/*entertainment GREEN*/
.zp-gadget-entertainment-green {
	background-color: #243700;
	background-image: url('media/gadgetWindow-entertainment-bg-green.png');
	background-repeat: repeat-x;
}

.zp-gadget-entertainment-green .p-gadget-top-left,
.zp-gadget-entertainment-green .p-gadget-top-center,
.zp-gadget-entertainment-green .p-gadget-top-right,
.zp-gadget-entertainment-green .p-gadget-bottom-left,
.zp-gadget-entertainment-green .p-gadget-bottom-center,
.zp-gadget-entertainment-green .p-gadget-bottom-right {
	background-image: url('media/gadgetWindow-entertainment-top-bottom-green.gif');
}

.zp-gadget-entertainment-green .p-gadget-middle-left {
	border-left: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-green.gif');
	background-repeat: no-repeat;
}

.zp-gadget-entertainment-green .p-gadget-middle-right {
	border-right: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-green.gif');
	background-repeat: no-repeat;
	background-position: 100% 0;
}

.zp-gadget-entertainment-green-maximized {
	background-image: none;
	background-color: transparent;
}

/*entertainment PURPLE*/
.zp-gadget-entertainment-purple {
	background-color: #390A2D;
	background-image: url('media/gadgetWindow-entertainment-bg-purple.png');
	background-repeat: repeat-x;
}

.zp-gadget-entertainment-purple .p-gadget-top-left,
.zp-gadget-entertainment-purple .p-gadget-top-center,
.zp-gadget-entertainment-purple .p-gadget-top-right,
.zp-gadget-entertainment-purple .p-gadget-bottom-left,
.zp-gadget-entertainment-purple .p-gadget-bottom-center,
.zp-gadget-entertainment-purple .p-gadget-bottom-right {
	background-image: url('media/gadgetWindow-entertainment-top-bottom-purple.gif');
}

.zp-gadget-entertainment-purple .p-gadget-middle-left {
	border-left: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-purple.gif');
	background-repeat: no-repeat;
}

.zp-gadget-entertainment-purple .p-gadget-middle-right {
	border-right: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-purple.gif');
	background-repeat: no-repeat;
	background-position: 100% 0;
}

.zp-gadget-entertainment-purple-maximized {
	background-image: none;
	background-color: transparent;
}

/*entertainment YELLOW*/
.zp-gadget-entertainment-yellow {
	background-color: #4C3605;
	background-image: url('media/gadgetWindow-entertainment-bg-yellow.png');
	background-repeat: repeat-x;
}

.zp-gadget-entertainment-yellow .p-gadget-top-left,
.zp-gadget-entertainment-yellow .p-gadget-top-center,
.zp-gadget-entertainment-yellow .p-gadget-top-right,
.zp-gadget-entertainment-yellow .p-gadget-bottom-left,
.zp-gadget-entertainment-yellow .p-gadget-bottom-center,
.zp-gadget-entertainment-yellow .p-gadget-bottom-right {
	background-image: url('media/gadgetWindow-entertainment-top-bottom-yellow.gif');
}

.zp-gadget-entertainment-yellow .p-gadget-middle-left {
	border-left: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-yellow.gif');
	background-repeat: no-repeat;
}

.zp-gadget-entertainment-yellow .p-gadget-middle-right {
	border-right: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-yellow.gif');
	background-repeat: no-repeat;
	background-position: 100% 0;
}

.zp-gadget-entertainment-yellow-maximized {
	background-image: none;
	background-color: transparent;
}

/*entertainment MINT*/
.zp-gadget-entertainment-mint {
	background-color: #002B24;
	background-image: url('media/gadgetWindow-entertainment-bg-mint.png');
	background-repeat: repeat-x;
}

.zp-gadget-entertainment-mint .p-gadget-top-left,
.zp-gadget-entertainment-mint .p-gadget-top-center,
.zp-gadget-entertainment-mint .p-gadget-top-right,
.zp-gadget-entertainment-mint .p-gadget-bottom-left,
.zp-gadget-entertainment-mint .p-gadget-bottom-center,
.zp-gadget-entertainment-mint .p-gadget-bottom-right {
	background-image: url('media/gadgetWindow-entertainment-top-bottom-mint.gif');
}

.zp-gadget-entertainment-mint .p-gadget-middle-left {
	border-left: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-mint.gif');
	background-repeat: no-repeat;
}

.zp-gadget-entertainment-mint .p-gadget-middle-right {
	border-right: 1px solid #000;
	background-image: url('media/gadgetWindow-entertainment-sides-mint.gif');
	background-repeat: no-repeat;
	background-position: 100% 0;
}

.zp-gadget-entertainment-mint-maximized {
	background-image: none;
	background-color: transparent;
}

/* MESSAGE GADGET */
.p-gadget-message .p-gadget-top-left,
.p-gadget-message .p-gadget-top-center,
.p-gadget-message .p-gadget-top-right,
.p-gadget-message .p-gadget-bottom-left,
.p-gadget-message .p-gadget-bottom-center,
.p-gadget-message .p-gadget-bottom-right {
	background-image: url('media/gadgetWindow-top-bottomBlue.png');
	background-color: transparent;
}

.p-gadget-message .p-gadget-middle-left {
	background-color: #0088CE;
}

.p-gadget-message .p-gadget-content {
	overflow: hidden;
}

.p-gadget-message .p-gadget-center {
	padding: 0;
}

.p-gadget-message .p-gadget-top-center {
	height: 37px;
}

.p-gadget-message .p-gadget-title {
	color: #FFFFFF;
}

.p-gadget-message .p-gadget-title {
	font-size: 218.18%;
	line-height: 100%;
	font-family: "Helvetica neue light", arial, sans-serif;
}

.p-gadget-message .p-gadget-title  {
	height: 27px;
}

.p-gadget-message .p-gadget-middle-left,
.p-gadget-message .p-gadget-middle-right {
	border-width: 0;
}

.p-gadget-message .position-button {
	width: 10px;
	height: 10px;
}

.p-gadget-message .p-gadget-button-unload {
	background-image: url('media/box-close-light-blue.gif');
	background-position: 0 0;
	background-repeat: no-repeat;
	margin-top: 5px;
	height: 10px;
	width: 10px;
}

.p-gadget-message .p-gadget-button-unload-hover {
	background-position: 0 -10px;
}

.p-gadget-message.showResponse .p-gadget-bottom-left,
.p-gadget-message.showResponse .p-gadget-bottom-center,
.p-gadget-message.showResponse .p-gadget-bottom-right {
	background-image: url('media/gadgetWindow-top-bottom.png');
}

.p-gadget-message-loading .p-gadget-content {
	background-image: url('media/ziggo_loader_blauw_def.gif');
}

/* maximized gadgets are used as page and should not have a gadget chrome */
.p-gadget-maximized {
	border-width: 0;
	padding: 0;
	background-image: none;
	background-color: transparent;
}

.p-gadget-maximized .p-gadget-top-left {
	display: none;
}

.p-gadget-maximized .p-gadget-bottom-left {
	display: none;
}

.p-gadget-maximized .p-gadget-middle-left,
.p-gadget-maximized .p-gadget-center,
.p-gadget-maximized .p-gadget-middle-right {
	border-width: 0;
	padding: 0;
	background-image: none;
	background-color: transparent;
}

/* Nested gadget in maximized gadget should show chrome */
.p-gadget-maximized .p-gadget {
	position: relative;
	top: auto;
	left: auto;
}

.p-gadget-maximized .p-gadget .p-gadget-top-left {
	display: block;
	cursor: default; /* Can not move them, so no need for a cursor. */
}

.p-gadget-maximized .p-gadget .p-gadget-button {
	display: none; /* Cannot interact with a nested "gadget" */
}

.p-gadget-maximized .p-gadget .p-gadget-bottom-left {
	display: block;
}

.p-gadget-maximized .p-gadget .p-gadget-middle-left,
.p-gadget-maximized .p-gadget .p-gadget-middle-right {
	border-width: 1px;
}