
    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_271de5079a617d7b63215eef.woff')format("woff");}.ff1{font-family:ff1;line-height:0.953000;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_3fbaa4b7ae5e9f1b8623a960.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963000;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_8a6858f55d70489ce0509c73.woff')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_cbd8d8032a55afc9003b0fe1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104000;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_5671e29df31ad75f988ba1e6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_4c923aa6e470ad149d82cd34.woff')format("woff");}.ff6{font-family:ff6;line-height:1.150000;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_e0464bc03e7b9ff9cf3ef645.woff')format("woff");}.ff7{font-family:ff7;line-height:0.917969;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_d1be08611e1916660a3ba95e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087402;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_6f26aef0b292f96c07236eeb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916504;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_11763e1d5bb33664ee85bf50.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6c87c929537bf4ef965a0bdb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.915527;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_71eb21e08b9ea6b67b925d95.woff')format("woff");}.ffc{font-family:ffc;line-height:1.104000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7e1c4ec621e8a6b379a4ffab.woff')format("woff");}.ffd{font-family:ffd;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f6952e2678fb42c0f6f264a2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.935059;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:fff;src:url('chunks/assets/font_2be223e3662abc8ae00462bd.woff')format("woff");}.fff{font-family:fff;line-height:0.700000;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:ff10;src:url('chunks/assets/font_9d4c7661ecd9f961005f1f27.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v4{vertical-align:-15.840000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v2{vertical-align:31.800000px;}
.ls8{letter-spacing:-1.320000px;}
.ls7{letter-spacing:-0.990000px;}
.ls1{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.924000px;}
.lsc{letter-spacing:1.056000px;}
.ls9{letter-spacing:2.508000px;}
.lsb{letter-spacing:2.838000px;}
.ls5{letter-spacing:13.374000px;}
.ls4{letter-spacing:16.703400px;}
.ls6{letter-spacing:16.704000px;}
.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;}
}
.ws44{word-spacing:-17.358000px;}
.ws42{word-spacing:-17.028000px;}
.ws45{word-spacing:-15.576000px;}
.ws43{word-spacing:-15.444000px;}
.ws2b{word-spacing:-14.520000px;}
.ws7{word-spacing:-2.688000px;}
.ws25{word-spacing:-2.310000px;}
.ws20{word-spacing:-2.112000px;}
.ws10{word-spacing:-2.064000px;}
.ws2a{word-spacing:-1.254000px;}
.ws3e{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.576000px;}
.ws3a{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.096000px;}
.wsd{word-spacing:0.240000px;}
.ws2e{word-spacing:0.660000px;}
.ws3c{word-spacing:0.858000px;}
.ws36{word-spacing:0.990000px;}
.ws1e{word-spacing:1.008000px;}
.ws8{word-spacing:1.200000px;}
.ws40{word-spacing:1.320000px;}
.ws1b{word-spacing:1.488000px;}
.ws5{word-spacing:1.632000px;}
.ws4{word-spacing:1.920000px;}
.wsf{word-spacing:2.160000px;}
.ws3b{word-spacing:2.376000px;}
.ws33{word-spacing:2.442000px;}
.ws17{word-spacing:2.448000px;}
.ws41{word-spacing:3.300000px;}
.ws29{word-spacing:3.432000px;}
.wse{word-spacing:3.504000px;}
.ws15{word-spacing:3.888000px;}
.ws30{word-spacing:4.092000px;}
.ws1d{word-spacing:4.224000px;}
.ws3d{word-spacing:4.686000px;}
.ws2{word-spacing:4.704000px;}
.ws3{word-spacing:4.944000px;}
.ws18{word-spacing:5.184000px;}
.ws23{word-spacing:5.280000px;}
.wsc{word-spacing:5.376000px;}
.wsb{word-spacing:5.568000px;}
.ws27{word-spacing:5.808000px;}
.ws1f{word-spacing:6.192000px;}
.ws34{word-spacing:6.468000px;}
.ws6{word-spacing:7.584000px;}
.ws31{word-spacing:7.722000px;}
.ws11{word-spacing:8.352000px;}
.ws2f{word-spacing:9.372000px;}
.ws19{word-spacing:9.408000px;}
.ws21{word-spacing:9.456000px;}
.ws38{word-spacing:10.296000px;}
.ws9{word-spacing:10.752000px;}
.wsa{word-spacing:10.944000px;}
.ws24{word-spacing:10.956000px;}
.ws12{word-spacing:11.040000px;}
.ws2c{word-spacing:11.286000px;}
.ws13{word-spacing:11.472000px;}
.ws1a{word-spacing:12.768000px;}
.ws37{word-spacing:13.200000px;}
.ws32{word-spacing:13.332000px;}
.ws3f{word-spacing:13.662000px;}
.ws16{word-spacing:13.728000px;}
.ws2d{word-spacing:13.794000px;}
.ws35{word-spacing:14.982000px;}
.ws22{word-spacing:15.696000px;}
.ws14{word-spacing:17.520000px;}
.ws28{word-spacing:18.018000px;}
.ws39{word-spacing:23.364000px;}
.ws26{word-spacing:26.928000px;}
._1d{margin-left:-48.839400px;}
._2d{margin-left:-13.906200px;}
._2e{margin-left:-7.821000px;}
._22{margin-left:-6.646200px;}
._10{margin-left:-5.643000px;}
._11{margin-left:-4.323000px;}
._2{margin-left:-2.884800px;}
._0{margin-left:-1.732800px;}
._15{width:1.027200px;}
._6{width:2.049600px;}
._f{width:3.081600px;}
._5{width:4.363200px;}
._4{width:5.551200px;}
._9{width:6.864000px;}
._8{width:8.758200px;}
._12{width:10.117800px;}
._b{width:11.404320px;}
._1{width:12.467640px;}
._16{width:13.496040px;}
._e{width:16.071000px;}
._1e{width:17.113800px;}
._3{width:18.192000px;}
._17{width:19.430400px;}
._a{width:20.697600px;}
._14{width:22.090200px;}
._7{width:23.472000px;}
._c{width:25.064400px;}
._13{width:26.888400px;}
._d{width:28.525200px;}
._1f{width:29.673600px;}
._23{width:30.736200px;}
._20{width:31.779000px;}
._21{width:32.947200px;}
._24{width:34.194600px;}
._1c{width:35.448600px;}
._29{width:36.623400px;}
._19{width:37.804800px;}
._27{width:39.375600px;}
._18{width:41.137800px;}
._26{width:42.662400px;}
._25{width:44.490600px;}
._31{width:46.695000px;}
._28{width:51.816600px;}
._2f{width:54.615000px;}
._2a{width:59.268600px;}
._1b{width:69.946800px;}
._2b{width:89.634600px;}
._30{width:117.381000px;}
._1a{width:120.304800px;}
._2c{width:151.067400px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.840000px;}
.fs4{font-size:34.800000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:79.023450px;}
.y122{bottom:130.372200px;}
.y40{bottom:131.122800px;}
.y83{bottom:132.441450px;}
.yd7{bottom:135.233550px;}
.y1b4{bottom:136.041300px;}
.yb3{bottom:136.041450px;}
.yf1{bottom:139.583550px;}
.y188{bottom:143.737350px;}
.y135{bottom:143.737500px;}
.y3f{bottom:145.522800px;}
.y160{bottom:148.087350px;}
.y161{bottom:148.087500px;}
.y121{bottom:150.922050px;}
.y82{bottom:152.241450px;}
.yd6{bottom:155.033550px;}
.y1b3{bottom:156.591300px;}
.yb2{bottom:156.591450px;}
.y3e{bottom:159.922800px;}
.yf0{bottom:160.133550px;}
.y187{bottom:163.537350px;}
.y134{bottom:163.537500px;}
.y15f{bottom:168.637350px;}
.y120{bottom:171.472200px;}
.y81{bottom:172.041450px;}
.y3d{bottom:174.322800px;}
.yd5{bottom:174.833550px;}
.y1b2{bottom:177.141300px;}
.yb1{bottom:177.141450px;}
.yef{bottom:180.683550px;}
.y186{bottom:183.337350px;}
.y133{bottom:183.337500px;}
.y3c{bottom:188.722800px;}
.y15e{bottom:189.187350px;}
.y80{bottom:191.841450px;}
.y11f{bottom:192.022200px;}
.yd4{bottom:194.633550px;}
.y1b1{bottom:197.691300px;}
.yb0{bottom:197.691450px;}
.yee{bottom:201.233550px;}
.y185{bottom:203.137350px;}
.y132{bottom:203.137500px;}
.y3b{bottom:207.082800px;}
.y15d{bottom:209.737350px;}
.y7f{bottom:211.641450px;}
.y11e{bottom:212.572200px;}
.yd3{bottom:214.433550px;}
.y1b0{bottom:218.241300px;}
.yaf{bottom:218.241450px;}
.yed{bottom:221.783550px;}
.y184{bottom:222.937350px;}
.y131{bottom:222.937500px;}
.y3a{bottom:230.278650px;}
.y15c{bottom:230.287350px;}
.y7e{bottom:231.441450px;}
.y1df{bottom:231.791700px;}
.y11d{bottom:233.122200px;}
.yd2{bottom:234.233550px;}
.y1af{bottom:238.791300px;}
.yae{bottom:238.791450px;}
.yec{bottom:242.333550px;}
.y183{bottom:242.737350px;}
.y130{bottom:242.737500px;}
.y39{bottom:244.678650px;}
.y15b{bottom:250.837350px;}
.y7d{bottom:251.241450px;}
.y1de{bottom:251.591700px;}
.y11c{bottom:253.672050px;}
.yd1{bottom:254.033550px;}
.y38{bottom:259.078650px;}
.y1ae{bottom:259.341300px;}
.yad{bottom:259.341450px;}
.y182{bottom:262.537350px;}
.y12f{bottom:262.537500px;}
.yeb{bottom:262.883550px;}
.y7c{bottom:271.041450px;}
.y15a{bottom:271.387350px;}
.y1dd{bottom:271.391700px;}
.y37{bottom:273.478650px;}
.yd0{bottom:273.833550px;}
.y11b{bottom:274.222200px;}
.y1ad{bottom:279.891300px;}
.yac{bottom:279.891450px;}
.y181{bottom:282.337350px;}
.y12e{bottom:282.337500px;}
.yea{bottom:283.433550px;}
.y7b{bottom:290.841450px;}
.y1dc{bottom:291.191700px;}
.y36{bottom:291.838650px;}
.y159{bottom:291.937350px;}
.ycf{bottom:293.633550px;}
.y11a{bottom:294.772200px;}
.y1ac{bottom:300.441300px;}
.yab{bottom:300.441450px;}
.y180{bottom:302.137350px;}
.y12d{bottom:302.137500px;}
.y7a{bottom:310.641450px;}
.y1db{bottom:310.991700px;}
.y158{bottom:312.487350px;}
.ye9{bottom:312.487500px;}
.yce{bottom:313.433550px;}
.y119{bottom:315.322200px;}
.y1ab{bottom:320.991300px;}
.yaa{bottom:320.991450px;}
.y17f{bottom:321.937350px;}
.y12c{bottom:321.937500px;}
.y79{bottom:330.441450px;}
.y1da{bottom:330.791700px;}
.y157{bottom:333.037350px;}
.ycd{bottom:333.233550px;}
.y118{bottom:335.872200px;}
.y1aa{bottom:341.541300px;}
.ya9{bottom:341.541450px;}
.y17e{bottom:341.737350px;}
.y12b{bottom:341.737500px;}
.y78{bottom:350.241450px;}
.y1d9{bottom:350.591700px;}
.ycc{bottom:353.033550px;}
.y156{bottom:353.587350px;}
.ye8{bottom:353.587500px;}
.y117{bottom:356.422050px;}
.y4f{bottom:359.829450px;}
.y17d{bottom:361.537350px;}
.y12a{bottom:361.537500px;}
.y1a9{bottom:362.091300px;}
.ya8{bottom:362.091450px;}
.y48{bottom:365.079450px;}
.y77{bottom:370.041450px;}
.y1d8{bottom:370.391700px;}
.ycb{bottom:372.833550px;}
.y155{bottom:374.137350px;}
.ye7{bottom:374.137500px;}
.y116{bottom:376.972200px;}
.y4e{bottom:380.379450px;}
.y17c{bottom:381.337350px;}
.y129{bottom:381.337500px;}
.y1a8{bottom:382.641300px;}
.ya7{bottom:382.641450px;}
.y47{bottom:384.879450px;}
.y76{bottom:389.841450px;}
.y1d7{bottom:390.191700px;}
.yca{bottom:392.633550px;}
.y154{bottom:394.687350px;}
.ye6{bottom:394.687500px;}
.y115{bottom:397.522200px;}
.y4d{bottom:400.929450px;}
.y17b{bottom:401.137350px;}
.y128{bottom:401.137500px;}
.y1a7{bottom:403.191300px;}
.ya6{bottom:403.191450px;}
.y46{bottom:404.679450px;}
.y75{bottom:409.641450px;}
.y1d6{bottom:409.991700px;}
.yc9{bottom:412.433550px;}
.y153{bottom:415.237350px;}
.ye5{bottom:415.237500px;}
.y114{bottom:418.072200px;}
.y17a{bottom:420.937350px;}
.y127{bottom:420.937500px;}
.y4c{bottom:421.479450px;}
.y1a6{bottom:423.741300px;}
.ya5{bottom:423.741450px;}
.y45{bottom:424.479450px;}
.y74{bottom:429.441450px;}
.y1d5{bottom:429.791700px;}
.yc8{bottom:432.233550px;}
.y152{bottom:435.787350px;}
.ye4{bottom:435.787500px;}
.y113{bottom:438.622200px;}
.y179{bottom:440.737350px;}
.y126{bottom:440.737500px;}
.y4b{bottom:442.029450px;}
.y44{bottom:444.279450px;}
.y1a5{bottom:444.291300px;}
.ya4{bottom:444.291450px;}
.y73{bottom:449.241450px;}
.y1d4{bottom:449.591700px;}
.yc7{bottom:452.033550px;}
.y151{bottom:456.337350px;}
.ye3{bottom:456.337500px;}
.y112{bottom:459.172200px;}
.y178{bottom:460.537350px;}
.y125{bottom:460.537500px;}
.y4a{bottom:462.579600px;}
.y43{bottom:464.079600px;}
.y1a4{bottom:464.841300px;}
.ya3{bottom:464.841450px;}
.y72{bottom:469.041450px;}
.y1d3{bottom:469.391700px;}
.yc6{bottom:471.833550px;}
.y150{bottom:476.887350px;}
.ye2{bottom:476.887500px;}
.y111{bottom:479.722200px;}
.y177{bottom:480.337350px;}
.y124{bottom:480.337500px;}
.y49{bottom:483.129600px;}
.y42{bottom:483.879600px;}
.y1a3{bottom:485.391300px;}
.ya2{bottom:485.391450px;}
.y71{bottom:488.841450px;}
.y1d2{bottom:489.191700px;}
.y14f{bottom:497.437350px;}
.ye1{bottom:497.437500px;}
.y176{bottom:500.137350px;}
.yc5{bottom:500.137500px;}
.y110{bottom:500.272200px;}
.y1a2{bottom:505.941300px;}
.ya1{bottom:505.941450px;}
.y70{bottom:508.641450px;}
.y1d1{bottom:508.991700px;}
.y41{bottom:512.183550px;}
.y14e{bottom:517.987350px;}
.ye0{bottom:517.987500px;}
.y175{bottom:519.937350px;}
.y123{bottom:519.937500px;}
.y10f{bottom:520.822200px;}
.y1a1{bottom:526.491300px;}
.ya0{bottom:526.491450px;}
.y6f{bottom:528.441450px;}
.y1d0{bottom:528.791700px;}
.y14d{bottom:538.537350px;}
.ydf{bottom:538.537500px;}
.y174{bottom:539.737350px;}
.yc4{bottom:539.737500px;}
.y10e{bottom:541.372200px;}
.y1a0{bottom:547.041300px;}
.y9f{bottom:547.041450px;}
.y6e{bottom:548.241450px;}
.y1cf{bottom:548.591700px;}
.y14c{bottom:559.087350px;}
.yde{bottom:559.087500px;}
.y173{bottom:559.537350px;}
.yc3{bottom:559.537500px;}
.y10d{bottom:561.922200px;}
.y19f{bottom:567.591300px;}
.y9e{bottom:567.591450px;}
.y6d{bottom:568.041450px;}
.y1ce{bottom:568.391700px;}
.y1c{bottom:576.157500px;}
.y35{bottom:576.907500px;}
.y172{bottom:579.337350px;}
.yc2{bottom:579.337500px;}
.y14b{bottom:579.637350px;}
.ydd{bottom:579.637500px;}
.y10c{bottom:582.472200px;}
.y6c{bottom:587.841450px;}
.y19e{bottom:588.141300px;}
.y9d{bottom:588.141450px;}
.y1cd{bottom:588.191700px;}
.y1b{bottom:591.157500px;}
.y34{bottom:591.907500px;}
.y171{bottom:599.137350px;}
.yc1{bottom:599.137500px;}
.y14a{bottom:600.187350px;}
.ydc{bottom:600.187500px;}
.y10b{bottom:603.022200px;}
.y6b{bottom:607.641450px;}
.y1cc{bottom:607.991700px;}
.y19d{bottom:608.691300px;}
.y9c{bottom:608.691450px;}
.y1a{bottom:614.661450px;}
.y33{bottom:615.411450px;}
.y170{bottom:618.937350px;}
.yc0{bottom:618.937500px;}
.y149{bottom:620.737350px;}
.ydb{bottom:620.737500px;}
.y10a{bottom:623.572200px;}
.y6a{bottom:627.441450px;}
.y1cb{bottom:627.791700px;}
.y19c{bottom:629.241300px;}
.y9b{bottom:629.241450px;}
.y19{bottom:629.661450px;}
.y32{bottom:630.411450px;}
.y16f{bottom:638.737350px;}
.ybf{bottom:638.737500px;}
.y148{bottom:641.287350px;}
.yda{bottom:641.287500px;}
.y109{bottom:644.122200px;}
.y18{bottom:644.661450px;}
.y31{bottom:645.411450px;}
.y69{bottom:647.241450px;}
.y1ca{bottom:647.591700px;}
.y19b{bottom:649.791300px;}
.y9a{bottom:649.791450px;}
.y16e{bottom:658.537350px;}
.ybe{bottom:658.537500px;}
.y17{bottom:659.661450px;}
.y30{bottom:660.411450px;}
.y147{bottom:661.837350px;}
.yd9{bottom:661.837500px;}
.y108{bottom:664.672200px;}
.y68{bottom:667.041450px;}
.y1c9{bottom:667.391700px;}
.y19a{bottom:670.341300px;}
.y99{bottom:670.341450px;}
.y16{bottom:674.661450px;}
.y2f{bottom:675.411450px;}
.y16d{bottom:678.337350px;}
.ybd{bottom:678.337500px;}
.y146{bottom:682.387350px;}
.yd8{bottom:682.387500px;}
.y107{bottom:685.222200px;}
.y67{bottom:686.841450px;}
.y1c8{bottom:687.191700px;}
.y15{bottom:689.661450px;}
.y2e{bottom:690.411450px;}
.y199{bottom:690.891300px;}
.y98{bottom:690.891450px;}
.y16c{bottom:698.137350px;}
.ybc{bottom:698.137500px;}
.y145{bottom:702.937350px;}
.y14{bottom:704.661450px;}
.y2d{bottom:705.411450px;}
.y106{bottom:705.772200px;}
.y66{bottom:706.641450px;}
.y1c7{bottom:706.991700px;}
.y198{bottom:711.441300px;}
.y97{bottom:711.441450px;}
.y16b{bottom:717.937350px;}
.ybb{bottom:717.937500px;}
.y13{bottom:719.661450px;}
.y2c{bottom:720.411450px;}
.y144{bottom:723.487350px;}
.y105{bottom:726.322200px;}
.y65{bottom:726.441450px;}
.y1c6{bottom:726.791700px;}
.y197{bottom:731.991300px;}
.y96{bottom:731.991450px;}
.y12{bottom:734.661450px;}
.y2b{bottom:735.411450px;}
.y16a{bottom:737.737350px;}
.yba{bottom:737.737500px;}
.y143{bottom:744.037350px;}
.y64{bottom:746.241450px;}
.y1c5{bottom:746.591700px;}
.y104{bottom:746.872200px;}
.y11{bottom:749.661450px;}
.y2a{bottom:750.411450px;}
.y196{bottom:752.541300px;}
.y95{bottom:752.541450px;}
.y169{bottom:757.537350px;}
.yb9{bottom:757.537500px;}
.y142{bottom:764.587350px;}
.y10{bottom:764.661450px;}
.y29{bottom:765.411450px;}
.y63{bottom:766.041450px;}
.y1c4{bottom:766.391700px;}
.y103{bottom:767.422200px;}
.y195{bottom:773.091300px;}
.y94{bottom:773.091450px;}
.y168{bottom:777.337350px;}
.yb8{bottom:777.337500px;}
.yf{bottom:779.661450px;}
.y28{bottom:780.411450px;}
.y141{bottom:785.137350px;}
.y62{bottom:785.841450px;}
.y1c3{bottom:786.191700px;}
.y102{bottom:787.972200px;}
.y194{bottom:793.641300px;}
.y93{bottom:793.641450px;}
.ye{bottom:794.661450px;}
.y27{bottom:795.411450px;}
.y167{bottom:797.137350px;}
.yb7{bottom:797.137500px;}
.y61{bottom:805.641450px;}
.y140{bottom:805.687350px;}
.y1c2{bottom:805.991700px;}
.y101{bottom:808.522200px;}
.yd{bottom:809.661450px;}
.y26{bottom:810.411450px;}
.y193{bottom:814.191300px;}
.y92{bottom:814.191450px;}
.y166{bottom:816.937350px;}
.yb6{bottom:816.937500px;}
.yc{bottom:824.661450px;}
.y25{bottom:825.411450px;}
.y60{bottom:825.441450px;}
.y1c1{bottom:825.791700px;}
.y13f{bottom:826.237350px;}
.y100{bottom:829.072200px;}
.y192{bottom:834.741300px;}
.y91{bottom:834.741450px;}
.y165{bottom:836.737350px;}
.yb5{bottom:836.737500px;}
.yb{bottom:839.661450px;}
.y24{bottom:840.411450px;}
.y5f{bottom:845.241450px;}
.y1c0{bottom:845.591700px;}
.y13e{bottom:846.787350px;}
.yff{bottom:849.622200px;}
.ya{bottom:854.661450px;}
.y191{bottom:855.291300px;}
.y90{bottom:855.291450px;}
.y23{bottom:855.411450px;}
.y164{bottom:856.537350px;}
.yb4{bottom:856.537500px;}
.y5e{bottom:865.041450px;}
.y1bf{bottom:865.391850px;}
.y13d{bottom:867.337350px;}
.yfe{bottom:870.172050px;}
.y190{bottom:875.841300px;}
.y8f{bottom:875.841450px;}
.y163{bottom:876.337350px;}
.y5d{bottom:884.841450px;}
.y1be{bottom:885.191700px;}
.y13c{bottom:887.887350px;}
.yfd{bottom:890.722050px;}
.y162{bottom:896.137350px;}
.y8e{bottom:896.391300px;}
.y5c{bottom:904.641300px;}
.y1bd{bottom:904.991700px;}
.y13b{bottom:908.437350px;}
.yfc{bottom:911.272050px;}
.y18f{bottom:916.941300px;}
.y8d{bottom:916.941450px;}
.y9{bottom:923.713200px;}
.y22{bottom:923.713350px;}
.y5b{bottom:924.441450px;}
.y1bc{bottom:924.791700px;}
.y13a{bottom:928.987350px;}
.yfb{bottom:931.822050px;}
.y18e{bottom:937.491300px;}
.y8c{bottom:937.491450px;}
.y5a{bottom:944.241450px;}
.y1bb{bottom:944.591700px;}
.y8{bottom:948.965100px;}
.y21{bottom:948.965400px;}
.y139{bottom:949.537350px;}
.yfa{bottom:952.372050px;}
.y18d{bottom:958.041300px;}
.y8b{bottom:958.041450px;}
.y59{bottom:964.041450px;}
.y1ba{bottom:964.391850px;}
.y138{bottom:970.087350px;}
.yf9{bottom:972.922050px;}
.y8a{bottom:978.591300px;}
.y58{bottom:983.841300px;}
.y1b9{bottom:984.191700px;}
.y137{bottom:990.637350px;}
.yf8{bottom:993.472050px;}
.y89{bottom:999.141300px;}
.y20{bottom:1003.565250px;}
.y57{bottom:1003.641300px;}
.y1b8{bottom:1003.991700px;}
.y136{bottom:1011.187350px;}
.yf7{bottom:1014.022050px;}
.y18c{bottom:1019.691300px;}
.y88{bottom:1019.691450px;}
.y7{bottom:1023.365100px;}
.y1f{bottom:1023.365250px;}
.y56{bottom:1023.441450px;}
.y1b7{bottom:1023.791700px;}
.yf6{bottom:1034.572050px;}
.y18b{bottom:1040.241300px;}
.y87{bottom:1040.241450px;}
.y6{bottom:1043.165100px;}
.y1e{bottom:1043.165250px;}
.y55{bottom:1043.241450px;}
.yf5{bottom:1055.122050px;}
.y1b5{bottom:1056.057450px;}
.y18a{bottom:1060.791300px;}
.y86{bottom:1060.791450px;}
.y5{bottom:1062.965100px;}
.y1d{bottom:1062.965400px;}
.y54{bottom:1063.041450px;}
.yf4{bottom:1075.672050px;}
.y1b6{bottom:1081.173600px;}
.y85{bottom:1081.341300px;}
.y53{bottom:1082.841300px;}
.yf3{bottom:1096.222050px;}
.y84{bottom:1101.891300px;}
.y52{bottom:1102.641300px;}
.yf2{bottom:1116.772050px;}
.y4{bottom:1120.755750px;}
.y189{bottom:1122.441300px;}
.y51{bottom:1122.441450px;}
.y2{bottom:1167.058200px;}
.y50{bottom:1174.874550px;}
.y1{bottom:1181.458200px;}
.ha{height:25.878750px;}
.hc{height:33.656250px;}
.h3{height:35.520000px;}
.h2{height:39.960000px;}
.h10{height:40.416000px;}
.h14{height:40.458984px;}
.hb{height:41.718750px;}
.h4{height:42.480000px;}
.h9{height:42.576000px;}
.h11{height:44.504883px;}
.hd{height:46.148438px;}
.h13{height:46.277344px;}
.hf{height:46.470703px;}
.h12{height:47.308594px;}
.h5{height:50.520000px;}
.h7{height:53.640000px;}
.he{height:57.363281px;}
.h6{height:59.004000px;}
.h8{height:62.911200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x4{left:112.921200px;}
.x12{left:114.803100px;}
.x8{left:119.148900px;}
.x1a{left:131.700300px;}
.x5{left:134.783250px;}
.x1{left:139.812900px;}
.x13{left:148.818900px;}
.x16{left:157.398750px;}
.x7{left:195.317550px;}
.x6{left:219.568950px;}
.x15{left:323.616900px;}
.x18{left:433.996950px;}
.x2{left:435.039450px;}
.x19{left:436.076700px;}
.xa{left:457.718400px;}
.x10{left:469.842450px;}
.x9{left:476.503650px;}
.xb{left:479.011800px;}
.x1b{left:482.487600px;}
.xf{left:491.102250px;}
.x14{left:499.606350px;}
.x17{left:508.186050px;}
.xe{left:546.104850px;}
.xc{left:562.063200px;}
.xd{left:570.356400px;}
.x11{left:575.432550px;}
@media print{
.v4{vertical-align:-14.080000pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v2{vertical-align:28.266667pt;}
.ls8{letter-spacing:-1.173333pt;}
.ls7{letter-spacing:-0.880000pt;}
.ls1{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.821333pt;}
.lsc{letter-spacing:0.938667pt;}
.ls9{letter-spacing:2.229333pt;}
.lsb{letter-spacing:2.522667pt;}
.ls5{letter-spacing:11.888000pt;}
.ls4{letter-spacing:14.847467pt;}
.ls6{letter-spacing:14.848000pt;}
.ws44{word-spacing:-15.429333pt;}
.ws42{word-spacing:-15.136000pt;}
.ws45{word-spacing:-13.845333pt;}
.ws43{word-spacing:-13.728000pt;}
.ws2b{word-spacing:-12.906667pt;}
.ws7{word-spacing:-2.389333pt;}
.ws25{word-spacing:-2.053333pt;}
.ws20{word-spacing:-1.877333pt;}
.ws10{word-spacing:-1.834667pt;}
.ws2a{word-spacing:-1.114667pt;}
.ws3e{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.512000pt;}
.ws3a{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.085333pt;}
.wsd{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.586667pt;}
.ws3c{word-spacing:0.762667pt;}
.ws36{word-spacing:0.880000pt;}
.ws1e{word-spacing:0.896000pt;}
.ws8{word-spacing:1.066667pt;}
.ws40{word-spacing:1.173333pt;}
.ws1b{word-spacing:1.322667pt;}
.ws5{word-spacing:1.450667pt;}
.ws4{word-spacing:1.706667pt;}
.wsf{word-spacing:1.920000pt;}
.ws3b{word-spacing:2.112000pt;}
.ws33{word-spacing:2.170667pt;}
.ws17{word-spacing:2.176000pt;}
.ws41{word-spacing:2.933333pt;}
.ws29{word-spacing:3.050667pt;}
.wse{word-spacing:3.114667pt;}
.ws15{word-spacing:3.456000pt;}
.ws30{word-spacing:3.637333pt;}
.ws1d{word-spacing:3.754667pt;}
.ws3d{word-spacing:4.165333pt;}
.ws2{word-spacing:4.181333pt;}
.ws3{word-spacing:4.394667pt;}
.ws18{word-spacing:4.608000pt;}
.ws23{word-spacing:4.693333pt;}
.wsc{word-spacing:4.778667pt;}
.wsb{word-spacing:4.949333pt;}
.ws27{word-spacing:5.162667pt;}
.ws1f{word-spacing:5.504000pt;}
.ws34{word-spacing:5.749333pt;}
.ws6{word-spacing:6.741333pt;}
.ws31{word-spacing:6.864000pt;}
.ws11{word-spacing:7.424000pt;}
.ws2f{word-spacing:8.330667pt;}
.ws19{word-spacing:8.362667pt;}
.ws21{word-spacing:8.405333pt;}
.ws38{word-spacing:9.152000pt;}
.ws9{word-spacing:9.557333pt;}
.wsa{word-spacing:9.728000pt;}
.ws24{word-spacing:9.738667pt;}
.ws12{word-spacing:9.813333pt;}
.ws2c{word-spacing:10.032000pt;}
.ws13{word-spacing:10.197333pt;}
.ws1a{word-spacing:11.349333pt;}
.ws37{word-spacing:11.733333pt;}
.ws32{word-spacing:11.850667pt;}
.ws3f{word-spacing:12.144000pt;}
.ws16{word-spacing:12.202667pt;}
.ws2d{word-spacing:12.261333pt;}
.ws35{word-spacing:13.317333pt;}
.ws22{word-spacing:13.952000pt;}
.ws14{word-spacing:15.573333pt;}
.ws28{word-spacing:16.016000pt;}
.ws39{word-spacing:20.768000pt;}
.ws26{word-spacing:23.936000pt;}
._1d{margin-left:-43.412800pt;}
._2d{margin-left:-12.361067pt;}
._2e{margin-left:-6.952000pt;}
._22{margin-left:-5.907733pt;}
._10{margin-left:-5.016000pt;}
._11{margin-left:-3.842667pt;}
._2{margin-left:-2.564267pt;}
._0{margin-left:-1.540267pt;}
._15{width:0.913067pt;}
._6{width:1.821867pt;}
._f{width:2.739200pt;}
._5{width:3.878400pt;}
._4{width:4.934400pt;}
._9{width:6.101333pt;}
._8{width:7.785067pt;}
._12{width:8.993600pt;}
._b{width:10.137173pt;}
._1{width:11.082347pt;}
._16{width:11.996480pt;}
._e{width:14.285333pt;}
._1e{width:15.212267pt;}
._3{width:16.170667pt;}
._17{width:17.271467pt;}
._a{width:18.397867pt;}
._14{width:19.635733pt;}
._7{width:20.864000pt;}
._c{width:22.279467pt;}
._13{width:23.900800pt;}
._d{width:25.355733pt;}
._1f{width:26.376533pt;}
._23{width:27.321067pt;}
._20{width:28.248000pt;}
._21{width:29.286400pt;}
._24{width:30.395200pt;}
._1c{width:31.509867pt;}
._29{width:32.554133pt;}
._19{width:33.604267pt;}
._27{width:35.000533pt;}
._18{width:36.566933pt;}
._26{width:37.922133pt;}
._25{width:39.547200pt;}
._31{width:41.506667pt;}
._28{width:46.059200pt;}
._2f{width:48.546667pt;}
._2a{width:52.683200pt;}
._1b{width:62.174933pt;}
._2b{width:79.675200pt;}
._30{width:104.338667pt;}
._1a{width:106.937600pt;}
._2c{width:134.282133pt;}
.fs5{font-size:24.746667pt;}
.fs4{font-size:30.933333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:70.243067pt;}
.y122{bottom:115.886400pt;}
.y40{bottom:116.553600pt;}
.y83{bottom:117.725733pt;}
.yd7{bottom:120.207600pt;}
.y1b4{bottom:120.925600pt;}
.yb3{bottom:120.925733pt;}
.yf1{bottom:124.074267pt;}
.y188{bottom:127.766533pt;}
.y135{bottom:127.766667pt;}
.y3f{bottom:129.353600pt;}
.y160{bottom:131.633200pt;}
.y161{bottom:131.633333pt;}
.y121{bottom:134.152933pt;}
.y82{bottom:135.325733pt;}
.yd6{bottom:137.807600pt;}
.y1b3{bottom:139.192267pt;}
.yb2{bottom:139.192400pt;}
.y3e{bottom:142.153600pt;}
.yf0{bottom:142.340933pt;}
.y187{bottom:145.366533pt;}
.y134{bottom:145.366667pt;}
.y15f{bottom:149.899867pt;}
.y120{bottom:152.419733pt;}
.y81{bottom:152.925733pt;}
.y3d{bottom:154.953600pt;}
.yd5{bottom:155.407600pt;}
.y1b2{bottom:157.458933pt;}
.yb1{bottom:157.459067pt;}
.yef{bottom:160.607600pt;}
.y186{bottom:162.966533pt;}
.y133{bottom:162.966667pt;}
.y3c{bottom:167.753600pt;}
.y15e{bottom:168.166533pt;}
.y80{bottom:170.525733pt;}
.y11f{bottom:170.686400pt;}
.yd4{bottom:173.007600pt;}
.y1b1{bottom:175.725600pt;}
.yb0{bottom:175.725733pt;}
.yee{bottom:178.874267pt;}
.y185{bottom:180.566533pt;}
.y132{bottom:180.566667pt;}
.y3b{bottom:184.073600pt;}
.y15d{bottom:186.433200pt;}
.y7f{bottom:188.125733pt;}
.y11e{bottom:188.953067pt;}
.yd3{bottom:190.607600pt;}
.y1b0{bottom:193.992267pt;}
.yaf{bottom:193.992400pt;}
.yed{bottom:197.140933pt;}
.y184{bottom:198.166533pt;}
.y131{bottom:198.166667pt;}
.y3a{bottom:204.692133pt;}
.y15c{bottom:204.699867pt;}
.y7e{bottom:205.725733pt;}
.y1df{bottom:206.037067pt;}
.y11d{bottom:207.219733pt;}
.yd2{bottom:208.207600pt;}
.y1af{bottom:212.258933pt;}
.yae{bottom:212.259067pt;}
.yec{bottom:215.407600pt;}
.y183{bottom:215.766533pt;}
.y130{bottom:215.766667pt;}
.y39{bottom:217.492133pt;}
.y15b{bottom:222.966533pt;}
.y7d{bottom:223.325733pt;}
.y1de{bottom:223.637067pt;}
.y11c{bottom:225.486267pt;}
.yd1{bottom:225.807600pt;}
.y38{bottom:230.292133pt;}
.y1ae{bottom:230.525600pt;}
.yad{bottom:230.525733pt;}
.y182{bottom:233.366533pt;}
.y12f{bottom:233.366667pt;}
.yeb{bottom:233.674267pt;}
.y7c{bottom:240.925733pt;}
.y15a{bottom:241.233200pt;}
.y1dd{bottom:241.237067pt;}
.y37{bottom:243.092133pt;}
.yd0{bottom:243.407600pt;}
.y11b{bottom:243.753067pt;}
.y1ad{bottom:248.792267pt;}
.yac{bottom:248.792400pt;}
.y181{bottom:250.966533pt;}
.y12e{bottom:250.966667pt;}
.yea{bottom:251.940933pt;}
.y7b{bottom:258.525733pt;}
.y1dc{bottom:258.837067pt;}
.y36{bottom:259.412133pt;}
.y159{bottom:259.499867pt;}
.ycf{bottom:261.007600pt;}
.y11a{bottom:262.019733pt;}
.y1ac{bottom:267.058933pt;}
.yab{bottom:267.059067pt;}
.y180{bottom:268.566533pt;}
.y12d{bottom:268.566667pt;}
.y7a{bottom:276.125733pt;}
.y1db{bottom:276.437067pt;}
.y158{bottom:277.766533pt;}
.ye9{bottom:277.766667pt;}
.yce{bottom:278.607600pt;}
.y119{bottom:280.286400pt;}
.y1ab{bottom:285.325600pt;}
.yaa{bottom:285.325733pt;}
.y17f{bottom:286.166533pt;}
.y12c{bottom:286.166667pt;}
.y79{bottom:293.725733pt;}
.y1da{bottom:294.037067pt;}
.y157{bottom:296.033200pt;}
.ycd{bottom:296.207600pt;}
.y118{bottom:298.553067pt;}
.y1aa{bottom:303.592267pt;}
.ya9{bottom:303.592400pt;}
.y17e{bottom:303.766533pt;}
.y12b{bottom:303.766667pt;}
.y78{bottom:311.325733pt;}
.y1d9{bottom:311.637067pt;}
.ycc{bottom:313.807600pt;}
.y156{bottom:314.299867pt;}
.ye8{bottom:314.300000pt;}
.y117{bottom:316.819600pt;}
.y4f{bottom:319.848400pt;}
.y17d{bottom:321.366533pt;}
.y12a{bottom:321.366667pt;}
.y1a9{bottom:321.858933pt;}
.ya8{bottom:321.859067pt;}
.y48{bottom:324.515067pt;}
.y77{bottom:328.925733pt;}
.y1d8{bottom:329.237067pt;}
.ycb{bottom:331.407600pt;}
.y155{bottom:332.566533pt;}
.ye7{bottom:332.566667pt;}
.y116{bottom:335.086400pt;}
.y4e{bottom:338.115067pt;}
.y17c{bottom:338.966533pt;}
.y129{bottom:338.966667pt;}
.y1a8{bottom:340.125600pt;}
.ya7{bottom:340.125733pt;}
.y47{bottom:342.115067pt;}
.y76{bottom:346.525733pt;}
.y1d7{bottom:346.837067pt;}
.yca{bottom:349.007600pt;}
.y154{bottom:350.833200pt;}
.ye6{bottom:350.833333pt;}
.y115{bottom:353.353067pt;}
.y4d{bottom:356.381733pt;}
.y17b{bottom:356.566533pt;}
.y128{bottom:356.566667pt;}
.y1a7{bottom:358.392267pt;}
.ya6{bottom:358.392400pt;}
.y46{bottom:359.715067pt;}
.y75{bottom:364.125733pt;}
.y1d6{bottom:364.437067pt;}
.yc9{bottom:366.607600pt;}
.y153{bottom:369.099867pt;}
.ye5{bottom:369.100000pt;}
.y114{bottom:371.619733pt;}
.y17a{bottom:374.166533pt;}
.y127{bottom:374.166667pt;}
.y4c{bottom:374.648400pt;}
.y1a6{bottom:376.658933pt;}
.ya5{bottom:376.659067pt;}
.y45{bottom:377.315067pt;}
.y74{bottom:381.725733pt;}
.y1d5{bottom:382.037067pt;}
.yc8{bottom:384.207600pt;}
.y152{bottom:387.366533pt;}
.ye4{bottom:387.366667pt;}
.y113{bottom:389.886400pt;}
.y179{bottom:391.766533pt;}
.y126{bottom:391.766667pt;}
.y4b{bottom:392.915067pt;}
.y44{bottom:394.915067pt;}
.y1a5{bottom:394.925600pt;}
.ya4{bottom:394.925733pt;}
.y73{bottom:399.325733pt;}
.y1d4{bottom:399.637067pt;}
.yc7{bottom:401.807600pt;}
.y151{bottom:405.633200pt;}
.ye3{bottom:405.633333pt;}
.y112{bottom:408.153067pt;}
.y178{bottom:409.366533pt;}
.y125{bottom:409.366667pt;}
.y4a{bottom:411.181867pt;}
.y43{bottom:412.515200pt;}
.y1a4{bottom:413.192267pt;}
.ya3{bottom:413.192400pt;}
.y72{bottom:416.925733pt;}
.y1d3{bottom:417.237067pt;}
.yc6{bottom:419.407600pt;}
.y150{bottom:423.899867pt;}
.ye2{bottom:423.900000pt;}
.y111{bottom:426.419733pt;}
.y177{bottom:426.966533pt;}
.y124{bottom:426.966667pt;}
.y49{bottom:429.448533pt;}
.y42{bottom:430.115200pt;}
.y1a3{bottom:431.458933pt;}
.ya2{bottom:431.459067pt;}
.y71{bottom:434.525733pt;}
.y1d2{bottom:434.837067pt;}
.y14f{bottom:442.166533pt;}
.ye1{bottom:442.166667pt;}
.y176{bottom:444.566533pt;}
.yc5{bottom:444.566667pt;}
.y110{bottom:444.686400pt;}
.y1a2{bottom:449.725600pt;}
.ya1{bottom:449.725733pt;}
.y70{bottom:452.125733pt;}
.y1d1{bottom:452.437067pt;}
.y41{bottom:455.274267pt;}
.y14e{bottom:460.433200pt;}
.ye0{bottom:460.433333pt;}
.y175{bottom:462.166533pt;}
.y123{bottom:462.166667pt;}
.y10f{bottom:462.953067pt;}
.y1a1{bottom:467.992267pt;}
.ya0{bottom:467.992400pt;}
.y6f{bottom:469.725733pt;}
.y1d0{bottom:470.037067pt;}
.y14d{bottom:478.699867pt;}
.ydf{bottom:478.700000pt;}
.y174{bottom:479.766533pt;}
.yc4{bottom:479.766667pt;}
.y10e{bottom:481.219733pt;}
.y1a0{bottom:486.258933pt;}
.y9f{bottom:486.259067pt;}
.y6e{bottom:487.325733pt;}
.y1cf{bottom:487.637067pt;}
.y14c{bottom:496.966533pt;}
.yde{bottom:496.966667pt;}
.y173{bottom:497.366533pt;}
.yc3{bottom:497.366667pt;}
.y10d{bottom:499.486400pt;}
.y19f{bottom:504.525600pt;}
.y9e{bottom:504.525733pt;}
.y6d{bottom:504.925733pt;}
.y1ce{bottom:505.237067pt;}
.y1c{bottom:512.140000pt;}
.y35{bottom:512.806667pt;}
.y172{bottom:514.966533pt;}
.yc2{bottom:514.966667pt;}
.y14b{bottom:515.233200pt;}
.ydd{bottom:515.233333pt;}
.y10c{bottom:517.753067pt;}
.y6c{bottom:522.525733pt;}
.y19e{bottom:522.792267pt;}
.y9d{bottom:522.792400pt;}
.y1cd{bottom:522.837067pt;}
.y1b{bottom:525.473333pt;}
.y34{bottom:526.140000pt;}
.y171{bottom:532.566533pt;}
.yc1{bottom:532.566667pt;}
.y14a{bottom:533.499867pt;}
.ydc{bottom:533.500000pt;}
.y10b{bottom:536.019733pt;}
.y6b{bottom:540.125733pt;}
.y1cc{bottom:540.437067pt;}
.y19d{bottom:541.058933pt;}
.y9c{bottom:541.059067pt;}
.y1a{bottom:546.365733pt;}
.y33{bottom:547.032400pt;}
.y170{bottom:550.166533pt;}
.yc0{bottom:550.166667pt;}
.y149{bottom:551.766533pt;}
.ydb{bottom:551.766667pt;}
.y10a{bottom:554.286400pt;}
.y6a{bottom:557.725733pt;}
.y1cb{bottom:558.037067pt;}
.y19c{bottom:559.325600pt;}
.y9b{bottom:559.325733pt;}
.y19{bottom:559.699067pt;}
.y32{bottom:560.365733pt;}
.y16f{bottom:567.766533pt;}
.ybf{bottom:567.766667pt;}
.y148{bottom:570.033200pt;}
.yda{bottom:570.033333pt;}
.y109{bottom:572.553067pt;}
.y18{bottom:573.032400pt;}
.y31{bottom:573.699067pt;}
.y69{bottom:575.325733pt;}
.y1ca{bottom:575.637067pt;}
.y19b{bottom:577.592267pt;}
.y9a{bottom:577.592400pt;}
.y16e{bottom:585.366533pt;}
.ybe{bottom:585.366667pt;}
.y17{bottom:586.365733pt;}
.y30{bottom:587.032400pt;}
.y147{bottom:588.299867pt;}
.yd9{bottom:588.300000pt;}
.y108{bottom:590.819733pt;}
.y68{bottom:592.925733pt;}
.y1c9{bottom:593.237067pt;}
.y19a{bottom:595.858933pt;}
.y99{bottom:595.859067pt;}
.y16{bottom:599.699067pt;}
.y2f{bottom:600.365733pt;}
.y16d{bottom:602.966533pt;}
.ybd{bottom:602.966667pt;}
.y146{bottom:606.566533pt;}
.yd8{bottom:606.566667pt;}
.y107{bottom:609.086400pt;}
.y67{bottom:610.525733pt;}
.y1c8{bottom:610.837067pt;}
.y15{bottom:613.032400pt;}
.y2e{bottom:613.699067pt;}
.y199{bottom:614.125600pt;}
.y98{bottom:614.125733pt;}
.y16c{bottom:620.566533pt;}
.ybc{bottom:620.566667pt;}
.y145{bottom:624.833200pt;}
.y14{bottom:626.365733pt;}
.y2d{bottom:627.032400pt;}
.y106{bottom:627.353067pt;}
.y66{bottom:628.125733pt;}
.y1c7{bottom:628.437067pt;}
.y198{bottom:632.392267pt;}
.y97{bottom:632.392400pt;}
.y16b{bottom:638.166533pt;}
.ybb{bottom:638.166667pt;}
.y13{bottom:639.699067pt;}
.y2c{bottom:640.365733pt;}
.y144{bottom:643.099867pt;}
.y105{bottom:645.619733pt;}
.y65{bottom:645.725733pt;}
.y1c6{bottom:646.037067pt;}
.y197{bottom:650.658933pt;}
.y96{bottom:650.659067pt;}
.y12{bottom:653.032400pt;}
.y2b{bottom:653.699067pt;}
.y16a{bottom:655.766533pt;}
.yba{bottom:655.766667pt;}
.y143{bottom:661.366533pt;}
.y64{bottom:663.325733pt;}
.y1c5{bottom:663.637067pt;}
.y104{bottom:663.886400pt;}
.y11{bottom:666.365733pt;}
.y2a{bottom:667.032400pt;}
.y196{bottom:668.925600pt;}
.y95{bottom:668.925733pt;}
.y169{bottom:673.366533pt;}
.yb9{bottom:673.366667pt;}
.y142{bottom:679.633200pt;}
.y10{bottom:679.699067pt;}
.y29{bottom:680.365733pt;}
.y63{bottom:680.925733pt;}
.y1c4{bottom:681.237067pt;}
.y103{bottom:682.153067pt;}
.y195{bottom:687.192267pt;}
.y94{bottom:687.192400pt;}
.y168{bottom:690.966533pt;}
.yb8{bottom:690.966667pt;}
.yf{bottom:693.032400pt;}
.y28{bottom:693.699067pt;}
.y141{bottom:697.899867pt;}
.y62{bottom:698.525733pt;}
.y1c3{bottom:698.837067pt;}
.y102{bottom:700.419733pt;}
.y194{bottom:705.458933pt;}
.y93{bottom:705.459067pt;}
.ye{bottom:706.365733pt;}
.y27{bottom:707.032400pt;}
.y167{bottom:708.566533pt;}
.yb7{bottom:708.566667pt;}
.y61{bottom:716.125733pt;}
.y140{bottom:716.166533pt;}
.y1c2{bottom:716.437067pt;}
.y101{bottom:718.686400pt;}
.yd{bottom:719.699067pt;}
.y26{bottom:720.365733pt;}
.y193{bottom:723.725600pt;}
.y92{bottom:723.725733pt;}
.y166{bottom:726.166533pt;}
.yb6{bottom:726.166667pt;}
.yc{bottom:733.032400pt;}
.y25{bottom:733.699067pt;}
.y60{bottom:733.725733pt;}
.y1c1{bottom:734.037067pt;}
.y13f{bottom:734.433200pt;}
.y100{bottom:736.953067pt;}
.y192{bottom:741.992267pt;}
.y91{bottom:741.992400pt;}
.y165{bottom:743.766533pt;}
.yb5{bottom:743.766667pt;}
.yb{bottom:746.365733pt;}
.y24{bottom:747.032400pt;}
.y5f{bottom:751.325733pt;}
.y1c0{bottom:751.637067pt;}
.y13e{bottom:752.699867pt;}
.yff{bottom:755.219733pt;}
.ya{bottom:759.699067pt;}
.y191{bottom:760.258933pt;}
.y90{bottom:760.259067pt;}
.y23{bottom:760.365733pt;}
.y164{bottom:761.366533pt;}
.yb4{bottom:761.366667pt;}
.y5e{bottom:768.925733pt;}
.y1bf{bottom:769.237200pt;}
.y13d{bottom:770.966533pt;}
.yfe{bottom:773.486267pt;}
.y190{bottom:778.525600pt;}
.y8f{bottom:778.525733pt;}
.y163{bottom:778.966533pt;}
.y5d{bottom:786.525733pt;}
.y1be{bottom:786.837067pt;}
.y13c{bottom:789.233200pt;}
.yfd{bottom:791.752933pt;}
.y162{bottom:796.566533pt;}
.y8e{bottom:796.792267pt;}
.y5c{bottom:804.125600pt;}
.y1bd{bottom:804.437067pt;}
.y13b{bottom:807.499867pt;}
.yfc{bottom:810.019600pt;}
.y18f{bottom:815.058933pt;}
.y8d{bottom:815.059067pt;}
.y9{bottom:821.078400pt;}
.y22{bottom:821.078533pt;}
.y5b{bottom:821.725733pt;}
.y1bc{bottom:822.037067pt;}
.y13a{bottom:825.766533pt;}
.yfb{bottom:828.286267pt;}
.y18e{bottom:833.325600pt;}
.y8c{bottom:833.325733pt;}
.y5a{bottom:839.325733pt;}
.y1bb{bottom:839.637067pt;}
.y8{bottom:843.524533pt;}
.y21{bottom:843.524800pt;}
.y139{bottom:844.033200pt;}
.yfa{bottom:846.552933pt;}
.y18d{bottom:851.592267pt;}
.y8b{bottom:851.592400pt;}
.y59{bottom:856.925733pt;}
.y1ba{bottom:857.237200pt;}
.y138{bottom:862.299867pt;}
.yf9{bottom:864.819600pt;}
.y8a{bottom:869.858933pt;}
.y58{bottom:874.525600pt;}
.y1b9{bottom:874.837067pt;}
.y137{bottom:880.566533pt;}
.yf8{bottom:883.086267pt;}
.y89{bottom:888.125600pt;}
.y20{bottom:892.058000pt;}
.y57{bottom:892.125600pt;}
.y1b8{bottom:892.437067pt;}
.y136{bottom:898.833200pt;}
.yf7{bottom:901.352933pt;}
.y18c{bottom:906.392267pt;}
.y88{bottom:906.392400pt;}
.y7{bottom:909.657867pt;}
.y1f{bottom:909.658000pt;}
.y56{bottom:909.725733pt;}
.y1b7{bottom:910.037067pt;}
.yf6{bottom:919.619600pt;}
.y18b{bottom:924.658933pt;}
.y87{bottom:924.659067pt;}
.y6{bottom:927.257867pt;}
.y1e{bottom:927.258000pt;}
.y55{bottom:927.325733pt;}
.yf5{bottom:937.886267pt;}
.y1b5{bottom:938.717733pt;}
.y18a{bottom:942.925600pt;}
.y86{bottom:942.925733pt;}
.y5{bottom:944.857867pt;}
.y1d{bottom:944.858133pt;}
.y54{bottom:944.925733pt;}
.yf4{bottom:956.152933pt;}
.y1b6{bottom:961.043200pt;}
.y85{bottom:961.192267pt;}
.y53{bottom:962.525600pt;}
.yf3{bottom:974.419600pt;}
.y84{bottom:979.458933pt;}
.y52{bottom:980.125600pt;}
.yf2{bottom:992.686267pt;}
.y4{bottom:996.227333pt;}
.y189{bottom:997.725600pt;}
.y51{bottom:997.725733pt;}
.y2{bottom:1037.385067pt;}
.y50{bottom:1044.332933pt;}
.y1{bottom:1050.185067pt;}
.ha{height:23.003333pt;}
.hc{height:29.916667pt;}
.h3{height:31.573333pt;}
.h2{height:35.520000pt;}
.h10{height:35.925333pt;}
.h14{height:35.963542pt;}
.hb{height:37.083333pt;}
.h4{height:37.760000pt;}
.h9{height:37.845333pt;}
.h11{height:39.559896pt;}
.hd{height:41.020833pt;}
.h13{height:41.135417pt;}
.hf{height:41.307292pt;}
.h12{height:42.052083pt;}
.h5{height:44.906667pt;}
.h7{height:47.680000pt;}
.he{height:50.989583pt;}
.h6{height:52.448000pt;}
.h8{height:55.921067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x4{left:100.374400pt;}
.x12{left:102.047200pt;}
.x8{left:105.910133pt;}
.x1a{left:117.066933pt;}
.x5{left:119.807333pt;}
.x1{left:124.278133pt;}
.x13{left:132.283467pt;}
.x16{left:139.910000pt;}
.x7{left:173.615600pt;}
.x6{left:195.172400pt;}
.x15{left:287.659467pt;}
.x18{left:385.775067pt;}
.x2{left:386.701733pt;}
.x19{left:387.623733pt;}
.xa{left:406.860800pt;}
.x10{left:417.637733pt;}
.x9{left:423.558800pt;}
.xb{left:425.788267pt;}
.x1b{left:428.877867pt;}
.xf{left:436.535333pt;}
.x14{left:444.094533pt;}
.x17{left:451.720933pt;}
.xe{left:485.426533pt;}
.xc{left:499.611733pt;}
.xd{left:506.983467pt;}
.x11{left:511.495600pt;}
}




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