div#iframecontainer
{
    width:360px;
    height:780px;
    overflow: hidden;     /* if you don't want a scrollbar, set to hidden */
    overflow-x:hidden;   /* hides horizontal scrollbar on newer browsers */

    /* resize and min-height are optional, allows user to resize viewable area */
    -webkit-resize:vertical; 
    -moz-resize:vertical;
    resize: none;
    min-height:650px;
}

iframe#iframeembed
{
    width:360px;       /* set this to approximate width of entire page you're embedding */
    height:505px;      /* determines where the bottom of the page cuts off */
    margin-left:-30px; /* clipping left side of page */
    margin-top:0px;  /* clipping top of page */
    overflow:hidden;

    /* resize seems to inherit in at least Firefox */
    -webkit-resize:none;
    -moz-resize:none;
    resize:none;
}

iframe#miniservicesiframeembed
{
    width:340px;       /* set this to approximate width of entire page you're embedding */
    height:410px;      /* determines where the bottom of the page cuts off */
    margin-left:-30px; /* clipping left side of page */
    margin-top:0px;  /* clipping top of page */
    overflow:hidden;

    /* resize seems to inherit in at least Firefox */
    -webkit-resize:none;
    -moz-resize:none;
    resize:none;
}