
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c3460077c215dc8f9e93f042.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.147000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3a5ed0d7ef7a68b5b03c07e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fc612095bcc25849c13af219.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4074d99002ffcf05bb1389a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f78c08c85767345df9d2b9b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_67452f8a183374354cfd9e8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_68ecd981c1cfc477b1cd4868.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7c1e8d5e125b6e016b01cab5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e08e1f615c8f50324ea22974.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b56f2cb799aa3ae2ac6a2cb8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f517a00f34220db0d8d68a3b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(-0.166867,-0.186160,0.186160,-0.166867,0,0);-ms-transform:matrix(-0.166867,-0.186160,0.186160,-0.166867,0,0);-webkit-transform:matrix(-0.166867,-0.186160,0.186160,-0.166867,0,0);}
.m26{transform:matrix(-0.162455,0.190022,-0.190022,-0.162455,0,0);-ms-transform:matrix(-0.162455,0.190022,-0.190022,-0.162455,0,0);-webkit-transform:matrix(-0.162455,0.190022,-0.190022,-0.162455,0,0);}
.m2{transform:matrix(-0.138478,-0.208144,0.208144,-0.138478,0,0);-ms-transform:matrix(-0.138478,-0.208144,0.208144,-0.138478,0,0);-webkit-transform:matrix(-0.138478,-0.208144,0.208144,-0.138478,0,0);}
.m25{transform:matrix(-0.135015,0.210407,-0.210407,-0.135015,0,0);-ms-transform:matrix(-0.135015,0.210407,-0.210407,-0.135015,0,0);-webkit-transform:matrix(-0.135015,0.210407,-0.210407,-0.135015,0,0);}
.m24{transform:matrix(-0.112918,0.223046,-0.223046,-0.112918,0,0);-ms-transform:matrix(-0.112918,0.223046,-0.223046,-0.112918,0,0);-webkit-transform:matrix(-0.112918,0.223046,-0.223046,-0.112918,0,0);}
.m3{transform:matrix(-0.105283,-0.226750,0.226750,-0.105283,0,0);-ms-transform:matrix(-0.105283,-0.226750,0.226750,-0.105283,0,0);-webkit-transform:matrix(-0.105283,-0.226750,0.226750,-0.105283,0,0);}
.m23{transform:matrix(-0.088143,0.233946,-0.233946,-0.088143,0,0);-ms-transform:matrix(-0.088143,0.233946,-0.233946,-0.088143,0,0);-webkit-transform:matrix(-0.088143,0.233946,-0.233946,-0.088143,0,0);}
.m4{transform:matrix(-0.076423,-0.238033,0.238033,-0.076423,0,0);-ms-transform:matrix(-0.076423,-0.238033,0.238033,-0.076423,0,0);-webkit-transform:matrix(-0.076423,-0.238033,0.238033,-0.076423,0,0);}
.m22{transform:matrix(-0.060293,0.242621,-0.242621,-0.060293,0,0);-ms-transform:matrix(-0.060293,0.242621,-0.242621,-0.060293,0,0);-webkit-transform:matrix(-0.060293,0.242621,-0.242621,-0.060293,0,0);}
.m5{transform:matrix(-0.046563,-0.245626,0.245626,-0.046563,0,0);-ms-transform:matrix(-0.046563,-0.245626,0.245626,-0.046563,0,0);-webkit-transform:matrix(-0.046563,-0.245626,0.245626,-0.046563,0,0);}
.m21{transform:matrix(-0.033408,0.247758,-0.247758,-0.033408,0,0);-ms-transform:matrix(-0.033408,0.247758,-0.247758,-0.033408,0,0);-webkit-transform:matrix(-0.033408,0.247758,-0.247758,-0.033408,0,0);}
.m6{transform:matrix(-0.010930,-0.249761,0.249761,-0.010930,0,0);-ms-transform:matrix(-0.010930,-0.249761,0.249761,-0.010930,0,0);-webkit-transform:matrix(-0.010930,-0.249761,0.249761,-0.010930,0,0);}
.m20{transform:matrix(0.000940,0.249998,-0.249998,0.000940,0,0);-ms-transform:matrix(0.000940,0.249998,-0.249998,0.000940,0,0);-webkit-transform:matrix(0.000940,0.249998,-0.249998,0.000940,0,0);}
.m7{transform:matrix(0.014187,-0.249597,0.249597,0.014187,0,0);-ms-transform:matrix(0.014187,-0.249597,0.249597,0.014187,0,0);-webkit-transform:matrix(0.014187,-0.249597,0.249597,0.014187,0,0);}
.m1f{transform:matrix(0.029047,0.248307,-0.248307,0.029047,0,0);-ms-transform:matrix(0.029047,0.248307,-0.248307,0.029047,0,0);-webkit-transform:matrix(0.029047,0.248307,-0.248307,0.029047,0,0);}
.m8{transform:matrix(0.030290,-0.248158,0.248158,0.030290,0,0);-ms-transform:matrix(0.030290,-0.248158,0.248158,0.030290,0,0);-webkit-transform:matrix(0.030290,-0.248158,0.248158,0.030290,0,0);}
.m9{transform:matrix(0.057065,-0.243400,0.243400,0.057065,0,0);-ms-transform:matrix(0.057065,-0.243400,0.243400,0.057065,0,0);-webkit-transform:matrix(0.057065,-0.243400,0.243400,0.057065,0,0);}
.m1e{transform:matrix(0.059393,0.242843,-0.242843,0.059393,0,0);-ms-transform:matrix(0.059393,0.242843,-0.242843,0.059393,0,0);-webkit-transform:matrix(0.059393,0.242843,-0.242843,0.059393,0,0);}
.ma{transform:matrix(0.085065,-0.235083,0.235083,0.085065,0,0);-ms-transform:matrix(0.085065,-0.235083,0.235083,0.085065,0,0);-webkit-transform:matrix(0.085065,-0.235083,0.235083,0.085065,0,0);}
.mb{transform:matrix(0.101917,-0.228282,0.228282,0.101917,0,0);-ms-transform:matrix(0.101917,-0.228282,0.228282,0.101917,0,0);-webkit-transform:matrix(0.101917,-0.228282,0.228282,0.101917,0,0);}
.m1d{transform:matrix(0.117067,0.220897,-0.220897,0.117067,0,0);-ms-transform:matrix(0.117067,0.220897,-0.220897,0.117067,0,0);-webkit-transform:matrix(0.117067,0.220897,-0.220897,0.117067,0,0);}
.mc{transform:matrix(0.129258,-0.213991,0.213991,0.129258,0,0);-ms-transform:matrix(0.129258,-0.213991,0.213991,0.129258,0,0);-webkit-transform:matrix(0.129258,-0.213991,0.213991,0.129258,0,0);}
.md{transform:matrix(0.154368,-0.196648,0.196648,0.154368,0,0);-ms-transform:matrix(0.154368,-0.196648,0.196648,0.154368,0,0);-webkit-transform:matrix(0.154368,-0.196648,0.196648,0.154368,0,0);}
.m1c{transform:matrix(0.164514,0.188242,-0.188242,0.164514,0,0);-ms-transform:matrix(0.164514,0.188242,-0.188242,0.164514,0,0);-webkit-transform:matrix(0.164514,0.188242,-0.188242,0.164514,0,0);}
.me{transform:matrix(0.166795,-0.186225,0.186225,0.166795,0,0);-ms-transform:matrix(0.166795,-0.186225,0.186225,0.166795,0,0);-webkit-transform:matrix(0.166795,-0.186225,0.186225,0.166795,0,0);}
.mf{transform:matrix(0.185908,-0.167148,0.167148,0.185908,0,0);-ms-transform:matrix(0.185908,-0.167148,0.167148,0.185908,0,0);-webkit-transform:matrix(0.185908,-0.167148,0.167148,0.185908,0,0);}
.m1b{transform:matrix(0.189806,0.162708,-0.162708,0.189806,0,0);-ms-transform:matrix(0.189806,0.162708,-0.162708,0.189806,0,0);-webkit-transform:matrix(0.189806,0.162708,-0.162708,0.189806,0,0);}
.m10{transform:matrix(0.202800,-0.146192,0.146192,0.202800,0,0);-ms-transform:matrix(0.202800,-0.146192,0.146192,0.202800,0,0);-webkit-transform:matrix(0.202800,-0.146192,0.146192,0.202800,0,0);}
.m1a{transform:matrix(0.207334,0.139688,-0.139688,0.207334,0,0);-ms-transform:matrix(0.207334,0.139688,-0.139688,0.207334,0,0);-webkit-transform:matrix(0.207334,0.139688,-0.139688,0.207334,0,0);}
.m11{transform:matrix(0.216599,-0.124839,0.124839,0.216599,0,0);-ms-transform:matrix(0.216599,-0.124839,0.124839,0.216599,0,0);-webkit-transform:matrix(0.216599,-0.124839,0.124839,0.216599,0,0);}
.m19{transform:matrix(0.222027,0.114910,-0.114910,0.222027,0,0);-ms-transform:matrix(0.222027,0.114910,-0.114910,0.222027,0,0);-webkit-transform:matrix(0.222027,0.114910,-0.114910,0.222027,0,0);}
.m12{transform:matrix(0.231720,-0.093840,0.093840,0.231720,0,0);-ms-transform:matrix(0.231720,-0.093840,0.093840,0.231720,0,0);-webkit-transform:matrix(0.231720,-0.093840,0.093840,0.231720,0,0);}
.m18{transform:matrix(0.235734,0.083242,-0.083242,0.235734,0,0);-ms-transform:matrix(0.235734,0.083242,-0.083242,0.235734,0,0);-webkit-transform:matrix(0.235734,0.083242,-0.083242,0.235734,0,0);}
.m13{transform:matrix(0.240079,-0.069727,0.069727,0.240079,0,0);-ms-transform:matrix(0.240079,-0.069727,0.069727,0.240079,0,0);-webkit-transform:matrix(0.240079,-0.069727,0.069727,0.240079,0,0);}
.m14{transform:matrix(0.244132,-0.053847,0.053847,0.244132,0,0);-ms-transform:matrix(0.244132,-0.053847,0.053847,0.244132,0,0);-webkit-transform:matrix(0.244132,-0.053847,0.053847,0.244132,0,0);}
.m17{transform:matrix(0.244985,0.049825,-0.049825,0.244985,0,0);-ms-transform:matrix(0.244985,0.049825,-0.049825,0.244985,0,0);-webkit-transform:matrix(0.244985,0.049825,-0.049825,0.244985,0,0);}
.m15{transform:matrix(0.248889,-0.023545,0.023545,0.248889,0,0);-ms-transform:matrix(0.248889,-0.023545,0.023545,0.248889,0,0);-webkit-transform:matrix(0.248889,-0.023545,0.023545,0.248889,0,0);}
.m16{transform:matrix(0.249503,0.015760,-0.015760,0.249503,0,0);-ms-transform:matrix(0.249503,0.015760,-0.015760,0.249503,0,0);-webkit-transform:matrix(0.249503,0.015760,-0.015760,0.249503,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.998000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.962360px;}
.v1{vertical-align:13.998000px;}
.v3{vertical-align:34.740000px;}
.ls4{letter-spacing:-0.497143px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.330000px;}
.ls2{letter-spacing:4.572000px;}
.ls1{letter-spacing:8.204400px;}
.ls7{letter-spacing:16.007880px;}
.ls5{letter-spacing:18.205860px;}
.ls6{letter-spacing:18.259860px;}
.ls8{letter-spacing:25.390980px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-26.334000px;}
.ws2{word-spacing:-21.546000px;}
.wsa{word-spacing:-19.152000px;}
.ws6{word-spacing:-14.322000px;}
.ws3{word-spacing:-12.258000px;}
.ws1{word-spacing:-11.676000px;}
.ws0{word-spacing:-8.757000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:51.216000px;}
.ws8{word-spacing:68.526000px;}
.ws9{word-spacing:68.574000px;}
.ws4{word-spacing:1494.378000px;}
._17{margin-left:-8.448000px;}
._a{margin-left:-6.666000px;}
._3{margin-left:-5.502000px;}
._0{margin-left:-3.822000px;}
._19{margin-left:-2.610660px;}
._1{margin-left:-1.554000px;}
._9{width:1.038000px;}
._6{width:2.058000px;}
._4{width:3.890418px;}
._5{width:4.926894px;}
._8{width:6.795000px;}
._2{width:7.978500px;}
._7{width:9.126000px;}
._b{width:11.088000px;}
._c{width:13.986000px;}
._d{width:15.336000px;}
._18{width:16.806000px;}
._10{width:17.820000px;}
._f{width:19.008000px;}
._11{width:20.040000px;}
._12{width:21.240000px;}
._13{width:22.338000px;}
._1e{width:24.104820px;}
._14{width:25.434000px;}
._15{width:26.568000px;}
._e{width:32.483400px;}
._1b{width:47.316000px;}
._1a{width:49.020000px;}
._1d{width:58.044660px;}
._1c{width:59.280000px;}
._16{width:2303.262000px;}
.fc5{color:rgb(24,95,161);}
.fc3{color:rgb(24,95,161);}
.fc1{color:rgb(28,99,183);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs2a{font-size:24.857145px;}
.fs2{font-size:31.500000px;}
.fs11{font-size:33.142654px;}
.fs7{font-size:33.142679px;}
.fs1a{font-size:33.142689px;}
.fs1f{font-size:33.142691px;}
.fs28{font-size:33.142710px;}
.fsb{font-size:33.142733px;}
.fs12{font-size:33.142744px;}
.fsd{font-size:33.142762px;}
.fs25{font-size:33.142763px;}
.fs27{font-size:33.142767px;}
.fs20{font-size:33.142772px;}
.fsa{font-size:33.142782px;}
.fsf{font-size:33.142817px;}
.fs26{font-size:33.142818px;}
.fs9{font-size:33.142825px;}
.fs1b{font-size:33.142827px;}
.fs14{font-size:33.142830px;}
.fs23{font-size:33.142846px;}
.fs8{font-size:33.142851px;}
.fse{font-size:33.142853px;}
.fs10{font-size:33.142880px;}
.fs15{font-size:33.142883px;}
.fs17{font-size:33.142888px;}
.fs1c{font-size:33.142908px;}
.fsc{font-size:33.142912px;}
.fs19{font-size:33.142921px;}
.fs1d{font-size:33.142941px;}
.fs6{font-size:33.142942px;}
.fs13{font-size:33.142946px;}
.fs18{font-size:33.142948px;}
.fs29{font-size:33.142957px;}
.fs24{font-size:33.142959px;}
.fs21{font-size:33.142972px;}
.fs22{font-size:33.142994px;}
.fs1e{font-size:33.142998px;}
.fs16{font-size:33.143015px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.fs2b{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:11.231022px;}
.y52{bottom:19.230134px;}
.y53{bottom:22.301068px;}
.y77{bottom:23.232880px;}
.y54{bottom:26.138846px;}
.y76{bottom:26.771294px;}
.y75{bottom:28.542946px;}
.y55{bottom:30.379806px;}
.y74{bottom:32.880601px;}
.y56{bottom:33.035046px;}
.y73{bottom:35.208969px;}
.y57{bottom:37.573215px;}
.y72{bottom:39.402618px;}
.y58{bottom:41.823207px;}
.y7e{bottom:43.170000px;}
.ye1{bottom:43.170240px;}
.y59{bottom:43.792721px;}
.y71{bottom:44.034996px;}
.y5a{bottom:45.710285px;}
.y70{bottom:45.924636px;}
.y5b{bottom:50.254088px;}
.y6f{bottom:51.367605px;}
.y5c{bottom:52.535808px;}
.y5d{bottom:54.341514px;}
.y6e{bottom:58.066771px;}
.y5e{bottom:59.058820px;}
.y7d{bottom:59.370000px;}
.ye0{bottom:59.370240px;}
.y5f{bottom:60.625732px;}
.y60{bottom:62.127020px;}
.y6d{bottom:63.101006px;}
.y61{bottom:65.206903px;}
.y6c{bottom:65.787815px;}
.y62{bottom:66.406923px;}
.y6b{bottom:67.330201px;}
.y63{bottom:68.521769px;}
.y6a{bottom:69.274278px;}
.y64{bottom:70.074181px;}
.y65{bottom:70.636532px;}
.y69{bottom:70.641504px;}
.y66{bottom:71.179744px;}
.y68{bottom:71.448698px;}
.y67{bottom:71.682521px;}
.y50{bottom:137.769600px;}
.y32{bottom:145.045650px;}
.y4f{bottom:153.969600px;}
.y31{bottom:161.245650px;}
.y4e{bottom:170.169600px;}
.y30{bottom:177.445650px;}
.y4d{bottom:186.369600px;}
.y2f{bottom:193.645650px;}
.ydc{bottom:201.369510px;}
.y4c{bottom:202.569600px;}
.y2e{bottom:209.845650px;}
.yb0{bottom:217.569570px;}
.y4b{bottom:218.769600px;}
.y2d{bottom:226.045650px;}
.yaf{bottom:233.769645px;}
.y4a{bottom:234.969450px;}
.y2c{bottom:242.245650px;}
.yae{bottom:249.969720px;}
.y49{bottom:251.169450px;}
.yad{bottom:266.169795px;}
.y2b{bottom:266.545650px;}
.y48{bottom:267.369450px;}
.ydb{bottom:273.710715px;}
.yac{bottom:282.369870px;}
.y2a{bottom:282.745500px;}
.y47{bottom:283.569450px;}
.yda{bottom:286.870050px;}
.yab{bottom:298.569930px;}
.y29{bottom:298.945500px;}
.y46{bottom:299.769450px;}
.yd9{bottom:304.760640px;}
.yaa{bottom:314.770005px;}
.y45{bottom:315.969450px;}
.yd8{bottom:317.919975px;}
.y28{bottom:323.245500px;}
.y44{bottom:332.169450px;}
.yd7{bottom:335.810565px;}
.ya9{bottom:339.070020px;}
.y27{bottom:339.445500px;}
.y43{bottom:348.369450px;}
.yd6{bottom:348.969945px;}
.ya8{bottom:355.270005px;}
.y26{bottom:355.645500px;}
.y42{bottom:364.569450px;}
.yd5{bottom:366.860490px;}
.ya7{bottom:371.469990px;}
.y25{bottom:371.845500px;}
.yd4{bottom:380.019870px;}
.ya6{bottom:387.669975px;}
.y24{bottom:388.045500px;}
.y41{bottom:389.988450px;}
.yd3{bottom:397.910415px;}
.ya5{bottom:403.869960px;}
.y23{bottom:404.245500px;}
.yd2{bottom:412.310385px;}
.ya4{bottom:420.069945px;}
.y22{bottom:420.445500px;}
.yd1{bottom:425.469765px;}
.y40{bottom:426.669450px;}
.ya3{bottom:436.269930px;}
.y21{bottom:436.645500px;}
.y3f{bottom:442.869450px;}
.yd0{bottom:450.888600px;}
.ya2{bottom:452.469915px;}
.y20{bottom:452.845500px;}
.y3e{bottom:459.069450px;}
.ya1{bottom:468.669900px;}
.y1f{bottom:469.045500px;}
.y3d{bottom:475.269450px;}
.y1e{bottom:485.245500px;}
.ycf{bottom:487.569750px;}
.y3c{bottom:491.469450px;}
.ya0{bottom:494.088735px;}
.y1d{bottom:501.445500px;}
.yce{bottom:503.769735px;}
.y3b{bottom:515.769450px;}
.y1c{bottom:517.645500px;}
.ycd{bottom:519.969720px;}
.y9f{bottom:530.769885px;}
.y3a{bottom:531.969450px;}
.y1b{bottom:533.845500px;}
.ycc{bottom:545.388570px;}
.y9e{bottom:546.969855px;}
.y39{bottom:548.169450px;}
.y1a{bottom:550.045500px;}
.y38{bottom:564.369450px;}
.y19{bottom:566.245500px;}
.y9d{bottom:571.269825px;}
.y37{bottom:580.569450px;}
.ycb{bottom:582.069720px;}
.y9c{bottom:587.469810px;}
.y18{bottom:591.664500px;}
.y36{bottom:596.769450px;}
.y9b{bottom:603.669795px;}
.yca{bottom:607.488555px;}
.y35{bottom:612.969450px;}
.y9a{bottom:619.869780px;}
.y17{bottom:628.345500px;}
.y34{bottom:629.169450px;}
.y99{bottom:636.069765px;}
.yc9{bottom:644.169690px;}
.y16{bottom:644.545500px;}
.y33{bottom:645.369150px;}
.yc8{bottom:660.369675px;}
.y98{bottom:660.369720px;}
.yc7{bottom:676.569660px;}
.y97{bottom:676.569705px;}
.y15{bottom:685.027500px;}
.yc6{bottom:692.769645px;}
.y96{bottom:692.769690px;}
.y14{bottom:699.427500px;}
.yc5{bottom:708.969630px;}
.y95{bottom:708.969675px;}
.y13{bottom:713.827500px;}
.yc4{bottom:725.169630px;}
.y94{bottom:725.169660px;}
.y12{bottom:728.227500px;}
.yc3{bottom:741.369615px;}
.y93{bottom:741.369645px;}
.y11{bottom:742.627500px;}
.y10{bottom:757.027500px;}
.yc2{bottom:757.569585px;}
.y92{bottom:765.669615px;}
.yf{bottom:771.427500px;}
.yc1{bottom:773.769570px;}
.y91{bottom:781.869585px;}
.ye{bottom:785.827500px;}
.yc0{bottom:789.969555px;}
.y90{bottom:798.069570px;}
.yd{bottom:800.227500px;}
.ybf{bottom:806.169540px;}
.y8f{bottom:814.269555px;}
.yc{bottom:814.627200px;}
.ybe{bottom:822.369525px;}
.ybd{bottom:838.569510px;}
.y8e{bottom:838.569525px;}
.yb{bottom:847.495200px;}
.ybc{bottom:854.769480px;}
.y8d{bottom:854.769510px;}
.ybb{bottom:870.969465px;}
.y8c{bottom:870.969495px;}
.yba{bottom:887.169450px;}
.y8b{bottom:887.169495px;}
.ya{bottom:887.809200px;}
.y9{bottom:900.409200px;}
.yb9{bottom:903.369450px;}
.y8a{bottom:911.469465px;}
.y8{bottom:919.309200px;}
.yb8{bottom:927.669450px;}
.y89{bottom:927.669465px;}
.y7{bottom:938.209200px;}
.yb7{bottom:943.869450px;}
.y88{bottom:943.869465px;}
.y6{bottom:954.308700px;}
.y87{bottom:960.069465px;}
.y5{bottom:973.208700px;}
.y86{bottom:976.269465px;}
.y4{bottom:992.109000px;}
.y85{bottom:992.469465px;}
.y3{bottom:1007.509500px;}
.y84{bottom:1008.669465px;}
.yb6{bottom:1008.669480px;}
.y83{bottom:1024.869465px;}
.yb5{bottom:1024.869480px;}
.y2{bottom:1028.715000px;}
.y82{bottom:1041.069465px;}
.yb4{bottom:1041.069480px;}
.y1{bottom:1052.715000px;}
.y81{bottom:1057.269465px;}
.yb3{bottom:1057.269480px;}
.y80{bottom:1073.469465px;}
.yb2{bottom:1073.469480px;}
.yb1{bottom:1089.669435px;}
.y7f{bottom:1089.669465px;}
.y7c{bottom:1097.175000px;}
.y51{bottom:1115.648882px;}
.ydf{bottom:1119.050565px;}
.y7b{bottom:1137.109500px;}
.y7a{bottom:1141.024500px;}
.y79{bottom:1170.724500px;}
.yde{bottom:1181.469465px;}
.ydd{bottom:1197.669465px;}
.h30{height:18.096681px;}
.h4{height:22.932861px;}
.h5{height:22.963623px;}
.h1a{height:24.128758px;}
.h10{height:24.128777px;}
.h23{height:24.128784px;}
.h27{height:24.128785px;}
.h2e{height:24.128799px;}
.h14{height:24.128816px;}
.h1b{height:24.128824px;}
.h16{height:24.128837px;}
.h2d{height:24.128841px;}
.h28{height:24.128844px;}
.h13{height:24.128852px;}
.h18{height:24.128877px;}
.h12{height:24.128883px;}
.h24{height:24.128884px;}
.h1d{height:24.128886px;}
.h2b{height:24.128898px;}
.h11{height:24.128902px;}
.h17{height:24.128903px;}
.h19{height:24.128923px;}
.h1e{height:24.128925px;}
.h20{height:24.128928px;}
.h25{height:24.128943px;}
.h15{height:24.128946px;}
.h22{height:24.128953px;}
.hf{height:24.128968px;}
.h1c{height:24.128971px;}
.h21{height:24.128972px;}
.h2f{height:24.128979px;}
.h2c{height:24.128980px;}
.h29{height:24.128990px;}
.h2a{height:24.129006px;}
.h26{height:24.129008px;}
.h1f{height:24.129021px;}
.h6{height:30.618164px;}
.h36{height:34.359375px;}
.h9{height:34.992188px;}
.h8{height:34.993388px;}
.h3{height:36.961623px;}
.h33{height:38.496094px;}
.ha{height:38.654297px;}
.h34{height:38.654357px;}
.hc{height:38.654897px;}
.hd{height:38.655497px;}
.h7{height:39.313477px;}
.h35{height:39.321735px;}
.h37{height:39.321915px;}
.h32{height:43.584961px;}
.hb{height:46.406250px;}
.h31{height:73.195312px;}
.he{height:82.441191px;}
.h2{height:84.480000px;}
.h0{height:1262.834655px;}
.h1{height:1263.000000px;}
.w2{width:82.442848px;}
.w0{width:892.913445px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.955356px;}
.xb{left:12.768685px;}
.xa{left:14.702653px;}
.x9{left:17.295088px;}
.xd{left:19.022576px;}
.x8{left:20.113308px;}
.xe{left:22.527351px;}
.xf{left:24.060043px;}
.x10{left:27.670212px;}
.x11{left:31.608080px;}
.x12{left:33.507663px;}
.x13{left:35.337149px;}
.x14{left:40.859578px;}
.x15{left:45.035910px;}
.x16{left:49.152833px;}
.x1{left:54.000000px;}
.x7{left:56.278588px;}
.x17{left:59.229754px;}
.x18{left:62.435746px;}
.x19{left:66.674303px;}
.x4{left:68.994000px;}
.x1a{left:70.014607px;}
.x1b{left:71.253901px;}
.x20{left:118.800660px;}
.x2{left:137.283000px;}
.x1c{left:147.543000px;}
.x3{left:152.283000px;}
.x6{left:455.450250px;}
.x5{left:470.461650px;}
.x1f{left:485.224275px;}
.x1d{left:679.531500px;}
.x1e{left:682.641000px;}
.x21{left:780.893925px;}
@media print{
.v2{vertical-align:-12.442667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.410987pt;}
.v1{vertical-align:12.442667pt;}
.v3{vertical-align:30.880000pt;}
.ls4{letter-spacing:-0.441905pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.293333pt;}
.ls2{letter-spacing:4.064000pt;}
.ls1{letter-spacing:7.292800pt;}
.ls7{letter-spacing:14.229227pt;}
.ls5{letter-spacing:16.182987pt;}
.ls6{letter-spacing:16.230987pt;}
.ls8{letter-spacing:22.569760pt;}
.ws7{word-spacing:-23.408000pt;}
.ws2{word-spacing:-19.152000pt;}
.wsa{word-spacing:-17.024000pt;}
.ws6{word-spacing:-12.730667pt;}
.ws3{word-spacing:-10.896000pt;}
.ws1{word-spacing:-10.378667pt;}
.ws0{word-spacing:-7.784000pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:45.525333pt;}
.ws8{word-spacing:60.912000pt;}
.ws9{word-spacing:60.954667pt;}
.ws4{word-spacing:1328.336000pt;}
._17{margin-left:-7.509333pt;}
._a{margin-left:-5.925333pt;}
._3{margin-left:-4.890667pt;}
._0{margin-left:-3.397333pt;}
._19{margin-left:-2.320587pt;}
._1{margin-left:-1.381333pt;}
._9{width:0.922667pt;}
._6{width:1.829333pt;}
._4{width:3.458149pt;}
._5{width:4.379461pt;}
._8{width:6.040000pt;}
._2{width:7.092000pt;}
._7{width:8.112000pt;}
._b{width:9.856000pt;}
._c{width:12.432000pt;}
._d{width:13.632000pt;}
._18{width:14.938667pt;}
._10{width:15.840000pt;}
._f{width:16.896000pt;}
._11{width:17.813333pt;}
._12{width:18.880000pt;}
._13{width:19.856000pt;}
._1e{width:21.426507pt;}
._14{width:22.608000pt;}
._15{width:23.616000pt;}
._e{width:28.874133pt;}
._1b{width:42.058667pt;}
._1a{width:43.573333pt;}
._1d{width:51.595253pt;}
._1c{width:52.693333pt;}
._16{width:2047.344000pt;}
.fs2a{font-size:22.095240pt;}
.fs2{font-size:28.000000pt;}
.fs11{font-size:29.460136pt;}
.fs7{font-size:29.460159pt;}
.fs1a{font-size:29.460168pt;}
.fs1f{font-size:29.460170pt;}
.fs28{font-size:29.460187pt;}
.fsb{font-size:29.460207pt;}
.fs12{font-size:29.460217pt;}
.fsd{font-size:29.460233pt;}
.fs25{font-size:29.460234pt;}
.fs27{font-size:29.460238pt;}
.fs20{font-size:29.460242pt;}
.fsa{font-size:29.460251pt;}
.fsf{font-size:29.460281pt;}
.fs26{font-size:29.460282pt;}
.fs9{font-size:29.460289pt;}
.fs1b{font-size:29.460291pt;}
.fs14{font-size:29.460293pt;}
.fs23{font-size:29.460308pt;}
.fs8{font-size:29.460312pt;}
.fse{font-size:29.460314pt;}
.fs10{font-size:29.460338pt;}
.fs15{font-size:29.460341pt;}
.fs17{font-size:29.460345pt;}
.fs1c{font-size:29.460363pt;}
.fsc{font-size:29.460366pt;}
.fs19{font-size:29.460374pt;}
.fs1d{font-size:29.460392pt;}
.fs6{font-size:29.460393pt;}
.fs13{font-size:29.460396pt;}
.fs18{font-size:29.460398pt;}
.fs29{font-size:29.460406pt;}
.fs24{font-size:29.460408pt;}
.fs21{font-size:29.460420pt;}
.fs22{font-size:29.460439pt;}
.fs1e{font-size:29.460442pt;}
.fs16{font-size:29.460458pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.fs2b{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:9.983130pt;}
.y52{bottom:17.093452pt;}
.y53{bottom:19.823172pt;}
.y77{bottom:20.651449pt;}
.y54{bottom:23.234529pt;}
.y76{bottom:23.796706pt;}
.y75{bottom:25.371507pt;}
.y55{bottom:27.004272pt;}
.y74{bottom:29.227200pt;}
.y56{bottom:29.364486pt;}
.y73{bottom:31.296862pt;}
.y57{bottom:33.398414pt;}
.y72{bottom:35.024550pt;}
.y58{bottom:37.176184pt;}
.y7e{bottom:38.373333pt;}
.ye1{bottom:38.373547pt;}
.y59{bottom:38.926864pt;}
.y71{bottom:39.142218pt;}
.y5a{bottom:40.631364pt;}
.y70{bottom:40.821899pt;}
.y5b{bottom:44.670300pt;}
.y6f{bottom:45.660093pt;}
.y5c{bottom:46.698496pt;}
.y5d{bottom:48.303568pt;}
.y6e{bottom:51.614908pt;}
.y5e{bottom:52.496729pt;}
.y7d{bottom:52.773333pt;}
.ye0{bottom:52.773547pt;}
.y5f{bottom:53.889539pt;}
.y60{bottom:55.224018pt;}
.y6d{bottom:56.089783pt;}
.y61{bottom:57.961692pt;}
.y6c{bottom:58.478058pt;}
.y62{bottom:59.028376pt;}
.y6b{bottom:59.849067pt;}
.y63{bottom:60.908239pt;}
.y6a{bottom:61.577136pt;}
.y64{bottom:62.288161pt;}
.y65{bottom:62.788029pt;}
.y69{bottom:62.792448pt;}
.y66{bottom:63.270883pt;}
.y68{bottom:63.509954pt;}
.y67{bottom:63.717796pt;}
.y50{bottom:122.461867pt;}
.y32{bottom:128.929467pt;}
.y4f{bottom:136.861867pt;}
.y31{bottom:143.329467pt;}
.y4e{bottom:151.261867pt;}
.y30{bottom:157.729467pt;}
.y4d{bottom:165.661867pt;}
.y2f{bottom:172.129467pt;}
.ydc{bottom:178.995120pt;}
.y4c{bottom:180.061867pt;}
.y2e{bottom:186.529467pt;}
.yb0{bottom:193.395173pt;}
.y4b{bottom:194.461867pt;}
.y2d{bottom:200.929467pt;}
.yaf{bottom:207.795240pt;}
.y4a{bottom:208.861733pt;}
.y2c{bottom:215.329467pt;}
.yae{bottom:222.195307pt;}
.y49{bottom:223.261733pt;}
.yad{bottom:236.595373pt;}
.y2b{bottom:236.929467pt;}
.y48{bottom:237.661733pt;}
.ydb{bottom:243.298413pt;}
.yac{bottom:250.995440pt;}
.y2a{bottom:251.329333pt;}
.y47{bottom:252.061733pt;}
.yda{bottom:254.995600pt;}
.yab{bottom:265.395493pt;}
.y29{bottom:265.729333pt;}
.y46{bottom:266.461733pt;}
.yd9{bottom:270.898347pt;}
.yaa{bottom:279.795560pt;}
.y45{bottom:280.861733pt;}
.yd8{bottom:282.595533pt;}
.y28{bottom:287.329333pt;}
.y44{bottom:295.261733pt;}
.yd7{bottom:298.498280pt;}
.ya9{bottom:301.395573pt;}
.y27{bottom:301.729333pt;}
.y43{bottom:309.661733pt;}
.yd6{bottom:310.195507pt;}
.ya8{bottom:315.795560pt;}
.y26{bottom:316.129333pt;}
.y42{bottom:324.061733pt;}
.yd5{bottom:326.098213pt;}
.ya7{bottom:330.195547pt;}
.y25{bottom:330.529333pt;}
.yd4{bottom:337.795440pt;}
.ya6{bottom:344.595533pt;}
.y24{bottom:344.929333pt;}
.y41{bottom:346.656400pt;}
.yd3{bottom:353.698147pt;}
.ya5{bottom:358.995520pt;}
.y23{bottom:359.329333pt;}
.yd2{bottom:366.498120pt;}
.ya4{bottom:373.395507pt;}
.y22{bottom:373.729333pt;}
.yd1{bottom:378.195347pt;}
.y40{bottom:379.261733pt;}
.ya3{bottom:387.795493pt;}
.y21{bottom:388.129333pt;}
.y3f{bottom:393.661733pt;}
.yd0{bottom:400.789867pt;}
.ya2{bottom:402.195480pt;}
.y20{bottom:402.529333pt;}
.y3e{bottom:408.061733pt;}
.ya1{bottom:416.595467pt;}
.y1f{bottom:416.929333pt;}
.y3d{bottom:422.461733pt;}
.y1e{bottom:431.329333pt;}
.ycf{bottom:433.395333pt;}
.y3c{bottom:436.861733pt;}
.ya0{bottom:439.189987pt;}
.y1d{bottom:445.729333pt;}
.yce{bottom:447.795320pt;}
.y3b{bottom:458.461733pt;}
.y1c{bottom:460.129333pt;}
.ycd{bottom:462.195307pt;}
.y9f{bottom:471.795453pt;}
.y3a{bottom:472.861733pt;}
.y1b{bottom:474.529333pt;}
.ycc{bottom:484.789840pt;}
.y9e{bottom:486.195427pt;}
.y39{bottom:487.261733pt;}
.y1a{bottom:488.929333pt;}
.y38{bottom:501.661733pt;}
.y19{bottom:503.329333pt;}
.y9d{bottom:507.795400pt;}
.y37{bottom:516.061733pt;}
.ycb{bottom:517.395307pt;}
.y9c{bottom:522.195387pt;}
.y18{bottom:525.924000pt;}
.y36{bottom:530.461733pt;}
.y9b{bottom:536.595373pt;}
.yca{bottom:539.989827pt;}
.y35{bottom:544.861733pt;}
.y9a{bottom:550.995360pt;}
.y17{bottom:558.529333pt;}
.y34{bottom:559.261733pt;}
.y99{bottom:565.395347pt;}
.yc9{bottom:572.595280pt;}
.y16{bottom:572.929333pt;}
.y33{bottom:573.661467pt;}
.yc8{bottom:586.995267pt;}
.y98{bottom:586.995307pt;}
.yc7{bottom:601.395253pt;}
.y97{bottom:601.395293pt;}
.y15{bottom:608.913333pt;}
.yc6{bottom:615.795240pt;}
.y96{bottom:615.795280pt;}
.y14{bottom:621.713333pt;}
.yc5{bottom:630.195227pt;}
.y95{bottom:630.195267pt;}
.y13{bottom:634.513333pt;}
.yc4{bottom:644.595227pt;}
.y94{bottom:644.595253pt;}
.y12{bottom:647.313333pt;}
.yc3{bottom:658.995213pt;}
.y93{bottom:658.995240pt;}
.y11{bottom:660.113333pt;}
.y10{bottom:672.913333pt;}
.yc2{bottom:673.395187pt;}
.y92{bottom:680.595213pt;}
.yf{bottom:685.713333pt;}
.yc1{bottom:687.795173pt;}
.y91{bottom:694.995187pt;}
.ye{bottom:698.513333pt;}
.yc0{bottom:702.195160pt;}
.y90{bottom:709.395173pt;}
.yd{bottom:711.313333pt;}
.ybf{bottom:716.595147pt;}
.y8f{bottom:723.795160pt;}
.yc{bottom:724.113067pt;}
.ybe{bottom:730.995133pt;}
.ybd{bottom:745.395120pt;}
.y8e{bottom:745.395133pt;}
.yb{bottom:753.329067pt;}
.ybc{bottom:759.795093pt;}
.y8d{bottom:759.795120pt;}
.ybb{bottom:774.195080pt;}
.y8c{bottom:774.195107pt;}
.yba{bottom:788.595067pt;}
.y8b{bottom:788.595107pt;}
.ya{bottom:789.163733pt;}
.y9{bottom:800.363733pt;}
.yb9{bottom:802.995067pt;}
.y8a{bottom:810.195080pt;}
.y8{bottom:817.163733pt;}
.yb8{bottom:824.595067pt;}
.y89{bottom:824.595080pt;}
.y7{bottom:833.963733pt;}
.yb7{bottom:838.995067pt;}
.y88{bottom:838.995080pt;}
.y6{bottom:848.274400pt;}
.y87{bottom:853.395080pt;}
.y5{bottom:865.074400pt;}
.y86{bottom:867.795080pt;}
.y4{bottom:881.874667pt;}
.y85{bottom:882.195080pt;}
.y3{bottom:895.564000pt;}
.y84{bottom:896.595080pt;}
.yb6{bottom:896.595093pt;}
.y83{bottom:910.995080pt;}
.yb5{bottom:910.995093pt;}
.y2{bottom:914.413333pt;}
.y82{bottom:925.395080pt;}
.yb4{bottom:925.395093pt;}
.y1{bottom:935.746667pt;}
.y81{bottom:939.795080pt;}
.yb3{bottom:939.795093pt;}
.y80{bottom:954.195080pt;}
.yb2{bottom:954.195093pt;}
.yb1{bottom:968.595053pt;}
.y7f{bottom:968.595080pt;}
.y7c{bottom:975.266667pt;}
.y51{bottom:991.687895pt;}
.ydf{bottom:994.711613pt;}
.y7b{bottom:1010.764000pt;}
.y7a{bottom:1014.244000pt;}
.y79{bottom:1040.644000pt;}
.yde{bottom:1050.195080pt;}
.ydd{bottom:1064.595080pt;}
.h30{height:16.085939pt;}
.h4{height:20.384766pt;}
.h5{height:20.412109pt;}
.h1a{height:21.447785pt;}
.h10{height:21.447802pt;}
.h23{height:21.447808pt;}
.h27{height:21.447809pt;}
.h2e{height:21.447821pt;}
.h14{height:21.447837pt;}
.h1b{height:21.447844pt;}
.h16{height:21.447855pt;}
.h2d{height:21.447858pt;}
.h28{height:21.447862pt;}
.h13{height:21.447868pt;}
.h18{height:21.447890pt;}
.h12{height:21.447896pt;}
.h24{height:21.447897pt;}
.h1d{height:21.447899pt;}
.h2b{height:21.447910pt;}
.h11{height:21.447913pt;}
.h17{height:21.447914pt;}
.h19{height:21.447932pt;}
.h1e{height:21.447933pt;}
.h20{height:21.447936pt;}
.h25{height:21.447950pt;}
.h15{height:21.447952pt;}
.h22{height:21.447958pt;}
.hf{height:21.447971pt;}
.h1c{height:21.447974pt;}
.h21{height:21.447975pt;}
.h2f{height:21.447981pt;}
.h2c{height:21.447982pt;}
.h29{height:21.447991pt;}
.h2a{height:21.448005pt;}
.h26{height:21.448008pt;}
.h1f{height:21.448019pt;}
.h6{height:27.216146pt;}
.h36{height:30.541667pt;}
.h9{height:31.104167pt;}
.h8{height:31.105233pt;}
.h3{height:32.854776pt;}
.h33{height:34.218750pt;}
.ha{height:34.359375pt;}
.h34{height:34.359428pt;}
.hc{height:34.359908pt;}
.hd{height:34.360442pt;}
.h7{height:34.945312pt;}
.h35{height:34.952653pt;}
.h37{height:34.952813pt;}
.h32{height:38.742188pt;}
.hb{height:41.250000pt;}
.h31{height:65.062500pt;}
.he{height:73.281058pt;}
.h2{height:75.093333pt;}
.h0{height:1122.519693pt;}
.h1{height:1122.666667pt;}
.w2{width:73.282531pt;}
.w0{width:793.700840pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.738094pt;}
.xb{left:11.349942pt;}
.xa{left:13.069025pt;}
.x9{left:15.373411pt;}
.xd{left:16.908957pt;}
.x8{left:17.878496pt;}
.xe{left:20.024312pt;}
.xf{left:21.386705pt;}
.x10{left:24.595744pt;}
.x11{left:28.096072pt;}
.x12{left:29.784590pt;}
.x13{left:31.410799pt;}
.x14{left:36.319625pt;}
.x15{left:40.031920pt;}
.x16{left:43.691407pt;}
.x1{left:48.000000pt;}
.x7{left:50.025412pt;}
.x17{left:52.648670pt;}
.x18{left:55.498441pt;}
.x19{left:59.266048pt;}
.x4{left:61.328000pt;}
.x1a{left:62.235206pt;}
.x1b{left:63.336801pt;}
.x20{left:105.600587pt;}
.x2{left:122.029333pt;}
.x1c{left:131.149333pt;}
.x3{left:135.362667pt;}
.x6{left:404.844667pt;}
.x5{left:418.188133pt;}
.x1f{left:431.310467pt;}
.x1d{left:604.028000pt;}
.x1e{left:606.792000pt;}
.x21{left:694.127933pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  