﻿.SuggestMobilePage .divSuggestMobile
{
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 11000;
}

.SuggestMobilePage .divSuggestMobile .divSuggestMobileContent
{
	text-align: center;
	width: 290px;
	height: 100px;
	padding: 5px;
	position: absolute;
	z-index: 11000;
	left: 50%;
	top: 50%;
	margin-left: -150px;
	margin-top: -50px;
	border-style: solid;
	border-width: 1px;
	border-color: #999999;
	background-color: #F9F9F9;
	
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	-moz-box-shadow: 0px 0px 5px #000000;
	-webkit-box-shadow: 0px 0px 5px #000000;
	box-shadow: 0px 0px 5px #000000;
}

.SuggestMobilePage .divSuggestMobile .divBackground
{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 10000;
	background-color: #F9F9F9;
	opacity: 0.60;
}

.SuggestMobilePage .divSuggestMobile .divCommands
{
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 10px;
	clear: both;
}

.SuggestMobilePage .divSuggestMobile .divCommands .button
{
	margin-left: 5px;
    margin-right: 5px;
    width: 85px;
	height: 33px;
}

/* low, most small devices */
@media only screen and (max-width: 479px)
{
	.SuggestMobilePage
	{
		overflow: hidden;
	}
	
	.SuggestMobilePage .divSuggestMobile
	{
		display: block;
	}
	
	#CSS_ID_RULE
	{
		width: 1px;
	}
}

/* medium, uncommon but some landscape views on mobile devices * /
/* We probably don't want to include this size either since the portal page may be included in iframe of small size * /
@media only screen and (min-width: 480px) and (max-width: 639px)
{
	.SuggestMobilePage
	{
		overflow: hidden;
	}
	
	.SuggestMobilePage .divSuggestMobile
	{
		display: block;
	}
	
	#CSS_ID_RULE
	{
		width: 2px;
	}
}

/* high, we probably don't want to use this, it may overlap with desktops * /
@media only screen and (min-width: 640px) and (max-width: 767px)
{
	.SuggestMobilePage
	{
		overflow: hidden;
	}

	.SuggestMobilePage .divSuggestMobile
	{
		display: block;
	}
	
	#CSS_ID_RULE
	{
		width: 3px;
	}
}
*/

/* very high, don't use this, this will include desktops
@media only screen and (min-width: 768px)
{
	.SuggestMobilePage .divSuggestMobile
	{
		display: block;
	}
	
	#CSS_ID_RULE
	{
		width: 4px;
	}
}
*/