
    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_e76feadd24521bb48febf213.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_875a9075fe79b8b6960ab050.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_8ed5eee16bbea5a88a7ba70e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.182129;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_7b76367af02d349f103a23f5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_a502e42f150f6b2332785deb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060547;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_4420c7c884eb098a8efe4018.woff')format("woff");}.ff6{font-family:ff6;line-height:1.191895;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_67bc7c975a24437d1d437cac.woff')format("woff");}.ff7{font-family:ff7;line-height:1.137695;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_c171d14c234c629fbf3264fa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.024414;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:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.169800px;}
.v1{vertical-align:17.057400px;}
.ls15{letter-spacing:-2.760000px;}
.ls11{letter-spacing:-2.691000px;}
.lsa{letter-spacing:-2.160000px;}
.ls18{letter-spacing:-2.079000px;}
.ls16{letter-spacing:-1.725000px;}
.ls4{letter-spacing:-1.512000px;}
.ls10{letter-spacing:-1.380000px;}
.ls13{letter-spacing:-1.035000px;}
.lse{letter-spacing:-0.759000px;}
.lsc{letter-spacing:-0.690000px;}
.ls14{letter-spacing:-0.603405px;}
.lsf{letter-spacing:-0.442497px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000300px;}
.ls17{letter-spacing:0.378000px;}
.ls9{letter-spacing:1.860000px;}
.ls5{letter-spacing:2.400000px;}
.ls12{letter-spacing:3.450000px;}
.ls2{letter-spacing:5.820000px;}
.ls1{letter-spacing:6.000000px;}
.ls7{letter-spacing:6.300000px;}
.lsd{letter-spacing:8.160156px;}
.ls6{letter-spacing:8.550000px;}
.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;}
}
.ws17{word-spacing:-49.542000px;}
.ws11{word-spacing:-35.045100px;}
.ws6{word-spacing:-29.625000px;}
.ws0{word-spacing:-28.836000px;}
.ws18{word-spacing:-24.525000px;}
.ws9{word-spacing:-19.389000px;}
.ws7{word-spacing:-18.102000px;}
.ws21{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.043000px;}
.ws10{word-spacing:-16.353000px;}
.ws12{word-spacing:-16.284000px;}
.ws19{word-spacing:-16.008000px;}
.ws1f{word-spacing:-15.561000px;}
.ws1c{word-spacing:-15.318000px;}
.wsd{word-spacing:-15.174000px;}
.ws23{word-spacing:-14.820000px;}
.ws16{word-spacing:-14.352000px;}
.ws1b{word-spacing:-14.283000px;}
.wsb{word-spacing:-13.338000px;}
.wsa{word-spacing:-11.303787px;}
.wsc{word-spacing:-11.178000px;}
.ws13{word-spacing:-10.861290px;}
.ws1a{word-spacing:-10.700382px;}
.ws22{word-spacing:-9.072063px;}
.ws20{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.ws4{word-spacing:-5.820000px;}
.ws8{word-spacing:-2.400000px;}
.wsf{word-spacing:-1.860000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.240000px;}
.wse{word-spacing:0.360000px;}
.ws14{word-spacing:0.759000px;}
.ws1d{word-spacing:1.035000px;}
.ws15{word-spacing:1.380000px;}
.ws24{word-spacing:2.079000px;}
.ws1e{word-spacing:2.898000px;}
._21{margin-left:-12.742800px;}
._22{margin-left:-11.566200px;}
._24{margin-left:-10.260300px;}
._b{margin-left:-9.229200px;}
._11{margin-left:-7.935000px;}
._12{margin-left:-6.892200px;}
._6{margin-left:-5.862000px;}
._7{margin-left:-4.506000px;}
._9{margin-left:-3.435600px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._4{width:2.368800px;}
._a{width:3.951600px;}
._8{width:5.086800px;}
._5{width:6.780000px;}
._18{width:8.210100px;}
._17{width:9.615300px;}
._1a{width:11.475000px;}
._20{width:12.723300px;}
._15{width:13.882800px;}
._16{width:15.069600px;}
._1b{width:16.287600px;}
._19{width:18.125700px;}
._32{width:19.268400px;}
._13{width:20.824200px;}
._1c{width:22.406400px;}
._f{width:23.494800px;}
._e{width:24.549600px;}
._d{width:25.664700px;}
._c{width:27.172200px;}
._10{width:28.283100px;}
._2c{width:29.541900px;}
._2b{width:30.887400px;}
._25{width:31.898700px;}
._26{width:33.223500px;}
._28{width:34.520700px;}
._27{width:35.914500px;}
._29{width:37.629600px;}
._1f{width:43.445160px;}
._1e{width:48.351900px;}
._2d{width:53.440500px;}
._2f{width:76.027680px;}
._2e{width:77.114760px;}
._14{width:445.732200px;}
._31{width:454.741800px;}
._2a{width:455.981400px;}
._0{width:578.400000px;}
._3{width:940.552200px;}
._1d{width:943.177200px;}
._23{width:947.227200px;}
._30{width:949.207200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fsb{font-size:36.729000px;}
.fs8{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yee{bottom:104.665350px;}
.y49{bottom:106.165350px;}
.y20{bottom:106.187550px;}
.y134{bottom:106.293300px;}
.y70{bottom:106.296300px;}
.yc7{bottom:106.296450px;}
.y96{bottom:109.294950px;}
.y156{bottom:118.419450px;}
.yed{bottom:121.918350px;}
.y133{bottom:123.546300px;}
.y1f{bottom:126.456300px;}
.y6f{bottom:126.544800px;}
.yc6{bottom:126.544950px;}
.y48{bottom:126.589350px;}
.y95{bottom:127.798500px;}
.y155{bottom:138.669450px;}
.yec{bottom:139.171350px;}
.y132{bottom:143.794800px;}
.y1e{bottom:146.725050px;}
.y47{bottom:147.013350px;}
.y112{bottom:148.046700px;}
.y94{bottom:148.047000px;}
.yeb{bottom:156.424350px;}
.y154{bottom:158.919450px;}
.y111{bottom:166.547250px;}
.y93{bottom:166.547700px;}
.yb0{bottom:166.550700px;}
.y1d{bottom:166.993800px;}
.y46{bottom:167.437350px;}
.yc5{bottom:170.551050px;}
.y6e{bottom:170.562450px;}
.yea{bottom:173.677350px;}
.y153{bottom:179.169450px;}
.y110{bottom:183.800250px;}
.y92{bottom:183.800700px;}
.yaf{bottom:186.799200px;}
.y1c{bottom:187.262550px;}
.y131{bottom:187.754400px;}
.y45{bottom:187.861350px;}
.y6d{bottom:190.880100px;}
.yc4{bottom:190.888800px;}
.ye9{bottom:190.930350px;}
.y152{bottom:199.419450px;}
.y10f{bottom:204.048750px;}
.y91{bottom:204.049200px;}
.yae{bottom:205.302750px;}
.y1b{bottom:207.531300px;}
.y44{bottom:208.285350px;}
.ye8{bottom:211.178850px;}
.y6c{bottom:211.217850px;}
.yc3{bottom:211.226550px;}
.y130{bottom:212.733900px;}
.y90{bottom:225.551250px;}
.y1a{bottom:227.800050px;}
.y43{bottom:228.709350px;}
.y6b{bottom:231.555600px;}
.yc2{bottom:231.564300px;}
.ye7{bottom:232.680900px;}
.y12f{bottom:233.460900px;}
.y151{bottom:239.919450px;}
.y8f{bottom:244.051950px;}
.y10e{bottom:248.063400px;}
.y19{bottom:248.068800px;}
.y42{bottom:249.133350px;}
.ye6{bottom:251.184600px;}
.y6a{bottom:251.893350px;}
.yc1{bottom:251.902050px;}
.y12e{bottom:254.187900px;}
.y150{bottom:260.169450px;}
.y8e{bottom:261.304950px;}
.y18{bottom:268.337550px;}
.y10d{bottom:268.521900px;}
.y41{bottom:269.557350px;}
.yad{bottom:269.567550px;}
.ye5{bottom:271.433100px;}
.y69{bottom:272.231100px;}
.yc0{bottom:272.239800px;}
.y12d{bottom:279.167400px;}
.y14f{bottom:280.419450px;}
.y8d{bottom:281.553450px;}
.y17{bottom:288.606300px;}
.y10c{bottom:288.980400px;}
.y40{bottom:289.981350px;}
.yac{bottom:289.991550px;}
.y68{bottom:292.568850px;}
.ybf{bottom:292.577550px;}
.y12c{bottom:299.894400px;}
.y14e{bottom:300.669450px;}
.y16{bottom:308.875050px;}
.y10b{bottom:309.430800px;}
.y3f{bottom:310.405350px;}
.yab{bottom:310.415550px;}
.y67{bottom:312.906600px;}
.ybe{bottom:312.915300px;}
.ye4{bottom:315.433350px;}
.y14d{bottom:320.919450px;}
.y12b{bottom:324.873900px;}
.y8c{bottom:325.567800px;}
.y15{bottom:329.143800px;}
.y10a{bottom:329.889300px;}
.y3e{bottom:330.829350px;}
.yaa{bottom:330.839550px;}
.y66{bottom:333.244350px;}
.ybd{bottom:333.253050px;}
.ye3{bottom:335.684850px;}
.y12a{bottom:345.600900px;}
.y8b{bottom:346.181550px;}
.y14{bottom:349.412550px;}
.y109{bottom:350.347800px;}
.y3d{bottom:351.253350px;}
.ya9{bottom:351.263550px;}
.y65{bottom:353.582100px;}
.ybc{bottom:353.590800px;}
.y14c{bottom:353.919450px;}
.ye2{bottom:355.936350px;}
.y8a{bottom:366.783300px;}
.y13{bottom:369.681300px;}
.y129{bottom:370.580400px;}
.y108{bottom:370.806300px;}
.y3c{bottom:371.677350px;}
.ya8{bottom:371.685150px;}
.y64{bottom:373.919850px;}
.ybb{bottom:373.928550px;}
.ye1{bottom:376.187850px;}
.y89{bottom:387.397050px;}
.y12{bottom:389.950050px;}
.y107{bottom:391.264800px;}
.y128{bottom:391.307400px;}
.y3b{bottom:392.101350px;}
.ya7{bottom:392.109150px;}
.y63{bottom:394.257600px;}
.yba{bottom:394.266300px;}
.y14b{bottom:395.368050px;}
.ye0{bottom:396.439350px;}
.y88{bottom:408.010800px;}
.y11{bottom:410.218800px;}
.y106{bottom:411.723300px;}
.y127{bottom:412.034400px;}
.y3a{bottom:412.525350px;}
.ya6{bottom:412.533150px;}
.y62{bottom:414.595350px;}
.yb9{bottom:414.604050px;}
.y14a{bottom:415.622550px;}
.ydf{bottom:416.690850px;}
.y87{bottom:428.624550px;}
.y105{bottom:432.181800px;}
.y126{bottom:432.761400px;}
.y39{bottom:432.949350px;}
.ya5{bottom:432.957150px;}
.y61{bottom:434.933100px;}
.yb8{bottom:434.941800px;}
.y149{bottom:435.877050px;}
.yde{bottom:436.942350px;}
.y86{bottom:449.238300px;}
.y104{bottom:452.622600px;}
.y38{bottom:453.373350px;}
.ya4{bottom:453.381150px;}
.y60{bottom:455.270850px;}
.yb7{bottom:455.279550px;}
.ydd{bottom:457.193850px;}
.y125{bottom:457.740900px;}
.y148{bottom:460.384050px;}
.y85{bottom:469.852050px;}
.y103{bottom:473.081100px;}
.y37{bottom:473.797350px;}
.ya3{bottom:473.805150px;}
.y5f{bottom:475.608600px;}
.yb6{bottom:475.617300px;}
.ydc{bottom:477.445350px;}
.y10{bottom:480.501600px;}
.y147{bottom:480.638550px;}
.y84{bottom:490.461900px;}
.y102{bottom:493.539600px;}
.y36{bottom:494.221350px;}
.ya2{bottom:494.229150px;}
.y5e{bottom:495.946350px;}
.yb5{bottom:495.955050px;}
.ydb{bottom:497.696850px;}
.yf{bottom:501.516600px;}
.y146{bottom:505.145550px;}
.y124{bottom:509.056350px;}
.y83{bottom:511.075650px;}
.y101{bottom:513.998100px;}
.y35{bottom:514.645350px;}
.ya1{bottom:514.648500px;}
.y5d{bottom:516.284100px;}
.yb4{bottom:516.292800px;}
.yda{bottom:517.948350px;}
.y145{bottom:529.652550px;}
.y123{bottom:529.773600px;}
.y82{bottom:531.673650px;}
.y100{bottom:534.456600px;}
.y34{bottom:535.069350px;}
.ya0{bottom:535.072500px;}
.y5c{bottom:536.621850px;}
.yb3{bottom:536.630550px;}
.yd9{bottom:538.199850px;}
.y144{bottom:549.907050px;}
.y122{bottom:550.490850px;}
.y81{bottom:552.287400px;}
.ye{bottom:552.298500px;}
.yff{bottom:554.915100px;}
.y33{bottom:555.493350px;}
.y9f{bottom:555.496500px;}
.y5b{bottom:556.959600px;}
.yb2{bottom:556.968300px;}
.yd8{bottom:558.443850px;}
.y121{bottom:571.208100px;}
.y80{bottom:572.901150px;}
.y143{bottom:574.414050px;}
.yfe{bottom:575.373600px;}
.y32{bottom:575.917350px;}
.y9e{bottom:575.920500px;}
.y5a{bottom:577.297350px;}
.yb1{bottom:577.306050px;}
.yd7{bottom:578.695350px;}
.yd{bottom:583.807500px;}
.y120{bottom:591.925350px;}
.y7f{bottom:593.514900px;}
.y142{bottom:594.668550px;}
.yfd{bottom:595.832100px;}
.y31{bottom:596.341350px;}
.y9d{bottom:596.344500px;}
.y59{bottom:597.635100px;}
.yd6{bottom:598.946850px;}
.y11f{bottom:612.642600px;}
.y7e{bottom:614.128650px;}
.y141{bottom:614.923050px;}
.yc{bottom:615.316500px;}
.yfc{bottom:616.290600px;}
.y30{bottom:616.765350px;}
.y9c{bottom:616.768500px;}
.y58{bottom:617.972850px;}
.yd5{bottom:619.198350px;}
.y11e{bottom:633.359850px;}
.y7d{bottom:634.742400px;}
.y140{bottom:635.177550px;}
.yfb{bottom:636.749100px;}
.y2f{bottom:637.189350px;}
.y9b{bottom:637.192500px;}
.y57{bottom:638.310600px;}
.yd4{bottom:639.449850px;}
.yb{bottom:646.825500px;}
.y11d{bottom:654.077100px;}
.y7c{bottom:655.356150px;}
.yfa{bottom:657.207600px;}
.y2e{bottom:657.613350px;}
.y9a{bottom:657.616500px;}
.y56{bottom:658.648350px;}
.yd3{bottom:659.683350px;}
.y13f{bottom:659.684550px;}
.y11c{bottom:674.794350px;}
.y7b{bottom:675.969900px;}
.yf9{bottom:677.666100px;}
.y2d{bottom:678.037350px;}
.y99{bottom:678.040500px;}
.ya{bottom:678.336750px;}
.y55{bottom:678.986100px;}
.y13e{bottom:679.891350px;}
.yd2{bottom:679.934850px;}
.y11b{bottom:695.511600px;}
.y7a{bottom:696.563850px;}
.yf8{bottom:698.124600px;}
.y2c{bottom:698.461350px;}
.y98{bottom:698.464500px;}
.y54{bottom:699.323850px;}
.y13d{bottom:700.145850px;}
.yd1{bottom:700.186350px;}
.y11a{bottom:716.228850px;}
.y79{bottom:717.177600px;}
.yf7{bottom:718.583100px;}
.y2b{bottom:718.885350px;}
.y97{bottom:718.888500px;}
.y53{bottom:719.661600px;}
.yd0{bottom:720.437850px;}
.y13c{bottom:724.652850px;}
.y119{bottom:736.946100px;}
.y78{bottom:737.791350px;}
.yf6{bottom:739.041600px;}
.y2a{bottom:739.309350px;}
.y9{bottom:739.587600px;}
.y52{bottom:739.999350px;}
.ycf{bottom:740.689350px;}
.y13b{bottom:744.907350px;}
.y118{bottom:757.663350px;}
.y77{bottom:758.405100px;}
.yf5{bottom:759.491850px;}
.y29{bottom:759.733350px;}
.y51{bottom:760.337100px;}
.yce{bottom:760.940850px;}
.y8{bottom:769.107600px;}
.y13a{bottom:769.414350px;}
.y76{bottom:779.018850px;}
.yf4{bottom:779.950350px;}
.y28{bottom:780.157350px;}
.y50{bottom:780.674850px;}
.ycd{bottom:781.192350px;}
.y139{bottom:789.668850px;}
.y7{bottom:790.122600px;}
.y117{bottom:799.115100px;}
.y75{bottom:799.632600px;}
.yf3{bottom:800.408850px;}
.y27{bottom:800.581350px;}
.y4f{bottom:801.012600px;}
.ycc{bottom:801.443850px;}
.y6{bottom:811.137600px;}
.y138{bottom:814.175850px;}
.y116{bottom:819.832350px;}
.y74{bottom:820.246350px;}
.yf2{bottom:820.867350px;}
.y26{bottom:821.005350px;}
.y4e{bottom:821.350350px;}
.ycb{bottom:821.695350px;}
.y137{bottom:834.430350px;}
.y115{bottom:840.549600px;}
.y5{bottom:840.657600px;}
.y73{bottom:840.860100px;}
.yf1{bottom:841.325850px;}
.y25{bottom:841.429350px;}
.y4d{bottom:841.688100px;}
.yca{bottom:841.946850px;}
.y136{bottom:858.937350px;}
.y114{bottom:861.266850px;}
.y72{bottom:861.473850px;}
.y4{bottom:861.672600px;}
.yf0{bottom:861.784350px;}
.y24{bottom:861.853350px;}
.y4c{bottom:862.025850px;}
.yc9{bottom:862.198350px;}
.y135{bottom:879.191850px;}
.y113{bottom:881.984100px;}
.y71{bottom:882.087600px;}
.yef{bottom:882.242850px;}
.y23{bottom:882.277350px;}
.y4b{bottom:882.363600px;}
.yc8{bottom:882.449850px;}
.y3{bottom:882.687600px;}
.y22{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.y4a{bottom:966.189000px;}
.ha{height:37.983820px;}
.h8{height:44.414062px;}
.h9{height:49.658203px;}
.hb{height:49.965820px;}
.h18{height:52.141113px;}
.h1b{height:55.488281px;}
.h4{height:55.517578px;}
.h19{height:58.262695px;}
.h3{height:58.293457px;}
.h1a{height:58.484257px;}
.h7{height:63.845215px;}
.h11{height:63.854815px;}
.h10{height:63.857815px;}
.he{height:63.860815px;}
.h14{height:63.875215px;}
.h17{height:63.877615px;}
.h15{height:63.878215px;}
.h12{height:63.880015px;}
.hf{height:63.893215px;}
.hd{height:63.908215px;}
.h16{height:63.916015px;}
.h13{height:63.917215px;}
.hc{height:63.924415px;}
.h2{height:69.396973px;}
.h5{height:77.724609px;}
.h6{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:81.421050px;}
.x6{left:82.774350px;}
.x5{left:83.792100px;}
.x1{left:85.039350px;}
.x9{left:104.370600px;}
.x4{left:105.613350px;}
.x7{left:106.785150px;}
.x3{left:232.578450px;}
.x2{left:233.797500px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.484267pt;}
.v1{vertical-align:15.162133pt;}
.ls15{letter-spacing:-2.453333pt;}
.ls11{letter-spacing:-2.392000pt;}
.lsa{letter-spacing:-1.920000pt;}
.ls18{letter-spacing:-1.848000pt;}
.ls16{letter-spacing:-1.533333pt;}
.ls4{letter-spacing:-1.344000pt;}
.ls10{letter-spacing:-1.226667pt;}
.ls13{letter-spacing:-0.920000pt;}
.lse{letter-spacing:-0.674667pt;}
.lsc{letter-spacing:-0.613333pt;}
.ls14{letter-spacing:-0.536360pt;}
.lsf{letter-spacing:-0.393331pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000267pt;}
.ls17{letter-spacing:0.336000pt;}
.ls9{letter-spacing:1.653333pt;}
.ls5{letter-spacing:2.133333pt;}
.ls12{letter-spacing:3.066667pt;}
.ls2{letter-spacing:5.173333pt;}
.ls1{letter-spacing:5.333333pt;}
.ls7{letter-spacing:5.600000pt;}
.lsd{letter-spacing:7.253472pt;}
.ls6{letter-spacing:7.600000pt;}
.ws17{word-spacing:-44.037333pt;}
.ws11{word-spacing:-31.151200pt;}
.ws6{word-spacing:-26.333333pt;}
.ws0{word-spacing:-25.632000pt;}
.ws18{word-spacing:-21.800000pt;}
.ws9{word-spacing:-17.234667pt;}
.ws7{word-spacing:-16.090667pt;}
.ws21{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.149333pt;}
.ws10{word-spacing:-14.536000pt;}
.ws12{word-spacing:-14.474667pt;}
.ws19{word-spacing:-14.229333pt;}
.ws1f{word-spacing:-13.832000pt;}
.ws1c{word-spacing:-13.616000pt;}
.wsd{word-spacing:-13.488000pt;}
.ws23{word-spacing:-13.173333pt;}
.ws16{word-spacing:-12.757333pt;}
.ws1b{word-spacing:-12.696000pt;}
.wsb{word-spacing:-11.856000pt;}
.wsa{word-spacing:-10.047811pt;}
.wsc{word-spacing:-9.936000pt;}
.ws13{word-spacing:-9.654480pt;}
.ws1a{word-spacing:-9.511451pt;}
.ws22{word-spacing:-8.064056pt;}
.ws20{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.ws4{word-spacing:-5.173333pt;}
.ws8{word-spacing:-2.133333pt;}
.wsf{word-spacing:-1.653333pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.213333pt;}
.wse{word-spacing:0.320000pt;}
.ws14{word-spacing:0.674667pt;}
.ws1d{word-spacing:0.920000pt;}
.ws15{word-spacing:1.226667pt;}
.ws24{word-spacing:1.848000pt;}
.ws1e{word-spacing:2.576000pt;}
._21{margin-left:-11.326933pt;}
._22{margin-left:-10.281067pt;}
._24{margin-left:-9.120267pt;}
._b{margin-left:-8.203733pt;}
._11{margin-left:-7.053333pt;}
._12{margin-left:-6.126400pt;}
._6{margin-left:-5.210667pt;}
._7{margin-left:-4.005333pt;}
._9{margin-left:-3.053867pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._4{width:2.105600pt;}
._a{width:3.512533pt;}
._8{width:4.521600pt;}
._5{width:6.026667pt;}
._18{width:7.297867pt;}
._17{width:8.546933pt;}
._1a{width:10.200000pt;}
._20{width:11.309600pt;}
._15{width:12.340267pt;}
._16{width:13.395200pt;}
._1b{width:14.477867pt;}
._19{width:16.111733pt;}
._32{width:17.127467pt;}
._13{width:18.510400pt;}
._1c{width:19.916800pt;}
._f{width:20.884267pt;}
._e{width:21.821867pt;}
._d{width:22.813067pt;}
._c{width:24.153067pt;}
._10{width:25.140533pt;}
._2c{width:26.259467pt;}
._2b{width:27.455467pt;}
._25{width:28.354400pt;}
._26{width:29.532000pt;}
._28{width:30.685067pt;}
._27{width:31.924000pt;}
._29{width:33.448533pt;}
._1f{width:38.617920pt;}
._1e{width:42.979467pt;}
._2d{width:47.502667pt;}
._2f{width:67.580160pt;}
._2e{width:68.546453pt;}
._14{width:396.206400pt;}
._31{width:404.214933pt;}
._2a{width:405.316800pt;}
._0{width:514.133333pt;}
._3{width:836.046400pt;}
._1d{width:838.379733pt;}
._23{width:841.979733pt;}
._30{width:843.739733pt;}
.fs9{font-size:27.984000pt;}
.fsb{font-size:32.648000pt;}
.fs8{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yee{bottom:93.035867pt;}
.y49{bottom:94.369200pt;}
.y20{bottom:94.388933pt;}
.y134{bottom:94.482933pt;}
.y70{bottom:94.485600pt;}
.yc7{bottom:94.485733pt;}
.y96{bottom:97.151067pt;}
.y156{bottom:105.261733pt;}
.yed{bottom:108.371867pt;}
.y133{bottom:109.818933pt;}
.y1f{bottom:112.405600pt;}
.y6f{bottom:112.484267pt;}
.yc6{bottom:112.484400pt;}
.y48{bottom:112.523867pt;}
.y95{bottom:113.598667pt;}
.y155{bottom:123.261733pt;}
.yec{bottom:123.707867pt;}
.y132{bottom:127.817600pt;}
.y1e{bottom:130.422267pt;}
.y47{bottom:130.678533pt;}
.y112{bottom:131.597067pt;}
.y94{bottom:131.597333pt;}
.yeb{bottom:139.043867pt;}
.y154{bottom:141.261733pt;}
.y111{bottom:148.042000pt;}
.y93{bottom:148.042400pt;}
.yb0{bottom:148.045067pt;}
.y1d{bottom:148.438933pt;}
.y46{bottom:148.833200pt;}
.yc5{bottom:151.600933pt;}
.y6e{bottom:151.611067pt;}
.yea{bottom:154.379867pt;}
.y153{bottom:159.261733pt;}
.y110{bottom:163.378000pt;}
.y92{bottom:163.378400pt;}
.yaf{bottom:166.043733pt;}
.y1c{bottom:166.455600pt;}
.y131{bottom:166.892800pt;}
.y45{bottom:166.987867pt;}
.y6d{bottom:169.671200pt;}
.yc4{bottom:169.678933pt;}
.ye9{bottom:169.715867pt;}
.y152{bottom:177.261733pt;}
.y10f{bottom:181.376667pt;}
.y91{bottom:181.377067pt;}
.yae{bottom:182.491333pt;}
.y1b{bottom:184.472267pt;}
.y44{bottom:185.142533pt;}
.ye8{bottom:187.714533pt;}
.y6c{bottom:187.749200pt;}
.yc3{bottom:187.756933pt;}
.y130{bottom:189.096800pt;}
.y90{bottom:200.490000pt;}
.y1a{bottom:202.488933pt;}
.y43{bottom:203.297200pt;}
.y6b{bottom:205.827200pt;}
.yc2{bottom:205.834933pt;}
.ye7{bottom:206.827467pt;}
.y12f{bottom:207.520800pt;}
.y151{bottom:213.261733pt;}
.y8f{bottom:216.935067pt;}
.y10e{bottom:220.500800pt;}
.y19{bottom:220.505600pt;}
.y42{bottom:221.451867pt;}
.ye6{bottom:223.275200pt;}
.y6a{bottom:223.905200pt;}
.yc1{bottom:223.912933pt;}
.y12e{bottom:225.944800pt;}
.y150{bottom:231.261733pt;}
.y8e{bottom:232.271067pt;}
.y18{bottom:238.522267pt;}
.y10d{bottom:238.686133pt;}
.y41{bottom:239.606533pt;}
.yad{bottom:239.615600pt;}
.ye5{bottom:241.273867pt;}
.y69{bottom:241.983200pt;}
.yc0{bottom:241.990933pt;}
.y12d{bottom:248.148800pt;}
.y14f{bottom:249.261733pt;}
.y8d{bottom:250.269733pt;}
.y17{bottom:256.538933pt;}
.y10c{bottom:256.871467pt;}
.y40{bottom:257.761200pt;}
.yac{bottom:257.770267pt;}
.y68{bottom:260.061200pt;}
.ybf{bottom:260.068933pt;}
.y12c{bottom:266.572800pt;}
.y14e{bottom:267.261733pt;}
.y16{bottom:274.555600pt;}
.y10b{bottom:275.049600pt;}
.y3f{bottom:275.915867pt;}
.yab{bottom:275.924933pt;}
.y67{bottom:278.139200pt;}
.ybe{bottom:278.146933pt;}
.ye4{bottom:280.385200pt;}
.y14d{bottom:285.261733pt;}
.y12b{bottom:288.776800pt;}
.y8c{bottom:289.393600pt;}
.y15{bottom:292.572267pt;}
.y10a{bottom:293.234933pt;}
.y3e{bottom:294.070533pt;}
.yaa{bottom:294.079600pt;}
.y66{bottom:296.217200pt;}
.ybd{bottom:296.224933pt;}
.ye3{bottom:298.386533pt;}
.y12a{bottom:307.200800pt;}
.y8b{bottom:307.716933pt;}
.y14{bottom:310.588933pt;}
.y109{bottom:311.420267pt;}
.y3d{bottom:312.225200pt;}
.ya9{bottom:312.234267pt;}
.y65{bottom:314.295200pt;}
.ybc{bottom:314.302933pt;}
.y14c{bottom:314.595067pt;}
.ye2{bottom:316.387867pt;}
.y8a{bottom:326.029600pt;}
.y13{bottom:328.605600pt;}
.y129{bottom:329.404800pt;}
.y108{bottom:329.605600pt;}
.y3c{bottom:330.379867pt;}
.ya8{bottom:330.386800pt;}
.y64{bottom:332.373200pt;}
.ybb{bottom:332.380933pt;}
.ye1{bottom:334.389200pt;}
.y89{bottom:344.352933pt;}
.y12{bottom:346.622267pt;}
.y107{bottom:347.790933pt;}
.y128{bottom:347.828800pt;}
.y3b{bottom:348.534533pt;}
.ya7{bottom:348.541467pt;}
.y63{bottom:350.451200pt;}
.yba{bottom:350.458933pt;}
.y14b{bottom:351.438267pt;}
.ye0{bottom:352.390533pt;}
.y88{bottom:362.676267pt;}
.y11{bottom:364.638933pt;}
.y106{bottom:365.976267pt;}
.y127{bottom:366.252800pt;}
.y3a{bottom:366.689200pt;}
.ya6{bottom:366.696133pt;}
.y62{bottom:368.529200pt;}
.yb9{bottom:368.536933pt;}
.y14a{bottom:369.442267pt;}
.ydf{bottom:370.391867pt;}
.y87{bottom:380.999600pt;}
.y105{bottom:384.161600pt;}
.y126{bottom:384.676800pt;}
.y39{bottom:384.843867pt;}
.ya5{bottom:384.850800pt;}
.y61{bottom:386.607200pt;}
.yb8{bottom:386.614933pt;}
.y149{bottom:387.446267pt;}
.yde{bottom:388.393200pt;}
.y86{bottom:399.322933pt;}
.y104{bottom:402.331200pt;}
.y38{bottom:402.998533pt;}
.ya4{bottom:403.005467pt;}
.y60{bottom:404.685200pt;}
.yb7{bottom:404.692933pt;}
.ydd{bottom:406.394533pt;}
.y125{bottom:406.880800pt;}
.y148{bottom:409.230267pt;}
.y85{bottom:417.646267pt;}
.y103{bottom:420.516533pt;}
.y37{bottom:421.153200pt;}
.ya3{bottom:421.160133pt;}
.y5f{bottom:422.763200pt;}
.yb6{bottom:422.770933pt;}
.ydc{bottom:424.395867pt;}
.y10{bottom:427.112533pt;}
.y147{bottom:427.234267pt;}
.y84{bottom:435.966133pt;}
.y102{bottom:438.701867pt;}
.y36{bottom:439.307867pt;}
.ya2{bottom:439.314800pt;}
.y5e{bottom:440.841200pt;}
.yb5{bottom:440.848933pt;}
.ydb{bottom:442.397200pt;}
.yf{bottom:445.792533pt;}
.y146{bottom:449.018267pt;}
.y124{bottom:452.494533pt;}
.y83{bottom:454.289467pt;}
.y101{bottom:456.887200pt;}
.y35{bottom:457.462533pt;}
.ya1{bottom:457.465333pt;}
.y5d{bottom:458.919200pt;}
.yb4{bottom:458.926933pt;}
.yda{bottom:460.398533pt;}
.y145{bottom:470.802267pt;}
.y123{bottom:470.909867pt;}
.y82{bottom:472.598800pt;}
.y100{bottom:475.072533pt;}
.y34{bottom:475.617200pt;}
.ya0{bottom:475.620000pt;}
.y5c{bottom:476.997200pt;}
.yb3{bottom:477.004933pt;}
.yd9{bottom:478.399867pt;}
.y144{bottom:488.806267pt;}
.y122{bottom:489.325200pt;}
.y81{bottom:490.922133pt;}
.ye{bottom:490.932000pt;}
.yff{bottom:493.257867pt;}
.y33{bottom:493.771867pt;}
.y9f{bottom:493.774667pt;}
.y5b{bottom:495.075200pt;}
.yb2{bottom:495.082933pt;}
.yd8{bottom:496.394533pt;}
.y121{bottom:507.740533pt;}
.y80{bottom:509.245467pt;}
.y143{bottom:510.590267pt;}
.yfe{bottom:511.443200pt;}
.y32{bottom:511.926533pt;}
.y9e{bottom:511.929333pt;}
.y5a{bottom:513.153200pt;}
.yb1{bottom:513.160933pt;}
.yd7{bottom:514.395867pt;}
.yd{bottom:518.940000pt;}
.y120{bottom:526.155867pt;}
.y7f{bottom:527.568800pt;}
.y142{bottom:528.594267pt;}
.yfd{bottom:529.628533pt;}
.y31{bottom:530.081200pt;}
.y9d{bottom:530.084000pt;}
.y59{bottom:531.231200pt;}
.yd6{bottom:532.397200pt;}
.y11f{bottom:544.571200pt;}
.y7e{bottom:545.892133pt;}
.y141{bottom:546.598267pt;}
.yc{bottom:546.948000pt;}
.yfc{bottom:547.813867pt;}
.y30{bottom:548.235867pt;}
.y9c{bottom:548.238667pt;}
.y58{bottom:549.309200pt;}
.yd5{bottom:550.398533pt;}
.y11e{bottom:562.986533pt;}
.y7d{bottom:564.215467pt;}
.y140{bottom:564.602267pt;}
.yfb{bottom:565.999200pt;}
.y2f{bottom:566.390533pt;}
.y9b{bottom:566.393333pt;}
.y57{bottom:567.387200pt;}
.yd4{bottom:568.399867pt;}
.yb{bottom:574.956000pt;}
.y11d{bottom:581.401867pt;}
.y7c{bottom:582.538800pt;}
.yfa{bottom:584.184533pt;}
.y2e{bottom:584.545200pt;}
.y9a{bottom:584.548000pt;}
.y56{bottom:585.465200pt;}
.yd3{bottom:586.385200pt;}
.y13f{bottom:586.386267pt;}
.y11c{bottom:599.817200pt;}
.y7b{bottom:600.862133pt;}
.yf9{bottom:602.369867pt;}
.y2d{bottom:602.699867pt;}
.y99{bottom:602.702667pt;}
.ya{bottom:602.966000pt;}
.y55{bottom:603.543200pt;}
.y13e{bottom:604.347867pt;}
.yd2{bottom:604.386533pt;}
.y11b{bottom:618.232533pt;}
.y7a{bottom:619.167867pt;}
.yf8{bottom:620.555200pt;}
.y2c{bottom:620.854533pt;}
.y98{bottom:620.857333pt;}
.y54{bottom:621.621200pt;}
.y13d{bottom:622.351867pt;}
.yd1{bottom:622.387867pt;}
.y11a{bottom:636.647867pt;}
.y79{bottom:637.491200pt;}
.yf7{bottom:638.740533pt;}
.y2b{bottom:639.009200pt;}
.y97{bottom:639.012000pt;}
.y53{bottom:639.699200pt;}
.yd0{bottom:640.389200pt;}
.y13c{bottom:644.135867pt;}
.y119{bottom:655.063200pt;}
.y78{bottom:655.814533pt;}
.yf6{bottom:656.925867pt;}
.y2a{bottom:657.163867pt;}
.y9{bottom:657.411200pt;}
.y52{bottom:657.777200pt;}
.ycf{bottom:658.390533pt;}
.y13b{bottom:662.139867pt;}
.y118{bottom:673.478533pt;}
.y77{bottom:674.137867pt;}
.yf5{bottom:675.103867pt;}
.y29{bottom:675.318533pt;}
.y51{bottom:675.855200pt;}
.yce{bottom:676.391867pt;}
.y8{bottom:683.651200pt;}
.y13a{bottom:683.923867pt;}
.y76{bottom:692.461200pt;}
.yf4{bottom:693.289200pt;}
.y28{bottom:693.473200pt;}
.y50{bottom:693.933200pt;}
.ycd{bottom:694.393200pt;}
.y139{bottom:701.927867pt;}
.y7{bottom:702.331200pt;}
.y117{bottom:710.324533pt;}
.y75{bottom:710.784533pt;}
.yf3{bottom:711.474533pt;}
.y27{bottom:711.627867pt;}
.y4f{bottom:712.011200pt;}
.ycc{bottom:712.394533pt;}
.y6{bottom:721.011200pt;}
.y138{bottom:723.711867pt;}
.y116{bottom:728.739867pt;}
.y74{bottom:729.107867pt;}
.yf2{bottom:729.659867pt;}
.y26{bottom:729.782533pt;}
.y4e{bottom:730.089200pt;}
.ycb{bottom:730.395867pt;}
.y137{bottom:741.715867pt;}
.y115{bottom:747.155200pt;}
.y5{bottom:747.251200pt;}
.y73{bottom:747.431200pt;}
.yf1{bottom:747.845200pt;}
.y25{bottom:747.937200pt;}
.y4d{bottom:748.167200pt;}
.yca{bottom:748.397200pt;}
.y136{bottom:763.499867pt;}
.y114{bottom:765.570533pt;}
.y72{bottom:765.754533pt;}
.y4{bottom:765.931200pt;}
.yf0{bottom:766.030533pt;}
.y24{bottom:766.091867pt;}
.y4c{bottom:766.245200pt;}
.yc9{bottom:766.398533pt;}
.y135{bottom:781.503867pt;}
.y113{bottom:783.985867pt;}
.y71{bottom:784.077867pt;}
.yef{bottom:784.215867pt;}
.y23{bottom:784.246533pt;}
.y4b{bottom:784.323200pt;}
.yc8{bottom:784.399867pt;}
.y3{bottom:784.611200pt;}
.y22{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.y4a{bottom:858.834667pt;}
.ha{height:33.763396pt;}
.h8{height:39.479167pt;}
.h9{height:44.140625pt;}
.hb{height:44.414062pt;}
.h18{height:46.347656pt;}
.h1b{height:49.322917pt;}
.h4{height:49.348958pt;}
.h19{height:51.789062pt;}
.h3{height:51.816406pt;}
.h1a{height:51.986006pt;}
.h7{height:56.751302pt;}
.h11{height:56.759835pt;}
.h10{height:56.762502pt;}
.he{height:56.765169pt;}
.h14{height:56.777969pt;}
.h17{height:56.780102pt;}
.h15{height:56.780635pt;}
.h12{height:56.782235pt;}
.hf{height:56.793969pt;}
.hd{height:56.807302pt;}
.h16{height:56.814235pt;}
.h13{height:56.815302pt;}
.hc{height:56.821702pt;}
.h2{height:61.686198pt;}
.h5{height:69.088542pt;}
.h6{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:72.374267pt;}
.x6{left:73.577200pt;}
.x5{left:74.481867pt;}
.x1{left:75.590533pt;}
.x9{left:92.773867pt;}
.x4{left:93.878533pt;}
.x7{left:94.920133pt;}
.x3{left:206.736400pt;}
.x2{left:207.820000pt;}
}




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