
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_cd02d238ed030c3ced7dbd20.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_22c1d89ae89e8db983a44597.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_5cc6401c04ed6342b240ad8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_5493fca517ac36dfeb749839.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331055;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_1e00187debda64b947f36b8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921875;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_6a8c35fd8136730224408fdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_7dc1dd1fd33db0f4fd54b417.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.331055;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_fbd6c1442aa478c08785b8df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_1e7a7d5abe4bece8b4f1c6af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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:ffe;src:url('chunks/assets/font_d6008dc7356eac7627f15476.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls13{letter-spacing:-8.880000px;}
.ls2a{letter-spacing:-8.601309px;}
.ls59{letter-spacing:-8.160000px;}
.ls31{letter-spacing:-7.589390px;}
.ls3c{letter-spacing:-0.774000px;}
.ls32{letter-spacing:-0.360496px;}
.ls5d{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.341523px;}
.ls15{letter-spacing:-0.280200px;}
.ls2d{letter-spacing:-0.273851px;}
.ls45{letter-spacing:-0.259800px;}
.ls4e{letter-spacing:-0.243600px;}
.ls22{letter-spacing:-0.229200px;}
.ls1a{letter-spacing:-0.226200px;}
.ls2b{letter-spacing:-0.196059px;}
.ls5a{letter-spacing:-0.186000px;}
.ls50{letter-spacing:-0.172200px;}
.ls17{letter-spacing:-0.157800px;}
.ls3d{letter-spacing:-0.134400px;}
.ls2e{letter-spacing:-0.112576px;}
.ls30{letter-spacing:-0.108000px;}
.ls3f{letter-spacing:-0.106800px;}
.ls28{letter-spacing:-0.097800px;}
.ls19{letter-spacing:-0.089400px;}
.ls20{letter-spacing:-0.079056px;}
.ls23{letter-spacing:-0.075000px;}
.ls2f{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.056161px;}
.ls14{letter-spacing:-0.053280px;}
.ls38{letter-spacing:-0.026640px;}
.ls10{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.021600px;}
.ls46{letter-spacing:0.042480px;}
.lsd{letter-spacing:0.056920px;}
.lsb{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.075600px;}
.lsc{letter-spacing:0.113841px;}
.ls54{letter-spacing:0.120000px;}
.lse{letter-spacing:0.126000px;}
.ls29{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.151788px;}
.ls27{letter-spacing:0.164400px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls25{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.274800px;}
.ls55{letter-spacing:0.306600px;}
.ls39{letter-spacing:0.320400px;}
.ls5b{letter-spacing:0.331800px;}
.ls53{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.337728px;}
.ls1{letter-spacing:0.338400px;}
.ls2c{letter-spacing:0.349744px;}
.ls43{letter-spacing:0.352200px;}
.ls3{letter-spacing:0.356701px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.369600px;}
.lsf{letter-spacing:0.379470px;}
.ls3b{letter-spacing:0.460200px;}
.ls3a{letter-spacing:0.490800px;}
.ls1b{letter-spacing:0.493800px;}
.ls44{letter-spacing:0.612000px;}
.ls42{letter-spacing:0.613440px;}
.ls4f{letter-spacing:0.624000px;}
.ls21{letter-spacing:0.666000px;}
.ls48{letter-spacing:0.666720px;}
.ls1f{letter-spacing:0.683045px;}
.ls1e{letter-spacing:0.702019px;}
.ls24{letter-spacing:0.924000px;}
.ls8{letter-spacing:1.386720px;}
.lsa{letter-spacing:1.461717px;}
.ls49{letter-spacing:2.106720px;}
.ls4b{letter-spacing:2.286720px;}
.ls4a{letter-spacing:2.826720px;}
.ls41{letter-spacing:3.546720px;}
.ls6{letter-spacing:3.738534px;}
.ls26{letter-spacing:4.266000px;}
.ls9{letter-spacing:4.266720px;}
.ls3e{letter-spacing:4.986000px;}
.ls4c{letter-spacing:4.986720px;}
.ls4{letter-spacing:6.774290px;}
.ls37{letter-spacing:7.146720px;}
.ls40{letter-spacing:7.866720px;}
.ls36{letter-spacing:8.586720px;}
.ls57{letter-spacing:9.306720px;}
.ls56{letter-spacing:10.026720px;}
.ls5c{letter-spacing:10.746720px;}
.ls52{letter-spacing:16.506720px;}
.ls4d{letter-spacing:41.706720px;}
.ls51{letter-spacing:46.026720px;}
.ls58{letter-spacing:75.780000px;}
.ls34{letter-spacing:199.386720px;}
.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;}
}
.ws12{word-spacing:-42.698670px;}
.ws10{word-spacing:-42.372326px;}
.ws1d{word-spacing:-42.365369px;}
.ws14{word-spacing:-42.353353px;}
.wsf{word-spacing:-42.167413px;}
.ws11{word-spacing:-42.015625px;}
.ws15{word-spacing:-41.959463px;}
.ws13{word-spacing:-41.936569px;}
.ws1c{word-spacing:-41.819565px;}
.ws18{word-spacing:-40.783920px;}
.ws35{word-spacing:-40.483920px;}
.ws2c{word-spacing:-40.350720px;}
.ws32{word-spacing:-40.212120px;}
.wsa{word-spacing:-40.198320px;}
.ws3b{word-spacing:-40.191720px;}
.ws2b{word-spacing:-40.180320px;}
.ws9{word-spacing:-40.134720px;}
.ws5{word-spacing:-40.066320px;}
.ws19{word-spacing:-40.024320px;}
.ws1b{word-spacing:-40.003920px;}
.ws31{word-spacing:-39.935520px;}
.ws30{word-spacing:-39.902400px;}
.ws29{word-spacing:-39.881520px;}
.ws6{word-spacing:-39.859920px;}
.ws2a{word-spacing:-39.833280px;}
.ws17{word-spacing:-39.784920px;}
.ws1a{word-spacing:-39.762120px;}
.ws2d{word-spacing:-39.725520px;}
.ws8{word-spacing:-39.702120px;}
.ws36{word-spacing:-39.687720px;}
.ws3a{word-spacing:-39.673920px;}
.ws16{word-spacing:-39.630720px;}
.ws34{word-spacing:-39.616320px;}
.ws4{word-spacing:-39.579720px;}
.ws27{word-spacing:-36.018000px;}
.ws33{word-spacing:-19.063440px;}
.ws23{word-spacing:-18.214537px;}
.ws26{word-spacing:-18.157617px;}
.ws25{word-spacing:-17.816094px;}
.ws24{word-spacing:-17.797121px;}
.ws1e{word-spacing:-17.511760px;}
.ws2f{word-spacing:-17.225280px;}
.ws1{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws2e{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.300000px;}
.ws39{word-spacing:-15.246600px;}
.ws3c{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.940000px;}
.ws38{word-spacing:-14.886720px;}
.ws3d{word-spacing:-14.580000px;}
.ws37{word-spacing:-14.166000px;}
.ws21{word-spacing:-13.392000px;}
.wse{word-spacing:-10.933800px;}
.ws3{word-spacing:-10.808640px;}
.wsd{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.213800px;}
.ws20{word-spacing:-9.000000px;}
.ws1f{word-spacing:-8.928000px;}
.ws28{word-spacing:0.000000px;}
.ws22{word-spacing:4.591581px;}
._1{margin-left:-12.953040px;}
._17{margin-left:-9.036960px;}
._7{margin-left:-7.796802px;}
._16{margin-left:-5.519280px;}
._a{margin-left:-4.182221px;}
._5{margin-left:-2.527920px;}
._0{margin-left:-1.093680px;}
._3{width:1.216800px;}
._6{width:2.808720px;}
._9{width:3.937049px;}
._10{width:5.108347px;}
._13{width:6.133656px;}
._e{width:7.143673px;}
._8{width:8.314936px;}
._12{width:9.905901px;}
._11{width:11.114766px;}
._2{width:12.130560px;}
._b{width:13.732243px;}
._14{width:14.848560px;}
._15{width:16.433168px;}
._4{width:18.220080px;}
._f{width:20.006392px;}
._d{width:21.507541px;}
._c{width:22.652054px;}
._18{width:28.086480px;}
._19{width:29.121120px;}
._1d{width:34.235760px;}
._1e{width:35.410080px;}
._1c{width:60.058800px;}
._1b{width:63.714240px;}
._1a{width:65.738640px;}
._23{width:75.469440px;}
._21{width:136.416240px;}
._20{width:137.462400px;}
._22{width:184.911840px;}
._1f{width:1109.444400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsc{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.780000px;}
.y50{bottom:5.010000px;}
.y4e{bottom:6.300000px;}
.y37{bottom:7.020000px;}
.y2{bottom:9.930000px;}
.y41{bottom:19.980000px;}
.y4{bottom:22.710000px;}
.y40{bottom:28.080000px;}
.y4d{bottom:29.880000px;}
.y36{bottom:30.285000px;}
.y3{bottom:47.910000px;}
.y35{bottom:53.325000px;}
.y4c{bottom:53.454000px;}
.y7{bottom:57.060000px;}
.y3f{bottom:57.774000px;}
.y3e{bottom:68.934000px;}
.y4b{bottom:74.514000px;}
.y34{bottom:79.425000px;}
.y3d{bottom:80.634000px;}
.y4a{bottom:84.414000px;}
.y3c{bottom:93.774000px;}
.y7a{bottom:94.356000px;}
.yb7{bottom:97.056000px;}
.y49{bottom:103.314000px;}
.y38{bottom:103.356000px;}
.ya3{bottom:104.436000px;}
.y33{bottom:105.705000px;}
.y3b{bottom:115.734000px;}
.yb6{bottom:116.316000px;}
.y79{bottom:120.456000px;}
.y48{bottom:120.954000px;}
.yde{bottom:122.436000px;}
.y47{bottom:127.434000px;}
.ya2{bottom:130.716000px;}
.y110{bottom:131.436000px;}
.y32{bottom:131.805000px;}
.y46{bottom:142.914000px;}
.y78{bottom:146.556000px;}
.ydd{bottom:148.536000px;}
.y10f{bottom:149.616000px;}
.ya1{bottom:156.810000px;}
.y31{bottom:157.905000px;}
.y45{bottom:158.394000px;}
.y10e{bottom:169.590000px;}
.y77{bottom:169.770000px;}
.ydc{bottom:171.750000px;}
.y44{bottom:174.054000px;}
.y3a{bottom:177.654000px;}
.y30{bottom:181.125000px;}
.ya0{bottom:182.910000px;}
.y39{bottom:188.274000px;}
.y10d{bottom:188.850000px;}
.y43{bottom:189.534000px;}
.y76{bottom:192.810000px;}
.ydb{bottom:194.970000px;}
.y2f{bottom:204.165000px;}
.y42{bottom:205.014000px;}
.y10c{bottom:206.130000px;}
.y9f{bottom:209.010000px;}
.yda{bottom:218.010000px;}
.y75{bottom:218.910000px;}
.y10b{bottom:223.230000px;}
.y2e{bottom:227.385000px;}
.y9e{bottom:235.110000px;}
.y10a{bottom:240.510000px;}
.yd9{bottom:244.110000px;}
.y74{bottom:245.010000px;}
.yab{bottom:245.190000px;}
.y2d{bottom:250.425000px;}
.y109{bottom:257.790000px;}
.y9d{bottom:261.390000px;}
.yaa{bottom:264.270000px;}
.yd8{bottom:267.150000px;}
.y73{bottom:268.230000px;}
.y1d{bottom:271.485000px;}
.y2c{bottom:273.645000px;}
.y108{bottom:275.070000px;}
.y9c{bottom:287.490000px;}
.y72{bottom:288.390000px;}
.yd7{bottom:290.370000px;}
.y107{bottom:292.350000px;}
.y2b{bottom:293.655000px;}
.y1c{bottom:295.635000px;}
.y71{bottom:308.550000px;}
.y106{bottom:309.630000px;}
.y9b{bottom:313.590000px;}
.y2a{bottom:313.815000px;}
.y1b{bottom:319.755000px;}
.yf{bottom:321.690000px;}
.y105{bottom:326.730000px;}
.y70{bottom:331.590000px;}
.yd6{bottom:336.450000px;}
.y9a{bottom:336.810000px;}
.y29{bottom:336.855000px;}
.y1a{bottom:343.875000px;}
.y104{bottom:344.055000px;}
.y99{bottom:357.015000px;}
.y6f{bottom:357.735000px;}
.y28{bottom:360.075000px;}
.y103{bottom:361.335000px;}
.yd5{bottom:362.775000px;}
.y19{bottom:367.995000px;}
.y98{bottom:376.995000px;}
.y102{bottom:378.615000px;}
.y27{bottom:380.055000px;}
.y6e{bottom:383.835000px;}
.yd4{bottom:385.815000px;}
.y18{bottom:392.115000px;}
.y101{bottom:395.895000px;}
.y26{bottom:400.215000px;}
.yb5{bottom:403.095000px;}
.y97{bottom:406.155000px;}
.yd3{bottom:409.035000px;}
.y6d{bottom:409.935000px;}
.y100{bottom:413.175000px;}
.y17{bottom:416.235000px;}
.y25{bottom:420.375000px;}
.y96{bottom:426.315000px;}
.yd2{bottom:429.015000px;}
.yff{bottom:430.275000px;}
.y6c{bottom:436.035000px;}
.y16{bottom:440.535000px;}
.yb4{bottom:442.335000px;}
.y24{bottom:443.415000px;}
.y95{bottom:446.295000px;}
.yfe{bottom:447.555000px;}
.yd1{bottom:452.235000px;}
.y6b{bottom:462.135000px;}
.y15{bottom:464.655000px;}
.yfd{bottom:464.835000px;}
.y94{bottom:466.455000px;}
.y23{bottom:469.515000px;}
.yd0{bottom:475.455000px;}
.yfc{bottom:482.115000px;}
.y6a{bottom:485.355000px;}
.y93{bottom:486.435000px;}
.y14{bottom:488.775000px;}
.y22{bottom:492.735000px;}
.ycf{bottom:495.435000px;}
.yfb{bottom:499.395000px;}
.y69{bottom:508.395000px;}
.y21{bottom:512.715000px;}
.y13{bottom:512.895000px;}
.y92{bottom:515.595000px;}
.yfa{bottom:516.675000px;}
.yce{bottom:518.655000px;}
.yf9{bottom:533.775000px;}
.y68{bottom:534.495000px;}
.y20{bottom:535.755000px;}
.y12{bottom:537.015000px;}
.ycd{bottom:538.635000px;}
.yf8{bottom:551.055000px;}
.y91{bottom:555.735000px;}
.ya9{bottom:556.455000px;}
.y1f{bottom:559.020000px;}
.y67{bottom:560.775000px;}
.y11{bottom:561.180000px;}
.ycc{bottom:561.675000px;}
.yf7{bottom:568.335000px;}
.y90{bottom:575.895000px;}
.ya8{bottom:576.615000px;}
.y1e{bottom:579.180000px;}
.ycb{bottom:584.715000px;}
.y10{bottom:585.480000px;}
.yf6{bottom:585.615000px;}
.y66{bottom:586.875000px;}
.y8f{bottom:596.055000px;}
.ya7{bottom:599.655000px;}
.yf5{bottom:602.895000px;}
.yca{bottom:607.965000px;}
.y65{bottom:613.005000px;}
.y8e{bottom:616.065000px;}
.yf4{bottom:620.025000px;}
.ya6{bottom:622.905000px;}
.yc9{bottom:631.185000px;}
.y64{bottom:636.225000px;}
.yf3{bottom:637.305000px;}
.ya5{bottom:645.945000px;}
.y8d{bottom:648.105000px;}
.yc8{bottom:651.345000px;}
.yf2{bottom:654.585000px;}
.y63{bottom:659.265000px;}
.y8c{bottom:671.325000px;}
.yf1{bottom:671.865000px;}
.y62{bottom:682.485000px;}
.yf0{bottom:689.145000px;}
.y8b{bottom:691.485000px;}
.yc7{bottom:694.365000px;}
.y61{bottom:705.525000px;}
.yef{bottom:706.425000px;}
.y8a{bottom:711.645000px;}
.yb3{bottom:719.745000px;}
.yc6{bottom:720.465000px;}
.yee{bottom:723.525000px;}
.y60{bottom:731.625000px;}
.yed{bottom:740.805000px;}
.yb2{bottom:746.025000px;}
.yc5{bottom:746.565000px;}
.y89{bottom:751.785000px;}
.y5f{bottom:757.725000px;}
.yec{bottom:758.085000px;}
.y88{bottom:771.765000px;}
.yb1{bottom:772.125000px;}
.yc4{bottom:772.845000px;}
.yeb{bottom:775.365000px;}
.y5e{bottom:780.945000px;}
.yea{bottom:792.645000px;}
.y87{bottom:794.805000px;}
.yb0{bottom:798.225000px;}
.yc3{bottom:798.945000px;}
.y5d{bottom:801.105000px;}
.ye9{bottom:809.925000px;}
.y86{bottom:818.025000px;}
.y5c{bottom:824.145000px;}
.yaf{bottom:824.325000px;}
.yc2{bottom:825.045000px;}
.ye8{bottom:827.025000px;}
.y85{bottom:841.065000px;}
.ye7{bottom:845.205000px;}
.y5b{bottom:847.365000px;}
.yae{bottom:847.545000px;}
.yc1{bottom:851.145000px;}
.y84{bottom:864.285000px;}
.ye6{bottom:865.365000px;}
.yad{bottom:870.630000px;}
.yc0{bottom:877.290000px;}
.y5a{bottom:879.270000px;}
.ye5{bottom:885.570000px;}
.y83{bottom:887.370000px;}
.yac{bottom:889.710000px;}
.ybf{bottom:900.510000px;}
.y59{bottom:902.490000px;}
.ye4{bottom:905.550000px;}
.y82{bottom:913.470000px;}
.ye{bottom:922.290000px;}
.y58{bottom:922.650000px;}
.ybe{bottom:923.550000px;}
.ye3{bottom:925.710000px;}
.y81{bottom:939.570000px;}
.y57{bottom:945.690000px;}
.ybd{bottom:946.770000px;}
.yd{bottom:947.130000px;}
.y80{bottom:962.790000px;}
.ye2{bottom:965.850000px;}
.ybc{bottom:966.930000px;}
.y56{bottom:971.790000px;}
.yc{bottom:973.230000px;}
.y7f{bottom:985.830000px;}
.ybb{bottom:986.910000px;}
.ye1{bottom:988.890000px;}
.y55{bottom:995.010000px;}
.yb{bottom:995.550000px;}
.yba{bottom:1007.070000px;}
.y7e{bottom:1011.930000px;}
.ye0{bottom:1012.110000px;}
.y54{bottom:1015.170000px;}
.ya{bottom:1018.770000px;}
.yb9{bottom:1027.230000px;}
.y53{bottom:1035.150000px;}
.y7d{bottom:1038.210000px;}
.y9{bottom:1040.370000px;}
.yb8{bottom:1047.210000px;}
.y52{bottom:1058.190000px;}
.ydf{bottom:1061.250000px;}
.y111{bottom:1063.230000px;}
.y7c{bottom:1064.310000px;}
.ya4{bottom:1067.370000px;}
.y8{bottom:1071.870000px;}
.y4f{bottom:1075.140000px;}
.y51{bottom:1084.290000px;}
.y7b{bottom:1087.530000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h16{height:4.210313px;}
.h12{height:21.114844px;}
.h18{height:22.104141px;}
.h11{height:25.136719px;}
.h1a{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h15{height:38.100586px;}
.h13{height:38.997070px;}
.h14{height:39.471680px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.hb{height:42.164648px;}
.h1c{height:43.506914px;}
.h5{height:46.251562px;}
.ha{height:48.229102px;}
.h19{height:57.243164px;}
.h17{height:60.338990px;}
.h9{height:63.349102px;}
.h1b{height:64.002656px;}
.h3{height:65.884219px;}
.hf{height:66.775148px;}
.h2{height:84.996000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h10{height:217.620000px;}
.hc{height:595.185000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.056000px;}
.x13{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1c{left:18.180000px;}
.x16{left:19.980000px;}
.x15{left:25.560000px;}
.x1e{left:29.160000px;}
.x21{left:42.345000px;}
.xf{left:43.740000px;}
.x1d{left:47.700000px;}
.x10{left:50.760000px;}
.xe{left:54.900000px;}
.x1f{left:57.060000px;}
.x18{left:62.145000px;}
.x14{left:67.134000px;}
.x12{left:69.654000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x20{left:102.774000px;}
.x1b{left:106.734000px;}
.x2b{left:109.295987px;}
.x3f{left:113.435987px;}
.x11{left:124.554000px;}
.x5{left:141.345000px;}
.x22{left:144.045000px;}
.x23{left:164.385000px;}
.x3e{left:171.209987px;}
.x3{left:182.370000px;}
.x28{left:183.645000px;}
.x38{left:185.429987px;}
.x35{left:189.749987px;}
.xc{left:191.189987px;}
.x24{left:198.225000px;}
.x25{left:205.785000px;}
.x30{left:207.389987px;}
.x17{left:219.090000px;}
.x1a{left:266.295000px;}
.x26{left:280.335000px;}
.x3c{left:282.314987px;}
.x3b{left:283.574987px;}
.x2e{left:292.754987px;}
.x31{left:306.434987px;}
.x27{left:322.455000px;}
.x39{left:389.774987px;}
.x36{left:394.094987px;}
.xb{left:396.434987px;}
.x3d{left:462.344987px;}
.xa{left:522.464987px;}
.x19{left:534.540000px;}
.xd{left:560.624987px;}
.x3a{left:633.569987px;}
.x32{left:638.969987px;}
.x2d{left:640.049987px;}
.x2a{left:666.509987px;}
.x2c{left:689.009987px;}
.x37{left:741.389987px;}
.x34{left:763.349987px;}
.x8{left:766.049987px;}
.x33{left:775.259987px;}
.x2f{left:781.919987px;}
.x7{left:784.439987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls13{letter-spacing:-7.893333pt;}
.ls2a{letter-spacing:-7.645608pt;}
.ls59{letter-spacing:-7.253333pt;}
.ls31{letter-spacing:-6.746125pt;}
.ls3c{letter-spacing:-0.688000pt;}
.ls32{letter-spacing:-0.320441pt;}
.ls5d{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.303576pt;}
.ls15{letter-spacing:-0.249067pt;}
.ls2d{letter-spacing:-0.243423pt;}
.ls45{letter-spacing:-0.230933pt;}
.ls4e{letter-spacing:-0.216533pt;}
.ls22{letter-spacing:-0.203733pt;}
.ls1a{letter-spacing:-0.201067pt;}
.ls2b{letter-spacing:-0.174275pt;}
.ls5a{letter-spacing:-0.165333pt;}
.ls50{letter-spacing:-0.153067pt;}
.ls17{letter-spacing:-0.140267pt;}
.ls3d{letter-spacing:-0.119467pt;}
.ls2e{letter-spacing:-0.100068pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls3f{letter-spacing:-0.094933pt;}
.ls28{letter-spacing:-0.086933pt;}
.ls19{letter-spacing:-0.079467pt;}
.ls20{letter-spacing:-0.070272pt;}
.ls23{letter-spacing:-0.066667pt;}
.ls2f{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.049921pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls38{letter-spacing:-0.023680pt;}
.ls10{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.019200pt;}
.ls46{letter-spacing:0.037760pt;}
.lsd{letter-spacing:0.050596pt;}
.lsb{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.067200pt;}
.lsc{letter-spacing:0.101192pt;}
.ls54{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.112000pt;}
.ls29{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.134922pt;}
.ls27{letter-spacing:0.146133pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls25{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.244267pt;}
.ls55{letter-spacing:0.272533pt;}
.ls39{letter-spacing:0.284800pt;}
.ls5b{letter-spacing:0.294933pt;}
.ls53{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.300203pt;}
.ls1{letter-spacing:0.300800pt;}
.ls2c{letter-spacing:0.310884pt;}
.ls43{letter-spacing:0.313067pt;}
.ls3{letter-spacing:0.317068pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.328533pt;}
.lsf{letter-spacing:0.337306pt;}
.ls3b{letter-spacing:0.409067pt;}
.ls3a{letter-spacing:0.436267pt;}
.ls1b{letter-spacing:0.438933pt;}
.ls44{letter-spacing:0.544000pt;}
.ls42{letter-spacing:0.545280pt;}
.ls4f{letter-spacing:0.554667pt;}
.ls21{letter-spacing:0.592000pt;}
.ls48{letter-spacing:0.592640pt;}
.ls1f{letter-spacing:0.607151pt;}
.ls1e{letter-spacing:0.624017pt;}
.ls24{letter-spacing:0.821333pt;}
.ls8{letter-spacing:1.232640pt;}
.lsa{letter-spacing:1.299304pt;}
.ls49{letter-spacing:1.872640pt;}
.ls4b{letter-spacing:2.032640pt;}
.ls4a{letter-spacing:2.512640pt;}
.ls41{letter-spacing:3.152640pt;}
.ls6{letter-spacing:3.323141pt;}
.ls26{letter-spacing:3.792000pt;}
.ls9{letter-spacing:3.792640pt;}
.ls3e{letter-spacing:4.432000pt;}
.ls4c{letter-spacing:4.432640pt;}
.ls4{letter-spacing:6.021591pt;}
.ls37{letter-spacing:6.352640pt;}
.ls40{letter-spacing:6.992640pt;}
.ls36{letter-spacing:7.632640pt;}
.ls57{letter-spacing:8.272640pt;}
.ls56{letter-spacing:8.912640pt;}
.ls5c{letter-spacing:9.552640pt;}
.ls52{letter-spacing:14.672640pt;}
.ls4d{letter-spacing:37.072640pt;}
.ls51{letter-spacing:40.912640pt;}
.ls58{letter-spacing:67.360000pt;}
.ls34{letter-spacing:177.232640pt;}
.ws12{word-spacing:-37.954373pt;}
.ws10{word-spacing:-37.664290pt;}
.ws1d{word-spacing:-37.658106pt;}
.ws14{word-spacing:-37.647425pt;}
.wsf{word-spacing:-37.482144pt;}
.ws11{word-spacing:-37.347222pt;}
.ws15{word-spacing:-37.297301pt;}
.ws13{word-spacing:-37.276950pt;}
.ws1c{word-spacing:-37.172947pt;}
.ws18{word-spacing:-36.252373pt;}
.ws35{word-spacing:-35.985707pt;}
.ws2c{word-spacing:-35.867307pt;}
.ws32{word-spacing:-35.744107pt;}
.wsa{word-spacing:-35.731840pt;}
.ws3b{word-spacing:-35.725973pt;}
.ws2b{word-spacing:-35.715840pt;}
.ws9{word-spacing:-35.675307pt;}
.ws5{word-spacing:-35.614507pt;}
.ws19{word-spacing:-35.577173pt;}
.ws1b{word-spacing:-35.559040pt;}
.ws31{word-spacing:-35.498240pt;}
.ws30{word-spacing:-35.468800pt;}
.ws29{word-spacing:-35.450240pt;}
.ws6{word-spacing:-35.431040pt;}
.ws2a{word-spacing:-35.407360pt;}
.ws17{word-spacing:-35.364373pt;}
.ws1a{word-spacing:-35.344107pt;}
.ws2d{word-spacing:-35.311573pt;}
.ws8{word-spacing:-35.290773pt;}
.ws36{word-spacing:-35.277973pt;}
.ws3a{word-spacing:-35.265707pt;}
.ws16{word-spacing:-35.227307pt;}
.ws34{word-spacing:-35.214507pt;}
.ws4{word-spacing:-35.181973pt;}
.ws27{word-spacing:-32.016000pt;}
.ws33{word-spacing:-16.945280pt;}
.ws23{word-spacing:-16.190700pt;}
.ws26{word-spacing:-16.140104pt;}
.ws25{word-spacing:-15.836528pt;}
.ws24{word-spacing:-15.819663pt;}
.ws1e{word-spacing:-15.566009pt;}
.ws2f{word-spacing:-15.311360pt;}
.ws1{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2e{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.600000pt;}
.ws39{word-spacing:-13.552533pt;}
.ws3c{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.280000pt;}
.ws38{word-spacing:-13.232640pt;}
.ws3d{word-spacing:-12.960000pt;}
.ws37{word-spacing:-12.592000pt;}
.ws21{word-spacing:-11.904000pt;}
.wse{word-spacing:-9.718933pt;}
.ws3{word-spacing:-9.607680pt;}
.wsd{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.078933pt;}
.ws20{word-spacing:-8.000000pt;}
.ws1f{word-spacing:-7.936000pt;}
.ws28{word-spacing:0.000000pt;}
.ws22{word-spacing:4.081406pt;}
._1{margin-left:-11.513813pt;}
._17{margin-left:-8.032853pt;}
._7{margin-left:-6.930490pt;}
._16{margin-left:-4.906027pt;}
._a{margin-left:-3.717530pt;}
._5{margin-left:-2.247040pt;}
._0{margin-left:-0.972160pt;}
._3{width:1.081600pt;}
._6{width:2.496640pt;}
._9{width:3.499599pt;}
._10{width:4.540753pt;}
._13{width:5.452139pt;}
._e{width:6.349931pt;}
._8{width:7.391054pt;}
._12{width:8.805245pt;}
._11{width:9.879792pt;}
._2{width:10.782720pt;}
._b{width:12.206438pt;}
._14{width:13.198720pt;}
._15{width:14.607260pt;}
._4{width:16.195627pt;}
._f{width:17.783460pt;}
._d{width:19.117815pt;}
._c{width:20.135159pt;}
._18{width:24.965760pt;}
._19{width:25.885440pt;}
._1d{width:30.431787pt;}
._1e{width:31.475627pt;}
._1c{width:53.385600pt;}
._1b{width:56.634880pt;}
._1a{width:58.434347pt;}
._23{width:67.083947pt;}
._21{width:121.258880pt;}
._20{width:122.188800pt;}
._22{width:164.366080pt;}
._1f{width:986.172800pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsc{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.360000pt;}
.y50{bottom:4.453333pt;}
.y4e{bottom:5.600000pt;}
.y37{bottom:6.240000pt;}
.y2{bottom:8.826667pt;}
.y41{bottom:17.760000pt;}
.y4{bottom:20.186667pt;}
.y40{bottom:24.960000pt;}
.y4d{bottom:26.560000pt;}
.y36{bottom:26.920000pt;}
.y3{bottom:42.586667pt;}
.y35{bottom:47.400000pt;}
.y4c{bottom:47.514667pt;}
.y7{bottom:50.720000pt;}
.y3f{bottom:51.354667pt;}
.y3e{bottom:61.274667pt;}
.y4b{bottom:66.234667pt;}
.y34{bottom:70.600000pt;}
.y3d{bottom:71.674667pt;}
.y4a{bottom:75.034667pt;}
.y3c{bottom:83.354667pt;}
.y7a{bottom:83.872000pt;}
.yb7{bottom:86.272000pt;}
.y49{bottom:91.834667pt;}
.y38{bottom:91.872000pt;}
.ya3{bottom:92.832000pt;}
.y33{bottom:93.960000pt;}
.y3b{bottom:102.874667pt;}
.yb6{bottom:103.392000pt;}
.y79{bottom:107.072000pt;}
.y48{bottom:107.514667pt;}
.yde{bottom:108.832000pt;}
.y47{bottom:113.274667pt;}
.ya2{bottom:116.192000pt;}
.y110{bottom:116.832000pt;}
.y32{bottom:117.160000pt;}
.y46{bottom:127.034667pt;}
.y78{bottom:130.272000pt;}
.ydd{bottom:132.032000pt;}
.y10f{bottom:132.992000pt;}
.ya1{bottom:139.386667pt;}
.y31{bottom:140.360000pt;}
.y45{bottom:140.794667pt;}
.y10e{bottom:150.746667pt;}
.y77{bottom:150.906667pt;}
.ydc{bottom:152.666667pt;}
.y44{bottom:154.714667pt;}
.y3a{bottom:157.914667pt;}
.y30{bottom:161.000000pt;}
.ya0{bottom:162.586667pt;}
.y39{bottom:167.354667pt;}
.y10d{bottom:167.866667pt;}
.y43{bottom:168.474667pt;}
.y76{bottom:171.386667pt;}
.ydb{bottom:173.306667pt;}
.y2f{bottom:181.480000pt;}
.y42{bottom:182.234667pt;}
.y10c{bottom:183.226667pt;}
.y9f{bottom:185.786667pt;}
.yda{bottom:193.786667pt;}
.y75{bottom:194.586667pt;}
.y10b{bottom:198.426667pt;}
.y2e{bottom:202.120000pt;}
.y9e{bottom:208.986667pt;}
.y10a{bottom:213.786667pt;}
.yd9{bottom:216.986667pt;}
.y74{bottom:217.786667pt;}
.yab{bottom:217.946667pt;}
.y2d{bottom:222.600000pt;}
.y109{bottom:229.146667pt;}
.y9d{bottom:232.346667pt;}
.yaa{bottom:234.906667pt;}
.yd8{bottom:237.466667pt;}
.y73{bottom:238.426667pt;}
.y1d{bottom:241.320000pt;}
.y2c{bottom:243.240000pt;}
.y108{bottom:244.506667pt;}
.y9c{bottom:255.546667pt;}
.y72{bottom:256.346667pt;}
.yd7{bottom:258.106667pt;}
.y107{bottom:259.866667pt;}
.y2b{bottom:261.026667pt;}
.y1c{bottom:262.786667pt;}
.y71{bottom:274.266667pt;}
.y106{bottom:275.226667pt;}
.y9b{bottom:278.746667pt;}
.y2a{bottom:278.946667pt;}
.y1b{bottom:284.226667pt;}
.yf{bottom:285.946667pt;}
.y105{bottom:290.426667pt;}
.y70{bottom:294.746667pt;}
.yd6{bottom:299.066667pt;}
.y9a{bottom:299.386667pt;}
.y29{bottom:299.426667pt;}
.y1a{bottom:305.666667pt;}
.y104{bottom:305.826667pt;}
.y99{bottom:317.346667pt;}
.y6f{bottom:317.986667pt;}
.y28{bottom:320.066667pt;}
.y103{bottom:321.186667pt;}
.yd5{bottom:322.466667pt;}
.y19{bottom:327.106667pt;}
.y98{bottom:335.106667pt;}
.y102{bottom:336.546667pt;}
.y27{bottom:337.826667pt;}
.y6e{bottom:341.186667pt;}
.yd4{bottom:342.946667pt;}
.y18{bottom:348.546667pt;}
.y101{bottom:351.906667pt;}
.y26{bottom:355.746667pt;}
.yb5{bottom:358.306667pt;}
.y97{bottom:361.026667pt;}
.yd3{bottom:363.586667pt;}
.y6d{bottom:364.386667pt;}
.y100{bottom:367.266667pt;}
.y17{bottom:369.986667pt;}
.y25{bottom:373.666667pt;}
.y96{bottom:378.946667pt;}
.yd2{bottom:381.346667pt;}
.yff{bottom:382.466667pt;}
.y6c{bottom:387.586667pt;}
.y16{bottom:391.586667pt;}
.yb4{bottom:393.186667pt;}
.y24{bottom:394.146667pt;}
.y95{bottom:396.706667pt;}
.yfe{bottom:397.826667pt;}
.yd1{bottom:401.986667pt;}
.y6b{bottom:410.786667pt;}
.y15{bottom:413.026667pt;}
.yfd{bottom:413.186667pt;}
.y94{bottom:414.626667pt;}
.y23{bottom:417.346667pt;}
.yd0{bottom:422.626667pt;}
.yfc{bottom:428.546667pt;}
.y6a{bottom:431.426667pt;}
.y93{bottom:432.386667pt;}
.y14{bottom:434.466667pt;}
.y22{bottom:437.986667pt;}
.ycf{bottom:440.386667pt;}
.yfb{bottom:443.906667pt;}
.y69{bottom:451.906667pt;}
.y21{bottom:455.746667pt;}
.y13{bottom:455.906667pt;}
.y92{bottom:458.306667pt;}
.yfa{bottom:459.266667pt;}
.yce{bottom:461.026667pt;}
.yf9{bottom:474.466667pt;}
.y68{bottom:475.106667pt;}
.y20{bottom:476.226667pt;}
.y12{bottom:477.346667pt;}
.ycd{bottom:478.786667pt;}
.yf8{bottom:489.826667pt;}
.y91{bottom:493.986667pt;}
.ya9{bottom:494.626667pt;}
.y1f{bottom:496.906667pt;}
.y67{bottom:498.466667pt;}
.y11{bottom:498.826667pt;}
.ycc{bottom:499.266667pt;}
.yf7{bottom:505.186667pt;}
.y90{bottom:511.906667pt;}
.ya8{bottom:512.546667pt;}
.y1e{bottom:514.826667pt;}
.ycb{bottom:519.746667pt;}
.y10{bottom:520.426667pt;}
.yf6{bottom:520.546667pt;}
.y66{bottom:521.666667pt;}
.y8f{bottom:529.826667pt;}
.ya7{bottom:533.026667pt;}
.yf5{bottom:535.906667pt;}
.yca{bottom:540.413333pt;}
.y65{bottom:544.893333pt;}
.y8e{bottom:547.613333pt;}
.yf4{bottom:551.133333pt;}
.ya6{bottom:553.693333pt;}
.yc9{bottom:561.053333pt;}
.y64{bottom:565.533333pt;}
.yf3{bottom:566.493333pt;}
.ya5{bottom:574.173333pt;}
.y8d{bottom:576.093333pt;}
.yc8{bottom:578.973333pt;}
.yf2{bottom:581.853333pt;}
.y63{bottom:586.013333pt;}
.y8c{bottom:596.733333pt;}
.yf1{bottom:597.213333pt;}
.y62{bottom:606.653333pt;}
.yf0{bottom:612.573333pt;}
.y8b{bottom:614.653333pt;}
.yc7{bottom:617.213333pt;}
.y61{bottom:627.133333pt;}
.yef{bottom:627.933333pt;}
.y8a{bottom:632.573333pt;}
.yb3{bottom:639.773333pt;}
.yc6{bottom:640.413333pt;}
.yee{bottom:643.133333pt;}
.y60{bottom:650.333333pt;}
.yed{bottom:658.493333pt;}
.yb2{bottom:663.133333pt;}
.yc5{bottom:663.613333pt;}
.y89{bottom:668.253333pt;}
.y5f{bottom:673.533333pt;}
.yec{bottom:673.853333pt;}
.y88{bottom:686.013333pt;}
.yb1{bottom:686.333333pt;}
.yc4{bottom:686.973333pt;}
.yeb{bottom:689.213333pt;}
.y5e{bottom:694.173333pt;}
.yea{bottom:704.573333pt;}
.y87{bottom:706.493333pt;}
.yb0{bottom:709.533333pt;}
.yc3{bottom:710.173333pt;}
.y5d{bottom:712.093333pt;}
.ye9{bottom:719.933333pt;}
.y86{bottom:727.133333pt;}
.y5c{bottom:732.573333pt;}
.yaf{bottom:732.733333pt;}
.yc2{bottom:733.373333pt;}
.ye8{bottom:735.133333pt;}
.y85{bottom:747.613333pt;}
.ye7{bottom:751.293333pt;}
.y5b{bottom:753.213333pt;}
.yae{bottom:753.373333pt;}
.yc1{bottom:756.573333pt;}
.y84{bottom:768.253333pt;}
.ye6{bottom:769.213333pt;}
.yad{bottom:773.893333pt;}
.yc0{bottom:779.813333pt;}
.y5a{bottom:781.573333pt;}
.ye5{bottom:787.173333pt;}
.y83{bottom:788.773333pt;}
.yac{bottom:790.853333pt;}
.ybf{bottom:800.453333pt;}
.y59{bottom:802.213333pt;}
.ye4{bottom:804.933333pt;}
.y82{bottom:811.973333pt;}
.ye{bottom:819.813333pt;}
.y58{bottom:820.133333pt;}
.ybe{bottom:820.933333pt;}
.ye3{bottom:822.853333pt;}
.y81{bottom:835.173333pt;}
.y57{bottom:840.613333pt;}
.ybd{bottom:841.573333pt;}
.yd{bottom:841.893333pt;}
.y80{bottom:855.813333pt;}
.ye2{bottom:858.533333pt;}
.ybc{bottom:859.493333pt;}
.y56{bottom:863.813333pt;}
.yc{bottom:865.093333pt;}
.y7f{bottom:876.293333pt;}
.ybb{bottom:877.253333pt;}
.ye1{bottom:879.013333pt;}
.y55{bottom:884.453333pt;}
.yb{bottom:884.933333pt;}
.yba{bottom:895.173333pt;}
.y7e{bottom:899.493333pt;}
.ye0{bottom:899.653333pt;}
.y54{bottom:902.373333pt;}
.ya{bottom:905.573333pt;}
.yb9{bottom:913.093333pt;}
.y53{bottom:920.133333pt;}
.y7d{bottom:922.853333pt;}
.y9{bottom:924.773333pt;}
.yb8{bottom:930.853333pt;}
.y52{bottom:940.613333pt;}
.ydf{bottom:943.333333pt;}
.y111{bottom:945.093333pt;}
.y7c{bottom:946.053333pt;}
.ya4{bottom:948.773333pt;}
.y8{bottom:952.773333pt;}
.y4f{bottom:955.680000pt;}
.y51{bottom:963.813333pt;}
.y7b{bottom:966.693333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h16{height:3.742500pt;}
.h12{height:18.768750pt;}
.h18{height:19.648125pt;}
.h11{height:22.343750pt;}
.h1a{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h15{height:33.867188pt;}
.h13{height:34.664062pt;}
.h14{height:35.085938pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.hb{height:37.479688pt;}
.h1c{height:38.672812pt;}
.h5{height:41.112500pt;}
.ha{height:42.870313pt;}
.h19{height:50.882812pt;}
.h17{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1b{height:56.891250pt;}
.h3{height:58.563750pt;}
.hf{height:59.355688pt;}
.h2{height:75.552000pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h10{height:193.440000pt;}
.hc{height:529.053333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.272000pt;}
.x13{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1c{left:16.160000pt;}
.x16{left:17.760000pt;}
.x15{left:22.720000pt;}
.x1e{left:25.920000pt;}
.x21{left:37.640000pt;}
.xf{left:38.880000pt;}
.x1d{left:42.400000pt;}
.x10{left:45.120000pt;}
.xe{left:48.800000pt;}
.x1f{left:50.720000pt;}
.x18{left:55.240000pt;}
.x14{left:59.674667pt;}
.x12{left:61.914667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x20{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x2b{left:97.151988pt;}
.x3f{left:100.831988pt;}
.x11{left:110.714667pt;}
.x5{left:125.640000pt;}
.x22{left:128.040000pt;}
.x23{left:146.120000pt;}
.x3e{left:152.186655pt;}
.x3{left:162.106667pt;}
.x28{left:163.240000pt;}
.x38{left:164.826655pt;}
.x35{left:168.666655pt;}
.xc{left:169.946655pt;}
.x24{left:176.200000pt;}
.x25{left:182.920000pt;}
.x30{left:184.346655pt;}
.x17{left:194.746667pt;}
.x1a{left:236.706667pt;}
.x26{left:249.186667pt;}
.x3c{left:250.946655pt;}
.x3b{left:252.066655pt;}
.x2e{left:260.226655pt;}
.x31{left:272.386655pt;}
.x27{left:286.626667pt;}
.x39{left:346.466655pt;}
.x36{left:350.306655pt;}
.xb{left:352.386655pt;}
.x3d{left:410.973322pt;}
.xa{left:464.413322pt;}
.x19{left:475.146667pt;}
.xd{left:498.333322pt;}
.x3a{left:563.173322pt;}
.x32{left:567.973322pt;}
.x2d{left:568.933322pt;}
.x2a{left:592.453322pt;}
.x2c{left:612.453322pt;}
.x37{left:659.013322pt;}
.x34{left:678.533322pt;}
.x8{left:680.933322pt;}
.x33{left:689.119988pt;}
.x2f{left:695.039988pt;}
.x7{left:697.279988pt;}
}




    .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; }
  