
    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_4989b91f02213168000c6267.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.129000;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_07a11a8d18c84168da2ce5b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_d7d1e6de2791126e43e17fdb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_8ca690f32072a2c6e02acfd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.126000;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_d05be21c0ceaf7c659074ed7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.070000;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_e1bb4387b0ff9a6be0914914.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.145000;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_84f114e22b031c6531e480df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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);}
.v2{vertical-align:-25.974000px;}
.v4{vertical-align:-21.978000px;}
.v3{vertical-align:-2.996400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.974000px;}
.v5{vertical-align:36.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001530px;}
.lsf{letter-spacing:0.069000px;}
.ls7{letter-spacing:0.228000px;}
.ls4{letter-spacing:0.690000px;}
.ls10{letter-spacing:0.966000px;}
.ls3{letter-spacing:1.500000px;}
.ls6{letter-spacing:2.553000px;}
.ls5{letter-spacing:3.795000px;}
.ls1{letter-spacing:17.250000px;}
.lsa{letter-spacing:442.476000px;}
.lse{letter-spacing:453.006000px;}
.ls8{letter-spacing:455.976000px;}
.lsb{letter-spacing:466.506000px;}
.lsc{letter-spacing:469.476000px;}
.ls9{letter-spacing:480.006000px;}
.lsd{letter-spacing:493.506000px;}
.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;}
}
.ws11{word-spacing:-18.216000px;}
.wsb{word-spacing:-17.940000px;}
.ws8{word-spacing:-17.250000px;}
.ws2{word-spacing:-16.380000px;}
.ws7{word-spacing:-14.250000px;}
.wsa{word-spacing:-0.759000px;}
.ws1{word-spacing:-0.069000px;}
.ws3{word-spacing:-0.063000px;}
.ws9{word-spacing:-0.057000px;}
.wsc{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.045474px;}
.ws6{word-spacing:-0.038478px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:167.508000px;}
.ws10{word-spacing:191.538000px;}
.ws5{word-spacing:263.381400px;}
.wsd{word-spacing:316.386000px;}
.wse{word-spacing:735.966000px;}
._d{margin-left:-12.252000px;}
._f{margin-left:-9.798000px;}
._3{margin-left:-8.623800px;}
._10{margin-left:-7.335000px;}
._4{margin-left:-5.850000px;}
._2{margin-left:-4.485000px;}
._1{margin-left:-3.105000px;}
._a{margin-left:-2.016000px;}
._0{margin-left:-1.008000px;}
._5{width:1.134000px;}
._6{width:2.646000px;}
._7{width:4.032000px;}
._c{width:5.313000px;}
._b{width:6.942000px;}
._9{width:8.316000px;}
._8{width:9.657000px;}
._11{width:10.695000px;}
._1a{width:13.194000px;}
._19{width:14.544000px;}
._e{width:42.750000px;}
._13{width:335.286000px;}
._12{width:359.994000px;}
._17{width:369.513000px;}
._18{width:563.877000px;}
._15{width:736.668000px;}
._14{width:740.340000px;}
._16{width:788.283000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(16,80,140);}
.fs6{font-size:38.478000px;}
.fs2{font-size:45.474000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y10d{bottom:85.783950px;}
.y131{bottom:85.985100px;}
.ye7{bottom:86.755650px;}
.yba{bottom:86.776950px;}
.y65{bottom:86.828700px;}
.y1c{bottom:90.640950px;}
.y85{bottom:90.744300px;}
.y43{bottom:93.519000px;}
.y158{bottom:94.435800px;}
.y10c{bottom:103.781700px;}
.y130{bottom:103.982850px;}
.y64{bottom:104.826450px;}
.y42{bottom:106.026750px;}
.ye6{bottom:107.748900px;}
.yb9{bottom:107.770200px;}
.y1b{bottom:111.634200px;}
.y84{bottom:111.737550px;}
.y157{bottom:115.429050px;}
.y10b{bottom:121.779450px;}
.y12f{bottom:121.980600px;}
.y63{bottom:122.824200px;}
.y94{bottom:124.502550px;}
.yb8{bottom:128.763450px;}
.y41{bottom:129.519000px;}
.y83{bottom:132.730800px;}
.ye5{bottom:135.124650px;}
.y156{bottom:136.422300px;}
.y10a{bottom:139.777200px;}
.y12e{bottom:139.978350px;}
.y62{bottom:140.821950px;}
.y40{bottom:142.031250px;}
.y1a{bottom:145.392450px;}
.y93{bottom:145.495800px;}
.yb7{bottom:149.756700px;}
.y82{bottom:153.724050px;}
.ye4{bottom:156.117900px;}
.y155{bottom:157.415550px;}
.y109{bottom:157.774950px;}
.y12d{bottom:157.976100px;}
.y3f{bottom:160.029000px;}
.y61{bottom:164.314200px;}
.y19{bottom:166.385700px;}
.y92{bottom:166.489050px;}
.yb6{bottom:170.749950px;}
.y81{bottom:174.717300px;}
.y12c{bottom:175.973850px;}
.ye3{bottom:177.111150px;}
.y3e{bottom:178.026750px;}
.y154{bottom:178.408800px;}
.y108{bottom:181.267200px;}
.y91{bottom:187.482300px;}
.yb5{bottom:191.743200px;}
.y12b{bottom:193.971600px;}
.y80{bottom:195.710550px;}
.ye2{bottom:198.104400px;}
.y153{bottom:199.402050px;}
.y169{bottom:200.247300px;}
.y3d{bottom:201.519000px;}
.y90{bottom:208.475550px;}
.yb4{bottom:212.736450px;}
.y7f{bottom:216.703800px;}
.y12a{bottom:217.463850px;}
.ye1{bottom:219.097650px;}
.y152{bottom:220.395300px;}
.y18{bottom:221.166300px;}
.y168{bottom:221.240550px;}
.y60{bottom:223.059300px;}
.yd2{bottom:223.086300px;}
.y107{bottom:229.065300px;}
.y8f{bottom:229.468800px;}
.yb3{bottom:233.729700px;}
.y7e{bottom:237.697050px;}
.ye0{bottom:240.090900px;}
.y17{bottom:240.664800px;}
.y151{bottom:241.388550px;}
.y167{bottom:242.233800px;}
.y5f{bottom:244.052550px;}
.yd1{bottom:244.079550px;}
.y106{bottom:250.058550px;}
.y8e{bottom:250.462050px;}
.yb2{bottom:254.722950px;}
.y3c{bottom:256.734300px;}
.y7d{bottom:258.690300px;}
.ydf{bottom:261.084150px;}
.y150{bottom:262.381800px;}
.y166{bottom:263.227050px;}
.y5e{bottom:265.045800px;}
.yd0{bottom:265.072800px;}
.y16{bottom:266.542050px;}
.y105{bottom:271.051800px;}
.y13c{bottom:271.147500px;}
.y8d{bottom:271.455300px;}
.yb1{bottom:275.716200px;}
.y3b{bottom:277.727550px;}
.y7c{bottom:279.683550px;}
.yde{bottom:282.077400px;}
.y14f{bottom:283.375050px;}
.y165{bottom:284.220300px;}
.y5d{bottom:286.039050px;}
.y15{bottom:286.040550px;}
.ycf{bottom:286.066050px;}
.y13b{bottom:290.641500px;}
.y104{bottom:292.045050px;}
.y8c{bottom:292.448550px;}
.yb0{bottom:296.709450px;}
.y3a{bottom:298.720800px;}
.y7b{bottom:300.676800px;}
.ydd{bottom:303.070650px;}
.y14e{bottom:304.368300px;}
.y164{bottom:305.213550px;}
.y14{bottom:305.539050px;}
.y5c{bottom:307.032300px;}
.yce{bottom:307.059300px;}
.y13a{bottom:310.135500px;}
.y103{bottom:313.038300px;}
.yaf{bottom:317.702700px;}
.y39{bottom:319.714050px;}
.y8b{bottom:319.824300px;}
.y7a{bottom:321.670050px;}
.ydc{bottom:324.063900px;}
.y13{bottom:325.037550px;}
.y163{bottom:326.206800px;}
.y5b{bottom:328.025550px;}
.ycd{bottom:328.052550px;}
.y139{bottom:329.629500px;}
.y14d{bottom:331.744050px;}
.y102{bottom:334.031550px;}
.yae{bottom:338.695950px;}
.y38{bottom:340.707300px;}
.y8a{bottom:340.817550px;}
.y11e{bottom:342.663300px;}
.y12{bottom:344.536050px;}
.ydb{bottom:345.057150px;}
.y162{bottom:347.200050px;}
.y5a{bottom:349.018800px;}
.y79{bottom:349.045800px;}
.y138{bottom:349.123500px;}
.y101{bottom:355.024800px;}
.yad{bottom:359.689200px;}
.y37{bottom:361.700550px;}
.y89{bottom:361.810800px;}
.y11d{bottom:363.656550px;}
.y11{bottom:364.034550px;}
.yda{bottom:366.050400px;}
.y161{bottom:368.193300px;}
.y137{bottom:368.617500px;}
.y59{bottom:370.012050px;}
.ycc{bottom:370.039050px;}
.y100{bottom:376.018050px;}
.yac{bottom:380.682450px;}
.y36{bottom:382.693800px;}
.y88{bottom:382.804050px;}
.y10{bottom:383.533050px;}
.y11c{bottom:384.649800px;}
.y14c{bottom:386.495550px;}
.yd9{bottom:387.043650px;}
.y136{bottom:388.111500px;}
.y160{bottom:389.186550px;}
.y58{bottom:391.005300px;}
.ycb{bottom:391.032300px;}
.yf{bottom:403.031550px;}
.yff{bottom:403.393800px;}
.y35{bottom:403.687050px;}
.y78{bottom:403.797300px;}
.y11b{bottom:405.643050px;}
.y14b{bottom:407.488800px;}
.y135{bottom:407.605500px;}
.yd8{bottom:408.036900px;}
.yab{bottom:408.058200px;}
.y15f{bottom:410.179800px;}
.y57{bottom:411.998550px;}
.yca{bottom:412.025550px;}
.y134{bottom:418.095000px;}
.ye{bottom:422.530050px;}
.yfe{bottom:424.387050px;}
.y34{bottom:424.680300px;}
.y77{bottom:424.790550px;}
.y11a{bottom:426.636300px;}
.y14a{bottom:428.482050px;}
.yd7{bottom:429.030150px;}
.yaa{bottom:429.051450px;}
.y15e{bottom:431.173050px;}
.y56{bottom:432.991800px;}
.yc9{bottom:433.018800px;}
.yd{bottom:442.028550px;}
.yfd{bottom:445.380300px;}
.y33{bottom:445.673550px;}
.y76{bottom:445.783800px;}
.y133{bottom:446.593500px;}
.y119{bottom:447.629550px;}
.y149{bottom:449.475300px;}
.yd6{bottom:450.023400px;}
.ya9{bottom:450.044700px;}
.y15d{bottom:452.166300px;}
.y55{bottom:453.985050px;}
.yc8{bottom:454.012050px;}
.yc{bottom:461.527050px;}
.y132{bottom:466.087500px;}
.yfc{bottom:466.373550px;}
.y32{bottom:466.666800px;}
.y75{bottom:466.777050px;}
.y118{bottom:468.622800px;}
.yd5{bottom:471.016650px;}
.ya8{bottom:471.037950px;}
.y15c{bottom:473.159550px;}
.y54{bottom:474.978300px;}
.yc7{bottom:475.005300px;}
.y148{bottom:476.851050px;}
.yb{bottom:481.025550px;}
.yfb{bottom:487.366800px;}
.y31{bottom:487.660050px;}
.y74{bottom:487.770300px;}
.y117{bottom:489.616050px;}
.ya7{bottom:492.031200px;}
.y15b{bottom:494.152800px;}
.yc6{bottom:495.998550px;}
.ya{bottom:500.524050px;}
.y53{bottom:502.354050px;}
.yfa{bottom:508.360050px;}
.y30{bottom:508.653300px;}
.y129{bottom:508.716300px;}
.y73{bottom:508.763550px;}
.ya6{bottom:513.024450px;}
.y15a{bottom:515.146050px;}
.yc5{bottom:516.991800px;}
.y9{bottom:520.022550px;}
.yf9{bottom:529.463550px;}
.y2f{bottom:529.687050px;}
.y128{bottom:529.709550px;}
.y72{bottom:529.756800px;}
.y147{bottom:531.602550px;}
.ya5{bottom:534.017700px;}
.y159{bottom:536.139300px;}
.yc4{bottom:537.985050px;}
.y8{bottom:539.521050px;}
.yf8{bottom:550.456800px;}
.y2e{bottom:550.680300px;}
.y127{bottom:550.702800px;}
.y71{bottom:550.750050px;}
.y146{bottom:552.595800px;}
.ya4{bottom:555.010950px;}
.y52{bottom:557.105550px;}
.y87{bottom:557.132550px;}
.yc3{bottom:558.978300px;}
.y7{bottom:559.019550px;}
.yf7{bottom:571.450050px;}
.y2d{bottom:571.673550px;}
.y126{bottom:571.696050px;}
.y70{bottom:571.743300px;}
.y145{bottom:573.589050px;}
.ya3{bottom:576.004200px;}
.y51{bottom:578.098800px;}
.y86{bottom:578.125800px;}
.yc2{bottom:579.971550px;}
.yf6{bottom:592.443300px;}
.y2c{bottom:592.666800px;}
.y125{bottom:592.689300px;}
.y116{bottom:592.736550px;}
.y144{bottom:594.582300px;}
.ya2{bottom:596.997450px;}
.y50{bottom:599.092050px;}
.y6f{bottom:599.119050px;}
.yc1{bottom:600.964800px;}
.y6{bottom:612.277650px;}
.yf5{bottom:613.436550px;}
.y2b{bottom:613.660050px;}
.y124{bottom:613.682550px;}
.y115{bottom:613.729800px;}
.y143{bottom:615.575550px;}
.y4f{bottom:620.085300px;}
.y6e{bottom:620.112300px;}
.yc0{bottom:621.958050px;}
.ya1{bottom:624.373200px;}
.yf4{bottom:634.429800px;}
.y2a{bottom:634.653300px;}
.y123{bottom:634.675800px;}
.y114{bottom:634.723050px;}
.y142{bottom:636.568800px;}
.y4e{bottom:641.078550px;}
.y6d{bottom:641.105550px;}
.ybf{bottom:642.951300px;}
.ya0{bottom:645.366450px;}
.y5{bottom:646.146900px;}
.yf3{bottom:655.423050px;}
.y122{bottom:655.669050px;}
.y29{bottom:655.702800px;}
.y113{bottom:655.716300px;}
.y141{bottom:657.562050px;}
.y4d{bottom:662.071800px;}
.y6c{bottom:662.098800px;}
.ybe{bottom:663.944550px;}
.y9f{bottom:666.359700px;}
.y4{bottom:667.149552px;}
.yf2{bottom:676.416300px;}
.y121{bottom:676.662300px;}
.y28{bottom:676.696050px;}
.y112{bottom:676.709550px;}
.y140{bottom:678.555300px;}
.y4c{bottom:683.065050px;}
.y6b{bottom:683.092050px;}
.ybd{bottom:684.937800px;}
.y9e{bottom:687.352950px;}
.y3{bottom:688.031400px;}
.yf1{bottom:697.409550px;}
.y27{bottom:697.689300px;}
.y111{bottom:697.702800px;}
.y120{bottom:704.038050px;}
.y4b{bottom:704.058300px;}
.y6a{bottom:704.085300px;}
.ybc{bottom:705.931050px;}
.y9d{bottom:708.346200px;}
.yf0{bottom:718.402800px;}
.y26{bottom:718.682550px;}
.y110{bottom:718.696050px;}
.y11f{bottom:725.031300px;}
.y4a{bottom:725.051550px;}
.y69{bottom:725.078550px;}
.y9c{bottom:729.339450px;}
.ybb{bottom:733.306800px;}
.yd4{bottom:737.853450px;}
.yef{bottom:739.396050px;}
.y25{bottom:739.675800px;}
.y10f{bottom:739.689300px;}
.y2{bottom:742.787250px;}
.y49{bottom:746.044800px;}
.y68{bottom:746.071800px;}
.y9b{bottom:750.332700px;}
.yd3{bottom:757.347450px;}
.yee{bottom:760.389300px;}
.y10e{bottom:760.682550px;}
.y1{bottom:763.787250px;}
.y48{bottom:767.038050px;}
.y24{bottom:767.051550px;}
.y67{bottom:767.065050px;}
.y9a{bottom:771.325950px;}
.y13f{bottom:781.675800px;}
.yed{bottom:787.765050px;}
.y47{bottom:788.031300px;}
.y23{bottom:788.044800px;}
.y66{bottom:788.058300px;}
.y99{bottom:792.319200px;}
.y13e{bottom:802.669050px;}
.yec{bottom:808.758300px;}
.y22{bottom:809.038050px;}
.y46{bottom:809.051550px;}
.y98{bottom:813.312450px;}
.y13d{bottom:823.662300px;}
.yeb{bottom:829.751550px;}
.y21{bottom:830.031300px;}
.y45{bottom:830.044800px;}
.y97{bottom:834.305700px;}
.yea{bottom:850.744800px;}
.y20{bottom:851.038050px;}
.ye9{bottom:871.738050px;}
.y1f{bottom:872.031300px;}
.y96{bottom:872.307450px;}
.ye8{bottom:892.731300px;}
.y1e{bottom:893.024550px;}
.y95{bottom:893.300700px;}
.y44{bottom:942.503850px;}
.y1d{bottom:943.252950px;}
.hd{height:29.551104px;}
.h4{height:34.924032px;}
.h11{height:45.414000px;}
.he{height:47.937000px;}
.h9{height:50.688000px;}
.hf{height:51.060000px;}
.h7{height:52.983000px;}
.h6{height:54.180000px;}
.h5{height:58.029000px;}
.h15{height:58.719000px;}
.h8{height:59.340000px;}
.h12{height:60.457032px;}
.hb{height:60.673032px;}
.h13{height:60.709032px;}
.hc{height:60.736032px;}
.h10{height:60.789432px;}
.ha{height:60.843432px;}
.h3{height:60.898032px;}
.h2{height:72.240000px;}
.h14{height:81.432000px;}
.h0{height:1020.449850px;}
.h1{height:1020.750000px;}
.w0{width:722.849850px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:76.500000px;}
.x7{left:85.050000px;}
.x12{left:93.558150px;}
.x3{left:96.125550px;}
.x4{left:108.401317px;}
.xb{left:119.011800px;}
.x1{left:125.334450px;}
.x9{left:127.559250px;}
.x8{left:148.821750px;}
.xd{left:165.400050px;}
.xf{left:171.933600px;}
.x11{left:175.354650px;}
.x10{left:180.903150px;}
.x5{left:185.860050px;}
.x2{left:193.857450px;}
.xe{left:196.571100px;}
.x6{left:251.953800px;}
.xc{left:621.600000px;}
@media print{
.v2{vertical-align:-23.088000pt;}
.v4{vertical-align:-19.536000pt;}
.v3{vertical-align:-2.663467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.088000pt;}
.v5{vertical-align:32.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001360pt;}
.lsf{letter-spacing:0.061333pt;}
.ls7{letter-spacing:0.202667pt;}
.ls4{letter-spacing:0.613333pt;}
.ls10{letter-spacing:0.858667pt;}
.ls3{letter-spacing:1.333333pt;}
.ls6{letter-spacing:2.269333pt;}
.ls5{letter-spacing:3.373333pt;}
.ls1{letter-spacing:15.333333pt;}
.lsa{letter-spacing:393.312000pt;}
.lse{letter-spacing:402.672000pt;}
.ls8{letter-spacing:405.312000pt;}
.lsb{letter-spacing:414.672000pt;}
.lsc{letter-spacing:417.312000pt;}
.ls9{letter-spacing:426.672000pt;}
.lsd{letter-spacing:438.672000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsb{word-spacing:-15.946667pt;}
.ws8{word-spacing:-15.333333pt;}
.ws2{word-spacing:-14.560000pt;}
.ws7{word-spacing:-12.666667pt;}
.wsa{word-spacing:-0.674667pt;}
.ws1{word-spacing:-0.061333pt;}
.ws3{word-spacing:-0.056000pt;}
.ws9{word-spacing:-0.050667pt;}
.wsc{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.040421pt;}
.ws6{word-spacing:-0.034203pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:148.896000pt;}
.ws10{word-spacing:170.256000pt;}
.ws5{word-spacing:234.116800pt;}
.wsd{word-spacing:281.232000pt;}
.wse{word-spacing:654.192000pt;}
._d{margin-left:-10.890667pt;}
._f{margin-left:-8.709333pt;}
._3{margin-left:-7.665600pt;}
._10{margin-left:-6.520000pt;}
._4{margin-left:-5.200000pt;}
._2{margin-left:-3.986667pt;}
._1{margin-left:-2.760000pt;}
._a{margin-left:-1.792000pt;}
._0{margin-left:-0.896000pt;}
._5{width:1.008000pt;}
._6{width:2.352000pt;}
._7{width:3.584000pt;}
._c{width:4.722667pt;}
._b{width:6.170667pt;}
._9{width:7.392000pt;}
._8{width:8.584000pt;}
._11{width:9.506667pt;}
._1a{width:11.728000pt;}
._19{width:12.928000pt;}
._e{width:38.000000pt;}
._13{width:298.032000pt;}
._12{width:319.994667pt;}
._17{width:328.456000pt;}
._18{width:501.224000pt;}
._15{width:654.816000pt;}
._14{width:658.080000pt;}
._16{width:700.696000pt;}
.fs6{font-size:34.202667pt;}
.fs2{font-size:40.421333pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:76.252400pt;}
.y131{bottom:76.431200pt;}
.ye7{bottom:77.116133pt;}
.yba{bottom:77.135067pt;}
.y65{bottom:77.181067pt;}
.y1c{bottom:80.569733pt;}
.y85{bottom:80.661600pt;}
.y43{bottom:83.128000pt;}
.y158{bottom:83.942933pt;}
.y10c{bottom:92.250400pt;}
.y130{bottom:92.429200pt;}
.y64{bottom:93.179067pt;}
.y42{bottom:94.246000pt;}
.ye6{bottom:95.776800pt;}
.yb9{bottom:95.795733pt;}
.y1b{bottom:99.230400pt;}
.y84{bottom:99.322267pt;}
.y157{bottom:102.603600pt;}
.y10b{bottom:108.248400pt;}
.y12f{bottom:108.427200pt;}
.y63{bottom:109.177067pt;}
.y94{bottom:110.668933pt;}
.yb8{bottom:114.456400pt;}
.y41{bottom:115.128000pt;}
.y83{bottom:117.982933pt;}
.ye5{bottom:120.110800pt;}
.y156{bottom:121.264267pt;}
.y10a{bottom:124.246400pt;}
.y12e{bottom:124.425200pt;}
.y62{bottom:125.175067pt;}
.y40{bottom:126.250000pt;}
.y1a{bottom:129.237733pt;}
.y93{bottom:129.329600pt;}
.yb7{bottom:133.117067pt;}
.y82{bottom:136.643600pt;}
.ye4{bottom:138.771467pt;}
.y155{bottom:139.924933pt;}
.y109{bottom:140.244400pt;}
.y12d{bottom:140.423200pt;}
.y3f{bottom:142.248000pt;}
.y61{bottom:146.057067pt;}
.y19{bottom:147.898400pt;}
.y92{bottom:147.990267pt;}
.yb6{bottom:151.777733pt;}
.y81{bottom:155.304267pt;}
.y12c{bottom:156.421200pt;}
.ye3{bottom:157.432133pt;}
.y3e{bottom:158.246000pt;}
.y154{bottom:158.585600pt;}
.y108{bottom:161.126400pt;}
.y91{bottom:166.650933pt;}
.yb5{bottom:170.438400pt;}
.y12b{bottom:172.419200pt;}
.y80{bottom:173.964933pt;}
.ye2{bottom:176.092800pt;}
.y153{bottom:177.246267pt;}
.y169{bottom:177.997600pt;}
.y3d{bottom:179.128000pt;}
.y90{bottom:185.311600pt;}
.yb4{bottom:189.099067pt;}
.y7f{bottom:192.625600pt;}
.y12a{bottom:193.301200pt;}
.ye1{bottom:194.753467pt;}
.y152{bottom:195.906933pt;}
.y18{bottom:196.592267pt;}
.y168{bottom:196.658267pt;}
.y60{bottom:198.274933pt;}
.yd2{bottom:198.298933pt;}
.y107{bottom:203.613600pt;}
.y8f{bottom:203.972267pt;}
.yb3{bottom:207.759733pt;}
.y7e{bottom:211.286267pt;}
.ye0{bottom:213.414133pt;}
.y17{bottom:213.924267pt;}
.y151{bottom:214.567600pt;}
.y167{bottom:215.318933pt;}
.y5f{bottom:216.935600pt;}
.yd1{bottom:216.959600pt;}
.y106{bottom:222.274267pt;}
.y8e{bottom:222.632933pt;}
.yb2{bottom:226.420400pt;}
.y3c{bottom:228.208267pt;}
.y7d{bottom:229.946933pt;}
.ydf{bottom:232.074800pt;}
.y150{bottom:233.228267pt;}
.y166{bottom:233.979600pt;}
.y5e{bottom:235.596267pt;}
.yd0{bottom:235.620267pt;}
.y16{bottom:236.926267pt;}
.y105{bottom:240.934933pt;}
.y13c{bottom:241.020000pt;}
.y8d{bottom:241.293600pt;}
.yb1{bottom:245.081067pt;}
.y3b{bottom:246.868933pt;}
.y7c{bottom:248.607600pt;}
.yde{bottom:250.735467pt;}
.y14f{bottom:251.888933pt;}
.y165{bottom:252.640267pt;}
.y5d{bottom:254.256933pt;}
.y15{bottom:254.258267pt;}
.ycf{bottom:254.280933pt;}
.y13b{bottom:258.348000pt;}
.y104{bottom:259.595600pt;}
.y8c{bottom:259.954267pt;}
.yb0{bottom:263.741733pt;}
.y3a{bottom:265.529600pt;}
.y7b{bottom:267.268267pt;}
.ydd{bottom:269.396133pt;}
.y14e{bottom:270.549600pt;}
.y164{bottom:271.300933pt;}
.y14{bottom:271.590267pt;}
.y5c{bottom:272.917600pt;}
.yce{bottom:272.941600pt;}
.y13a{bottom:275.676000pt;}
.y103{bottom:278.256267pt;}
.yaf{bottom:282.402400pt;}
.y39{bottom:284.190267pt;}
.y8b{bottom:284.288267pt;}
.y7a{bottom:285.928933pt;}
.ydc{bottom:288.056800pt;}
.y13{bottom:288.922267pt;}
.y163{bottom:289.961600pt;}
.y5b{bottom:291.578267pt;}
.ycd{bottom:291.602267pt;}
.y139{bottom:293.004000pt;}
.y14d{bottom:294.883600pt;}
.y102{bottom:296.916933pt;}
.yae{bottom:301.063067pt;}
.y38{bottom:302.850933pt;}
.y8a{bottom:302.948933pt;}
.y11e{bottom:304.589600pt;}
.y12{bottom:306.254267pt;}
.ydb{bottom:306.717467pt;}
.y162{bottom:308.622267pt;}
.y5a{bottom:310.238933pt;}
.y79{bottom:310.262933pt;}
.y138{bottom:310.332000pt;}
.y101{bottom:315.577600pt;}
.yad{bottom:319.723733pt;}
.y37{bottom:321.511600pt;}
.y89{bottom:321.609600pt;}
.y11d{bottom:323.250267pt;}
.y11{bottom:323.586267pt;}
.yda{bottom:325.378133pt;}
.y161{bottom:327.282933pt;}
.y137{bottom:327.660000pt;}
.y59{bottom:328.899600pt;}
.ycc{bottom:328.923600pt;}
.y100{bottom:334.238267pt;}
.yac{bottom:338.384400pt;}
.y36{bottom:340.172267pt;}
.y88{bottom:340.270267pt;}
.y10{bottom:340.918267pt;}
.y11c{bottom:341.910933pt;}
.y14c{bottom:343.551600pt;}
.yd9{bottom:344.038800pt;}
.y136{bottom:344.988000pt;}
.y160{bottom:345.943600pt;}
.y58{bottom:347.560267pt;}
.ycb{bottom:347.584267pt;}
.yf{bottom:358.250267pt;}
.yff{bottom:358.572267pt;}
.y35{bottom:358.832933pt;}
.y78{bottom:358.930933pt;}
.y11b{bottom:360.571600pt;}
.y14b{bottom:362.212267pt;}
.y135{bottom:362.316000pt;}
.yd8{bottom:362.699467pt;}
.yab{bottom:362.718400pt;}
.y15f{bottom:364.604267pt;}
.y57{bottom:366.220933pt;}
.yca{bottom:366.244933pt;}
.y134{bottom:371.640000pt;}
.ye{bottom:375.582267pt;}
.yfe{bottom:377.232933pt;}
.y34{bottom:377.493600pt;}
.y77{bottom:377.591600pt;}
.y11a{bottom:379.232267pt;}
.y14a{bottom:380.872933pt;}
.yd7{bottom:381.360133pt;}
.yaa{bottom:381.379067pt;}
.y15e{bottom:383.264933pt;}
.y56{bottom:384.881600pt;}
.yc9{bottom:384.905600pt;}
.yd{bottom:392.914267pt;}
.yfd{bottom:395.893600pt;}
.y33{bottom:396.154267pt;}
.y76{bottom:396.252267pt;}
.y133{bottom:396.972000pt;}
.y119{bottom:397.892933pt;}
.y149{bottom:399.533600pt;}
.yd6{bottom:400.020800pt;}
.ya9{bottom:400.039733pt;}
.y15d{bottom:401.925600pt;}
.y55{bottom:403.542267pt;}
.yc8{bottom:403.566267pt;}
.yc{bottom:410.246267pt;}
.y132{bottom:414.300000pt;}
.yfc{bottom:414.554267pt;}
.y32{bottom:414.814933pt;}
.y75{bottom:414.912933pt;}
.y118{bottom:416.553600pt;}
.yd5{bottom:418.681467pt;}
.ya8{bottom:418.700400pt;}
.y15c{bottom:420.586267pt;}
.y54{bottom:422.202933pt;}
.yc7{bottom:422.226933pt;}
.y148{bottom:423.867600pt;}
.yb{bottom:427.578267pt;}
.yfb{bottom:433.214933pt;}
.y31{bottom:433.475600pt;}
.y74{bottom:433.573600pt;}
.y117{bottom:435.214267pt;}
.ya7{bottom:437.361067pt;}
.y15b{bottom:439.246933pt;}
.yc6{bottom:440.887600pt;}
.ya{bottom:444.910267pt;}
.y53{bottom:446.536933pt;}
.yfa{bottom:451.875600pt;}
.y30{bottom:452.136267pt;}
.y129{bottom:452.192267pt;}
.y73{bottom:452.234267pt;}
.ya6{bottom:456.021733pt;}
.y15a{bottom:457.907600pt;}
.yc5{bottom:459.548267pt;}
.y9{bottom:462.242267pt;}
.yf9{bottom:470.634267pt;}
.y2f{bottom:470.832933pt;}
.y128{bottom:470.852933pt;}
.y72{bottom:470.894933pt;}
.y147{bottom:472.535600pt;}
.ya5{bottom:474.682400pt;}
.y159{bottom:476.568267pt;}
.yc4{bottom:478.208933pt;}
.y8{bottom:479.574267pt;}
.yf8{bottom:489.294933pt;}
.y2e{bottom:489.493600pt;}
.y127{bottom:489.513600pt;}
.y71{bottom:489.555600pt;}
.y146{bottom:491.196267pt;}
.ya4{bottom:493.343067pt;}
.y52{bottom:495.204933pt;}
.y87{bottom:495.228933pt;}
.yc3{bottom:496.869600pt;}
.y7{bottom:496.906267pt;}
.yf7{bottom:507.955600pt;}
.y2d{bottom:508.154267pt;}
.y126{bottom:508.174267pt;}
.y70{bottom:508.216267pt;}
.y145{bottom:509.856933pt;}
.ya3{bottom:512.003733pt;}
.y51{bottom:513.865600pt;}
.y86{bottom:513.889600pt;}
.yc2{bottom:515.530267pt;}
.yf6{bottom:526.616267pt;}
.y2c{bottom:526.814933pt;}
.y125{bottom:526.834933pt;}
.y116{bottom:526.876933pt;}
.y144{bottom:528.517600pt;}
.ya2{bottom:530.664400pt;}
.y50{bottom:532.526267pt;}
.y6f{bottom:532.550267pt;}
.yc1{bottom:534.190933pt;}
.y6{bottom:544.246800pt;}
.yf5{bottom:545.276933pt;}
.y2b{bottom:545.475600pt;}
.y124{bottom:545.495600pt;}
.y115{bottom:545.537600pt;}
.y143{bottom:547.178267pt;}
.y4f{bottom:551.186933pt;}
.y6e{bottom:551.210933pt;}
.yc0{bottom:552.851600pt;}
.ya1{bottom:554.998400pt;}
.yf4{bottom:563.937600pt;}
.y2a{bottom:564.136267pt;}
.y123{bottom:564.156267pt;}
.y114{bottom:564.198267pt;}
.y142{bottom:565.838933pt;}
.y4e{bottom:569.847600pt;}
.y6d{bottom:569.871600pt;}
.ybf{bottom:571.512267pt;}
.ya0{bottom:573.659067pt;}
.y5{bottom:574.352800pt;}
.yf3{bottom:582.598267pt;}
.y122{bottom:582.816933pt;}
.y29{bottom:582.846933pt;}
.y113{bottom:582.858933pt;}
.y141{bottom:584.499600pt;}
.y4d{bottom:588.508267pt;}
.y6c{bottom:588.532267pt;}
.ybe{bottom:590.172933pt;}
.y9f{bottom:592.319733pt;}
.y4{bottom:593.021824pt;}
.yf2{bottom:601.258933pt;}
.y121{bottom:601.477600pt;}
.y28{bottom:601.507600pt;}
.y112{bottom:601.519600pt;}
.y140{bottom:603.160267pt;}
.y4c{bottom:607.168933pt;}
.y6b{bottom:607.192933pt;}
.ybd{bottom:608.833600pt;}
.y9e{bottom:610.980400pt;}
.y3{bottom:611.583467pt;}
.yf1{bottom:619.919600pt;}
.y27{bottom:620.168267pt;}
.y111{bottom:620.180267pt;}
.y120{bottom:625.811600pt;}
.y4b{bottom:625.829600pt;}
.y6a{bottom:625.853600pt;}
.ybc{bottom:627.494267pt;}
.y9d{bottom:629.641067pt;}
.yf0{bottom:638.580267pt;}
.y26{bottom:638.828933pt;}
.y110{bottom:638.840933pt;}
.y11f{bottom:644.472267pt;}
.y4a{bottom:644.490267pt;}
.y69{bottom:644.514267pt;}
.y9c{bottom:648.301733pt;}
.ybb{bottom:651.828267pt;}
.yd4{bottom:655.869733pt;}
.yef{bottom:657.240933pt;}
.y25{bottom:657.489600pt;}
.y10f{bottom:657.501600pt;}
.y2{bottom:660.255333pt;}
.y49{bottom:663.150933pt;}
.y68{bottom:663.174933pt;}
.y9b{bottom:666.962400pt;}
.yd3{bottom:673.197733pt;}
.yee{bottom:675.901600pt;}
.y10e{bottom:676.162267pt;}
.y1{bottom:678.922000pt;}
.y48{bottom:681.811600pt;}
.y24{bottom:681.823600pt;}
.y67{bottom:681.835600pt;}
.y9a{bottom:685.623067pt;}
.y13f{bottom:694.822933pt;}
.yed{bottom:700.235600pt;}
.y47{bottom:700.472267pt;}
.y23{bottom:700.484267pt;}
.y66{bottom:700.496267pt;}
.y99{bottom:704.283733pt;}
.y13e{bottom:713.483600pt;}
.yec{bottom:718.896267pt;}
.y22{bottom:719.144933pt;}
.y46{bottom:719.156933pt;}
.y98{bottom:722.944400pt;}
.y13d{bottom:732.144267pt;}
.yeb{bottom:737.556933pt;}
.y21{bottom:737.805600pt;}
.y45{bottom:737.817600pt;}
.y97{bottom:741.605067pt;}
.yea{bottom:756.217600pt;}
.y20{bottom:756.478267pt;}
.ye9{bottom:774.878267pt;}
.y1f{bottom:775.138933pt;}
.y96{bottom:775.384400pt;}
.ye8{bottom:793.538933pt;}
.y1e{bottom:793.799600pt;}
.y95{bottom:794.045067pt;}
.y44{bottom:837.781200pt;}
.y1d{bottom:838.447067pt;}
.hd{height:26.267648pt;}
.h4{height:31.043584pt;}
.h11{height:40.368000pt;}
.he{height:42.610667pt;}
.h9{height:45.056000pt;}
.hf{height:45.386667pt;}
.h7{height:47.096000pt;}
.h6{height:48.160000pt;}
.h5{height:51.581333pt;}
.h15{height:52.194667pt;}
.h8{height:52.746667pt;}
.h12{height:53.739584pt;}
.hb{height:53.931584pt;}
.h13{height:53.963584pt;}
.hc{height:53.987584pt;}
.h10{height:54.035051pt;}
.ha{height:54.083051pt;}
.h3{height:54.131584pt;}
.h2{height:64.213333pt;}
.h14{height:72.384000pt;}
.h0{height:907.066533pt;}
.h1{height:907.333333pt;}
.w0{width:642.533200pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:68.000000pt;}
.x7{left:75.600000pt;}
.x12{left:83.162800pt;}
.x3{left:85.444933pt;}
.x4{left:96.356727pt;}
.xb{left:105.788267pt;}
.x1{left:111.408400pt;}
.x9{left:113.386000pt;}
.x8{left:132.286000pt;}
.xd{left:147.022267pt;}
.xf{left:152.829867pt;}
.x11{left:155.870800pt;}
.x10{left:160.802800pt;}
.x5{left:165.208933pt;}
.x2{left:172.317733pt;}
.xe{left:174.729867pt;}
.x6{left:223.958933pt;}
.xc{left:552.533333pt;}
}




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