
    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_f89308123a176bee5a9e8bfd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124000;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_34e773c00fd16920ff117992.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914000;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_3e09070ad4221a8d8e7ad134.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138000;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_6760112a60c8132e98ef09cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757000;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_1d9e4c26f564623d121829e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156000;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_899bd8f4de04b3aa55154862.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718000;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_9600fb519cae8ae3c8ccb709.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_107462472177e3de0dfe6238.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_4c33910667f5c849593ac9a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_dfab754a7704121413f57b35.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939000;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;}
.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);}
.m1{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);}
.v3{vertical-align:-15.984009px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.000000px;}
.v1{vertical-align:19.980103px;}
.v5{vertical-align:39.000000px;}
.ls16{letter-spacing:-2.592000px;}
.ls17{letter-spacing:-1.620000px;}
.ls15{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls19{letter-spacing:-0.024652px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.479907px;}
.ls9{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.840000px;}
.ls6{letter-spacing:1.800000px;}
.ls2{letter-spacing:1.980000px;}
.lsc{letter-spacing:2.280000px;}
.ls8{letter-spacing:2.520000px;}
.ls3{letter-spacing:9.000000px;}
.lse{letter-spacing:9.870000px;}
.lsd{letter-spacing:18.360000px;}
.ls10{letter-spacing:53.031601px;}
.ls11{letter-spacing:56.809204px;}
.lsf{letter-spacing:121.237376px;}
.ls7{letter-spacing:623.071643px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-60.000000px;}
.ws35{word-spacing:-24.300000px;}
.ws0{word-spacing:-21.840000px;}
.ws4{word-spacing:-20.580000px;}
.ws17{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.500000px;}
.ws16{word-spacing:-15.000000px;}
.ws40{word-spacing:-14.280000px;}
.ws15{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.500000px;}
.ws80{word-spacing:-13.446000px;}
.wsd{word-spacing:-13.134000px;}
.ws13{word-spacing:-10.362000px;}
.ws19{word-spacing:-9.870000px;}
.wsf{word-spacing:-9.174000px;}
.ws2{word-spacing:-9.000000px;}
.ws10{word-spacing:-8.844000px;}
.ws3f{word-spacing:-8.745000px;}
.wsc{word-spacing:-7.854000px;}
.ws7{word-spacing:-7.590000px;}
.ws14{word-spacing:-7.326000px;}
.ws3b{word-spacing:-6.996000px;}
.wsb{word-spacing:-6.402000px;}
.ws9{word-spacing:-3.498000px;}
.ws8{word-spacing:-2.376000px;}
.ws3e{word-spacing:-2.280000px;}
.ws48{word-spacing:-1.740000px;}
.ws2f{word-spacing:-1.728000px;}
.wsa{word-spacing:-1.584000px;}
.ws7e{word-spacing:-1.296000px;}
.ws8b{word-spacing:-1.242000px;}
.ws2e{word-spacing:-1.080000px;}
.ws12{word-spacing:-1.056000px;}
.ws11{word-spacing:-0.990000px;}
.ws3d{word-spacing:-0.972000px;}
.ws43{word-spacing:-0.960000px;}
.ws44{word-spacing:-0.600000px;}
.ws30{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.420000px;}
.ws6{word-spacing:-0.360000px;}
.wse{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws8a{word-spacing:0.024652px;}
.ws45{word-spacing:0.120000px;}
.ws52{word-spacing:0.420000px;}
.ws53{word-spacing:0.540000px;}
.ws3c{word-spacing:0.600000px;}
.ws4d{word-spacing:1.020000px;}
.ws4a{word-spacing:1.500000px;}
.ws27{word-spacing:1.740000px;}
.ws2b{word-spacing:2.280000px;}
.ws7c{word-spacing:2.820000px;}
.ws59{word-spacing:2.940000px;}
.ws2d{word-spacing:3.360000px;}
.ws42{word-spacing:3.600000px;}
.ws20{word-spacing:4.260000px;}
.ws49{word-spacing:4.440000px;}
.ws4b{word-spacing:4.500000px;}
.ws31{word-spacing:4.680000px;}
.ws47{word-spacing:4.800000px;}
.ws55{word-spacing:5.160000px;}
.ws32{word-spacing:5.460000px;}
.ws1f{word-spacing:5.580000px;}
.ws2c{word-spacing:5.880000px;}
.ws25{word-spacing:6.840000px;}
.ws2a{word-spacing:6.960000px;}
.ws5c{word-spacing:7.080000px;}
.ws4c{word-spacing:7.140000px;}
.ws26{word-spacing:7.320000px;}
.ws54{word-spacing:8.580000px;}
.ws56{word-spacing:8.820000px;}
.ws1e{word-spacing:8.880000px;}
.ws28{word-spacing:9.000000px;}
.ws46{word-spacing:9.060000px;}
.ws29{word-spacing:9.480000px;}
.ws41{word-spacing:9.720000px;}
.ws1d{word-spacing:10.140000px;}
.ws23{word-spacing:10.380000px;}
.ws5d{word-spacing:11.700000px;}
.ws51{word-spacing:13.200000px;}
.ws7d{word-spacing:13.320000px;}
.ws24{word-spacing:14.520000px;}
.ws1c{word-spacing:15.900000px;}
.ws50{word-spacing:16.080000px;}
.ws5b{word-spacing:16.740000px;}
.ws22{word-spacing:18.000000px;}
.ws58{word-spacing:18.660000px;}
.ws1b{word-spacing:19.560000px;}
.ws4e{word-spacing:22.620000px;}
.ws4f{word-spacing:23.700000px;}
.ws1a{word-spacing:24.900000px;}
.ws57{word-spacing:31.200000px;}
.ws5a{word-spacing:53.040000px;}
.ws3a{word-spacing:54.977400px;}
.ws6a{word-spacing:58.200000px;}
.ws33{word-spacing:65.460000px;}
.ws34{word-spacing:75.006000px;}
.ws7a{word-spacing:77.597993px;}
.ws79{word-spacing:78.731993px;}
.ws39{word-spacing:81.809990px;}
.ws82{word-spacing:87.479993px;}
.ws81{word-spacing:87.911993px;}
.ws6d{word-spacing:88.991993px;}
.ws6f{word-spacing:89.099993px;}
.ws7f{word-spacing:89.855993px;}
.ws74{word-spacing:92.285993px;}
.ws73{word-spacing:93.311993px;}
.ws85{word-spacing:93.527993px;}
.ws75{word-spacing:94.985993px;}
.ws6c{word-spacing:95.363993px;}
.ws89{word-spacing:95.633993px;}
.ws6e{word-spacing:96.929993px;}
.ws83{word-spacing:102.005993px;}
.ws86{word-spacing:102.329993px;}
.ws7b{word-spacing:102.491993px;}
.ws70{word-spacing:104.921993px;}
.ws72{word-spacing:106.541993px;}
.ws88{word-spacing:107.297993px;}
.ws71{word-spacing:107.945993px;}
.ws84{word-spacing:109.835993px;}
.ws87{word-spacing:111.293993px;}
.ws76{word-spacing:116.585993px;}
.ws78{word-spacing:121.121993px;}
.ws77{word-spacing:124.361993px;}
.ws37{word-spacing:169.236000px;}
.ws36{word-spacing:245.483990px;}
.ws63{word-spacing:281.998800px;}
.ws5f{word-spacing:346.582800px;}
.ws60{word-spacing:358.776000px;}
.ws64{word-spacing:480.924000px;}
.ws38{word-spacing:492.696000px;}
.ws66{word-spacing:590.166000px;}
.ws68{word-spacing:590.176800px;}
.ws61{word-spacing:608.364000px;}
.ws67{word-spacing:631.373400px;}
.ws69{word-spacing:761.940000px;}
.ws65{word-spacing:989.880000px;}
.ws6b{word-spacing:1028.879980px;}
.ws62{word-spacing:1043.340000px;}
.ws5e{word-spacing:1043.350190px;}
._3{margin-left:-38.682033px;}
._c{margin-left:-34.560000px;}
._23{margin-left:-33.095321px;}
._b{margin-left:-30.286800px;}
._21{margin-left:-28.529801px;}
._24{margin-left:-22.080000px;}
._6{margin-left:-18.924713px;}
._22{margin-left:-14.760571px;}
._10{margin-left:-13.050012px;}
._1e{margin-left:-12.000000px;}
._a{margin-left:-10.693200px;}
._30{margin-left:-9.654000px;}
._0{margin-left:-8.100000px;}
._4{margin-left:-6.318000px;}
._1{margin-left:-4.500000px;}
._2{margin-left:-2.718000px;}
._5{margin-left:-1.512000px;}
._e{width:1.266000px;}
._8{width:2.315400px;}
._9{width:5.724531px;}
._7{width:6.759033px;}
._20{width:13.194000px;}
._1d{width:16.439429px;}
._d{width:20.034000px;}
._1f{width:56.831887px;}
._3c{width:83.267977px;}
._1c{width:94.769990px;}
._40{width:102.383977px;}
._3b{width:121.391977px;}
._3f{width:136.368000px;}
._12{width:139.535992px;}
._31{width:144.359985px;}
._3d{width:173.123977px;}
._2a{width:176.796000px;}
._33{width:182.249977px;}
._3a{width:193.805977px;}
._36{width:207.197977px;}
._42{width:209.357977px;}
._43{width:215.093977px;}
._32{width:222.857977px;}
._28{width:235.836000px;}
._11{width:246.401990px;}
._2b{width:248.868000px;}
._f{width:267.018000px;}
._34{width:269.088577px;}
._35{width:284.561977px;}
._13{width:309.636000px;}
._25{width:336.798000px;}
._18{width:347.165990px;}
._26{width:349.020000px;}
._27{width:355.374000px;}
._29{width:394.812000px;}
._16{width:413.694000px;}
._38{width:439.019977px;}
._1b{width:509.382000px;}
._1a{width:519.156000px;}
._14{width:531.810000px;}
._17{width:540.648000px;}
._15{width:551.826000px;}
._19{width:599.292000px;}
._2e{width:781.920000px;}
._2c{width:787.914000px;}
._39{width:855.790124px;}
._2f{width:879.516000px;}
._2d{width:895.752000px;}
._3e{width:1033.344000px;}
._37{width:1045.602000px;}
._41{width:1121.796000px;}
.fc4{color:rgb(0,73,150);}
.fc3{color:rgb(234,86,13);}
.fc2{color:rgb(87,87,86);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,144,144);}
.fsd{font-size:24.651600px;}
.fsc{font-size:27.984000px;}
.fs6{font-size:34.199999px;}
.fsb{font-size:34.980000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs9{font-size:141.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y10b{bottom:2.319752px;}
.ya{bottom:53.452050px;}
.y10a{bottom:62.791500px;}
.y9{bottom:63.606000px;}
.y109{bottom:72.506908px;}
.y108{bottom:79.902388px;}
.y107{bottom:87.297868px;}
.y8{bottom:88.608000px;}
.y106{bottom:94.693348px;}
.y7{bottom:105.105000px;}
.y6{bottom:121.605000px;}
.y41{bottom:121.776604px;}
.y68{bottom:127.559097px;}
.y103{bottom:129.877350px;}
.y105{bottom:129.881850px;}
.y94{bottom:131.555099px;}
.yc6{bottom:140.790450px;}
.y40{bottom:141.276604px;}
.y67{bottom:145.955097px;}
.y102{bottom:147.875850px;}
.y104{bottom:147.877350px;}
.y66{bottom:156.359250px;}
.y3f{bottom:160.776604px;}
.y93{bottom:167.608498px;}
.yc5{bottom:168.006450px;}
.y101{bottom:170.083350px;}
.yff{bottom:170.089193px;}
.y65{bottom:170.759250px;}
.y3e{bottom:180.276604px;}
.y64{bottom:185.159248px;}
.y92{bottom:187.108498px;}
.y100{bottom:188.083350px;}
.yfe{bottom:188.084693px;}
.yc4{bottom:195.222450px;}
.y63{bottom:199.559257px;}
.y91{bottom:206.608498px;}
.y3d{bottom:208.280548px;}
.yfd{bottom:210.292193px;}
.y62{bottom:217.955246px;}
.yc3{bottom:222.436340px;}
.y90{bottom:226.108498px;}
.yfc{bottom:228.287693px;}
.y3c{bottom:242.636559px;}
.y8f{bottom:249.860550px;}
.yfb{bottom:250.495193px;}
.yc2{bottom:261.411140px;}
.y3b{bottom:262.136559px;}
.yfa{bottom:268.498195px;}
.y8e{bottom:273.612442px;}
.y3a{bottom:281.636559px;}
.yf7{bottom:290.701195px;}
.yf9{bottom:290.705695px;}
.y8d{bottom:293.112442px;}
.y39{bottom:305.388450px;}
.yc1{bottom:307.143458px;}
.yf6{bottom:308.698060px;}
.yf8{bottom:308.701195px;}
.y8c{bottom:316.864357px;}
.y38{bottom:329.140343px;}
.yf5{bottom:330.905560px;}
.yc0{bottom:334.359458px;}
.y8b{bottom:336.364357px;}
.y61{bottom:344.340591px;}
.y37{bottom:352.892395px;}
.yf4{bottom:353.113060px;}
.yf2{bottom:353.120561px;}
.y8a{bottom:360.116409px;}
.ybf{bottom:361.575458px;}
.y60{bottom:368.092644px;}
.yf3{bottom:371.113060px;}
.yf1{bottom:371.116061px;}
.y36{bottom:380.896339px;}
.ybe{bottom:388.791458px;}
.y5f{bottom:391.844559px;}
.yef{bottom:393.319061px;}
.y89{bottom:393.872269px;}
.yf0{bottom:411.319061px;}
.yee{bottom:411.327908px;}
.y5e{bottom:411.344559px;}
.y88{bottom:413.372269px;}
.y35{bottom:415.252213px;}
.ybd{bottom:416.005371px;}
.y87{bottom:432.872269px;}
.yed{bottom:433.535408px;}
.y34{bottom:434.752213px;}
.y5d{bottom:435.096588px;}
.yec{bottom:451.530908px;}
.y86{bottom:452.372269px;}
.y33{bottom:454.252213px;}
.y5c{bottom:454.596588px;}
.ybc{bottom:454.980011px;}
.y85{bottom:471.872269px;}
.yea{bottom:473.738405px;}
.y32{bottom:473.752213px;}
.y5b{bottom:476.222534px;}
.ye9{bottom:491.733905px;}
.y31{bottom:493.252213px;}
.y84{bottom:495.624298px;}
.ybb{bottom:500.722663px;}
.y5a{bottom:504.226500px;}
.ye8{bottom:509.729405px;}
.yeb{bottom:509.742905px;}
.y30{bottom:512.752213px;}
.y83{bottom:515.124298px;}
.yb9{bottom:527.932663px;}
.ye6{bottom:531.936905px;}
.y2f{bottom:532.252213px;}
.y59{bottom:538.582352px;}
.y82{bottom:538.876190px;}
.yb8{bottom:547.421964px;}
.yba{bottom:547.432663px;}
.ye7{bottom:549.936905px;}
.ye5{bottom:549.939883px;}
.y2e{bottom:551.752213px;}
.y81{bottom:558.376190px;}
.y2d{bottom:571.252213px;}
.ye3{bottom:572.142883px;}
.yb7{bottom:574.637964px;}
.y80{bottom:577.876190px;}
.y132{bottom:583.752317px;}
.ye2{bottom:590.142883px;}
.y2c{bottom:599.256134px;}
.y7f{bottom:601.628082px;}
.y131{bottom:601.747817px;}
.y134{bottom:601.747971px;}
.yb6{bottom:601.853964px;}
.ye4{bottom:608.142883px;}
.ye1{bottom:608.154708px;}
.y19{bottom:610.422160px;}
.y58{bottom:615.761438px;}
.y130{bottom:619.743317px;}
.y133{bottom:619.747971px;}
.y7e{bottom:625.380157px;}
.yb5{bottom:629.069964px;}
.ye0{bottom:630.362208px;}
.y2b{bottom:633.611984px;}
.y18{bottom:635.674189px;}
.y12f{bottom:641.950817px;}
.y57{bottom:642.977438px;}
.ydf{bottom:648.357708px;}
.y5{bottom:650.194931px;}
.y2a{bottom:653.111984px;}
.yb4{bottom:656.285964px;}
.y7d{bottom:659.136017px;}
.y12e{bottom:659.946317px;}
.y17{bottom:660.926082px;}
.y56{bottom:670.193438px;}
.ydc{bottom:670.565205px;}
.y29{bottom:672.610906px;}
.y4{bottom:677.195718px;}
.y12d{bottom:682.153817px;}
.y7c{bottom:682.888046px;}
.yb3{bottom:683.501964px;}
.y16{bottom:686.178157px;}
.ydb{bottom:688.560705px;}
.yde{bottom:688.574205px;}
.y28{bottom:692.110906px;}
.y55{bottom:697.409438px;}
.y12b{bottom:704.365814px;}
.yda{bottom:706.556205px;}
.ydd{bottom:706.569705px;}
.y7b{bottom:706.639938px;}
.yb2{bottom:710.717964px;}
.y15{bottom:711.430049px;}
.y27{bottom:711.610906px;}
.y12a{bottom:722.365814px;}
.y129{bottom:722.367274px;}
.y54{bottom:724.625438px;}
.yd9{bottom:728.763705px;}
.y3{bottom:730.220718px;}
.y26{bottom:731.110906px;}
.y14{bottom:736.689016px;}
.yb1{bottom:737.933964px;}
.y128{bottom:740.362774px;}
.y12c{bottom:740.365814px;}
.y7a{bottom:740.395935px;}
.yd8{bottom:746.759205px;}
.y53{bottom:751.841438px;}
.yb0{bottom:755.929464px;}
.y25{bottom:759.115906px;}
.y79{bottom:759.895935px;}
.y13{bottom:761.934016px;}
.y127{bottom:762.570274px;}
.yd6{bottom:768.984705px;}
.y2{bottom:770.472565px;}
.yaf{bottom:773.924964px;}
.ya3{bottom:773.927673px;}
.y24{bottom:778.615906px;}
.y52{bottom:779.057438px;}
.y126{bottom:780.565774px;}
.y78{bottom:783.647827px;}
.yd5{bottom:786.980205px;}
.y12{bottom:787.186091px;}
.ya2{bottom:797.679565px;}
.y23{bottom:798.115906px;}
.y51{bottom:798.551438px;}
.yae{bottom:801.140964px;}
.y124{bottom:802.791271px;}
.yd4{bottom:804.975705px;}
.y77{bottom:807.399719px;}
.y11{bottom:812.437983px;}
.ya1{bottom:817.179565px;}
.y22{bottom:817.615906px;}
.y50{bottom:818.045438px;}
.y120{bottom:820.777771px;}
.y123{bottom:820.786771px;}
.yd7{bottom:822.966705px;}
.yd3{bottom:822.971205px;}
.y1{bottom:824.472565px;}
.y76{bottom:826.899719px;}
.yad{bottom:828.356964px;}
.y21{bottom:837.115906px;}
.y10{bottom:837.689875px;}
.y125{bottom:838.777771px;}
.y11f{bottom:838.780615px;}
.y122{bottom:838.782271px;}
.ya0{bottom:840.931641px;}
.yd2{bottom:840.966705px;}
.y4e{bottom:845.247936px;}
.y75{bottom:850.651794px;}
.yac{bottom:855.570923px;}
.y20{bottom:856.615906px;}
.y11e{bottom:856.776115px;}
.y121{bottom:856.777771px;}
.yf{bottom:862.941859px;}
.y4d{bottom:863.243436px;}
.yd1{bottom:864.826355px;}
.y1f{bottom:876.115906px;}
.y9f{bottom:876.937500px;}
.y11c{bottom:878.983612px;}
.y4c{bottom:881.238936px;}
.yd0{bottom:884.326355px;}
.y74{bottom:884.407837px;}
.ye{bottom:888.193843px;}
.yab{bottom:894.545654px;}
.y1e{bottom:895.615906px;}
.y11a{bottom:896.983612px;}
.y9e{bottom:898.439575px;}
.y4b{bottom:899.234436px;}
.y73{bottom:903.907837px;}
.yd{bottom:913.445826px;}
.y11b{bottom:914.983612px;}
.y11d{bottom:914.988112px;}
.y119{bottom:914.995531px;}
.y9d{bottom:917.939575px;}
.y4a{bottom:921.486328px;}
.ycf{bottom:926.702728px;}
.y72{bottom:927.659729px;}
.y1d{bottom:927.871948px;}
.y117{bottom:937.203028px;}
.yc{bottom:938.690826px;}
.y49{bottom:939.486328px;}
.y4f{bottom:939.504934px;}
.y9c{bottom:939.689575px;}
.yaa{bottom:940.282312px;}
.yce{bottom:950.454620px;}
.y71{bottom:951.411713px;}
.y116{bottom:955.198528px;}
.y9b{bottom:961.191467px;}
.y48{bottom:966.700195px;}
.ya9{bottom:967.498312px;}
.y70{bottom:970.911713px;}
.y115{bottom:973.194028px;}
.y118{bottom:973.207528px;}
.ycd{bottom:974.206696px;}
.y9a{bottom:980.691467px;}
.ya8{bottom:985.493812px;}
.y47{bottom:986.200195px;}
.ycc{bottom:993.706696px;}
.y6f{bottom:994.663605px;}
.y114{bottom:995.401528px;}
.y99{bottom:1004.443542px;}
.ya7{bottom:1012.709812px;}
.y6e{bottom:1014.163605px;}
.ycb{bottom:1017.458588px;}
.y113{bottom:1017.609028px;}
.y46{bottom:1020.735626px;}
.y98{bottom:1023.943542px;}
.y112{bottom:1035.604528px;}
.yca{bottom:1036.958588px;}
.y6d{bottom:1037.915680px;}
.ya6{bottom:1039.925812px;}
.y97{bottom:1043.443542px;}
.y1a{bottom:1052.786224px;}
.y45{bottom:1052.991486px;}
.y110{bottom:1057.812026px;}
.yc9{bottom:1060.710480px;}
.y6c{bottom:1061.667572px;}
.ya5{bottom:1067.139771px;}
.y96{bottom:1067.195435px;}
.y10f{bottom:1075.807526px;}
.y95{bottom:1086.695435px;}
.yc8{bottom:1088.714355px;}
.y1c{bottom:1090.582622px;}
.y10e{bottom:1093.807526px;}
.y111{bottom:1093.816526px;}
.y6b{bottom:1095.423431px;}
.ya4{bottom:1106.114410px;}
.y44{bottom:1106.195435px;}
.yc7{bottom:1108.214355px;}
.y6a{bottom:1114.923431px;}
.y10d{bottom:1117.666992px;}
.y43{bottom:1125.695435px;}
.y1b{bottom:1129.569122px;}
.y10c{bottom:1137.166992px;}
.yb{bottom:1140.470398px;}
.y69{bottom:1142.927582px;}
.y42{bottom:1145.195435px;}
.h13{height:17.971016px;}
.hf{height:27.119991px;}
.h10{height:43.104000px;}
.h14{height:46.459499px;}
.h6{height:48.492000px;}
.hd{height:48.924000px;}
.h7{height:50.004000px;}
.ha{height:53.880000px;}
.hc{height:54.360000px;}
.h5{height:59.268000px;}
.h11{height:59.796000px;}
.he{height:63.360000px;}
.h3{height:63.504000px;}
.hb{height:64.656000px;}
.h4{height:75.432000px;}
.h8{height:77.784000px;}
.h12{height:93.360000px;}
.h9{height:130.566000px;}
.h2{height:166.680000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:89.739000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:39.337646px;}
.xa{left:106.299145px;}
.x16{left:112.674145px;}
.x10{left:114.990600px;}
.xf{left:123.307045px;}
.xb{left:127.554920px;}
.x12{left:131.987096px;}
.x13{left:140.314945px;}
.x17{left:167.943143px;}
.x15{left:170.453100px;}
.x2{left:181.997827px;}
.x4{left:258.951158px;}
.xc{left:265.129646px;}
.x11{left:280.815600px;}
.xe{left:312.997963px;}
.x18{left:338.016137px;}
.x7{left:398.022171px;}
.x14{left:455.337600px;}
.x5{left:469.899582px;}
.x8{left:503.713671px;}
.x1{left:514.727829px;}
.x9{left:523.518171px;}
.x3{left:551.712158px;}
.xd{left:567.291458px;}
.x19{left:665.430130px;}
.x1b{left:672.023987px;}
.x6{left:701.579086px;}
.x1a{left:711.361633px;}
@media print{
.v3{vertical-align:-14.208008pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.000000pt;}
.v1{vertical-align:17.760091pt;}
.v5{vertical-align:34.666667pt;}
.ls16{letter-spacing:-2.304000pt;}
.ls17{letter-spacing:-1.440000pt;}
.ls15{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls19{letter-spacing:-0.021913pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.426584pt;}
.ls9{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls6{letter-spacing:1.600000pt;}
.ls2{letter-spacing:1.760000pt;}
.lsc{letter-spacing:2.026667pt;}
.ls8{letter-spacing:2.240000pt;}
.ls3{letter-spacing:8.000000pt;}
.lse{letter-spacing:8.773333pt;}
.lsd{letter-spacing:16.320000pt;}
.ls10{letter-spacing:47.139201pt;}
.ls11{letter-spacing:50.497070pt;}
.lsf{letter-spacing:107.766557pt;}
.ls7{letter-spacing:553.841461pt;}
.ws18{word-spacing:-53.333333pt;}
.ws35{word-spacing:-21.600000pt;}
.ws0{word-spacing:-19.413333pt;}
.ws4{word-spacing:-18.293333pt;}
.ws17{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws16{word-spacing:-13.333333pt;}
.ws40{word-spacing:-12.693333pt;}
.ws15{word-spacing:-12.480000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws80{word-spacing:-11.952000pt;}
.wsd{word-spacing:-11.674667pt;}
.ws13{word-spacing:-9.210667pt;}
.ws19{word-spacing:-8.773333pt;}
.wsf{word-spacing:-8.154667pt;}
.ws2{word-spacing:-8.000000pt;}
.ws10{word-spacing:-7.861333pt;}
.ws3f{word-spacing:-7.773333pt;}
.wsc{word-spacing:-6.981333pt;}
.ws7{word-spacing:-6.746667pt;}
.ws14{word-spacing:-6.512000pt;}
.ws3b{word-spacing:-6.218667pt;}
.wsb{word-spacing:-5.690667pt;}
.ws9{word-spacing:-3.109333pt;}
.ws8{word-spacing:-2.112000pt;}
.ws3e{word-spacing:-2.026667pt;}
.ws48{word-spacing:-1.546667pt;}
.ws2f{word-spacing:-1.536000pt;}
.wsa{word-spacing:-1.408000pt;}
.ws7e{word-spacing:-1.152000pt;}
.ws8b{word-spacing:-1.104000pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.938667pt;}
.ws11{word-spacing:-0.880000pt;}
.ws3d{word-spacing:-0.864000pt;}
.ws43{word-spacing:-0.853333pt;}
.ws44{word-spacing:-0.533333pt;}
.ws30{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.373333pt;}
.ws6{word-spacing:-0.320000pt;}
.wse{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.021913pt;}
.ws45{word-spacing:0.106667pt;}
.ws52{word-spacing:0.373333pt;}
.ws53{word-spacing:0.480000pt;}
.ws3c{word-spacing:0.533333pt;}
.ws4d{word-spacing:0.906667pt;}
.ws4a{word-spacing:1.333333pt;}
.ws27{word-spacing:1.546667pt;}
.ws2b{word-spacing:2.026667pt;}
.ws7c{word-spacing:2.506667pt;}
.ws59{word-spacing:2.613333pt;}
.ws2d{word-spacing:2.986667pt;}
.ws42{word-spacing:3.200000pt;}
.ws20{word-spacing:3.786667pt;}
.ws49{word-spacing:3.946667pt;}
.ws4b{word-spacing:4.000000pt;}
.ws31{word-spacing:4.160000pt;}
.ws47{word-spacing:4.266667pt;}
.ws55{word-spacing:4.586667pt;}
.ws32{word-spacing:4.853333pt;}
.ws1f{word-spacing:4.960000pt;}
.ws2c{word-spacing:5.226667pt;}
.ws25{word-spacing:6.080000pt;}
.ws2a{word-spacing:6.186667pt;}
.ws5c{word-spacing:6.293333pt;}
.ws4c{word-spacing:6.346667pt;}
.ws26{word-spacing:6.506667pt;}
.ws54{word-spacing:7.626667pt;}
.ws56{word-spacing:7.840000pt;}
.ws1e{word-spacing:7.893333pt;}
.ws28{word-spacing:8.000000pt;}
.ws46{word-spacing:8.053333pt;}
.ws29{word-spacing:8.426667pt;}
.ws41{word-spacing:8.640000pt;}
.ws1d{word-spacing:9.013333pt;}
.ws23{word-spacing:9.226667pt;}
.ws5d{word-spacing:10.400000pt;}
.ws51{word-spacing:11.733333pt;}
.ws7d{word-spacing:11.840000pt;}
.ws24{word-spacing:12.906667pt;}
.ws1c{word-spacing:14.133333pt;}
.ws50{word-spacing:14.293333pt;}
.ws5b{word-spacing:14.880000pt;}
.ws22{word-spacing:16.000000pt;}
.ws58{word-spacing:16.586667pt;}
.ws1b{word-spacing:17.386667pt;}
.ws4e{word-spacing:20.106667pt;}
.ws4f{word-spacing:21.066667pt;}
.ws1a{word-spacing:22.133333pt;}
.ws57{word-spacing:27.733333pt;}
.ws5a{word-spacing:47.146667pt;}
.ws3a{word-spacing:48.868800pt;}
.ws6a{word-spacing:51.733333pt;}
.ws33{word-spacing:58.186667pt;}
.ws34{word-spacing:66.672000pt;}
.ws7a{word-spacing:68.975993pt;}
.ws79{word-spacing:69.983993pt;}
.ws39{word-spacing:72.719992pt;}
.ws82{word-spacing:77.759993pt;}
.ws81{word-spacing:78.143993pt;}
.ws6d{word-spacing:79.103993pt;}
.ws6f{word-spacing:79.199993pt;}
.ws7f{word-spacing:79.871993pt;}
.ws74{word-spacing:82.031993pt;}
.ws73{word-spacing:82.943993pt;}
.ws85{word-spacing:83.135993pt;}
.ws75{word-spacing:84.431993pt;}
.ws6c{word-spacing:84.767993pt;}
.ws89{word-spacing:85.007993pt;}
.ws6e{word-spacing:86.159993pt;}
.ws83{word-spacing:90.671993pt;}
.ws86{word-spacing:90.959993pt;}
.ws7b{word-spacing:91.103993pt;}
.ws70{word-spacing:93.263993pt;}
.ws72{word-spacing:94.703993pt;}
.ws88{word-spacing:95.375993pt;}
.ws71{word-spacing:95.951993pt;}
.ws84{word-spacing:97.631993pt;}
.ws87{word-spacing:98.927993pt;}
.ws76{word-spacing:103.631993pt;}
.ws78{word-spacing:107.663993pt;}
.ws77{word-spacing:110.543993pt;}
.ws37{word-spacing:150.432000pt;}
.ws36{word-spacing:218.207992pt;}
.ws63{word-spacing:250.665600pt;}
.ws5f{word-spacing:308.073600pt;}
.ws60{word-spacing:318.912000pt;}
.ws64{word-spacing:427.488000pt;}
.ws38{word-spacing:437.952000pt;}
.ws66{word-spacing:524.592000pt;}
.ws68{word-spacing:524.601600pt;}
.ws61{word-spacing:540.768000pt;}
.ws67{word-spacing:561.220800pt;}
.ws69{word-spacing:677.280000pt;}
.ws65{word-spacing:879.893333pt;}
.ws6b{word-spacing:914.559982pt;}
.ws62{word-spacing:927.413333pt;}
.ws5e{word-spacing:927.422391pt;}
._3{margin-left:-34.384029pt;}
._c{margin-left:-30.720000pt;}
._23{margin-left:-29.418063pt;}
._b{margin-left:-26.921600pt;}
._21{margin-left:-25.359823pt;}
._24{margin-left:-19.626667pt;}
._6{margin-left:-16.821967pt;}
._22{margin-left:-13.120508pt;}
._10{margin-left:-11.600010pt;}
._1e{margin-left:-10.666667pt;}
._a{margin-left:-9.505067pt;}
._30{margin-left:-8.581333pt;}
._0{margin-left:-7.200000pt;}
._4{margin-left:-5.616000pt;}
._1{margin-left:-4.000000pt;}
._2{margin-left:-2.416000pt;}
._5{margin-left:-1.344000pt;}
._e{width:1.125333pt;}
._8{width:2.058133pt;}
._9{width:5.088472pt;}
._7{width:6.008030pt;}
._20{width:11.728000pt;}
._1d{width:14.612826pt;}
._d{width:17.808000pt;}
._1f{width:50.517233pt;}
._3c{width:74.015979pt;}
._1c{width:84.239992pt;}
._40{width:91.007979pt;}
._3b{width:107.903979pt;}
._3f{width:121.216000pt;}
._12{width:124.031992pt;}
._31{width:128.319987pt;}
._3d{width:153.887979pt;}
._2a{width:157.152000pt;}
._33{width:161.999979pt;}
._3a{width:172.271979pt;}
._36{width:184.175979pt;}
._42{width:186.095979pt;}
._43{width:191.194646pt;}
._32{width:198.095979pt;}
._28{width:209.632000pt;}
._11{width:219.023992pt;}
._2b{width:221.216000pt;}
._f{width:237.349333pt;}
._34{width:239.189846pt;}
._35{width:252.943979pt;}
._13{width:275.232000pt;}
._25{width:299.376000pt;}
._18{width:308.591992pt;}
._26{width:310.240000pt;}
._27{width:315.888000pt;}
._29{width:350.944000pt;}
._16{width:367.728000pt;}
._38{width:390.239979pt;}
._1b{width:452.784000pt;}
._1a{width:461.472000pt;}
._14{width:472.720000pt;}
._17{width:480.576000pt;}
._15{width:490.512000pt;}
._19{width:532.704000pt;}
._2e{width:695.040000pt;}
._2c{width:700.368000pt;}
._39{width:760.702332pt;}
._2f{width:781.792000pt;}
._2d{width:796.224000pt;}
._3e{width:918.528000pt;}
._37{width:929.424000pt;}
._41{width:997.152000pt;}
.fsd{font-size:21.912533pt;}
.fsc{font-size:24.874667pt;}
.fs6{font-size:30.399999pt;}
.fsb{font-size:31.093333pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs9{font-size:125.333333pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:2.062002pt;}
.ya{bottom:47.512933pt;}
.y10a{bottom:55.814667pt;}
.y9{bottom:56.538666pt;}
.y109{bottom:64.450585pt;}
.y108{bottom:71.024345pt;}
.y107{bottom:77.598105pt;}
.y8{bottom:78.762666pt;}
.y106{bottom:84.171865pt;}
.y7{bottom:93.426666pt;}
.y6{bottom:108.093333pt;}
.y41{bottom:108.245870pt;}
.y68{bottom:113.385864pt;}
.y103{bottom:115.446533pt;}
.y105{bottom:115.450533pt;}
.y94{bottom:116.937866pt;}
.yc6{bottom:125.147067pt;}
.y40{bottom:125.579203pt;}
.y67{bottom:129.737864pt;}
.y102{bottom:131.445200pt;}
.y104{bottom:131.446533pt;}
.y66{bottom:138.986000pt;}
.y3f{bottom:142.912537pt;}
.y93{bottom:148.985331pt;}
.yc5{bottom:149.339067pt;}
.y101{bottom:151.185200pt;}
.yff{bottom:151.190394pt;}
.y65{bottom:151.786000pt;}
.y3e{bottom:160.245870pt;}
.y64{bottom:164.585999pt;}
.y92{bottom:166.318665pt;}
.y100{bottom:167.185200pt;}
.yfe{bottom:167.186394pt;}
.yc4{bottom:173.531067pt;}
.y63{bottom:177.386007pt;}
.y91{bottom:183.651998pt;}
.y3d{bottom:185.138265pt;}
.yfd{bottom:186.926394pt;}
.y62{bottom:193.737996pt;}
.yc3{bottom:197.721191pt;}
.y90{bottom:200.985331pt;}
.yfc{bottom:202.922394pt;}
.y3c{bottom:215.676941pt;}
.y8f{bottom:222.098267pt;}
.yfb{bottom:222.662394pt;}
.yc2{bottom:232.365458pt;}
.y3b{bottom:233.010274pt;}
.yfa{bottom:238.665062pt;}
.y8e{bottom:243.211060pt;}
.y3a{bottom:250.343608pt;}
.yf7{bottom:258.401062pt;}
.yf9{bottom:258.405062pt;}
.y8d{bottom:260.544393pt;}
.y39{bottom:271.456400pt;}
.yc1{bottom:273.016407pt;}
.yf6{bottom:274.398276pt;}
.yf8{bottom:274.401062pt;}
.y8c{bottom:281.657206pt;}
.y38{bottom:292.569194pt;}
.yf5{bottom:294.138276pt;}
.yc0{bottom:297.208407pt;}
.y8b{bottom:298.990540pt;}
.y61{bottom:306.080526pt;}
.y37{bottom:313.682129pt;}
.yf4{bottom:313.878276pt;}
.yf2{bottom:313.884943pt;}
.y8a{bottom:320.103475pt;}
.ybf{bottom:321.400407pt;}
.y60{bottom:327.193461pt;}
.yf3{bottom:329.878276pt;}
.yf1{bottom:329.880943pt;}
.y36{bottom:338.574524pt;}
.ybe{bottom:345.592407pt;}
.y5f{bottom:348.306274pt;}
.yef{bottom:349.616943pt;}
.y89{bottom:350.108683pt;}
.yf0{bottom:365.616943pt;}
.yee{bottom:365.624807pt;}
.y5e{bottom:365.639608pt;}
.y88{bottom:367.442017pt;}
.y35{bottom:369.113078pt;}
.ybd{bottom:369.782552pt;}
.y87{bottom:384.775350pt;}
.yed{bottom:385.364807pt;}
.y34{bottom:386.446411pt;}
.y5d{bottom:386.752523pt;}
.yec{bottom:401.360807pt;}
.y86{bottom:402.108683pt;}
.y33{bottom:403.779744pt;}
.y5c{bottom:404.085856pt;}
.ybc{bottom:404.426676pt;}
.y85{bottom:419.442017pt;}
.yea{bottom:421.100804pt;}
.y32{bottom:421.113078pt;}
.y5b{bottom:423.308919pt;}
.ye9{bottom:437.096804pt;}
.y31{bottom:438.446411pt;}
.y84{bottom:440.554932pt;}
.ybb{bottom:445.086812pt;}
.y5a{bottom:448.201333pt;}
.ye8{bottom:453.092804pt;}
.yeb{bottom:453.104804pt;}
.y30{bottom:455.779744pt;}
.y83{bottom:457.888265pt;}
.yb9{bottom:469.273478pt;}
.ye6{bottom:472.832804pt;}
.y2f{bottom:473.113078pt;}
.y59{bottom:478.739868pt;}
.y82{bottom:479.001058pt;}
.yb8{bottom:486.597301pt;}
.yba{bottom:486.606812pt;}
.ye7{bottom:488.832804pt;}
.ye5{bottom:488.835452pt;}
.y2e{bottom:490.446411pt;}
.y81{bottom:496.334391pt;}
.y2d{bottom:507.779744pt;}
.ye3{bottom:508.571452pt;}
.yb7{bottom:510.789301pt;}
.y80{bottom:513.667725pt;}
.y132{bottom:518.890948pt;}
.ye2{bottom:524.571452pt;}
.y2c{bottom:532.672119pt;}
.y7f{bottom:534.780518pt;}
.y131{bottom:534.886948pt;}
.y134{bottom:534.887085pt;}
.yb6{bottom:534.981301pt;}
.ye4{bottom:540.571452pt;}
.ye1{bottom:540.581963pt;}
.y19{bottom:542.597476pt;}
.y58{bottom:547.343500pt;}
.y130{bottom:550.882948pt;}
.y133{bottom:550.887085pt;}
.y7e{bottom:555.893473pt;}
.yb5{bottom:559.173301pt;}
.ye0{bottom:560.321963pt;}
.y2b{bottom:563.210653pt;}
.y18{bottom:565.043724pt;}
.y12f{bottom:570.622948pt;}
.y57{bottom:571.535500pt;}
.ydf{bottom:576.317963pt;}
.y5{bottom:577.951050pt;}
.y2a{bottom:580.543986pt;}
.yb4{bottom:583.365301pt;}
.y7d{bottom:585.898682pt;}
.y12e{bottom:586.618948pt;}
.y17{bottom:587.489850pt;}
.y56{bottom:595.727500pt;}
.ydc{bottom:596.057960pt;}
.y29{bottom:597.876361pt;}
.y4{bottom:601.951750pt;}
.y12d{bottom:606.358948pt;}
.y7c{bottom:607.011597pt;}
.yb3{bottom:607.557301pt;}
.y16{bottom:609.936139pt;}
.ydb{bottom:612.053960pt;}
.yde{bottom:612.065960pt;}
.y28{bottom:615.209694pt;}
.y55{bottom:619.919500pt;}
.y12b{bottom:626.102946pt;}
.yda{bottom:628.049960pt;}
.ydd{bottom:628.061960pt;}
.y7b{bottom:628.124390pt;}
.yb2{bottom:631.749301pt;}
.y15{bottom:632.382266pt;}
.y27{bottom:632.543027pt;}
.y12a{bottom:642.102946pt;}
.y129{bottom:642.104243pt;}
.y54{bottom:644.111500pt;}
.yd9{bottom:647.789960pt;}
.y3{bottom:649.085083pt;}
.y26{bottom:649.876361pt;}
.y14{bottom:654.834681pt;}
.yb1{bottom:655.941301pt;}
.y128{bottom:658.100243pt;}
.y12c{bottom:658.102946pt;}
.y7a{bottom:658.129720pt;}
.yd8{bottom:663.785960pt;}
.y53{bottom:668.303500pt;}
.yb0{bottom:671.937301pt;}
.y25{bottom:674.769694pt;}
.y79{bottom:675.463053pt;}
.y13{bottom:677.274681pt;}
.y127{bottom:677.840243pt;}
.yd6{bottom:683.541960pt;}
.y2{bottom:684.864502pt;}
.yaf{bottom:687.933301pt;}
.ya3{bottom:687.935710pt;}
.y24{bottom:692.103027pt;}
.y52{bottom:692.495500pt;}
.y126{bottom:693.836243pt;}
.y78{bottom:696.575846pt;}
.yd5{bottom:699.537960pt;}
.y12{bottom:699.720970pt;}
.ya2{bottom:709.048503pt;}
.y23{bottom:709.436361pt;}
.y51{bottom:709.823500pt;}
.yae{bottom:712.125301pt;}
.y124{bottom:713.592241pt;}
.yd4{bottom:715.533960pt;}
.y77{bottom:717.688639pt;}
.y11{bottom:722.167096pt;}
.ya1{bottom:726.381836pt;}
.y22{bottom:726.769694pt;}
.y50{bottom:727.151500pt;}
.y120{bottom:729.580241pt;}
.y123{bottom:729.588241pt;}
.yd7{bottom:731.525960pt;}
.yd3{bottom:731.529960pt;}
.y1{bottom:732.864502pt;}
.y76{bottom:735.021973pt;}
.yad{bottom:736.317301pt;}
.y21{bottom:744.103027pt;}
.y10{bottom:744.613223pt;}
.y125{bottom:745.580241pt;}
.y11f{bottom:745.582769pt;}
.y122{bottom:745.584241pt;}
.ya0{bottom:747.494792pt;}
.yd2{bottom:747.525960pt;}
.y4e{bottom:751.331499pt;}
.y75{bottom:756.134928pt;}
.yac{bottom:760.507487pt;}
.y20{bottom:761.436361pt;}
.y11e{bottom:761.578769pt;}
.y121{bottom:761.580241pt;}
.yf{bottom:767.059430pt;}
.y4d{bottom:767.327499pt;}
.yd1{bottom:768.734538pt;}
.y1f{bottom:778.769694pt;}
.y9f{bottom:779.500000pt;}
.y11c{bottom:781.318766pt;}
.y4c{bottom:783.323499pt;}
.yd0{bottom:786.067871pt;}
.y74{bottom:786.140299pt;}
.ye{bottom:789.505638pt;}
.yab{bottom:795.151693pt;}
.y1e{bottom:796.103027pt;}
.y11a{bottom:797.318766pt;}
.y9e{bottom:798.612956pt;}
.y4b{bottom:799.319499pt;}
.y73{bottom:803.473633pt;}
.yd{bottom:811.951846pt;}
.y11b{bottom:813.318766pt;}
.y11d{bottom:813.322766pt;}
.y119{bottom:813.329361pt;}
.y9d{bottom:815.946289pt;}
.y4a{bottom:819.098958pt;}
.ycf{bottom:823.735758pt;}
.y72{bottom:824.586426pt;}
.y1d{bottom:824.775065pt;}
.y117{bottom:833.069359pt;}
.yc{bottom:834.391846pt;}
.y49{bottom:835.098958pt;}
.y4f{bottom:835.115497pt;}
.y9c{bottom:835.279622pt;}
.yaa{bottom:835.806499pt;}
.yce{bottom:844.848551pt;}
.y71{bottom:845.699300pt;}
.y116{bottom:849.065359pt;}
.y9b{bottom:854.392415pt;}
.y48{bottom:859.289062pt;}
.ya9{bottom:859.998499pt;}
.y70{bottom:863.032633pt;}
.y115{bottom:865.061359pt;}
.y118{bottom:865.073359pt;}
.ycd{bottom:865.961507pt;}
.y9a{bottom:871.725749pt;}
.ya8{bottom:875.994499pt;}
.y47{bottom:876.622396pt;}
.ycc{bottom:883.294840pt;}
.y6f{bottom:884.145426pt;}
.y114{bottom:884.801359pt;}
.y99{bottom:892.838704pt;}
.ya7{bottom:900.186499pt;}
.y6e{bottom:901.478760pt;}
.ycb{bottom:904.407633pt;}
.y113{bottom:904.541359pt;}
.y46{bottom:907.320557pt;}
.y98{bottom:910.172038pt;}
.y112{bottom:920.537359pt;}
.yca{bottom:921.740967pt;}
.y6d{bottom:922.591715pt;}
.ya6{bottom:924.378499pt;}
.y97{bottom:927.505371pt;}
.y1a{bottom:935.809977pt;}
.y45{bottom:935.992432pt;}
.y110{bottom:940.277356pt;}
.yc9{bottom:942.853760pt;}
.y6c{bottom:943.704508pt;}
.ya5{bottom:948.568685pt;}
.y96{bottom:948.618164pt;}
.y10f{bottom:956.273356pt;}
.y95{bottom:965.951497pt;}
.yc8{bottom:967.746094pt;}
.y1c{bottom:969.406775pt;}
.y10e{bottom:972.273356pt;}
.y111{bottom:972.281356pt;}
.y6b{bottom:973.709717pt;}
.ya4{bottom:983.212809pt;}
.y44{bottom:983.284831pt;}
.yc7{bottom:985.079427pt;}
.y6a{bottom:991.043050pt;}
.y10d{bottom:993.481771pt;}
.y43{bottom:1000.618164pt;}
.y1b{bottom:1004.061442pt;}
.y10c{bottom:1010.815104pt;}
.yb{bottom:1013.751465pt;}
.y69{bottom:1015.935628pt;}
.y42{bottom:1017.951497pt;}
.h13{height:15.974237pt;}
.hf{height:24.106659pt;}
.h10{height:38.314667pt;}
.h14{height:41.297333pt;}
.h6{height:43.104000pt;}
.hd{height:43.488000pt;}
.h7{height:44.448000pt;}
.ha{height:47.893333pt;}
.hc{height:48.320000pt;}
.h5{height:52.682667pt;}
.h11{height:53.152000pt;}
.he{height:56.320000pt;}
.h3{height:56.448000pt;}
.hb{height:57.472000pt;}
.h4{height:67.050667pt;}
.h8{height:69.141333pt;}
.h12{height:82.986667pt;}
.h9{height:116.058667pt;}
.h2{height:148.160000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:79.768000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:34.966797pt;}
.xa{left:94.488129pt;}
.x16{left:100.154795pt;}
.x10{left:102.213867pt;}
.xf{left:109.606262pt;}
.xb{left:113.382151pt;}
.x12{left:117.321863pt;}
.x13{left:124.724396pt;}
.x17{left:149.282794pt;}
.x15{left:151.513867pt;}
.x2{left:161.775846pt;}
.x4{left:230.178807pt;}
.xc{left:235.670797pt;}
.x11{left:249.613867pt;}
.xe{left:278.220411pt;}
.x18{left:300.458789pt;}
.x7{left:353.797485pt;}
.x14{left:404.744533pt;}
.x5{left:417.688517pt;}
.x8{left:447.745485pt;}
.x1{left:457.535848pt;}
.x9{left:465.349485pt;}
.x3{left:490.410807pt;}
.xd{left:504.259074pt;}
.x19{left:591.493449pt;}
.x1b{left:597.354655pt;}
.x6{left:623.625854pt;}
.x1a{left:632.321452pt;}
}




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