
    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_b0aa1fd789e1c079f1834a4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_9292c003d843331be97a95da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_de97eac24787bcf2cff94f89.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3fe52e2803c6a7b1c401f2dd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f2532e93aa30086b6d880ed8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894531;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_c261680cfb25cb4b884d5c8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.354000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.212400px;}
.ls0{letter-spacing:0.354000px;}
.ls5{letter-spacing:0.389100px;}
.ls4{letter-spacing:0.390000px;}
.ls1{letter-spacing:21.240000px;}
.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;}
}
.ws6{word-spacing:-111.888000px;}
.ws5{word-spacing:-78.912000px;}
.ws77{word-spacing:-56.156400px;}
.ws10{word-spacing:-55.944000px;}
.wsf{word-spacing:-53.613000px;}
.ws4{word-spacing:-47.376000px;}
.wsd{word-spacing:-46.386900px;}
.ws9{word-spacing:-45.237900px;}
.ws8{word-spacing:-45.005700px;}
.ws7{word-spacing:-44.520600px;}
.ws73{word-spacing:-39.088800px;}
.ws86{word-spacing:-38.659200px;}
.ws69{word-spacing:-38.646900px;}
.ws5b{word-spacing:-38.584800px;}
.ws4a{word-spacing:-38.162400px;}
.ws74{word-spacing:-38.160000px;}
.ws65{word-spacing:-38.157300px;}
.ws64{word-spacing:-38.154000px;}
.ws9d{word-spacing:-38.150400px;}
.ws28{word-spacing:-38.143800px;}
.ws92{word-spacing:-38.088000px;}
.ws72{word-spacing:-37.944000px;}
.ws45{word-spacing:-37.939200px;}
.ws1f{word-spacing:-37.868400px;}
.ws23{word-spacing:-37.440000px;}
.ws61{word-spacing:-37.423200px;}
.ws5a{word-spacing:-37.422000px;}
.ws1b{word-spacing:-37.210500px;}
.ws18{word-spacing:-36.720000px;}
.ws5e{word-spacing:-36.502200px;}
.ws71{word-spacing:-36.000000px;}
.ws59{word-spacing:-35.994000px;}
.ws16{word-spacing:-35.991900px;}
.ws6a{word-spacing:-35.786400px;}
.ws95{word-spacing:-35.780400px;}
.ws7c{word-spacing:-35.769600px;}
.ws8f{word-spacing:-35.286000px;}
.ws8b{word-spacing:-35.280000px;}
.ws90{word-spacing:-35.271000px;}
.ws54{word-spacing:-35.054400px;}
.ws5c{word-spacing:-34.844400px;}
.ws35{word-spacing:-34.566000px;}
.wsa7{word-spacing:-33.836400px;}
.ws8e{word-spacing:-33.832800px;}
.ws13{word-spacing:-33.548400px;}
.ws8a{word-spacing:-33.116400px;}
.ws62{word-spacing:-32.902200px;}
.ws12{word-spacing:-32.900400px;}
.ws34{word-spacing:-32.898600px;}
.wsb2{word-spacing:-32.570700px;}
.wsc3{word-spacing:-32.561100px;}
.ws26{word-spacing:-32.395200px;}
.ws15{word-spacing:-32.182200px;}
.ws49{word-spacing:-32.116200px;}
.ws42{word-spacing:-32.108400px;}
.wsb4{word-spacing:-31.962900px;}
.wsbe{word-spacing:-31.958400px;}
.ws39{word-spacing:-31.886700px;}
.wsc9{word-spacing:-31.880400px;}
.wsad{word-spacing:-31.792500px;}
.wsb8{word-spacing:-31.786500px;}
.ws1{word-spacing:-31.741500px;}
.wsa{word-spacing:-31.706100px;}
.wsbf{word-spacing:-31.704000px;}
.ws70{word-spacing:-31.676400px;}
.wsb6{word-spacing:-31.449000px;}
.ws3{word-spacing:-31.321500px;}
.wsac{word-spacing:-31.236600px;}
.wsc{word-spacing:-31.233000px;}
.wsb{word-spacing:-31.231200px;}
.wsaa{word-spacing:-31.069200px;}
.wsc0{word-spacing:-30.987600px;}
.ws46{word-spacing:-30.949200px;}
.wsb7{word-spacing:-30.876000px;}
.wsc1{word-spacing:-30.867600px;}
.ws5d{word-spacing:-30.744000px;}
.ws4f{word-spacing:-30.741300px;}
.ws7a{word-spacing:-30.451500px;}
.ws91{word-spacing:-30.234000px;}
.ws67{word-spacing:-30.018600px;}
.wsa9{word-spacing:-30.004200px;}
.wse{word-spacing:-29.079000px;}
.wsae{word-spacing:-28.911000px;}
.ws84{word-spacing:-28.776000px;}
.ws38{word-spacing:-28.719000px;}
.ws9c{word-spacing:-28.580400px;}
.ws9b{word-spacing:-28.578600px;}
.ws2e{word-spacing:-28.508400px;}
.ws98{word-spacing:-28.080000px;}
.ws3c{word-spacing:-27.860400px;}
.wsa2{word-spacing:-27.845400px;}
.wsc4{word-spacing:-27.469200px;}
.ws85{word-spacing:-27.360000px;}
.ws75{word-spacing:-27.354000px;}
.ws9a{word-spacing:-27.139500px;}
.ws56{word-spacing:-27.119700px;}
.ws1d{word-spacing:-26.422200px;}
.ws21{word-spacing:-26.420400px;}
.ws3e{word-spacing:-25.702800px;}
.ws94{word-spacing:-24.978600px;}
.ws6b{word-spacing:-24.974400px;}
.ws88{word-spacing:-24.916200px;}
.ws7f{word-spacing:-24.486000px;}
.wsa8{word-spacing:-24.482400px;}
.ws3f{word-spacing:-24.469500px;}
.ws1a{word-spacing:-24.253200px;}
.ws9f{word-spacing:-24.044400px;}
.wsbd{word-spacing:-23.300400px;}
.ws1e{word-spacing:-23.037300px;}
.ws36{word-spacing:-22.820400px;}
.wsa4{word-spacing:-22.320000px;}
.ws63{word-spacing:-22.314600px;}
.ws31{word-spacing:-22.310400px;}
.wsc5{word-spacing:-21.882900px;}
.wsb9{word-spacing:-21.711000px;}
.ws4b{word-spacing:-21.588600px;}
.ws1c{word-spacing:-21.386400px;}
.ws41{word-spacing:-21.382200px;}
.ws47{word-spacing:-21.304800px;}
.wsbb{word-spacing:-20.267700px;}
.ws0{word-spacing:-20.146200px;}
.wsb1{word-spacing:-20.066700px;}
.ws14{word-spacing:-19.004400px;}
.ws48{word-spacing:-18.700200px;}
.ws24{word-spacing:-17.996400px;}
.ws5f{word-spacing:-16.560000px;}
.ws55{word-spacing:-16.341300px;}
.wsa0{word-spacing:-16.335900px;}
.wsa5{word-spacing:-16.315200px;}
.ws2a{word-spacing:-15.836400px;}
.ws29{word-spacing:-15.620400px;}
.ws30{word-spacing:-15.618600px;}
.wsb5{word-spacing:-15.225000px;}
.ws44{word-spacing:-14.900400px;}
.ws33{word-spacing:-14.396400px;}
.ws8c{word-spacing:-14.186400px;}
.ws51{word-spacing:-14.180400px;}
.wsb3{word-spacing:-13.797000px;}
.ws50{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.674600px;}
.ws17{word-spacing:-13.460400px;}
.ws2d{word-spacing:-12.960000px;}
.ws66{word-spacing:-12.240000px;}
.ws53{word-spacing:-12.235200px;}
.ws81{word-spacing:-11.948400px;}
.wsc7{word-spacing:-11.629200px;}
.ws37{word-spacing:-11.514000px;}
.ws6c{word-spacing:-10.080000px;}
.ws68{word-spacing:-9.858600px;}
.ws2b{word-spacing:-9.856800px;}
.ws60{word-spacing:-9.146400px;}
.wsab{word-spacing:-8.537100px;}
.ws2f{word-spacing:-7.675200px;}
.wsa6{word-spacing:-6.980400px;}
.wsa1{word-spacing:-6.978600px;}
.ws4d{word-spacing:-6.465600px;}
.ws83{word-spacing:-6.260400px;}
.ws52{word-spacing:-6.258600px;}
.ws43{word-spacing:-5.732400px;}
.ws22{word-spacing:-5.527200px;}
.ws7d{word-spacing:-4.818300px;}
.wsc8{word-spacing:-4.590900px;}
.ws20{word-spacing:-4.099200px;}
.ws6d{word-spacing:-3.312600px;}
.ws2c{word-spacing:-2.874600px;}
.ws9e{word-spacing:-2.654400px;}
.ws58{word-spacing:-1.944000px;}
.ws82{word-spacing:-1.002600px;}
.ws80{word-spacing:-0.486300px;}
.wsaf{word-spacing:-0.107700px;}
.ws3a{word-spacing:0.000000px;}
.ws27{word-spacing:0.219600px;}
.ws99{word-spacing:0.945600px;}
.wsc2{word-spacing:2.397000px;}
.ws3b{word-spacing:3.105000px;}
.wsb0{word-spacing:5.649900px;}
.ws7b{word-spacing:6.049800px;}
.wsc6{word-spacing:6.201600px;}
.ws93{word-spacing:7.444800px;}
.wsa3{word-spacing:8.133600px;}
.ws87{word-spacing:8.139600px;}
.ws32{word-spacing:8.147700px;}
.ws7e{word-spacing:8.213400px;}
.ws40{word-spacing:8.646000px;}
.ws19{word-spacing:9.090000px;}
.ws3d{word-spacing:10.080000px;}
.ws6f{word-spacing:10.304100px;}
.ws8d{word-spacing:11.106300px;}
.ws6e{word-spacing:11.747100px;}
.ws25{word-spacing:12.456900px;}
.wsba{word-spacing:13.763100px;}
.ws78{word-spacing:21.600000px;}
.ws79{word-spacing:32.630400px;}
.ws96{word-spacing:36.298200px;}
.ws89{word-spacing:36.724800px;}
.ws57{word-spacing:37.882200px;}
.ws4c{word-spacing:45.576000px;}
.ws97{word-spacing:54.241800px;}
.ws4e{word-spacing:58.329000px;}
.ws76{word-spacing:62.150400px;}
.wsbc{word-spacing:182.396400px;}
.ws2{word-spacing:800.902800px;}
._5{margin-left:-9.504000px;}
._6{margin-left:-1.250100px;}
._1{width:1.058700px;}
._0{width:16.143000px;}
._9{width:17.722200px;}
._26{width:18.871800px;}
._11{width:19.930800px;}
._e{width:21.237900px;}
._1b{width:22.383900px;}
._c{width:23.426100px;}
._b{width:24.679500px;}
._1f{width:25.918800px;}
._27{width:26.988300px;}
._7{width:28.755900px;}
._2c{width:29.922300px;}
._8{width:30.933900px;}
._28{width:32.078400px;}
._10{width:33.115200px;}
._1c{width:34.131600px;}
._3{width:35.367300px;}
._4{width:36.582000px;}
._d{width:38.083200px;}
._13{width:39.452400px;}
._16{width:41.400000px;}
._20{width:42.673200px;}
._a{width:43.981800px;}
._22{width:44.995200px;}
._2b{width:46.004400px;}
._17{width:47.094900px;}
._25{width:48.096000px;}
._19{width:49.622400px;}
._21{width:50.961600px;}
._12{width:52.166400px;}
._18{width:54.204300px;}
._15{width:57.308400px;}
._30{width:59.026800px;}
._1e{width:60.333000px;}
._2d{width:62.763600px;}
._2a{width:63.932400px;}
._1a{width:65.508300px;}
._f{width:66.930000px;}
._29{width:68.708100px;}
._14{width:69.981300px;}
._2f{width:85.394400px;}
._2e{width:94.238400px;}
._23{width:199.440000px;}
._24{width:200.448000px;}
._2{width:698.251500px;}
._1d{width:1813.528800px;}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:46.800000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.700000px;}
.fs0{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.300000px;}
.fs2{font-size:144.000000px;}
.y38{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:5.100000px;}
.y1f{bottom:6.165000px;}
.ya3{bottom:16.965000px;}
.y36{bottom:21.465000px;}
.y8a{bottom:21.586500px;}
.yc2{bottom:25.800000px;}
.y8c{bottom:26.580000px;}
.y8e{bottom:26.715000px;}
.y1e{bottom:26.865000px;}
.y90{bottom:27.361500px;}
.y70{bottom:31.005000px;}
.ya2{bottom:37.665000px;}
.y62{bottom:37.846500px;}
.ye5{bottom:38.940000px;}
.y80{bottom:39.765000px;}
.y82{bottom:39.780000px;}
.y84{bottom:40.845000px;}
.y35{bottom:42.165000px;}
.y89{bottom:42.286500px;}
.y7e{bottom:46.050000px;}
.yc1{bottom:46.500000px;}
.y1d{bottom:47.565000px;}
.y6f{bottom:51.705000px;}
.ye4{bottom:56.221500px;}
.y2{bottom:57.136500px;}
.y61{bottom:58.365000px;}
.y34{bottom:62.865000px;}
.y88{bottom:62.986500px;}
.y7d{bottom:66.750000px;}
.yc0{bottom:67.200000px;}
.y1c{bottom:68.265000px;}
.y6e{bottom:72.405000px;}
.ye3{bottom:73.500000px;}
.y60{bottom:79.065000px;}
.y33{bottom:83.565000px;}
.y7c{bottom:87.271500px;}
.ybf{bottom:87.900000px;}
.y1b{bottom:88.965000px;}
.ye2{bottom:90.600000px;}
.y6d{bottom:93.105000px;}
.y5f{bottom:99.765000px;}
.y32{bottom:104.265000px;}
.ye1{bottom:107.880000px;}
.ybe{bottom:108.600000px;}
.y1a{bottom:109.665000px;}
.y6c{bottom:113.805000px;}
.y5e{bottom:120.465000px;}
.y31{bottom:124.965000px;}
.ye0{bottom:125.161500px;}
.ybd{bottom:129.300000px;}
.y19{bottom:130.365000px;}
.y6b{bottom:134.505000px;}
.y5d{bottom:141.165000px;}
.ydf{bottom:142.440000px;}
.y30{bottom:145.665000px;}
.ybc{bottom:150.000000px;}
.y18{bottom:151.065000px;}
.y6a{bottom:155.205000px;}
.yde{bottom:159.721500px;}
.ya1{bottom:161.865000px;}
.y2f{bottom:166.365000px;}
.ybb{bottom:170.700000px;}
.y17{bottom:171.765000px;}
.ydd{bottom:177.000000px;}
.yc{bottom:181.650000px;}
.ya0{bottom:182.565000px;}
.y2e{bottom:187.065000px;}
.y5c{bottom:190.665000px;}
.yba{bottom:191.400000px;}
.y16{bottom:192.465000px;}
.ydc{bottom:194.100000px;}
.y9f{bottom:203.265000px;}
.y2d{bottom:207.765000px;}
.y5b{bottom:211.365000px;}
.ydb{bottom:211.380000px;}
.yb9{bottom:212.100000px;}
.y15{bottom:213.165000px;}
.y8d{bottom:219.600000px;}
.y9e{bottom:223.965000px;}
.y2c{bottom:228.465000px;}
.yda{bottom:228.661500px;}
.y5a{bottom:232.065000px;}
.yb8{bottom:232.800000px;}
.y14{bottom:233.865000px;}
.y9d{bottom:244.665000px;}
.yd9{bottom:245.940000px;}
.y2b{bottom:249.165000px;}
.y86{bottom:252.046500px;}
.y59{bottom:252.765000px;}
.yb7{bottom:253.500000px;}
.y13{bottom:254.565000px;}
.yd8{bottom:263.221500px;}
.y9c{bottom:265.365000px;}
.y2a{bottom:269.865000px;}
.y8b{bottom:270.675000px;}
.y85{bottom:272.746500px;}
.y58{bottom:273.465000px;}
.yb6{bottom:274.200000px;}
.y12{bottom:275.265000px;}
.yd7{bottom:280.500000px;}
.y9b{bottom:286.065000px;}
.y29{bottom:290.565000px;}
.y57{bottom:294.165000px;}
.yb5{bottom:294.900000px;}
.y11{bottom:295.965000px;}
.yd6{bottom:297.600000px;}
.y9a{bottom:306.765000px;}
.y28{bottom:311.265000px;}
.y56{bottom:314.865000px;}
.yd5{bottom:314.880000px;}
.yb4{bottom:315.600000px;}
.y10{bottom:316.665000px;}
.y87{bottom:321.750000px;}
.y99{bottom:327.465000px;}
.y27{bottom:331.965000px;}
.yd4{bottom:332.161500px;}
.y55{bottom:335.565000px;}
.yb3{bottom:336.300000px;}
.yf{bottom:337.365000px;}
.y98{bottom:348.165000px;}
.yd3{bottom:349.440000px;}
.y54{bottom:356.265000px;}
.yb2{bottom:357.000000px;}
.ye{bottom:358.065000px;}
.yd2{bottom:366.720000px;}
.y97{bottom:368.865000px;}
.y53{bottom:376.965000px;}
.yb1{bottom:377.700000px;}
.yd{bottom:383.265000px;}
.yd1{bottom:384.000000px;}
.y96{bottom:389.565000px;}
.y52{bottom:397.665000px;}
.yb0{bottom:398.400000px;}
.yd0{bottom:401.100000px;}
.y95{bottom:410.265000px;}
.y51{bottom:418.365000px;}
.ycf{bottom:418.380000px;}
.yaf{bottom:419.100000px;}
.y94{bottom:430.965000px;}
.y26{bottom:435.465000px;}
.yce{bottom:435.661500px;}
.y50{bottom:439.065000px;}
.yae{bottom:439.800000px;}
.y93{bottom:451.665000px;}
.ycd{bottom:452.940000px;}
.y25{bottom:456.165000px;}
.y4f{bottom:459.765000px;}
.yad{bottom:460.500000px;}
.ycc{bottom:470.220000px;}
.y24{bottom:476.865000px;}
.y4e{bottom:480.465000px;}
.yac{bottom:481.200000px;}
.ycb{bottom:487.500000px;}
.y83{bottom:491.850000px;}
.y23{bottom:497.565000px;}
.y4d{bottom:501.165000px;}
.yab{bottom:501.900000px;}
.yca{bottom:504.600000px;}
.y22{bottom:518.265000px;}
.y69{bottom:521.145000px;}
.y4c{bottom:521.865000px;}
.yc9{bottom:521.880000px;}
.yaa{bottom:522.600000px;}
.ya4{bottom:536.775000px;}
.y21{bottom:538.965000px;}
.yc8{bottom:539.161500px;}
.y68{bottom:541.846500px;}
.y4b{bottom:542.565000px;}
.ya9{bottom:543.300000px;}
.yc7{bottom:556.440000px;}
.y81{bottom:557.175000px;}
.y20{bottom:559.665000px;}
.y67{bottom:562.545000px;}
.y4a{bottom:563.265000px;}
.ya8{bottom:564.000000px;}
.yc6{bottom:573.720000px;}
.y66{bottom:583.245000px;}
.ya7{bottom:584.700000px;}
.yc5{bottom:591.000000px;}
.y65{bottom:603.946500px;}
.ya6{bottom:605.400000px;}
.y49{bottom:606.645000px;}
.yc4{bottom:608.100000px;}
.y7f{bottom:621.450000px;}
.y64{bottom:624.645000px;}
.ya5{bottom:626.100000px;}
.y7a{bottom:640.486500px;}
.y63{bottom:645.346500px;}
.y48{bottom:670.725000px;}
.y79{bottom:681.886500px;}
.y7b{bottom:685.725000px;}
.y47{bottom:691.425000px;}
.y46{bottom:712.125000px;}
.y45{bottom:732.825000px;}
.y78{bottom:749.205000px;}
.y44{bottom:753.525000px;}
.y77{bottom:769.905000px;}
.y43{bottom:774.225000px;}
.y76{bottom:790.605000px;}
.y42{bottom:794.925000px;}
.y75{bottom:811.305000px;}
.y41{bottom:815.625000px;}
.y74{bottom:832.005000px;}
.y40{bottom:836.325000px;}
.y73{bottom:852.705000px;}
.y3f{bottom:857.025000px;}
.y72{bottom:873.405000px;}
.y3e{bottom:877.725000px;}
.y92{bottom:888.165000px;}
.y71{bottom:896.265000px;}
.y3d{bottom:898.425000px;}
.y91{bottom:908.865000px;}
.y3c{bottom:919.125000px;}
.yb{bottom:928.336500px;}
.y3b{bottom:939.825000px;}
.ya{bottom:950.475000px;}
.y3a{bottom:960.525000px;}
.y9{bottom:967.575000px;}
.y39{bottom:981.225000px;}
.y8{bottom:987.736500px;}
.y7{bottom:1007.715000px;}
.y6{bottom:1027.695000px;}
.y5{bottom:1046.236500px;}
.y4{bottom:1073.595000px;}
.y3{bottom:1114.995000px;}
.y8f{bottom:1127.775000px;}
.y37{bottom:1159.275000px;}
.y1{bottom:1193.295000px;}
.hb{height:12.975000px;}
.h16{height:41.451855px;}
.h6{height:41.481006px;}
.h15{height:42.034863px;}
.h2{height:47.167969px;}
.h7{height:48.656871px;}
.h9{height:48.796875px;}
.ha{height:50.027344px;}
.h3{height:51.022594px;}
.h11{height:51.075000px;}
.h12{height:51.825000px;}
.h13{height:56.277773px;}
.he{height:64.275000px;}
.h5{height:64.874508px;}
.hf{height:65.325000px;}
.h10{height:87.375000px;}
.h4{height:97.593750px;}
.hd{height:111.825000px;}
.h8{height:577.575000px;}
.h14{height:644.025000px;}
.hc{height:999.150000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w8{width:95.175000px;}
.w7{width:97.275000px;}
.w5{width:100.425000px;}
.w4{width:102.600000px;}
.w9{width:119.250000px;}
.w6{width:126.750000px;}
.w2{width:447.675000px;}
.w3{width:722.775000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.263500px;}
.xc{left:10.125000px;}
.x1d{left:26.325000px;}
.x1c{left:37.125000px;}
.x10{left:54.375000px;}
.x15{left:57.763500px;}
.x2{left:60.838500px;}
.x14{left:62.263500px;}
.x16{left:69.838500px;}
.xa{left:77.038500px;}
.xd{left:83.175000px;}
.x3{left:98.460000px;}
.xe{left:115.920000px;}
.x1e{left:119.338500px;}
.x6{left:122.938500px;}
.x1{left:137.700000px;}
.xf{left:142.920000px;}
.x17{left:151.575000px;}
.x12{left:156.900000px;}
.x5{left:227.160000px;}
.x18{left:246.675000px;}
.x13{left:257.250000px;}
.x7{left:323.100000px;}
.x9{left:328.860000px;}
.x8{left:344.520000px;}
.x4{left:395.460000px;}
.xb{left:445.275000px;}
.x19{left:448.950000px;}
.x1a{left:546.150000px;}
.x1b{left:641.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.314667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.188800pt;}
.ls0{letter-spacing:0.314667pt;}
.ls5{letter-spacing:0.345867pt;}
.ls4{letter-spacing:0.346667pt;}
.ls1{letter-spacing:18.880000pt;}
.ws6{word-spacing:-99.456000pt;}
.ws5{word-spacing:-70.144000pt;}
.ws77{word-spacing:-49.916800pt;}
.ws10{word-spacing:-49.728000pt;}
.wsf{word-spacing:-47.656000pt;}
.ws4{word-spacing:-42.112000pt;}
.wsd{word-spacing:-41.232800pt;}
.ws9{word-spacing:-40.211467pt;}
.ws8{word-spacing:-40.005067pt;}
.ws7{word-spacing:-39.573867pt;}
.ws73{word-spacing:-34.745600pt;}
.ws86{word-spacing:-34.363733pt;}
.ws69{word-spacing:-34.352800pt;}
.ws5b{word-spacing:-34.297600pt;}
.ws4a{word-spacing:-33.922133pt;}
.ws74{word-spacing:-33.920000pt;}
.ws65{word-spacing:-33.917600pt;}
.ws64{word-spacing:-33.914667pt;}
.ws9d{word-spacing:-33.911467pt;}
.ws28{word-spacing:-33.905600pt;}
.ws92{word-spacing:-33.856000pt;}
.ws72{word-spacing:-33.728000pt;}
.ws45{word-spacing:-33.723733pt;}
.ws1f{word-spacing:-33.660800pt;}
.ws23{word-spacing:-33.280000pt;}
.ws61{word-spacing:-33.265067pt;}
.ws5a{word-spacing:-33.264000pt;}
.ws1b{word-spacing:-33.076000pt;}
.ws18{word-spacing:-32.640000pt;}
.ws5e{word-spacing:-32.446400pt;}
.ws71{word-spacing:-32.000000pt;}
.ws59{word-spacing:-31.994667pt;}
.ws16{word-spacing:-31.992800pt;}
.ws6a{word-spacing:-31.810133pt;}
.ws95{word-spacing:-31.804800pt;}
.ws7c{word-spacing:-31.795200pt;}
.ws8f{word-spacing:-31.365333pt;}
.ws8b{word-spacing:-31.360000pt;}
.ws90{word-spacing:-31.352000pt;}
.ws54{word-spacing:-31.159467pt;}
.ws5c{word-spacing:-30.972800pt;}
.ws35{word-spacing:-30.725333pt;}
.wsa7{word-spacing:-30.076800pt;}
.ws8e{word-spacing:-30.073600pt;}
.ws13{word-spacing:-29.820800pt;}
.ws8a{word-spacing:-29.436800pt;}
.ws62{word-spacing:-29.246400pt;}
.ws12{word-spacing:-29.244800pt;}
.ws34{word-spacing:-29.243200pt;}
.wsb2{word-spacing:-28.951733pt;}
.wsc3{word-spacing:-28.943200pt;}
.ws26{word-spacing:-28.795733pt;}
.ws15{word-spacing:-28.606400pt;}
.ws49{word-spacing:-28.547733pt;}
.ws42{word-spacing:-28.540800pt;}
.wsb4{word-spacing:-28.411467pt;}
.wsbe{word-spacing:-28.407467pt;}
.ws39{word-spacing:-28.343733pt;}
.wsc9{word-spacing:-28.338133pt;}
.wsad{word-spacing:-28.260000pt;}
.wsb8{word-spacing:-28.254667pt;}
.ws1{word-spacing:-28.214667pt;}
.wsa{word-spacing:-28.183200pt;}
.wsbf{word-spacing:-28.181333pt;}
.ws70{word-spacing:-28.156800pt;}
.wsb6{word-spacing:-27.954667pt;}
.ws3{word-spacing:-27.841333pt;}
.wsac{word-spacing:-27.765867pt;}
.wsc{word-spacing:-27.762667pt;}
.wsb{word-spacing:-27.761067pt;}
.wsaa{word-spacing:-27.617067pt;}
.wsc0{word-spacing:-27.544533pt;}
.ws46{word-spacing:-27.510400pt;}
.wsb7{word-spacing:-27.445333pt;}
.wsc1{word-spacing:-27.437867pt;}
.ws5d{word-spacing:-27.328000pt;}
.ws4f{word-spacing:-27.325600pt;}
.ws7a{word-spacing:-27.068000pt;}
.ws91{word-spacing:-26.874667pt;}
.ws67{word-spacing:-26.683200pt;}
.wsa9{word-spacing:-26.670400pt;}
.wse{word-spacing:-25.848000pt;}
.wsae{word-spacing:-25.698667pt;}
.ws84{word-spacing:-25.578667pt;}
.ws38{word-spacing:-25.528000pt;}
.ws9c{word-spacing:-25.404800pt;}
.ws9b{word-spacing:-25.403200pt;}
.ws2e{word-spacing:-25.340800pt;}
.ws98{word-spacing:-24.960000pt;}
.ws3c{word-spacing:-24.764800pt;}
.wsa2{word-spacing:-24.751467pt;}
.wsc4{word-spacing:-24.417067pt;}
.ws85{word-spacing:-24.320000pt;}
.ws75{word-spacing:-24.314667pt;}
.ws9a{word-spacing:-24.124000pt;}
.ws56{word-spacing:-24.106400pt;}
.ws1d{word-spacing:-23.486400pt;}
.ws21{word-spacing:-23.484800pt;}
.ws3e{word-spacing:-22.846933pt;}
.ws94{word-spacing:-22.203200pt;}
.ws6b{word-spacing:-22.199467pt;}
.ws88{word-spacing:-22.147733pt;}
.ws7f{word-spacing:-21.765333pt;}
.wsa8{word-spacing:-21.762133pt;}
.ws3f{word-spacing:-21.750667pt;}
.ws1a{word-spacing:-21.558400pt;}
.ws9f{word-spacing:-21.372800pt;}
.wsbd{word-spacing:-20.711467pt;}
.ws1e{word-spacing:-20.477600pt;}
.ws36{word-spacing:-20.284800pt;}
.wsa4{word-spacing:-19.840000pt;}
.ws63{word-spacing:-19.835200pt;}
.ws31{word-spacing:-19.831467pt;}
.wsc5{word-spacing:-19.451467pt;}
.wsb9{word-spacing:-19.298667pt;}
.ws4b{word-spacing:-19.189867pt;}
.ws1c{word-spacing:-19.010133pt;}
.ws41{word-spacing:-19.006400pt;}
.ws47{word-spacing:-18.937600pt;}
.wsbb{word-spacing:-18.015733pt;}
.ws0{word-spacing:-17.907733pt;}
.wsb1{word-spacing:-17.837067pt;}
.ws14{word-spacing:-16.892800pt;}
.ws48{word-spacing:-16.622400pt;}
.ws24{word-spacing:-15.996800pt;}
.ws5f{word-spacing:-14.720000pt;}
.ws55{word-spacing:-14.525600pt;}
.wsa0{word-spacing:-14.520800pt;}
.wsa5{word-spacing:-14.502400pt;}
.ws2a{word-spacing:-14.076800pt;}
.ws29{word-spacing:-13.884800pt;}
.ws30{word-spacing:-13.883200pt;}
.wsb5{word-spacing:-13.533333pt;}
.ws44{word-spacing:-13.244800pt;}
.ws33{word-spacing:-12.796800pt;}
.ws8c{word-spacing:-12.610133pt;}
.ws51{word-spacing:-12.604800pt;}
.wsb3{word-spacing:-12.264000pt;}
.ws50{word-spacing:-12.160000pt;}
.ws11{word-spacing:-12.155200pt;}
.ws17{word-spacing:-11.964800pt;}
.ws2d{word-spacing:-11.520000pt;}
.ws66{word-spacing:-10.880000pt;}
.ws53{word-spacing:-10.875733pt;}
.ws81{word-spacing:-10.620800pt;}
.wsc7{word-spacing:-10.337067pt;}
.ws37{word-spacing:-10.234667pt;}
.ws6c{word-spacing:-8.960000pt;}
.ws68{word-spacing:-8.763200pt;}
.ws2b{word-spacing:-8.761600pt;}
.ws60{word-spacing:-8.130133pt;}
.wsab{word-spacing:-7.588533pt;}
.ws2f{word-spacing:-6.822400pt;}
.wsa6{word-spacing:-6.204800pt;}
.wsa1{word-spacing:-6.203200pt;}
.ws4d{word-spacing:-5.747200pt;}
.ws83{word-spacing:-5.564800pt;}
.ws52{word-spacing:-5.563200pt;}
.ws43{word-spacing:-5.095467pt;}
.ws22{word-spacing:-4.913067pt;}
.ws7d{word-spacing:-4.282933pt;}
.wsc8{word-spacing:-4.080800pt;}
.ws20{word-spacing:-3.643733pt;}
.ws6d{word-spacing:-2.944533pt;}
.ws2c{word-spacing:-2.555200pt;}
.ws9e{word-spacing:-2.359467pt;}
.ws58{word-spacing:-1.728000pt;}
.ws82{word-spacing:-0.891200pt;}
.ws80{word-spacing:-0.432267pt;}
.wsaf{word-spacing:-0.095733pt;}
.ws3a{word-spacing:0.000000pt;}
.ws27{word-spacing:0.195200pt;}
.ws99{word-spacing:0.840533pt;}
.wsc2{word-spacing:2.130667pt;}
.ws3b{word-spacing:2.760000pt;}
.wsb0{word-spacing:5.022133pt;}
.ws7b{word-spacing:5.377600pt;}
.wsc6{word-spacing:5.512533pt;}
.ws93{word-spacing:6.617600pt;}
.wsa3{word-spacing:7.229867pt;}
.ws87{word-spacing:7.235200pt;}
.ws32{word-spacing:7.242400pt;}
.ws7e{word-spacing:7.300800pt;}
.ws40{word-spacing:7.685333pt;}
.ws19{word-spacing:8.080000pt;}
.ws3d{word-spacing:8.960000pt;}
.ws6f{word-spacing:9.159200pt;}
.ws8d{word-spacing:9.872267pt;}
.ws6e{word-spacing:10.441867pt;}
.ws25{word-spacing:11.072800pt;}
.wsba{word-spacing:12.233867pt;}
.ws78{word-spacing:19.200000pt;}
.ws79{word-spacing:29.004800pt;}
.ws96{word-spacing:32.265067pt;}
.ws89{word-spacing:32.644267pt;}
.ws57{word-spacing:33.673067pt;}
.ws4c{word-spacing:40.512000pt;}
.ws97{word-spacing:48.214933pt;}
.ws4e{word-spacing:51.848000pt;}
.ws76{word-spacing:55.244800pt;}
.wsbc{word-spacing:162.130133pt;}
.ws2{word-spacing:711.913600pt;}
._5{margin-left:-8.448000pt;}
._6{margin-left:-1.111200pt;}
._1{width:0.941067pt;}
._0{width:14.349333pt;}
._9{width:15.753067pt;}
._26{width:16.774933pt;}
._11{width:17.716267pt;}
._e{width:18.878133pt;}
._1b{width:19.896800pt;}
._c{width:20.823200pt;}
._b{width:21.937333pt;}
._1f{width:23.038933pt;}
._27{width:23.989600pt;}
._7{width:25.560800pt;}
._2c{width:26.597600pt;}
._8{width:27.496800pt;}
._28{width:28.514133pt;}
._10{width:29.435733pt;}
._1c{width:30.339200pt;}
._3{width:31.437600pt;}
._4{width:32.517333pt;}
._d{width:33.851733pt;}
._13{width:35.068800pt;}
._16{width:36.800000pt;}
._20{width:37.931733pt;}
._a{width:39.094933pt;}
._22{width:39.995733pt;}
._2b{width:40.892800pt;}
._17{width:41.862133pt;}
._25{width:42.752000pt;}
._19{width:44.108800pt;}
._21{width:45.299200pt;}
._12{width:46.370133pt;}
._18{width:48.181600pt;}
._15{width:50.940800pt;}
._30{width:52.468267pt;}
._1e{width:53.629333pt;}
._2d{width:55.789867pt;}
._2a{width:56.828800pt;}
._1a{width:58.229600pt;}
._f{width:59.493333pt;}
._29{width:61.073867pt;}
._14{width:62.205600pt;}
._2f{width:75.906133pt;}
._2e{width:83.767467pt;}
._23{width:177.280000pt;}
._24{width:178.176000pt;}
._2{width:620.668000pt;}
._1d{width:1612.025600pt;}
.fs6{font-size:41.600000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.066667pt;}
.fs0{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.933333pt;}
.fs2{font-size:128.000000pt;}
.y38{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:4.533333pt;}
.y1f{bottom:5.480000pt;}
.ya3{bottom:15.080000pt;}
.y36{bottom:19.080000pt;}
.y8a{bottom:19.188000pt;}
.yc2{bottom:22.933333pt;}
.y8c{bottom:23.626667pt;}
.y8e{bottom:23.746667pt;}
.y1e{bottom:23.880000pt;}
.y90{bottom:24.321333pt;}
.y70{bottom:27.560000pt;}
.ya2{bottom:33.480000pt;}
.y62{bottom:33.641333pt;}
.ye5{bottom:34.613333pt;}
.y80{bottom:35.346667pt;}
.y82{bottom:35.360000pt;}
.y84{bottom:36.306667pt;}
.y35{bottom:37.480000pt;}
.y89{bottom:37.588000pt;}
.y7e{bottom:40.933333pt;}
.yc1{bottom:41.333333pt;}
.y1d{bottom:42.280000pt;}
.y6f{bottom:45.960000pt;}
.ye4{bottom:49.974667pt;}
.y2{bottom:50.788000pt;}
.y61{bottom:51.880000pt;}
.y34{bottom:55.880000pt;}
.y88{bottom:55.988000pt;}
.y7d{bottom:59.333333pt;}
.yc0{bottom:59.733333pt;}
.y1c{bottom:60.680000pt;}
.y6e{bottom:64.360000pt;}
.ye3{bottom:65.333333pt;}
.y60{bottom:70.280000pt;}
.y33{bottom:74.280000pt;}
.y7c{bottom:77.574667pt;}
.ybf{bottom:78.133333pt;}
.y1b{bottom:79.080000pt;}
.ye2{bottom:80.533333pt;}
.y6d{bottom:82.760000pt;}
.y5f{bottom:88.680000pt;}
.y32{bottom:92.680000pt;}
.ye1{bottom:95.893333pt;}
.ybe{bottom:96.533333pt;}
.y1a{bottom:97.480000pt;}
.y6c{bottom:101.160000pt;}
.y5e{bottom:107.080000pt;}
.y31{bottom:111.080000pt;}
.ye0{bottom:111.254667pt;}
.ybd{bottom:114.933333pt;}
.y19{bottom:115.880000pt;}
.y6b{bottom:119.560000pt;}
.y5d{bottom:125.480000pt;}
.ydf{bottom:126.613333pt;}
.y30{bottom:129.480000pt;}
.ybc{bottom:133.333333pt;}
.y18{bottom:134.280000pt;}
.y6a{bottom:137.960000pt;}
.yde{bottom:141.974667pt;}
.ya1{bottom:143.880000pt;}
.y2f{bottom:147.880000pt;}
.ybb{bottom:151.733333pt;}
.y17{bottom:152.680000pt;}
.ydd{bottom:157.333333pt;}
.yc{bottom:161.466667pt;}
.ya0{bottom:162.280000pt;}
.y2e{bottom:166.280000pt;}
.y5c{bottom:169.480000pt;}
.yba{bottom:170.133333pt;}
.y16{bottom:171.080000pt;}
.ydc{bottom:172.533333pt;}
.y9f{bottom:180.680000pt;}
.y2d{bottom:184.680000pt;}
.y5b{bottom:187.880000pt;}
.ydb{bottom:187.893333pt;}
.yb9{bottom:188.533333pt;}
.y15{bottom:189.480000pt;}
.y8d{bottom:195.200000pt;}
.y9e{bottom:199.080000pt;}
.y2c{bottom:203.080000pt;}
.yda{bottom:203.254667pt;}
.y5a{bottom:206.280000pt;}
.yb8{bottom:206.933333pt;}
.y14{bottom:207.880000pt;}
.y9d{bottom:217.480000pt;}
.yd9{bottom:218.613333pt;}
.y2b{bottom:221.480000pt;}
.y86{bottom:224.041333pt;}
.y59{bottom:224.680000pt;}
.yb7{bottom:225.333333pt;}
.y13{bottom:226.280000pt;}
.yd8{bottom:233.974667pt;}
.y9c{bottom:235.880000pt;}
.y2a{bottom:239.880000pt;}
.y8b{bottom:240.600000pt;}
.y85{bottom:242.441333pt;}
.y58{bottom:243.080000pt;}
.yb6{bottom:243.733333pt;}
.y12{bottom:244.680000pt;}
.yd7{bottom:249.333333pt;}
.y9b{bottom:254.280000pt;}
.y29{bottom:258.280000pt;}
.y57{bottom:261.480000pt;}
.yb5{bottom:262.133333pt;}
.y11{bottom:263.080000pt;}
.yd6{bottom:264.533333pt;}
.y9a{bottom:272.680000pt;}
.y28{bottom:276.680000pt;}
.y56{bottom:279.880000pt;}
.yd5{bottom:279.893333pt;}
.yb4{bottom:280.533333pt;}
.y10{bottom:281.480000pt;}
.y87{bottom:286.000000pt;}
.y99{bottom:291.080000pt;}
.y27{bottom:295.080000pt;}
.yd4{bottom:295.254667pt;}
.y55{bottom:298.280000pt;}
.yb3{bottom:298.933333pt;}
.yf{bottom:299.880000pt;}
.y98{bottom:309.480000pt;}
.yd3{bottom:310.613333pt;}
.y54{bottom:316.680000pt;}
.yb2{bottom:317.333333pt;}
.ye{bottom:318.280000pt;}
.yd2{bottom:325.973333pt;}
.y97{bottom:327.880000pt;}
.y53{bottom:335.080000pt;}
.yb1{bottom:335.733333pt;}
.yd{bottom:340.680000pt;}
.yd1{bottom:341.333333pt;}
.y96{bottom:346.280000pt;}
.y52{bottom:353.480000pt;}
.yb0{bottom:354.133333pt;}
.yd0{bottom:356.533333pt;}
.y95{bottom:364.680000pt;}
.y51{bottom:371.880000pt;}
.ycf{bottom:371.893333pt;}
.yaf{bottom:372.533333pt;}
.y94{bottom:383.080000pt;}
.y26{bottom:387.080000pt;}
.yce{bottom:387.254667pt;}
.y50{bottom:390.280000pt;}
.yae{bottom:390.933333pt;}
.y93{bottom:401.480000pt;}
.ycd{bottom:402.613333pt;}
.y25{bottom:405.480000pt;}
.y4f{bottom:408.680000pt;}
.yad{bottom:409.333333pt;}
.ycc{bottom:417.973333pt;}
.y24{bottom:423.880000pt;}
.y4e{bottom:427.080000pt;}
.yac{bottom:427.733333pt;}
.ycb{bottom:433.333333pt;}
.y83{bottom:437.200000pt;}
.y23{bottom:442.280000pt;}
.y4d{bottom:445.480000pt;}
.yab{bottom:446.133333pt;}
.yca{bottom:448.533333pt;}
.y22{bottom:460.680000pt;}
.y69{bottom:463.240000pt;}
.y4c{bottom:463.880000pt;}
.yc9{bottom:463.893333pt;}
.yaa{bottom:464.533333pt;}
.ya4{bottom:477.133333pt;}
.y21{bottom:479.080000pt;}
.yc8{bottom:479.254667pt;}
.y68{bottom:481.641333pt;}
.y4b{bottom:482.280000pt;}
.ya9{bottom:482.933333pt;}
.yc7{bottom:494.613333pt;}
.y81{bottom:495.266667pt;}
.y20{bottom:497.480000pt;}
.y67{bottom:500.040000pt;}
.y4a{bottom:500.680000pt;}
.ya8{bottom:501.333333pt;}
.yc6{bottom:509.973333pt;}
.y66{bottom:518.440000pt;}
.ya7{bottom:519.733333pt;}
.yc5{bottom:525.333333pt;}
.y65{bottom:536.841333pt;}
.ya6{bottom:538.133333pt;}
.y49{bottom:539.240000pt;}
.yc4{bottom:540.533333pt;}
.y7f{bottom:552.400000pt;}
.y64{bottom:555.240000pt;}
.ya5{bottom:556.533333pt;}
.y7a{bottom:569.321333pt;}
.y63{bottom:573.641333pt;}
.y48{bottom:596.200000pt;}
.y79{bottom:606.121333pt;}
.y7b{bottom:609.533333pt;}
.y47{bottom:614.600000pt;}
.y46{bottom:633.000000pt;}
.y45{bottom:651.400000pt;}
.y78{bottom:665.960000pt;}
.y44{bottom:669.800000pt;}
.y77{bottom:684.360000pt;}
.y43{bottom:688.200000pt;}
.y76{bottom:702.760000pt;}
.y42{bottom:706.600000pt;}
.y75{bottom:721.160000pt;}
.y41{bottom:725.000000pt;}
.y74{bottom:739.560000pt;}
.y40{bottom:743.400000pt;}
.y73{bottom:757.960000pt;}
.y3f{bottom:761.800000pt;}
.y72{bottom:776.360000pt;}
.y3e{bottom:780.200000pt;}
.y92{bottom:789.480000pt;}
.y71{bottom:796.680000pt;}
.y3d{bottom:798.600000pt;}
.y91{bottom:807.880000pt;}
.y3c{bottom:817.000000pt;}
.yb{bottom:825.188000pt;}
.y3b{bottom:835.400000pt;}
.ya{bottom:844.866667pt;}
.y3a{bottom:853.800000pt;}
.y9{bottom:860.066667pt;}
.y39{bottom:872.200000pt;}
.y8{bottom:877.988000pt;}
.y7{bottom:895.746667pt;}
.y6{bottom:913.506667pt;}
.y5{bottom:929.988000pt;}
.y4{bottom:954.306667pt;}
.y3{bottom:991.106667pt;}
.y8f{bottom:1002.466667pt;}
.y37{bottom:1030.466667pt;}
.y1{bottom:1060.706667pt;}
.hb{height:11.533333pt;}
.h16{height:36.846094pt;}
.h6{height:36.872005pt;}
.h15{height:37.364323pt;}
.h2{height:41.927083pt;}
.h7{height:43.250552pt;}
.h9{height:43.375000pt;}
.ha{height:44.468750pt;}
.h3{height:45.353417pt;}
.h11{height:45.400000pt;}
.h12{height:46.066667pt;}
.h13{height:50.024688pt;}
.he{height:57.133333pt;}
.h5{height:57.666229pt;}
.hf{height:58.066667pt;}
.h10{height:77.666667pt;}
.h4{height:86.750000pt;}
.hd{height:99.400000pt;}
.h8{height:513.400000pt;}
.h14{height:572.466667pt;}
.hc{height:888.133333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w8{width:84.600000pt;}
.w7{width:86.466667pt;}
.w5{width:89.266667pt;}
.w4{width:91.200000pt;}
.w9{width:106.000000pt;}
.w6{width:112.666667pt;}
.w2{width:397.933333pt;}
.w3{width:642.466667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.345333pt;}
.xc{left:9.000000pt;}
.x1d{left:23.400000pt;}
.x1c{left:33.000000pt;}
.x10{left:48.333333pt;}
.x15{left:51.345333pt;}
.x2{left:54.078667pt;}
.x14{left:55.345333pt;}
.x16{left:62.078667pt;}
.xa{left:68.478667pt;}
.xd{left:73.933333pt;}
.x3{left:87.520000pt;}
.xe{left:103.040000pt;}
.x1e{left:106.078667pt;}
.x6{left:109.278667pt;}
.x1{left:122.400000pt;}
.xf{left:127.040000pt;}
.x17{left:134.733333pt;}
.x12{left:139.466667pt;}
.x5{left:201.920000pt;}
.x18{left:219.266667pt;}
.x13{left:228.666667pt;}
.x7{left:287.200000pt;}
.x9{left:292.320000pt;}
.x8{left:306.240000pt;}
.x4{left:351.520000pt;}
.xb{left:395.800000pt;}
.x19{left:399.066667pt;}
.x1a{left:485.466667pt;}
.x1b{left:570.000000pt;}
}




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