
    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_43b42babc19256ed118f45ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_9c7c9c778acee3b924e9cdc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_035ce2c586517a040612a7f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_8d622a01aa34244c1da70e86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f950f1d2bdb3e629559daa44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_d391f0b7bd8f88c13caf54a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_78a106cd4de3b0996573fade.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_16b87ae39afdabdf22adf476.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3dd1fe27c26962b30b92f8b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_650b7ac7e9e5ceb0bdb13d44.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_aff3eeabba9d902e89a9ea28.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_3a7784122541b4c063eec29a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_c9fa2c2ca131bf7d5eb61538.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916016;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_ba369f701b0c24f2d58d5699.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-2.262000px;}
.ls7{letter-spacing:-1.170000px;}
.lsc{letter-spacing:-1.014000px;}
.ls5{letter-spacing:-0.624000px;}
.lsa{letter-spacing:-0.546000px;}
.ls4{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.234000px;}
.ls3{letter-spacing:-0.078000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.156000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws4{word-spacing:-45.672000px;}
.ws3{word-spacing:-25.764000px;}
.ws5{word-spacing:-24.480000px;}
.wsd{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws6{word-spacing:-12.204000px;}
.ws11{word-spacing:-0.486000px;}
.ws10{word-spacing:-0.156000px;}
.wse{word-spacing:-0.078000px;}
.ws13{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.078000px;}
.wsa{word-spacing:0.234000px;}
.ws8{word-spacing:0.330000px;}
.wsf{word-spacing:0.546000px;}
.ws9{word-spacing:0.624000px;}
.ws14{word-spacing:1.014000px;}
.wsb{word-spacing:1.170000px;}
.ws12{word-spacing:1.350000px;}
.wsc{word-spacing:2.184000px;}
._f{margin-left:-26.448000px;}
._10{margin-left:-15.100800px;}
._1a{margin-left:-12.698304px;}
._15{margin-left:-7.414222px;}
._14{margin-left:-5.959800px;}
._d{margin-left:-4.435200px;}
._12{margin-left:-3.342600px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._11{width:6.107400px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._13{width:10.296000px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._18{width:13.863000px;}
._19{width:15.249000px;}
._16{width:16.453800px;}
._17{width:17.457000px;}
._9{width:18.555327px;}
._5{width:21.723310px;}
._c{width:28.210132px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._0{width:769.805658px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs4{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fsf{font-size:54.000000px;}
.fs12{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs11{font-size:90.000000px;}
.fsb{font-size:114.000000px;}
.fse{font-size:126.000000px;}
.fs7{font-size:252.000000px;}
.fs9{font-size:288.000000px;}
.fs8{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y32{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y31{bottom:102.047250px;}
.y8e{bottom:102.157350px;}
.ye7{bottom:102.243600px;}
.y113{bottom:102.294600px;}
.yab{bottom:102.569250px;}
.y67{bottom:102.660300px;}
.yc5{bottom:103.489950px;}
.y42{bottom:109.120950px;}
.y112{bottom:118.494600px;}
.ye6{bottom:122.720100px;}
.y8d{bottom:122.864850px;}
.yaa{bottom:123.111750px;}
.y66{bottom:123.202800px;}
.y1b{bottom:123.419327px;}
.yc4{bottom:124.032450px;}
.y41{bottom:125.320950px;}
.y111{bottom:134.694600px;}
.y21{bottom:136.778700px;}
.y40{bottom:141.520950px;}
.y28{bottom:142.439400px;}
.ye5{bottom:143.196600px;}
.y8c{bottom:143.572350px;}
.ya9{bottom:143.654250px;}
.y65{bottom:143.745300px;}
.yc3{bottom:144.574950px;}
.y110{bottom:150.894600px;}
.y3f{bottom:161.973450px;}
.ye4{bottom:163.673100px;}
.ya8{bottom:164.196750px;}
.y8b{bottom:164.279850px;}
.y64{bottom:164.287800px;}
.yc2{bottom:165.117450px;}
.y10f{bottom:167.094600px;}
.y3e{bottom:178.173450px;}
.y10e{bottom:183.294600px;}
.ye3{bottom:184.149600px;}
.y27{bottom:184.431900px;}
.ya7{bottom:184.739250px;}
.y8a{bottom:184.987350px;}
.yc1{bottom:185.659950px;}
.y1a{bottom:192.612878px;}
.y63{bottom:193.773300px;}
.y3d{bottom:194.373450px;}
.y10d{bottom:199.494600px;}
.y19{bottom:202.630680px;}
.ye2{bottom:204.626100px;}
.y26{bottom:205.436400px;}
.y89{bottom:205.694850px;}
.yc0{bottom:206.202450px;}
.y3c{bottom:210.573450px;}
.y18{bottom:212.648483px;}
.y62{bottom:214.315800px;}
.y10c{bottom:215.694600px;}
.y17{bottom:222.678071px;}
.ya6{bottom:223.147500px;}
.ye1{bottom:225.102600px;}
.y88{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.ybf{bottom:226.744950px;}
.y3b{bottom:226.773450px;}
.y10b{bottom:231.894600px;}
.y16{bottom:232.695874px;}
.y61{bottom:234.858300px;}
.y15{bottom:242.725462px;}
.y3a{bottom:242.973450px;}
.ye0{bottom:245.579100px;}
.y87{bottom:247.109850px;}
.ybe{bottom:247.287450px;}
.y10a{bottom:248.094600px;}
.y14{bottom:252.743264px;}
.y60{bottom:255.400800px;}
.y39{bottom:259.173450px;}
.y13{bottom:262.761067px;}
.y109{bottom:264.294600px;}
.ydf{bottom:266.055600px;}
.y86{bottom:267.817350px;}
.ybd{bottom:267.829950px;}
.y12{bottom:272.790655px;}
.y38{bottom:275.373450px;}
.y5f{bottom:275.943300px;}
.y108{bottom:280.494600px;}
.y11{bottom:282.808457px;}
.ya5{bottom:284.366850px;}
.y30{bottom:284.434200px;}
.yde{bottom:286.532100px;}
.ybc{bottom:288.372450px;}
.y85{bottom:288.524850px;}
.y37{bottom:291.573450px;}
.y10{bottom:292.838046px;}
.y5e{bottom:296.485800px;}
.y107{bottom:296.694600px;}
.yf{bottom:302.855848px;}
.ya4{bottom:304.909350px;}
.y2f{bottom:305.438700px;}
.ydd{bottom:307.008600px;}
.ybb{bottom:308.914950px;}
.y84{bottom:309.232350px;}
.ye{bottom:312.873651px;}
.y106{bottom:312.894600px;}
.y5d{bottom:317.028300px;}
.ya3{bottom:325.451850px;}
.y2e{bottom:326.443200px;}
.ydc{bottom:327.485100px;}
.y105{bottom:329.094600px;}
.yba{bottom:329.457450px;}
.y83{bottom:329.939850px;}
.yd{bottom:330.893909px;}
.y136{bottom:335.443350px;}
.y5c{bottom:337.570800px;}
.y104{bottom:345.294600px;}
.ya2{bottom:345.994350px;}
.y2d{bottom:347.447700px;}
.ydb{bottom:347.961600px;}
.yb9{bottom:349.999950px;}
.y82{bottom:350.647350px;}
.y135{bottom:351.791850px;}
.y5b{bottom:358.113300px;}
.y103{bottom:361.494600px;}
.ya1{bottom:366.536850px;}
.y134{bottom:368.140350px;}
.yda{bottom:368.438100px;}
.y2c{bottom:368.452200px;}
.yb8{bottom:370.542450px;}
.y81{bottom:371.354850px;}
.y102{bottom:377.694600px;}
.y5a{bottom:378.655800px;}
.y133{bottom:384.488850px;}
.ya0{bottom:387.079350px;}
.yd9{bottom:388.914600px;}
.y2b{bottom:389.456700px;}
.yb7{bottom:391.084950px;}
.y80{bottom:392.062350px;}
.y101{bottom:393.894600px;}
.y59{bottom:399.198300px;}
.y132{bottom:400.837350px;}
.y9f{bottom:407.621850px;}
.yd8{bottom:409.391100px;}
.y100{bottom:410.094600px;}
.yb6{bottom:411.627450px;}
.y7f{bottom:412.769850px;}
.y131{bottom:417.185850px;}
.y58{bottom:419.740800px;}
.yff{bottom:426.294600px;}
.y9e{bottom:428.164350px;}
.yd7{bottom:429.867600px;}
.yb5{bottom:432.169950px;}
.y7e{bottom:433.477350px;}
.y130{bottom:433.534350px;}
.y57{bottom:440.283300px;}
.yc{bottom:440.641882px;}
.yfe{bottom:442.494600px;}
.y9d{bottom:448.706850px;}
.y12f{bottom:449.882850px;}
.yd6{bottom:450.344100px;}
.yb4{bottom:452.712450px;}
.y7d{bottom:454.184850px;}
.yfd{bottom:458.694600px;}
.y56{bottom:460.825800px;}
.y12e{bottom:466.231350px;}
.y9c{bottom:469.249350px;}
.yd5{bottom:470.820600px;}
.yb3{bottom:473.254950px;}
.y7c{bottom:474.892350px;}
.yfc{bottom:474.894600px;}
.y2a{bottom:477.056700px;}
.y55{bottom:481.368300px;}
.y12d{bottom:482.579850px;}
.y9b{bottom:489.791850px;}
.yfb{bottom:491.094600px;}
.yd4{bottom:491.297100px;}
.yb2{bottom:493.797450px;}
.y7b{bottom:495.599850px;}
.y12c{bottom:498.928350px;}
.yfa{bottom:507.294600px;}
.y9a{bottom:510.334350px;}
.y29{bottom:511.256700px;}
.yd3{bottom:511.773600px;}
.yb1{bottom:514.339950px;}
.y12b{bottom:515.276850px;}
.y7a{bottom:516.307350px;}
.y54{bottom:519.776550px;}
.yf9{bottom:523.494600px;}
.y99{bottom:530.876850px;}
.y12a{bottom:531.625350px;}
.yd2{bottom:532.250100px;}
.yb0{bottom:534.882450px;}
.y79{bottom:537.014850px;}
.yf8{bottom:539.694600px;}
.y129{bottom:547.973850px;}
.y98{bottom:551.419350px;}
.yd1{bottom:552.726600px;}
.yaf{bottom:555.424950px;}
.yf7{bottom:555.894600px;}
.y78{bottom:557.722350px;}
.y128{bottom:564.322350px;}
.y97{bottom:571.961850px;}
.yf6{bottom:572.094600px;}
.yd0{bottom:573.203100px;}
.yae{bottom:575.967450px;}
.y77{bottom:578.429850px;}
.y127{bottom:580.670850px;}
.y53{bottom:580.904850px;}
.yf5{bottom:588.294600px;}
.y96{bottom:592.504350px;}
.ycf{bottom:593.679600px;}
.y126{bottom:597.019350px;}
.y76{bottom:599.137350px;}
.y52{bottom:601.447350px;}
.yb{bottom:602.824212px;}
.yf4{bottom:604.494600px;}
.y95{bottom:613.046850px;}
.y125{bottom:613.367850px;}
.yce{bottom:614.156100px;}
.yad{bottom:614.375850px;}
.y75{bottom:619.844850px;}
.yf3{bottom:620.694600px;}
.y51{bottom:621.989850px;}
.ya{bottom:623.578742px;}
.y124{bottom:629.716350px;}
.y94{bottom:633.589350px;}
.ycd{bottom:634.632600px;}
.yf2{bottom:636.894600px;}
.y9{bottom:636.931883px;}
.y74{bottom:640.552350px;}
.yac{bottom:641.375850px;}
.y50{bottom:642.532350px;}
.y123{bottom:646.064850px;}
.yf1{bottom:653.094600px;}
.y93{bottom:654.131850px;}
.ycc{bottom:655.109100px;}
.y24{bottom:657.176850px;}
.y73{bottom:661.259850px;}
.y122{bottom:662.413350px;}
.y8{bottom:662.954598px;}
.y4f{bottom:663.074850px;}
.y92{bottom:674.674350px;}
.y7{bottom:676.319525px;}
.y121{bottom:678.761850px;}
.y72{bottom:681.967350px;}
.y4e{bottom:683.617350px;}
.ycb{bottom:684.513300px;}
.yf0{bottom:686.302500px;}
.y6{bottom:689.684452px;}
.y120{bottom:695.110350px;}
.y91{bottom:695.216850px;}
.y71{bottom:702.674850px;}
.y5{bottom:703.049379px;}
.yca{bottom:703.413300px;}
.y4d{bottom:704.159850px;}
.y11f{bottom:711.458850px;}
.y90{bottom:715.759350px;}
.yc9{bottom:722.313300px;}
.y23{bottom:723.200850px;}
.y70{bottom:723.382350px;}
.y4c{bottom:724.702350px;}
.y36{bottom:726.592350px;}
.y11e{bottom:727.807350px;}
.y8f{bottom:736.301850px;}
.yc8{bottom:741.213300px;}
.y6f{bottom:744.089850px;}
.y11d{bottom:744.155850px;}
.yef{bottom:745.244700px;}
.y4b{bottom:745.244850px;}
.yc7{bottom:760.113300px;}
.y11c{bottom:760.504350px;}
.y35{bottom:764.392350px;}
.y6e{bottom:764.797350px;}
.y4{bottom:765.336540px;}
.yee{bottom:765.787200px;}
.y4a{bottom:765.787350px;}
.y13e{bottom:765.790650px;}
.y11b{bottom:776.852850px;}
.yc6{bottom:779.013300px;}
.y13d{bottom:784.272150px;}
.y3{bottom:785.148217px;}
.y6d{bottom:785.504850px;}
.yed{bottom:786.329700px;}
.y49{bottom:786.329850px;}
.y11a{bottom:793.201350px;}
.y13c{bottom:800.620650px;}
.y6c{bottom:806.212350px;}
.yec{bottom:806.872200px;}
.y48{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y119{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y13b{bottom:816.969150px;}
.y118{bottom:825.898350px;}
.y6b{bottom:826.919850px;}
.yeb{bottom:827.414700px;}
.y47{bottom:827.414850px;}
.y68{bottom:828.336150px;}
.y13a{bottom:833.317650px;}
.y34{bottom:839.992350px;}
.y117{bottom:842.246850px;}
.y6a{bottom:847.627350px;}
.yea{bottom:847.957200px;}
.y46{bottom:847.957350px;}
.y139{bottom:849.666150px;}
.y116{bottom:858.595350px;}
.y138{bottom:866.014650px;}
.y69{bottom:868.334850px;}
.ye9{bottom:868.499700px;}
.y45{bottom:868.499850px;}
.y115{bottom:874.943850px;}
.y33{bottom:877.792350px;}
.y137{bottom:882.363150px;}
.ye8{bottom:889.042200px;}
.y44{bottom:889.042350px;}
.y114{bottom:891.292350px;}
.y43{bottom:952.015800px;}
.h6{height:27.946133px;}
.h12{height:28.546875px;}
.h7{height:31.439400px;}
.h5{height:34.932667px;}
.h1c{height:37.573242px;}
.h4{height:38.425933px;}
.h8{height:39.124587px;}
.h16{height:42.820312px;}
.h15{height:43.664062px;}
.h1b{height:47.578125px;}
.he{height:48.694336px;}
.h3{height:48.905733px;}
.hf{height:52.335938px;}
.h19{height:53.367188px;}
.h11{height:54.272461px;}
.h17{height:57.093750px;}
.h1a{height:63.070312px;}
.h18{height:72.773438px;}
.h13{height:87.670898px;}
.h10{height:90.398438px;}
.h14{height:99.914062px;}
.hb{height:172.265625px;}
.hd{height:212.484375px;}
.hc{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.ha{height:999.000000px;}
.h9{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x13{left:46.771650px;}
.x19{left:60.271650px;}
.x18{left:76.535400px;}
.x8{left:80.205750px;}
.x11{left:86.082900px;}
.x1b{left:97.797900px;}
.x12{left:114.198900px;}
.x2{left:116.925434px;}
.x9{left:135.959250px;}
.xf{left:159.491400px;}
.x15{left:161.574750px;}
.x1a{left:182.834550px;}
.x7{left:190.392750px;}
.x10{left:201.813900px;}
.xb{left:209.128800px;}
.xc{left:215.769300px;}
.xe{left:222.471900px;}
.xa{left:281.522250px;}
.x20{left:284.361900px;}
.xd{left:307.133400px;}
.x22{left:317.112900px;}
.x1d{left:321.851400px;}
.x1e{left:340.643400px;}
.x1c{left:342.371400px;}
.x4{left:344.105623px;}
.x23{left:391.484400px;}
.x21{left:402.027900px;}
.x14{left:407.083800px;}
.x1f{left:419.766900px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x16{left:635.040450px;}
.x17{left:641.303100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.010667pt;}
.ls7{letter-spacing:-1.040000pt;}
.lsc{letter-spacing:-0.901333pt;}
.ls5{letter-spacing:-0.554667pt;}
.lsa{letter-spacing:-0.485333pt;}
.ls4{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.208000pt;}
.ls3{letter-spacing:-0.069333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.138667pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws4{word-spacing:-40.597333pt;}
.ws3{word-spacing:-22.901333pt;}
.ws5{word-spacing:-21.760000pt;}
.wsd{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws6{word-spacing:-10.848000pt;}
.ws11{word-spacing:-0.432000pt;}
.ws10{word-spacing:-0.138667pt;}
.wse{word-spacing:-0.069333pt;}
.ws13{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.069333pt;}
.wsa{word-spacing:0.208000pt;}
.ws8{word-spacing:0.293333pt;}
.wsf{word-spacing:0.485333pt;}
.ws9{word-spacing:0.554667pt;}
.ws14{word-spacing:0.901333pt;}
.wsb{word-spacing:1.040000pt;}
.ws12{word-spacing:1.200000pt;}
.wsc{word-spacing:1.941333pt;}
._f{margin-left:-23.509333pt;}
._10{margin-left:-13.422933pt;}
._1a{margin-left:-11.287381pt;}
._15{margin-left:-6.590420pt;}
._14{margin-left:-5.297600pt;}
._d{margin-left:-3.942400pt;}
._12{margin-left:-2.971200pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._11{width:5.428800pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._13{width:9.152000pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._18{width:12.322667pt;}
._19{width:13.554667pt;}
._16{width:14.625600pt;}
._17{width:15.517333pt;}
._9{width:16.493624pt;}
._5{width:19.309609pt;}
._c{width:25.075673pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._0{width:684.271696pt;}
.fsd{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs4{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fsf{font-size:48.000000pt;}
.fs12{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs11{font-size:80.000000pt;}
.fsb{font-size:101.333333pt;}
.fse{font-size:112.000000pt;}
.fs7{font-size:224.000000pt;}
.fs9{font-size:256.000000pt;}
.fs8{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y32{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y31{bottom:90.708667pt;}
.y8e{bottom:90.806533pt;}
.ye7{bottom:90.883200pt;}
.y113{bottom:90.928533pt;}
.yab{bottom:91.172667pt;}
.y67{bottom:91.253600pt;}
.yc5{bottom:91.991067pt;}
.y42{bottom:96.996400pt;}
.y112{bottom:105.328533pt;}
.ye6{bottom:109.084533pt;}
.y8d{bottom:109.213200pt;}
.yaa{bottom:109.432667pt;}
.y66{bottom:109.513600pt;}
.y1b{bottom:109.706068pt;}
.yc4{bottom:110.251067pt;}
.y41{bottom:111.396400pt;}
.y111{bottom:119.728533pt;}
.y21{bottom:121.581067pt;}
.y40{bottom:125.796400pt;}
.y28{bottom:126.612800pt;}
.ye5{bottom:127.285867pt;}
.y8c{bottom:127.619867pt;}
.ya9{bottom:127.692667pt;}
.y65{bottom:127.773600pt;}
.yc3{bottom:128.511067pt;}
.y110{bottom:134.128533pt;}
.y3f{bottom:143.976400pt;}
.ye4{bottom:145.487200pt;}
.ya8{bottom:145.952667pt;}
.y8b{bottom:146.026533pt;}
.y64{bottom:146.033600pt;}
.yc2{bottom:146.771067pt;}
.y10f{bottom:148.528533pt;}
.y3e{bottom:158.376400pt;}
.y10e{bottom:162.928533pt;}
.ye3{bottom:163.688533pt;}
.y27{bottom:163.939467pt;}
.ya7{bottom:164.212667pt;}
.y8a{bottom:164.433200pt;}
.yc1{bottom:165.031067pt;}
.y1a{bottom:171.211447pt;}
.y63{bottom:172.242933pt;}
.y3d{bottom:172.776400pt;}
.y10d{bottom:177.328533pt;}
.y19{bottom:180.116160pt;}
.ye2{bottom:181.889867pt;}
.y26{bottom:182.610133pt;}
.y89{bottom:182.839867pt;}
.yc0{bottom:183.291067pt;}
.y3c{bottom:187.176400pt;}
.y18{bottom:189.020874pt;}
.y62{bottom:190.502933pt;}
.y10c{bottom:191.728533pt;}
.y17{bottom:197.936063pt;}
.ya6{bottom:198.353333pt;}
.ye1{bottom:200.091200pt;}
.y88{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.ybf{bottom:201.551067pt;}
.y3b{bottom:201.576400pt;}
.y10b{bottom:206.128533pt;}
.y16{bottom:206.840777pt;}
.y61{bottom:208.762933pt;}
.y15{bottom:215.755966pt;}
.y3a{bottom:215.976400pt;}
.ye0{bottom:218.292533pt;}
.y87{bottom:219.653200pt;}
.ybe{bottom:219.811067pt;}
.y10a{bottom:220.528533pt;}
.y14{bottom:224.660679pt;}
.y60{bottom:227.022933pt;}
.y39{bottom:230.376400pt;}
.y13{bottom:233.565393pt;}
.y109{bottom:234.928533pt;}
.ydf{bottom:236.493867pt;}
.y86{bottom:238.059867pt;}
.ybd{bottom:238.071067pt;}
.y12{bottom:242.480582pt;}
.y38{bottom:244.776400pt;}
.y5f{bottom:245.282933pt;}
.y108{bottom:249.328533pt;}
.y11{bottom:251.385295pt;}
.ya5{bottom:252.770533pt;}
.y30{bottom:252.830400pt;}
.yde{bottom:254.695200pt;}
.ybc{bottom:256.331067pt;}
.y85{bottom:256.466533pt;}
.y37{bottom:259.176400pt;}
.y10{bottom:260.300485pt;}
.y5e{bottom:263.542933pt;}
.y107{bottom:263.728533pt;}
.yf{bottom:269.205198pt;}
.ya4{bottom:271.030533pt;}
.y2f{bottom:271.501067pt;}
.ydd{bottom:272.896533pt;}
.ybb{bottom:274.591067pt;}
.y84{bottom:274.873200pt;}
.ye{bottom:278.109912pt;}
.y106{bottom:278.128533pt;}
.y5d{bottom:281.802933pt;}
.ya3{bottom:289.290533pt;}
.y2e{bottom:290.171733pt;}
.ydc{bottom:291.097867pt;}
.y105{bottom:292.528533pt;}
.yba{bottom:292.851067pt;}
.y83{bottom:293.279867pt;}
.yd{bottom:294.127919pt;}
.y136{bottom:298.171867pt;}
.y5c{bottom:300.062933pt;}
.y104{bottom:306.928533pt;}
.ya2{bottom:307.550533pt;}
.y2d{bottom:308.842400pt;}
.ydb{bottom:309.299200pt;}
.yb9{bottom:311.111067pt;}
.y82{bottom:311.686533pt;}
.y135{bottom:312.703867pt;}
.y5b{bottom:318.322933pt;}
.y103{bottom:321.328533pt;}
.ya1{bottom:325.810533pt;}
.y134{bottom:327.235867pt;}
.yda{bottom:327.500533pt;}
.y2c{bottom:327.513067pt;}
.yb8{bottom:329.371067pt;}
.y81{bottom:330.093200pt;}
.y102{bottom:335.728533pt;}
.y5a{bottom:336.582933pt;}
.y133{bottom:341.767867pt;}
.ya0{bottom:344.070533pt;}
.yd9{bottom:345.701867pt;}
.y2b{bottom:346.183733pt;}
.yb7{bottom:347.631067pt;}
.y80{bottom:348.499867pt;}
.y101{bottom:350.128533pt;}
.y59{bottom:354.842933pt;}
.y132{bottom:356.299867pt;}
.y9f{bottom:362.330533pt;}
.yd8{bottom:363.903200pt;}
.y100{bottom:364.528533pt;}
.yb6{bottom:365.891067pt;}
.y7f{bottom:366.906533pt;}
.y131{bottom:370.831867pt;}
.y58{bottom:373.102933pt;}
.yff{bottom:378.928533pt;}
.y9e{bottom:380.590533pt;}
.yd7{bottom:382.104533pt;}
.yb5{bottom:384.151067pt;}
.y7e{bottom:385.313200pt;}
.y130{bottom:385.363867pt;}
.y57{bottom:391.362933pt;}
.yc{bottom:391.681673pt;}
.yfe{bottom:393.328533pt;}
.y9d{bottom:398.850533pt;}
.y12f{bottom:399.895867pt;}
.yd6{bottom:400.305867pt;}
.yb4{bottom:402.411067pt;}
.y7d{bottom:403.719867pt;}
.yfd{bottom:407.728533pt;}
.y56{bottom:409.622933pt;}
.y12e{bottom:414.427867pt;}
.y9c{bottom:417.110533pt;}
.yd5{bottom:418.507200pt;}
.yb3{bottom:420.671067pt;}
.y7c{bottom:422.126533pt;}
.yfc{bottom:422.128533pt;}
.y2a{bottom:424.050400pt;}
.y55{bottom:427.882933pt;}
.y12d{bottom:428.959867pt;}
.y9b{bottom:435.370533pt;}
.yfb{bottom:436.528533pt;}
.yd4{bottom:436.708533pt;}
.yb2{bottom:438.931067pt;}
.y7b{bottom:440.533200pt;}
.y12c{bottom:443.491867pt;}
.yfa{bottom:450.928533pt;}
.y9a{bottom:453.630533pt;}
.y29{bottom:454.450400pt;}
.yd3{bottom:454.909867pt;}
.yb1{bottom:457.191067pt;}
.y12b{bottom:458.023867pt;}
.y7a{bottom:458.939867pt;}
.y54{bottom:462.023600pt;}
.yf9{bottom:465.328533pt;}
.y99{bottom:471.890533pt;}
.y12a{bottom:472.555867pt;}
.yd2{bottom:473.111200pt;}
.yb0{bottom:475.451067pt;}
.y79{bottom:477.346533pt;}
.yf8{bottom:479.728533pt;}
.y129{bottom:487.087867pt;}
.y98{bottom:490.150533pt;}
.yd1{bottom:491.312533pt;}
.yaf{bottom:493.711067pt;}
.yf7{bottom:494.128533pt;}
.y78{bottom:495.753200pt;}
.y128{bottom:501.619867pt;}
.y97{bottom:508.410533pt;}
.yf6{bottom:508.528533pt;}
.yd0{bottom:509.513867pt;}
.yae{bottom:511.971067pt;}
.y77{bottom:514.159867pt;}
.y127{bottom:516.151867pt;}
.y53{bottom:516.359867pt;}
.yf5{bottom:522.928533pt;}
.y96{bottom:526.670533pt;}
.ycf{bottom:527.715200pt;}
.y126{bottom:530.683867pt;}
.y76{bottom:532.566533pt;}
.y52{bottom:534.619867pt;}
.yb{bottom:535.843744pt;}
.yf4{bottom:537.328533pt;}
.y95{bottom:544.930533pt;}
.y125{bottom:545.215867pt;}
.yce{bottom:545.916533pt;}
.yad{bottom:546.111867pt;}
.y75{bottom:550.973200pt;}
.yf3{bottom:551.728533pt;}
.y51{bottom:552.879867pt;}
.ya{bottom:554.292215pt;}
.y124{bottom:559.747867pt;}
.y94{bottom:563.190533pt;}
.ycd{bottom:564.117867pt;}
.yf2{bottom:566.128533pt;}
.y9{bottom:566.161674pt;}
.y74{bottom:569.379867pt;}
.yac{bottom:570.111867pt;}
.y50{bottom:571.139867pt;}
.y123{bottom:574.279867pt;}
.yf1{bottom:580.528533pt;}
.y93{bottom:581.450533pt;}
.ycc{bottom:582.319200pt;}
.y24{bottom:584.157200pt;}
.y73{bottom:587.786533pt;}
.y122{bottom:588.811867pt;}
.y8{bottom:589.292976pt;}
.y4f{bottom:589.399867pt;}
.y92{bottom:599.710533pt;}
.y7{bottom:601.172911pt;}
.y121{bottom:603.343867pt;}
.y72{bottom:606.193200pt;}
.y4e{bottom:607.659867pt;}
.ycb{bottom:608.456267pt;}
.yf0{bottom:610.046667pt;}
.y6{bottom:613.052847pt;}
.y120{bottom:617.875867pt;}
.y91{bottom:617.970533pt;}
.y71{bottom:624.599867pt;}
.y5{bottom:624.932782pt;}
.yca{bottom:625.256267pt;}
.y4d{bottom:625.919867pt;}
.y11f{bottom:632.407867pt;}
.y90{bottom:636.230533pt;}
.yc9{bottom:642.056267pt;}
.y23{bottom:642.845200pt;}
.y70{bottom:643.006533pt;}
.y4c{bottom:644.179867pt;}
.y36{bottom:645.859867pt;}
.y11e{bottom:646.939867pt;}
.y8f{bottom:654.490533pt;}
.yc8{bottom:658.856267pt;}
.y6f{bottom:661.413200pt;}
.y11d{bottom:661.471867pt;}
.yef{bottom:662.439733pt;}
.y4b{bottom:662.439867pt;}
.yc7{bottom:675.656267pt;}
.y11c{bottom:676.003867pt;}
.y35{bottom:679.459867pt;}
.y6e{bottom:679.819867pt;}
.y4{bottom:680.299146pt;}
.yee{bottom:680.699733pt;}
.y4a{bottom:680.699867pt;}
.y13e{bottom:680.702800pt;}
.y11b{bottom:690.535867pt;}
.yc6{bottom:692.456267pt;}
.y13d{bottom:697.130800pt;}
.y3{bottom:697.909527pt;}
.y6d{bottom:698.226533pt;}
.yed{bottom:698.959733pt;}
.y49{bottom:698.959867pt;}
.y11a{bottom:705.067867pt;}
.y13c{bottom:711.662800pt;}
.y6c{bottom:716.633200pt;}
.yec{bottom:717.219733pt;}
.y48{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y119{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y13b{bottom:726.194800pt;}
.y118{bottom:734.131867pt;}
.y6b{bottom:735.039867pt;}
.yeb{bottom:735.479733pt;}
.y47{bottom:735.479867pt;}
.y68{bottom:736.298800pt;}
.y13a{bottom:740.726800pt;}
.y34{bottom:746.659867pt;}
.y117{bottom:748.663867pt;}
.y6a{bottom:753.446533pt;}
.yea{bottom:753.739733pt;}
.y46{bottom:753.739867pt;}
.y139{bottom:755.258800pt;}
.y116{bottom:763.195867pt;}
.y138{bottom:769.790800pt;}
.y69{bottom:771.853200pt;}
.ye9{bottom:771.999733pt;}
.y45{bottom:771.999867pt;}
.y115{bottom:777.727867pt;}
.y33{bottom:780.259867pt;}
.y137{bottom:784.322800pt;}
.ye8{bottom:790.259733pt;}
.y44{bottom:790.259867pt;}
.y114{bottom:792.259867pt;}
.y43{bottom:846.236267pt;}
.h6{height:24.841007pt;}
.h12{height:25.375000pt;}
.h7{height:27.946133pt;}
.h5{height:31.051259pt;}
.h1c{height:33.398438pt;}
.h4{height:34.156385pt;}
.h8{height:34.777410pt;}
.h16{height:38.062500pt;}
.h15{height:38.812500pt;}
.h1b{height:42.291667pt;}
.he{height:43.283854pt;}
.h3{height:43.471763pt;}
.hf{height:46.520833pt;}
.h19{height:47.437500pt;}
.h11{height:48.242188pt;}
.h17{height:50.750000pt;}
.h1a{height:56.062500pt;}
.h18{height:64.687500pt;}
.h13{height:77.929688pt;}
.h10{height:80.354167pt;}
.h14{height:88.812500pt;}
.hb{height:153.125000pt;}
.hd{height:188.875000pt;}
.hc{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.ha{height:888.000000pt;}
.h9{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x13{left:41.574800pt;}
.x19{left:53.574800pt;}
.x18{left:68.031467pt;}
.x8{left:71.294000pt;}
.x11{left:76.518133pt;}
.x1b{left:86.931467pt;}
.x12{left:101.510133pt;}
.x2{left:103.933719pt;}
.x9{left:120.852667pt;}
.xf{left:141.770133pt;}
.x15{left:143.622000pt;}
.x1a{left:162.519600pt;}
.x7{left:169.238000pt;}
.x10{left:179.390133pt;}
.xb{left:185.892267pt;}
.xc{left:191.794933pt;}
.xe{left:197.752800pt;}
.xa{left:250.242000pt;}
.x20{left:252.766133pt;}
.xd{left:273.007467pt;}
.x22{left:281.878133pt;}
.x1d{left:286.090133pt;}
.x1e{left:302.794133pt;}
.x1c{left:304.330133pt;}
.x4{left:305.871665pt;}
.x23{left:347.986133pt;}
.x21{left:357.358133pt;}
.x14{left:361.852267pt;}
.x1f{left:373.126133pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x16{left:564.480400pt;}
.x17{left:570.047200pt;}
}




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