
    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_b25bdb1ca3b274f48483c066.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_d03fab27e4bb99fa403d9665.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_4e8858f1b596f0c61b1456f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_4c373864ea679db29c482df8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1d{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.657700px;}
.ws68{word-spacing:-38.653200px;}
.ws5{word-spacing:-38.647800px;}
.wsaa{word-spacing:-38.642400px;}
.ws6a{word-spacing:-38.640000px;}
.wsed{word-spacing:-38.454000px;}
.wse4{word-spacing:-38.446800px;}
.ws59{word-spacing:-38.444400px;}
.ws85{word-spacing:-38.442600px;}
.ws13{word-spacing:-38.440800px;}
.ws67{word-spacing:-38.437200px;}
.wsb{word-spacing:-38.429100px;}
.ws3{word-spacing:-38.374200px;}
.ws88{word-spacing:-38.362200px;}
.wse5{word-spacing:-38.359800px;}
.ws69{word-spacing:-38.355600px;}
.wsa{word-spacing:-38.166000px;}
.ws86{word-spacing:-38.154000px;}
.ws8f{word-spacing:-38.146200px;}
.wse8{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws8d{word-spacing:-37.936200px;}
.wsd4{word-spacing:-37.935000px;}
.ws46{word-spacing:-37.934700px;}
.wsea{word-spacing:-37.934100px;}
.wsdc{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws70{word-spacing:-37.930500px;}
.ws9c{word-spacing:-37.929600px;}
.ws87{word-spacing:-37.927800px;}
.ws96{word-spacing:-37.927200px;}
.ws18{word-spacing:-37.865700px;}
.wsef{word-spacing:-37.726800px;}
.ws20{word-spacing:-37.713600px;}
.ws9{word-spacing:-37.708200px;}
.ws9d{word-spacing:-37.705800px;}
.ws4b{word-spacing:-37.440000px;}
.ws7e{word-spacing:-37.435200px;}
.ws5d{word-spacing:-37.423800px;}
.ws5a{word-spacing:-37.422000px;}
.ws55{word-spacing:-37.416000px;}
.wsb3{word-spacing:-37.221000px;}
.ws5b{word-spacing:-37.213200px;}
.ws16{word-spacing:-37.211400px;}
.ws71{word-spacing:-37.205400px;}
.wsf1{word-spacing:-37.000800px;}
.ws4c{word-spacing:-36.726000px;}
.ws17{word-spacing:-36.720000px;}
.wsbf{word-spacing:-36.714000px;}
.wsc8{word-spacing:-36.495000px;}
.ws34{word-spacing:-36.493200px;}
.ws1b{word-spacing:-36.491400px;}
.ws93{word-spacing:-36.276600px;}
.ws32{word-spacing:-36.000000px;}
.wse7{word-spacing:-35.783100px;}
.wsbb{word-spacing:-35.778600px;}
.ws19{word-spacing:-35.280000px;}
.ws2c{word-spacing:-35.274600px;}
.wsc2{word-spacing:-35.070000px;}
.ws40{word-spacing:-35.057400px;}
.ws12{word-spacing:-34.831800px;}
.ws30{word-spacing:-34.566000px;}
.wsb4{word-spacing:-34.560000px;}
.ws23{word-spacing:-34.344000px;}
.ws1a{word-spacing:-34.340400px;}
.ws57{word-spacing:-34.331400px;}
.ws63{word-spacing:-34.122600px;}
.wsd5{word-spacing:-33.840000px;}
.wse0{word-spacing:-33.624000px;}
.ws44{word-spacing:-33.616800px;}
.wsa8{word-spacing:-33.615000px;}
.ws33{word-spacing:-33.609600px;}
.ws8{word-spacing:-33.547800px;}
.wsb0{word-spacing:-32.904600px;}
.ws7c{word-spacing:-32.904000px;}
.ws4f{word-spacing:-32.895000px;}
.ws56{word-spacing:-32.400000px;}
.wsbc{word-spacing:-32.383800px;}
.wsd9{word-spacing:-32.184000px;}
.wse{word-spacing:-32.170500px;}
.ws84{word-spacing:-31.959000px;}
.wsa7{word-spacing:-31.453200px;}
.ws49{word-spacing:-31.444200px;}
.wsae{word-spacing:-30.938400px;}
.wsa9{word-spacing:-30.735000px;}
.ws53{word-spacing:-30.661200px;}
.ws66{word-spacing:-30.225600px;}
.ws2d{word-spacing:-30.001800px;}
.wsb6{word-spacing:-29.520000px;}
.ws2f{word-spacing:-29.304000px;}
.wsd0{word-spacing:-29.301300px;}
.wsc4{word-spacing:-29.301000px;}
.wse3{word-spacing:-29.299200px;}
.ws82{word-spacing:-29.295000px;}
.ws47{word-spacing:-28.791600px;}
.ws39{word-spacing:-28.584000px;}
.ws48{word-spacing:-28.582200px;}
.wsb9{word-spacing:-28.573200px;}
.ws5c{word-spacing:-27.853200px;}
.wsca{word-spacing:-27.346200px;}
.ws65{word-spacing:-27.144000px;}
.ws52{word-spacing:-27.136200px;}
.wsa5{word-spacing:-27.135000px;}
.wsda{word-spacing:-27.133200px;}
.wsd{word-spacing:-27.127200px;}
.ws11{word-spacing:-26.915400px;}
.wsde{word-spacing:-26.424000px;}
.ws3a{word-spacing:-26.421000px;}
.ws2e{word-spacing:-26.403900px;}
.wsc{word-spacing:-25.920000px;}
.ws4d{word-spacing:-25.912200px;}
.wsd6{word-spacing:-25.911600px;}
.ws26{word-spacing:-25.698000px;}
.ws3c{word-spacing:-25.470000px;}
.wsb5{word-spacing:-24.984000px;}
.wsb7{word-spacing:-24.977400px;}
.wsee{word-spacing:-24.471600px;}
.wsec{word-spacing:-24.269100px;}
.ws45{word-spacing:-24.256800px;}
.ws60{word-spacing:-24.244200px;}
.ws1c{word-spacing:-23.760000px;}
.ws38{word-spacing:-23.544000px;}
.ws4e{word-spacing:-23.538600px;}
.wsba{word-spacing:-23.538300px;}
.ws7a{word-spacing:-22.307400px;}
.wse6{word-spacing:-22.102200px;}
.wscd{word-spacing:-22.086000px;}
.ws5f{word-spacing:-21.384000px;}
.ws4a{word-spacing:-21.382200px;}
.ws36{word-spacing:-21.378000px;}
.wsa1{word-spacing:-20.860200px;}
.ws35{word-spacing:-20.664000px;}
.wseb{word-spacing:-20.662200px;}
.ws37{word-spacing:-20.656800px;}
.ws31{word-spacing:-19.941300px;}
.ws81{word-spacing:-19.935000px;}
.wsc5{word-spacing:-19.931400px;}
.wsc0{word-spacing:-19.440000px;}
.ws91{word-spacing:-19.425000px;}
.ws24{word-spacing:-19.222200px;}
.wsd1{word-spacing:-19.215000px;}
.ws2b{word-spacing:-18.716400px;}
.wsa3{word-spacing:-18.713400px;}
.ws2a{word-spacing:-18.510000px;}
.wse9{word-spacing:-18.502200px;}
.ws8c{word-spacing:-18.495000px;}
.ws7{word-spacing:-18.472500px;}
.wsab{word-spacing:-17.990100px;}
.wsce{word-spacing:-17.784000px;}
.wse1{word-spacing:-17.773200px;}
.ws61{word-spacing:-17.771400px;}
.wsac{word-spacing:-17.566200px;}
.wsb8{word-spacing:-17.551800px;}
.ws7b{word-spacing:-17.061300px;}
.wscc{word-spacing:-17.056800px;}
.ws22{word-spacing:-16.695900px;}
.ws21{word-spacing:-16.566000px;}
.ws43{word-spacing:-16.554600px;}
.wsd7{word-spacing:-16.554000px;}
.wsad{word-spacing:-16.336800px;}
.ws7d{word-spacing:-16.331400px;}
.ws9e{word-spacing:-16.330500px;}
.ws27{word-spacing:-16.326000px;}
.ws95{word-spacing:-16.111800px;}
.ws29{word-spacing:-15.624000px;}
.ws83{word-spacing:-15.613200px;}
.ws28{word-spacing:-15.101100px;}
.ws58{word-spacing:-14.182200px;}
.ws42{word-spacing:-14.178000px;}
.ws79{word-spacing:-13.452300px;}
.ws6e{word-spacing:-13.451700px;}
.wsa4{word-spacing:-13.237200px;}
.ws54{word-spacing:-12.958200px;}
.wsaf{word-spacing:-12.954600px;}
.ws80{word-spacing:-12.942900px;}
.ws72{word-spacing:-12.746400px;}
.ws5e{word-spacing:-12.744000px;}
.wsc3{word-spacing:-12.240000px;}
.ws98{word-spacing:-12.232200px;}
.ws15{word-spacing:-12.006000px;}
.ws14{word-spacing:-11.511900px;}
.wsdb{word-spacing:-11.310000px;}
.ws3f{word-spacing:-10.579200px;}
.wsb2{word-spacing:-10.361700px;}
.wsc6{word-spacing:-10.359900px;}
.wscf{word-spacing:-10.080000px;}
.wsbe{word-spacing:-9.856800px;}
.ws62{word-spacing:-9.853200px;}
.ws8e{word-spacing:-9.848100px;}
.wsf{word-spacing:-9.129600px;}
.wsd8{word-spacing:-8.910000px;}
.wsbd{word-spacing:-8.198100px;}
.ws7f{word-spacing:-7.696800px;}
.ws51{word-spacing:-7.200000px;}
.ws41{word-spacing:-6.984000px;}
.wsd2{word-spacing:-6.964200px;}
.wsc7{word-spacing:-6.755400px;}
.wsf0{word-spacing:-6.261300px;}
.wsa2{word-spacing:-6.251400px;}
.wscb{word-spacing:-5.743800px;}
.wsdd{word-spacing:-5.544000px;}
.wsa6{word-spacing:-5.520600px;}
.ws64{word-spacing:-4.320000px;}
.ws1f{word-spacing:-3.361800px;}
.ws3d{word-spacing:-3.157200px;}
.ws1e{word-spacing:-2.880000px;}
.wse2{word-spacing:-2.435400px;}
.wsd3{word-spacing:-1.939200px;}
.wsc9{word-spacing:-1.932300px;}
.wsa0{word-spacing:0.020400px;}
.ws3e{word-spacing:0.216000px;}
.ws50{word-spacing:3.331800px;}
.wsdf{word-spacing:3.828600px;}
.wsc1{word-spacing:4.334400px;}
.ws3b{word-spacing:6.208500px;}
.ws10{word-spacing:9.576000px;}
.ws25{word-spacing:18.595800px;}
.ws6f{word-spacing:34.077300px;}
.wsb1{word-spacing:41.983200px;}
.ws6b{word-spacing:42.919800px;}
.ws94{word-spacing:43.643400px;}
.ws9b{word-spacing:49.187700px;}
.ws89{word-spacing:52.285800px;}
.ws75{word-spacing:60.713700px;}
.ws90{word-spacing:63.083100px;}
.ws99{word-spacing:65.018100px;}
.ws8b{word-spacing:76.326600px;}
.ws78{word-spacing:85.921200px;}
.ws74{word-spacing:89.279400px;}
.ws8a{word-spacing:99.069600px;}
.ws9a{word-spacing:99.359400px;}
.ws77{word-spacing:123.343200px;}
.ws97{word-spacing:124.066800px;}
.ws6c{word-spacing:129.828600px;}
.ws73{word-spacing:160.783200px;}
.ws9f{word-spacing:171.078600px;}
.ws92{word-spacing:184.533600px;}
.ws6d{word-spacing:185.985000px;}
.ws76{word-spacing:219.830400px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._23{width:17.640000px;}
._4{width:18.775800px;}
._8{width:20.088000px;}
._a{width:22.026000px;}
._b{width:23.205600px;}
._6{width:25.186500px;}
._16{width:26.592000px;}
._11{width:28.650000px;}
._5{width:30.439200px;}
._10{width:31.950000px;}
._c{width:33.402000px;}
._22{width:34.984800px;}
._1{width:36.000000px;}
._f{width:37.866000px;}
._19{width:39.443400px;}
._e{width:40.758000px;}
._1b{width:42.088800px;}
._15{width:43.168800px;}
._9{width:44.994600px;}
._14{width:46.430400px;}
._7{width:48.314400px;}
._18{width:50.328000px;}
._1d{width:51.448800px;}
._1a{width:52.632000px;}
._d{width:53.755200px;}
._20{width:55.644300px;}
._13{width:57.544800px;}
._17{width:60.460200px;}
._1f{width:61.901400px;}
._12{width:63.559500px;}
._1e{width:99.778800px;}
._1c{width:106.836300px;}
._21{width:162.000000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y7a{bottom:5.146500px;}
.yb1{bottom:5.190000px;}
.y6a{bottom:5.700000px;}
.y9e{bottom:5.746500px;}
.y74{bottom:5.761500px;}
.y8a{bottom:5.805000px;}
.y8c{bottom:5.820000px;}
.y5f{bottom:5.821500px;}
.y98{bottom:5.865000px;}
.yad{bottom:15.450000px;}
.y60{bottom:16.080000px;}
.y66{bottom:16.140000px;}
.ya1{bottom:16.186500px;}
.y70{bottom:16.200000px;}
.ya4{bottom:16.245000px;}
.y88{bottom:16.246500px;}
.y78{bottom:25.846500px;}
.yb0{bottom:25.890000px;}
.y5e{bottom:26.340000px;}
.y69{bottom:26.400000px;}
.y9d{bottom:26.445000px;}
.y73{bottom:26.461500px;}
.y89{bottom:26.505000px;}
.y96{bottom:26.565000px;}
.y9f{bottom:26.625000px;}
.yac{bottom:36.150000px;}
.ya3{bottom:36.765000px;}
.y94{bottom:36.825000px;}
.y65{bottom:36.840000px;}
.y9a{bottom:36.886500px;}
.y6f{bottom:36.900000px;}
.y92{bottom:36.945000px;}
.y76{bottom:46.546500px;}
.ya8{bottom:46.590000px;}
.ya5{bottom:47.025000px;}
.y62{bottom:47.100000px;}
.y9c{bottom:47.145000px;}
.y6c{bottom:47.161500px;}
.y8e{bottom:47.205000px;}
.y95{bottom:47.265000px;}
.ya9{bottom:56.850000px;}
.y91{bottom:57.465000px;}
.y64{bottom:57.540000px;}
.ya0{bottom:57.586500px;}
.y6e{bottom:57.600000px;}
.y77{bottom:67.245000px;}
.ya7{bottom:67.290000px;}
.y97{bottom:67.786500px;}
.y68{bottom:67.800000px;}
.y9b{bottom:67.846500px;}
.y72{bottom:67.861500px;}
.y8f{bottom:67.905000px;}
.y6{bottom:72.825000px;}
.yab{bottom:77.550000px;}
.y5{bottom:77.655000px;}
.y63{bottom:78.240000px;}
.y6d{bottom:78.300000px;}
.y79{bottom:87.765000px;}
.yaf{bottom:87.990000px;}
.y90{bottom:88.425000px;}
.y67{bottom:88.500000px;}
.y71{bottom:88.561500px;}
.yaa{bottom:98.250000px;}
.y2d{bottom:100.336500px;}
.y5b{bottom:103.215000px;}
.yd5{bottom:103.396500px;}
.yc6{bottom:108.075000px;}
.yae{bottom:108.511500px;}
.y87{bottom:109.650000px;}
.y2c{bottom:121.036500px;}
.y5a{bottom:123.915000px;}
.yd4{bottom:124.096500px;}
.yc5{bottom:128.775000px;}
.y2b{bottom:141.736500px;}
.y59{bottom:144.615000px;}
.yd3{bottom:144.796500px;}
.yc4{bottom:149.475000px;}
.y2a{bottom:162.436500px;}
.y58{bottom:165.315000px;}
.yd2{bottom:165.496500px;}
.yc3{bottom:170.175000px;}
.y86{bottom:181.155000px;}
.y29{bottom:183.136500px;}
.yd1{bottom:186.196500px;}
.yc2{bottom:190.875000px;}
.y28{bottom:203.836500px;}
.y57{bottom:206.896500px;}
.yc1{bottom:211.575000px;}
.y85{bottom:222.915000px;}
.y27{bottom:224.536500px;}
.y56{bottom:227.596500px;}
.yc0{bottom:232.275000px;}
.y84{bottom:243.615000px;}
.y55{bottom:248.295000px;}
.ybf{bottom:252.975000px;}
.y83{bottom:264.315000px;}
.y26{bottom:266.295000px;}
.y54{bottom:268.996500px;}
.ybe{bottom:273.675000px;}
.y82{bottom:285.015000px;}
.y25{bottom:286.996500px;}
.y53{bottom:289.696500px;}
.ybd{bottom:294.375000px;}
.y81{bottom:305.715000px;}
.y52{bottom:310.396500px;}
.ybc{bottom:315.075000px;}
.y80{bottom:326.415000px;}
.y24{bottom:328.575000px;}
.y51{bottom:331.096500px;}
.y7f{bottom:347.115000px;}
.y23{bottom:349.275000px;}
.y50{bottom:351.795000px;}
.ybb{bottom:356.836500px;}
.y7e{bottom:367.815000px;}
.y22{bottom:369.975000px;}
.y4f{bottom:372.496500px;}
.yba{bottom:377.536500px;}
.y7d{bottom:388.515000px;}
.y21{bottom:390.675000px;}
.y4e{bottom:393.196500px;}
.yd0{bottom:393.375000px;}
.yb9{bottom:398.236500px;}
.y7c{bottom:409.215000px;}
.y20{bottom:411.375000px;}
.y4d{bottom:413.896500px;}
.ycf{bottom:414.075000px;}
.yb8{bottom:418.936500px;}
.y7b{bottom:429.915000px;}
.y1f{bottom:432.075000px;}
.y4c{bottom:434.596500px;}
.yce{bottom:434.775000px;}
.yb7{bottom:439.636500px;}
.y1e{bottom:452.775000px;}
.y4b{bottom:455.295000px;}
.ycd{bottom:455.475000px;}
.yb6{bottom:460.336500px;}
.y75{bottom:469.950000px;}
.y4a{bottom:475.996500px;}
.ycc{bottom:476.175000px;}
.yb5{bottom:481.036500px;}
.y1d{bottom:494.536500px;}
.y49{bottom:496.695000px;}
.ycb{bottom:496.875000px;}
.yb4{bottom:501.736500px;}
.y1c{bottom:515.236500px;}
.y48{bottom:517.396500px;}
.yca{bottom:517.575000px;}
.yb3{bottom:522.436500px;}
.y47{bottom:538.096500px;}
.yc9{bottom:538.275000px;}
.yb2{bottom:543.136500px;}
.y1b{bottom:556.996500px;}
.y46{bottom:558.796500px;}
.yc8{bottom:558.975000px;}
.y1a{bottom:577.695000px;}
.y6b{bottom:578.775000px;}
.yc7{bottom:579.675000px;}
.ya6{bottom:583.125000px;}
.y19{bottom:598.396500px;}
.y45{bottom:600.375000px;}
.y18{bottom:619.096500px;}
.ye4{bottom:620.536500px;}
.y44{bottom:621.075000px;}
.y17{bottom:639.795000px;}
.ye3{bottom:641.236500px;}
.y43{bottom:641.775000px;}
.y16{bottom:660.496500px;}
.ye2{bottom:661.936500px;}
.y42{bottom:662.475000px;}
.ye1{bottom:682.636500px;}
.y41{bottom:683.175000px;}
.y61{bottom:688.275000px;}
.y15{bottom:702.075000px;}
.ye0{bottom:703.336500px;}
.y40{bottom:703.875000px;}
.ya2{bottom:712.650000px;}
.y14{bottom:722.775000px;}
.ydf{bottom:724.036500px;}
.y3f{bottom:724.575000px;}
.yde{bottom:744.736500px;}
.y3e{bottom:745.275000px;}
.y13{bottom:764.536500px;}
.ydd{bottom:765.436500px;}
.y3d{bottom:765.975000px;}
.y99{bottom:780.750000px;}
.y12{bottom:785.236500px;}
.ydc{bottom:786.136500px;}
.y3c{bottom:786.675000px;}
.y5d{bottom:797.775000px;}
.y11{bottom:805.936500px;}
.ydb{bottom:806.836500px;}
.y3b{bottom:807.375000px;}
.y10{bottom:826.636500px;}
.yda{bottom:827.536500px;}
.y3a{bottom:828.075000px;}
.yf{bottom:847.336500px;}
.yd9{bottom:848.236500px;}
.y39{bottom:848.775000px;}
.ye{bottom:868.036500px;}
.yd8{bottom:868.936500px;}
.y5c{bottom:869.295000px;}
.y38{bottom:869.475000px;}
.y93{bottom:869.550000px;}
.yd{bottom:888.736500px;}
.yd7{bottom:889.636500px;}
.y37{bottom:890.175000px;}
.y36{bottom:910.875000px;}
.yc{bottom:930.495000px;}
.yd6{bottom:931.395000px;}
.y35{bottom:931.575000px;}
.y34{bottom:952.275000px;}
.y8d{bottom:958.350000px;}
.yb{bottom:972.075000px;}
.y33{bottom:972.975000px;}
.y32{bottom:993.675000px;}
.ya{bottom:1013.836500px;}
.y31{bottom:1014.375000px;}
.y30{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y2f{bottom:1055.775000px;}
.y8b{bottom:1067.775000px;}
.y2e{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h6{height:44.325000px;}
.h9{height:44.400000px;}
.ha{height:45.075000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.hc{height:65.775000px;}
.hb{height:86.475000px;}
.h8{height:106.500000px;}
.h7{height:107.175000px;}
.hd{height:127.200000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.wa{width:88.050000px;}
.w3{width:89.625000px;}
.wc{width:116.925000px;}
.w5{width:128.100000px;}
.wb{width:132.600000px;}
.w7{width:153.450000px;}
.w4{width:155.325000px;}
.w6{width:168.750000px;}
.w9{width:174.750000px;}
.w8{width:176.100000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.170000px;}
.xb{left:126.450000px;}
.x1{left:127.620000px;}
.x9{left:132.120000px;}
.x4{left:148.320000px;}
.xa{left:180.720000px;}
.xd{left:218.250000px;}
.x11{left:304.725000px;}
.x6{left:311.400000px;}
.xe{left:375.750000px;}
.x3{left:465.825000px;}
.x12{left:481.650000px;}
.xf{left:506.025000px;}
.x8{left:559.800000px;}
.x7{left:563.220000px;}
.x13{left:571.875000px;}
.x5{left:641.160000px;}
.x10{left:676.950000px;}
.x14{left:706.650000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1d{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws68{word-spacing:-34.358400pt;}
.ws5{word-spacing:-34.353600pt;}
.wsaa{word-spacing:-34.348800pt;}
.ws6a{word-spacing:-34.346667pt;}
.wsed{word-spacing:-34.181333pt;}
.wse4{word-spacing:-34.174933pt;}
.ws59{word-spacing:-34.172800pt;}
.ws85{word-spacing:-34.171200pt;}
.ws13{word-spacing:-34.169600pt;}
.ws67{word-spacing:-34.166400pt;}
.wsb{word-spacing:-34.159200pt;}
.ws3{word-spacing:-34.110400pt;}
.ws88{word-spacing:-34.099733pt;}
.wse5{word-spacing:-34.097600pt;}
.ws69{word-spacing:-34.093867pt;}
.wsa{word-spacing:-33.925333pt;}
.ws86{word-spacing:-33.914667pt;}
.ws8f{word-spacing:-33.907733pt;}
.wse8{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws8d{word-spacing:-33.721067pt;}
.wsd4{word-spacing:-33.720000pt;}
.ws46{word-spacing:-33.719733pt;}
.wsea{word-spacing:-33.719200pt;}
.wsdc{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws70{word-spacing:-33.716000pt;}
.ws9c{word-spacing:-33.715200pt;}
.ws87{word-spacing:-33.713600pt;}
.ws96{word-spacing:-33.713067pt;}
.ws18{word-spacing:-33.658400pt;}
.wsef{word-spacing:-33.534933pt;}
.ws20{word-spacing:-33.523200pt;}
.ws9{word-spacing:-33.518400pt;}
.ws9d{word-spacing:-33.516267pt;}
.ws4b{word-spacing:-33.280000pt;}
.ws7e{word-spacing:-33.275733pt;}
.ws5d{word-spacing:-33.265600pt;}
.ws5a{word-spacing:-33.264000pt;}
.ws55{word-spacing:-33.258667pt;}
.wsb3{word-spacing:-33.085333pt;}
.ws5b{word-spacing:-33.078400pt;}
.ws16{word-spacing:-33.076800pt;}
.ws71{word-spacing:-33.071467pt;}
.wsf1{word-spacing:-32.889600pt;}
.ws4c{word-spacing:-32.645333pt;}
.ws17{word-spacing:-32.640000pt;}
.wsbf{word-spacing:-32.634667pt;}
.wsc8{word-spacing:-32.440000pt;}
.ws34{word-spacing:-32.438400pt;}
.ws1b{word-spacing:-32.436800pt;}
.ws93{word-spacing:-32.245867pt;}
.ws32{word-spacing:-32.000000pt;}
.wse7{word-spacing:-31.807200pt;}
.wsbb{word-spacing:-31.803200pt;}
.ws19{word-spacing:-31.360000pt;}
.ws2c{word-spacing:-31.355200pt;}
.wsc2{word-spacing:-31.173333pt;}
.ws40{word-spacing:-31.162133pt;}
.ws12{word-spacing:-30.961600pt;}
.ws30{word-spacing:-30.725333pt;}
.wsb4{word-spacing:-30.720000pt;}
.ws23{word-spacing:-30.528000pt;}
.ws1a{word-spacing:-30.524800pt;}
.ws57{word-spacing:-30.516800pt;}
.ws63{word-spacing:-30.331200pt;}
.wsd5{word-spacing:-30.080000pt;}
.wse0{word-spacing:-29.888000pt;}
.ws44{word-spacing:-29.881600pt;}
.wsa8{word-spacing:-29.880000pt;}
.ws33{word-spacing:-29.875200pt;}
.ws8{word-spacing:-29.820267pt;}
.wsb0{word-spacing:-29.248533pt;}
.ws7c{word-spacing:-29.248000pt;}
.ws4f{word-spacing:-29.240000pt;}
.ws56{word-spacing:-28.800000pt;}
.wsbc{word-spacing:-28.785600pt;}
.wsd9{word-spacing:-28.608000pt;}
.wse{word-spacing:-28.596000pt;}
.ws84{word-spacing:-28.408000pt;}
.wsa7{word-spacing:-27.958400pt;}
.ws49{word-spacing:-27.950400pt;}
.wsae{word-spacing:-27.500800pt;}
.wsa9{word-spacing:-27.320000pt;}
.ws53{word-spacing:-27.254400pt;}
.ws66{word-spacing:-26.867200pt;}
.ws2d{word-spacing:-26.668267pt;}
.wsb6{word-spacing:-26.240000pt;}
.ws2f{word-spacing:-26.048000pt;}
.wsd0{word-spacing:-26.045600pt;}
.wsc4{word-spacing:-26.045333pt;}
.wse3{word-spacing:-26.043733pt;}
.ws82{word-spacing:-26.040000pt;}
.ws47{word-spacing:-25.592533pt;}
.ws39{word-spacing:-25.408000pt;}
.ws48{word-spacing:-25.406400pt;}
.wsb9{word-spacing:-25.398400pt;}
.ws5c{word-spacing:-24.758400pt;}
.wsca{word-spacing:-24.307733pt;}
.ws65{word-spacing:-24.128000pt;}
.ws52{word-spacing:-24.121067pt;}
.wsa5{word-spacing:-24.120000pt;}
.wsda{word-spacing:-24.118400pt;}
.wsd{word-spacing:-24.113067pt;}
.ws11{word-spacing:-23.924800pt;}
.wsde{word-spacing:-23.488000pt;}
.ws3a{word-spacing:-23.485333pt;}
.ws2e{word-spacing:-23.470133pt;}
.wsc{word-spacing:-23.040000pt;}
.ws4d{word-spacing:-23.033067pt;}
.wsd6{word-spacing:-23.032533pt;}
.ws26{word-spacing:-22.842667pt;}
.ws3c{word-spacing:-22.640000pt;}
.wsb5{word-spacing:-22.208000pt;}
.wsb7{word-spacing:-22.202133pt;}
.wsee{word-spacing:-21.752533pt;}
.wsec{word-spacing:-21.572533pt;}
.ws45{word-spacing:-21.561600pt;}
.ws60{word-spacing:-21.550400pt;}
.ws1c{word-spacing:-21.120000pt;}
.ws38{word-spacing:-20.928000pt;}
.ws4e{word-spacing:-20.923200pt;}
.wsba{word-spacing:-20.922933pt;}
.ws7a{word-spacing:-19.828800pt;}
.wse6{word-spacing:-19.646400pt;}
.wscd{word-spacing:-19.632000pt;}
.ws5f{word-spacing:-19.008000pt;}
.ws4a{word-spacing:-19.006400pt;}
.ws36{word-spacing:-19.002667pt;}
.wsa1{word-spacing:-18.542400pt;}
.ws35{word-spacing:-18.368000pt;}
.wseb{word-spacing:-18.366400pt;}
.ws37{word-spacing:-18.361600pt;}
.ws31{word-spacing:-17.725600pt;}
.ws81{word-spacing:-17.720000pt;}
.wsc5{word-spacing:-17.716800pt;}
.wsc0{word-spacing:-17.280000pt;}
.ws91{word-spacing:-17.266667pt;}
.ws24{word-spacing:-17.086400pt;}
.wsd1{word-spacing:-17.080000pt;}
.ws2b{word-spacing:-16.636800pt;}
.wsa3{word-spacing:-16.634133pt;}
.ws2a{word-spacing:-16.453333pt;}
.wse9{word-spacing:-16.446400pt;}
.ws8c{word-spacing:-16.440000pt;}
.ws7{word-spacing:-16.420000pt;}
.wsab{word-spacing:-15.991200pt;}
.wsce{word-spacing:-15.808000pt;}
.wse1{word-spacing:-15.798400pt;}
.ws61{word-spacing:-15.796800pt;}
.wsac{word-spacing:-15.614400pt;}
.wsb8{word-spacing:-15.601600pt;}
.ws7b{word-spacing:-15.165600pt;}
.wscc{word-spacing:-15.161600pt;}
.ws22{word-spacing:-14.840800pt;}
.ws21{word-spacing:-14.725333pt;}
.ws43{word-spacing:-14.715200pt;}
.wsd7{word-spacing:-14.714667pt;}
.wsad{word-spacing:-14.521600pt;}
.ws7d{word-spacing:-14.516800pt;}
.ws9e{word-spacing:-14.516000pt;}
.ws27{word-spacing:-14.512000pt;}
.ws95{word-spacing:-14.321600pt;}
.ws29{word-spacing:-13.888000pt;}
.ws83{word-spacing:-13.878400pt;}
.ws28{word-spacing:-13.423200pt;}
.ws58{word-spacing:-12.606400pt;}
.ws42{word-spacing:-12.602667pt;}
.ws79{word-spacing:-11.957600pt;}
.ws6e{word-spacing:-11.957067pt;}
.wsa4{word-spacing:-11.766400pt;}
.ws54{word-spacing:-11.518400pt;}
.wsaf{word-spacing:-11.515200pt;}
.ws80{word-spacing:-11.504800pt;}
.ws72{word-spacing:-11.330133pt;}
.ws5e{word-spacing:-11.328000pt;}
.wsc3{word-spacing:-10.880000pt;}
.ws98{word-spacing:-10.873067pt;}
.ws15{word-spacing:-10.672000pt;}
.ws14{word-spacing:-10.232800pt;}
.wsdb{word-spacing:-10.053333pt;}
.ws3f{word-spacing:-9.403733pt;}
.wsb2{word-spacing:-9.210400pt;}
.wsc6{word-spacing:-9.208800pt;}
.wscf{word-spacing:-8.960000pt;}
.wsbe{word-spacing:-8.761600pt;}
.ws62{word-spacing:-8.758400pt;}
.ws8e{word-spacing:-8.753867pt;}
.wsf{word-spacing:-8.115200pt;}
.wsd8{word-spacing:-7.920000pt;}
.wsbd{word-spacing:-7.287200pt;}
.ws7f{word-spacing:-6.841600pt;}
.ws51{word-spacing:-6.400000pt;}
.ws41{word-spacing:-6.208000pt;}
.wsd2{word-spacing:-6.190400pt;}
.wsc7{word-spacing:-6.004800pt;}
.wsf0{word-spacing:-5.565600pt;}
.wsa2{word-spacing:-5.556800pt;}
.wscb{word-spacing:-5.105600pt;}
.wsdd{word-spacing:-4.928000pt;}
.wsa6{word-spacing:-4.907200pt;}
.ws64{word-spacing:-3.840000pt;}
.ws1f{word-spacing:-2.988267pt;}
.ws3d{word-spacing:-2.806400pt;}
.ws1e{word-spacing:-2.560000pt;}
.wse2{word-spacing:-2.164800pt;}
.wsd3{word-spacing:-1.723733pt;}
.wsc9{word-spacing:-1.717600pt;}
.wsa0{word-spacing:0.018133pt;}
.ws3e{word-spacing:0.192000pt;}
.ws50{word-spacing:2.961600pt;}
.wsdf{word-spacing:3.403200pt;}
.wsc1{word-spacing:3.852800pt;}
.ws3b{word-spacing:5.518667pt;}
.ws10{word-spacing:8.512000pt;}
.ws25{word-spacing:16.529600pt;}
.ws6f{word-spacing:30.290933pt;}
.wsb1{word-spacing:37.318400pt;}
.ws6b{word-spacing:38.150933pt;}
.ws94{word-spacing:38.794133pt;}
.ws9b{word-spacing:43.722400pt;}
.ws89{word-spacing:46.476267pt;}
.ws75{word-spacing:53.967733pt;}
.ws90{word-spacing:56.073867pt;}
.ws99{word-spacing:57.793867pt;}
.ws8b{word-spacing:67.845867pt;}
.ws78{word-spacing:76.374400pt;}
.ws74{word-spacing:79.359467pt;}
.ws8a{word-spacing:88.061867pt;}
.ws9a{word-spacing:88.319467pt;}
.ws77{word-spacing:109.638400pt;}
.ws97{word-spacing:110.281600pt;}
.ws6c{word-spacing:115.403200pt;}
.ws73{word-spacing:142.918400pt;}
.ws9f{word-spacing:152.069867pt;}
.ws92{word-spacing:164.029867pt;}
.ws6d{word-spacing:165.320000pt;}
.ws76{word-spacing:195.404800pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._23{width:15.680000pt;}
._4{width:16.689600pt;}
._8{width:17.856000pt;}
._a{width:19.578667pt;}
._b{width:20.627200pt;}
._6{width:22.388000pt;}
._16{width:23.637333pt;}
._11{width:25.466667pt;}
._5{width:27.057067pt;}
._10{width:28.400000pt;}
._c{width:29.690667pt;}
._22{width:31.097600pt;}
._1{width:32.000000pt;}
._f{width:33.658667pt;}
._19{width:35.060800pt;}
._e{width:36.229333pt;}
._1b{width:37.412267pt;}
._15{width:38.372267pt;}
._9{width:39.995200pt;}
._14{width:41.271467pt;}
._7{width:42.946133pt;}
._18{width:44.736000pt;}
._1d{width:45.732267pt;}
._1a{width:46.784000pt;}
._d{width:47.782400pt;}
._20{width:49.461600pt;}
._13{width:51.150933pt;}
._17{width:53.742400pt;}
._1f{width:55.023467pt;}
._12{width:56.497333pt;}
._1e{width:88.692267pt;}
._1c{width:94.965600pt;}
._21{width:144.000000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y7a{bottom:4.574667pt;}
.yb1{bottom:4.613333pt;}
.y6a{bottom:5.066667pt;}
.y9e{bottom:5.108000pt;}
.y74{bottom:5.121333pt;}
.y8a{bottom:5.160000pt;}
.y8c{bottom:5.173333pt;}
.y5f{bottom:5.174667pt;}
.y98{bottom:5.213333pt;}
.yad{bottom:13.733333pt;}
.y60{bottom:14.293333pt;}
.y66{bottom:14.346667pt;}
.ya1{bottom:14.388000pt;}
.y70{bottom:14.400000pt;}
.ya4{bottom:14.440000pt;}
.y88{bottom:14.441333pt;}
.y78{bottom:22.974667pt;}
.yb0{bottom:23.013333pt;}
.y5e{bottom:23.413333pt;}
.y69{bottom:23.466667pt;}
.y9d{bottom:23.506667pt;}
.y73{bottom:23.521333pt;}
.y89{bottom:23.560000pt;}
.y96{bottom:23.613333pt;}
.y9f{bottom:23.666667pt;}
.yac{bottom:32.133333pt;}
.ya3{bottom:32.680000pt;}
.y94{bottom:32.733333pt;}
.y65{bottom:32.746667pt;}
.y9a{bottom:32.788000pt;}
.y6f{bottom:32.800000pt;}
.y92{bottom:32.840000pt;}
.y76{bottom:41.374667pt;}
.ya8{bottom:41.413333pt;}
.ya5{bottom:41.800000pt;}
.y62{bottom:41.866667pt;}
.y9c{bottom:41.906667pt;}
.y6c{bottom:41.921333pt;}
.y8e{bottom:41.960000pt;}
.y95{bottom:42.013333pt;}
.ya9{bottom:50.533333pt;}
.y91{bottom:51.080000pt;}
.y64{bottom:51.146667pt;}
.ya0{bottom:51.188000pt;}
.y6e{bottom:51.200000pt;}
.y77{bottom:59.773333pt;}
.ya7{bottom:59.813333pt;}
.y97{bottom:60.254667pt;}
.y68{bottom:60.266667pt;}
.y9b{bottom:60.308000pt;}
.y72{bottom:60.321333pt;}
.y8f{bottom:60.360000pt;}
.y6{bottom:64.733333pt;}
.yab{bottom:68.933333pt;}
.y5{bottom:69.026667pt;}
.y63{bottom:69.546667pt;}
.y6d{bottom:69.600000pt;}
.y79{bottom:78.013333pt;}
.yaf{bottom:78.213333pt;}
.y90{bottom:78.600000pt;}
.y67{bottom:78.666667pt;}
.y71{bottom:78.721333pt;}
.yaa{bottom:87.333333pt;}
.y2d{bottom:89.188000pt;}
.y5b{bottom:91.746667pt;}
.yd5{bottom:91.908000pt;}
.yc6{bottom:96.066667pt;}
.yae{bottom:96.454667pt;}
.y87{bottom:97.466667pt;}
.y2c{bottom:107.588000pt;}
.y5a{bottom:110.146667pt;}
.yd4{bottom:110.308000pt;}
.yc5{bottom:114.466667pt;}
.y2b{bottom:125.988000pt;}
.y59{bottom:128.546667pt;}
.yd3{bottom:128.708000pt;}
.yc4{bottom:132.866667pt;}
.y2a{bottom:144.388000pt;}
.y58{bottom:146.946667pt;}
.yd2{bottom:147.108000pt;}
.yc3{bottom:151.266667pt;}
.y86{bottom:161.026667pt;}
.y29{bottom:162.788000pt;}
.yd1{bottom:165.508000pt;}
.yc2{bottom:169.666667pt;}
.y28{bottom:181.188000pt;}
.y57{bottom:183.908000pt;}
.yc1{bottom:188.066667pt;}
.y85{bottom:198.146667pt;}
.y27{bottom:199.588000pt;}
.y56{bottom:202.308000pt;}
.yc0{bottom:206.466667pt;}
.y84{bottom:216.546667pt;}
.y55{bottom:220.706667pt;}
.ybf{bottom:224.866667pt;}
.y83{bottom:234.946667pt;}
.y26{bottom:236.706667pt;}
.y54{bottom:239.108000pt;}
.ybe{bottom:243.266667pt;}
.y82{bottom:253.346667pt;}
.y25{bottom:255.108000pt;}
.y53{bottom:257.508000pt;}
.ybd{bottom:261.666667pt;}
.y81{bottom:271.746667pt;}
.y52{bottom:275.908000pt;}
.ybc{bottom:280.066667pt;}
.y80{bottom:290.146667pt;}
.y24{bottom:292.066667pt;}
.y51{bottom:294.308000pt;}
.y7f{bottom:308.546667pt;}
.y23{bottom:310.466667pt;}
.y50{bottom:312.706667pt;}
.ybb{bottom:317.188000pt;}
.y7e{bottom:326.946667pt;}
.y22{bottom:328.866667pt;}
.y4f{bottom:331.108000pt;}
.yba{bottom:335.588000pt;}
.y7d{bottom:345.346667pt;}
.y21{bottom:347.266667pt;}
.y4e{bottom:349.508000pt;}
.yd0{bottom:349.666667pt;}
.yb9{bottom:353.988000pt;}
.y7c{bottom:363.746667pt;}
.y20{bottom:365.666667pt;}
.y4d{bottom:367.908000pt;}
.ycf{bottom:368.066667pt;}
.yb8{bottom:372.388000pt;}
.y7b{bottom:382.146667pt;}
.y1f{bottom:384.066667pt;}
.y4c{bottom:386.308000pt;}
.yce{bottom:386.466667pt;}
.yb7{bottom:390.788000pt;}
.y1e{bottom:402.466667pt;}
.y4b{bottom:404.706667pt;}
.ycd{bottom:404.866667pt;}
.yb6{bottom:409.188000pt;}
.y75{bottom:417.733333pt;}
.y4a{bottom:423.108000pt;}
.ycc{bottom:423.266667pt;}
.yb5{bottom:427.588000pt;}
.y1d{bottom:439.588000pt;}
.y49{bottom:441.506667pt;}
.ycb{bottom:441.666667pt;}
.yb4{bottom:445.988000pt;}
.y1c{bottom:457.988000pt;}
.y48{bottom:459.908000pt;}
.yca{bottom:460.066667pt;}
.yb3{bottom:464.388000pt;}
.y47{bottom:478.308000pt;}
.yc9{bottom:478.466667pt;}
.yb2{bottom:482.788000pt;}
.y1b{bottom:495.108000pt;}
.y46{bottom:496.708000pt;}
.yc8{bottom:496.866667pt;}
.y1a{bottom:513.506667pt;}
.y6b{bottom:514.466667pt;}
.yc7{bottom:515.266667pt;}
.ya6{bottom:518.333333pt;}
.y19{bottom:531.908000pt;}
.y45{bottom:533.666667pt;}
.y18{bottom:550.308000pt;}
.ye4{bottom:551.588000pt;}
.y44{bottom:552.066667pt;}
.y17{bottom:568.706667pt;}
.ye3{bottom:569.988000pt;}
.y43{bottom:570.466667pt;}
.y16{bottom:587.108000pt;}
.ye2{bottom:588.388000pt;}
.y42{bottom:588.866667pt;}
.ye1{bottom:606.788000pt;}
.y41{bottom:607.266667pt;}
.y61{bottom:611.800000pt;}
.y15{bottom:624.066667pt;}
.ye0{bottom:625.188000pt;}
.y40{bottom:625.666667pt;}
.ya2{bottom:633.466667pt;}
.y14{bottom:642.466667pt;}
.ydf{bottom:643.588000pt;}
.y3f{bottom:644.066667pt;}
.yde{bottom:661.988000pt;}
.y3e{bottom:662.466667pt;}
.y13{bottom:679.588000pt;}
.ydd{bottom:680.388000pt;}
.y3d{bottom:680.866667pt;}
.y99{bottom:694.000000pt;}
.y12{bottom:697.988000pt;}
.ydc{bottom:698.788000pt;}
.y3c{bottom:699.266667pt;}
.y5d{bottom:709.133333pt;}
.y11{bottom:716.388000pt;}
.ydb{bottom:717.188000pt;}
.y3b{bottom:717.666667pt;}
.y10{bottom:734.788000pt;}
.yda{bottom:735.588000pt;}
.y3a{bottom:736.066667pt;}
.yf{bottom:753.188000pt;}
.yd9{bottom:753.988000pt;}
.y39{bottom:754.466667pt;}
.ye{bottom:771.588000pt;}
.yd8{bottom:772.388000pt;}
.y5c{bottom:772.706667pt;}
.y38{bottom:772.866667pt;}
.y93{bottom:772.933333pt;}
.yd{bottom:789.988000pt;}
.yd7{bottom:790.788000pt;}
.y37{bottom:791.266667pt;}
.y36{bottom:809.666667pt;}
.yc{bottom:827.106667pt;}
.yd6{bottom:827.906667pt;}
.y35{bottom:828.066667pt;}
.y34{bottom:846.466667pt;}
.y8d{bottom:851.866667pt;}
.yb{bottom:864.066667pt;}
.y33{bottom:864.866667pt;}
.y32{bottom:883.266667pt;}
.ya{bottom:901.188000pt;}
.y31{bottom:901.666667pt;}
.y30{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y2f{bottom:938.466667pt;}
.y8b{bottom:949.133333pt;}
.y2e{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h6{height:39.400000pt;}
.h9{height:39.466667pt;}
.ha{height:40.066667pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.hc{height:58.466667pt;}
.hb{height:76.866667pt;}
.h8{height:94.666667pt;}
.h7{height:95.266667pt;}
.hd{height:113.066667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.wa{width:78.266667pt;}
.w3{width:79.666667pt;}
.wc{width:103.933333pt;}
.w5{width:113.866667pt;}
.wb{width:117.866667pt;}
.w7{width:136.400000pt;}
.w4{width:138.066667pt;}
.w6{width:150.000000pt;}
.w9{width:155.333333pt;}
.w8{width:156.533333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.040000pt;}
.xb{left:112.400000pt;}
.x1{left:113.440000pt;}
.x9{left:117.440000pt;}
.x4{left:131.840000pt;}
.xa{left:160.640000pt;}
.xd{left:194.000000pt;}
.x11{left:270.866667pt;}
.x6{left:276.800000pt;}
.xe{left:334.000000pt;}
.x3{left:414.066667pt;}
.x12{left:428.133333pt;}
.xf{left:449.800000pt;}
.x8{left:497.600000pt;}
.x7{left:500.640000pt;}
.x13{left:508.333333pt;}
.x5{left:569.920000pt;}
.x10{left:601.733333pt;}
.x14{left:628.133333pt;}
.x2{left:649.920000pt;}
}




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