/*
  Include the min-width, max-width, min-height 
  and max-height if you plan to use a relative CSS unit 
  measurement to make sure the widget renders in the 
  optimal size allowed.    
  */

#addressBookWidgetDiv {
    min-width: 300px;
    width: 100%;
    max-width: 900px;
    min-height: 228px;
    height: 240px;
    max-height: 400px;
}

#walletWidgetDiv {
    min-width: 300px;
    width: 100%;
    max-width: 900px;
    min-height: 228px;
    height: 240px;
    max-height: 400px;
}


/* The following are required only when you use the read-only widgets: */

#readOnlyAddressBookWidgetDiv {
    min-width: 266px;
    width: 100%;
    max-width: 900px;
    min-height: 145px;
    height: 165px;
    max-height: 180px;
}

#readOnlyWalletWidgetDiv {
    min-width: 266px;
    width: 100%;
    max-width: 900px;
    min-height: 145px;
    height: 165px;
    max-height: 180px;
}