/* new.css */

/* small */
@media only screen and (max-width: 699px)
{

 .show-small-only,.hide-medium-only,.hide-large-only,.hide-huge-only,.hide-medium-up,.hide-large-up,.hide-huge-up
 {display: inherit !important;}

 .show-medium-only,.show-large-only,.show-huge-only,.show-medium-up,.show-large-up,.show-huge-up,.hide-small-only
 {display: none !important;}
}

/* medium */
@media only screen and (min-width: 700px) and (max-width: 1024px)
{
 .show-medium-only,.show-medium-up,.show-huge-up,.hide-small-only,.hide-large-only,.hide-huge-only,.hide-large-up,.hide-huge-up
 {display: inherit !important;}

 .show-small-only,.show-large-only,.show-huge-only,.show-large-up,.show-huge-up,.hide-medium-only,.hide-medium-up
 {display: none !important;}
}

/* large */
@media only screen and (min-width: 1024px) and (max-width: 1399px)
{
 .show-large-only,.show-medium-up,.show-large-up,.hide-small-only,.hide-medium-only,.hide-huge-only,.hide-huge-up
 {display: inherit !important;}

 .show-small-only,.show-medium-only,.show-huge-only,.show-huge-up,.hide-large-only,.hide-medium-up,.hide-large-up
 {display: none !important;}
}

/* huge */
@media only screen and (min-width: 1400px) 
{
 .show-huge-only,.show-medium-up,.show-large-up,.show-huge-up,.hide-small-only,.hide-medium-only,.hide-large-only
 {display: inherit !important;}

 .show-small-only,.show-medium-only,.show-large-only,.hide-huge-only,.hide-medium-up,.hide-large-up,.hide-huge-up
 {display: none !important;}
}



/* PlusDialog */
.PlusDialog, .PlusDialogModal
{display:none;}