
    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_56176dc99013b90b9813e030.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_af7e1619b90a189f2fbd51a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_19fdd492c33f373588d0103d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_550a46ac0a750607b3f173dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_1cdde8a48cfee894822df7de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_bb4078e257d439cf0ababefc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_db5d90f7f07e3d21360e2442.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_b489ea88605b8cd1de7bee7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_39aab8a2b1ce5e2dab594790.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-19.563772px;}
.v2{vertical-align:-4.694062px;}
.v3{vertical-align:-3.133127px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.696876px;}
.v4{vertical-align:19.566544px;}
.v5{vertical-align:22.699671px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.191235px;}
.lsd{letter-spacing:0.308125px;}
.lsb{letter-spacing:0.330625px;}
.lsc{letter-spacing:0.336265px;}
.ls7{letter-spacing:0.665990px;}
.ls9{letter-spacing:0.671630px;}
.ls5{letter-spacing:0.772755px;}
.ls6{letter-spacing:0.892950px;}
.ls3{letter-spacing:10.117701px;}
.ls0{letter-spacing:12.463340px;}
.lsf{letter-spacing:14.811739px;}
.ls10{letter-spacing:65.980877px;}
.ls11{letter-spacing:66.012677px;}
.ls8{letter-spacing:122.243393px;}
.lsa{letter-spacing:216.726779px;}
.ls2{letter-spacing:216.779913px;}
.ls4{letter-spacing:977.177051px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-48.717431px;}
.ws5{word-spacing:-44.021682px;}
.ws0{word-spacing:-18.057928px;}
.ws3{word-spacing:-14.576863px;}
.ws2{word-spacing:-11.748520px;}
.ws4{word-spacing:-9.137734px;}
.ws1{word-spacing:0.000000px;}
._2b{margin-left:-13.253031px;}
._29{margin-left:-7.876959px;}
._11{margin-left:-4.923112px;}
._c{margin-left:-3.906384px;}
._5{margin-left:-2.284451px;}
._2{margin-left:-1.243517px;}
._0{width:1.005419px;}
._4{width:2.868427px;}
._d{width:4.134851px;}
._b{width:5.372821px;}
._a{width:6.510542px;}
._1{width:7.666527px;}
._3{width:9.169734px;}
._8{width:10.524155px;}
._7{width:11.790965px;}
._6{width:12.927049px;}
._9{width:14.929919px;}
._e{width:16.846276px;}
._10{width:19.511879px;}
._23{width:20.817584px;}
._24{width:21.837494px;}
._13{width:22.910393px;}
._12{width:23.915814px;}
._22{width:25.913702px;}
._14{width:28.614794px;}
._15{width:29.748057px;}
._17{width:45.226352px;}
._19{width:50.684306px;}
._2c{width:72.234823px;}
._25{width:113.218619px;}
._18{width:163.935675px;}
._2a{width:198.629427px;}
._f{width:216.738002px;}
._16{width:266.247744px;}
._1a{width:335.884619px;}
._27{width:340.386738px;}
._1e{width:442.907699px;}
._1d{width:506.687930px;}
._26{width:601.974007px;}
._1b{width:613.711010px;}
._20{width:633.277230px;}
._28{width:757.685958px;}
._21{width:956.628457px;}
._1c{width:1103.598528px;}
._1f{width:1437.986272px;}
.fc2{color:rgb(220,33,36);}
.fc3{color:rgb(237,30,36);}
.fc1{color:rgb(18,17,17);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:32.869547px;}
.fs4{font-size:42.260863px;}
.fs5{font-size:52.434759px;}
.fs3{font-size:58.695577px;}
.fs2{font-size:64.956574px;}
.fs1{font-size:71.999971px;}
.fs0{font-size:78.260969px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000703px;}
.yeb{bottom:3.504215px;}
.y126{bottom:3.520291px;}
.y13e{bottom:3.699212px;}
.yea{bottom:3.699215px;}
.y140{bottom:3.699226px;}
.y154{bottom:3.700197px;}
.yd2{bottom:3.700541px;}
.y15c{bottom:3.701441px;}
.y168{bottom:3.716195px;}
.yee{bottom:3.716330px;}
.y127{bottom:3.716791px;}
.y16c{bottom:3.716821px;}
.y16e{bottom:3.716838px;}
.y13c{bottom:3.716897px;}
.y158{bottom:3.717024px;}
.y124{bottom:3.717076px;}
.y12c{bottom:3.717127px;}
.y12a{bottom:3.717263px;}
.y142{bottom:3.717271px;}
.y15a{bottom:3.717641px;}
.y165{bottom:3.894678px;}
.yd1{bottom:3.895541px;}
.ye8{bottom:3.897200px;}
.yed{bottom:3.912830px;}
.y13a{bottom:3.927182px;}
.y150{bottom:3.960730px;}
.y121{bottom:4.482361px;}
.y102{bottom:4.874232px;}
.ycf{bottom:5.266226px;}
.yca{bottom:5.266511px;}
.ycd{bottom:5.282426px;}
.ycc{bottom:5.477426px;}
.y122{bottom:7.612860px;}
.yf8{bottom:8.607543px;}
.y167{bottom:9.390693px;}
.y152{bottom:9.390895px;}
.y133{bottom:11.149357px;}
.y134{bottom:11.149657px;}
.y109{bottom:15.441005px;}
.y10a{bottom:15.441305px;}
.y137{bottom:22.304275px;}
.y138{bottom:22.499275px;}
.y129{bottom:22.499805px;}
.y164{bottom:22.677970px;}
.y14f{bottom:22.743273px;}
.y100{bottom:23.705074px;}
.y101{bottom:23.705374px;}
.y130{bottom:29.737650px;}
.y132{bottom:29.932650px;}
.y16a{bottom:32.672810px;}
.y156{bottom:32.673012px;}
.y107{bottom:34.222497px;}
.y105{bottom:34.238697px;}
.y104{bottom:34.435197px;}
.y161{bottom:41.461113px;}
.y162{bottom:41.477313px;}
.y14d{bottom:41.510215px;}
.y14a{bottom:41.526415px;}
.yff{bottom:42.488367px;}
.yfe{bottom:42.488667px;}
.y12e{bottom:48.519142px;}
.y131{bottom:48.715642px;}
.y160{bottom:60.047455px;}
.y15e{bottom:60.063655px;}
.y14c{bottom:60.096558px;}
.y149{bottom:60.112758px;}
.yfc{bottom:61.269859px;}
.yfa{bottom:61.482559px;}
.y3{bottom:82.994714px;}
.y144{bottom:107.256707px;}
.y9a{bottom:107.646413px;}
.y68{bottom:114.886351px;}
.y1a1{bottom:115.082401px;}
.y37{bottom:120.559949px;}
.y143{bottom:122.322551px;}
.y99{bottom:126.429706px;}
.y1a0{bottom:133.668743px;}
.y17c{bottom:133.668847px;}
.y67{bottom:133.668893px;}
.yf0{bottom:134.844546px;}
.y36{bottom:139.343241px;}
.y141{bottom:144.039420px;}
.y98{bottom:145.016048px;}
.yef{bottom:149.909040px;}
.y17b{bottom:152.255939px;}
.y66{bottom:152.451736px;}
.y19f{bottom:152.452036px;}
.y35{bottom:158.124434px;}
.y97{bottom:163.793041px;}
.y17a{bottom:171.032932px;}
.y65{bottom:171.227228px;}
.y19e{bottom:171.227528px;}
.yec{bottom:171.620100px;}
.y34{bottom:177.096876px;}
.y13f{bottom:180.637200px;}
.y96{bottom:182.574983px;}
.y179{bottom:189.815474px;}
.y19d{bottom:190.010821px;}
.y64{bottom:190.011721px;}
.y33{bottom:195.487769px;}
.y95{bottom:201.357526px;}
.ye9{bottom:208.420200px;}
.y19c{bottom:208.597163px;}
.y63{bottom:208.597313px;}
.y178{bottom:208.597417px;}
.y32{bottom:214.271061px;}
.y13d{bottom:217.420200px;}
.y94{bottom:220.140818px;}
.y19b{bottom:227.379706px;}
.y62{bottom:227.379856px;}
.y177{bottom:227.379959px;}
.y31{bottom:233.054354px;}
.y93{bottom:238.923361px;}
.ye7{bottom:245.005200px;}
.y19a{bottom:246.162548px;}
.y61{bottom:246.163148px;}
.y176{bottom:246.163252px;}
.y30{bottom:252.031746px;}
.y13b{bottom:253.989000px;}
.y92{bottom:257.509703px;}
.y175{bottom:264.798944px;}
.y199{bottom:264.993691px;}
.y60{bottom:264.994291px;}
.yc4{bottom:265.190491px;}
.y2f{bottom:270.668039px;}
.y91{bottom:276.340846px;}
.ye6{bottom:277.516389px;}
.y174{bottom:283.580887px;}
.y198{bottom:283.776383px;}
.y5f{bottom:283.776833px;}
.y2e{bottom:289.449231px;}
.y139{bottom:290.806200px;}
.y136{bottom:290.820600px;}
.y90{bottom:295.124132px;}
.y113{bottom:295.517132px;}
.ye5{bottom:296.299231px;}
.yc3{bottom:296.885178px;}
.y173{bottom:302.363429px;}
.y197{bottom:302.559676px;}
.y5e{bottom:302.560126px;}
.y2d{bottom:308.232524px;}
.y8f{bottom:314.493775px;}
.ye4{bottom:314.690874px;}
.yc2{bottom:315.863171px;}
.y196{bottom:321.145868px;}
.y5d{bottom:321.146468px;}
.y172{bottom:321.146722px;}
.y2c{bottom:326.818866px;}
.y8e{bottom:333.471833px;}
.ye3{bottom:333.472817px;}
.yc1{bottom:334.449663px;}
.y195{bottom:339.929161px;}
.y5c{bottom:339.929761px;}
.y171{bottom:340.124714px;}
.y2b{bottom:345.602159px;}
.y12d{bottom:346.192200px;}
.y8d{bottom:352.254375px;}
.ye2{bottom:352.255359px;}
.yc0{bottom:353.037656px;}
.y194{bottom:358.710353px;}
.y5b{bottom:358.710953px;}
.y170{bottom:358.711057px;}
.y2a{bottom:364.580151px;}
.y8c{bottom:371.037668px;}
.ye1{bottom:371.038652px;}
.ybf{bottom:371.819148px;}
.y12f{bottom:375.929850px;}
.y135{bottom:376.124850px;}
.y193{bottom:377.493646px;}
.y5a{bottom:377.494246px;}
.y16f{bottom:377.494349px;}
.y29{bottom:382.580444px;}
.y8b{bottom:389.624011px;}
.ye0{bottom:389.819844px;}
.ybe{bottom:390.797309px;}
.y192{bottom:396.276338px;}
.y59{bottom:396.472238px;}
.y28{bottom:400.190137px;}
.y16d{bottom:402.147000px;}
.y8a{bottom:408.406553px;}
.ydf{bottom:408.407687px;}
.ybd{bottom:409.383651px;}
.y191{bottom:415.059631px;}
.y58{bottom:415.060081px;}
.y27{bottom:418.190280px;}
.yde{bottom:427.189629px;}
.y89{bottom:427.776195px;}
.y12b{bottom:427.777200px;}
.ybc{bottom:428.166944px;}
.y190{bottom:433.646573px;}
.y57{bottom:433.841273px;}
.y26{bottom:435.798473px;}
.y169{bottom:443.430000px;}
.ydd{bottom:445.972172px;}
.y88{bottom:446.754188px;}
.ybb{bottom:446.948886px;}
.y18f{bottom:452.429116px;}
.y56{bottom:452.624566px;}
.y25{bottom:454.580415px;}
.y16b{bottom:457.319817px;}
.y128{bottom:464.364000px;}
.ydc{bottom:464.755464px;}
.yba{bottom:465.537329px;}
.y87{bottom:465.537480px;}
.y18e{bottom:471.210758px;}
.y55{bottom:471.210908px;}
.y24{bottom:473.362958px;}
.ydb{bottom:483.538757px;}
.yb9{bottom:484.318521px;}
.y86{bottom:484.318673px;}
.y18d{bottom:489.993301px;}
.y54{bottom:489.993451px;}
.y23{bottom:491.949300px;}
.yda{bottom:502.319949px;}
.y85{bottom:502.906515px;}
.yb8{bottom:503.101814px;}
.y18c{bottom:508.776593px;}
.y53{bottom:508.776743px;}
.y166{bottom:509.169600px;}
.y22{bottom:510.732593px;}
.y125{bottom:519.930000px;}
.yd9{bottom:520.907792px;}
.y84{bottom:521.688458px;}
.yb7{bottom:521.884356px;}
.y18b{bottom:527.362786px;}
.y52{bottom:527.363086px;}
.y21{bottom:529.515135px;}
.yd8{bottom:539.722284px;}
.y83{bottom:540.504150px;}
.yb6{bottom:540.699299px;}
.y18a{bottom:546.179078px;}
.y51{bottom:546.179378px;}
.y20{bottom:548.330078px;}
.y15d{bottom:551.658600px;}
.y15f{bottom:551.674800px;}
.y123{bottom:556.549200px;}
.yd7{bottom:558.504737px;}
.yb5{bottom:559.287123px;}
.y82{bottom:561.243572px;}
.y189{bottom:564.960271px;}
.y50{bottom:564.960571px;}
.y1f{bottom:567.112620px;}
.y112{bottom:570.636522px;}
.y163{bottom:574.352770px;}
.yd6{bottom:576.700179px;}
.yb4{bottom:578.068316px;}
.y81{bottom:583.743563px;}
.y4f{bottom:583.743863px;}
.y1e{bottom:585.895913px;}
.y111{bottom:589.419064px;}
.yd5{bottom:591.569163px;}
.y120{bottom:593.348400px;}
.yb3{bottom:596.851608px;}
.y4e{bottom:602.526406px;}
.y80{bottom:602.721556px;}
.y1d{bottom:604.482255px;}
.yd4{bottom:606.635757px;}
.y110{bottom:608.005407px;}
.yb2{bottom:615.634901px;}
.y7f{bottom:621.309548px;}
.y188{bottom:621.309698px;}
.y4d{bottom:621.504398px;}
.yd3{bottom:621.700251px;}
.y1c{bottom:623.265548px;}
.y10f{bottom:626.788699px;}
.y11f{bottom:629.330300px;}
.yb1{bottom:634.417443px;}
.y7e{bottom:639.896041px;}
.y4c{bottom:640.090741px;}
.y1b{bottom:642.048090px;}
.yd0{bottom:643.435200px;}
.y159{bottom:644.592600px;}
.y15b{bottom:644.608800px;}
.y10e{bottom:645.569892px;}
.y11e{bottom:647.918143px;}
.yb0{bottom:653.199386px;}
.y4b{bottom:658.679183px;}
.y187{bottom:658.679333px;}
.y7d{bottom:658.874333px;}
.y1a{bottom:660.830033px;}
.y10d{bottom:664.353184px;}
.y11d{bottom:666.700085px;}
.yaf{bottom:671.787228px;}
.y4a{bottom:677.460376px;}
.y186{bottom:677.460526px;}
.y7c{bottom:677.460676px;}
.y19{bottom:679.612575px;}
.ycb{bottom:680.005800px;}
.yce{bottom:680.022000px;}
.y10c{bottom:683.135727px;}
.y11c{bottom:685.482628px;}
.y155{bottom:687.049200px;}
.yae{bottom:690.568421px;}
.y49{bottom:696.243668px;}
.y7b{bottom:696.243968px;}
.y18{bottom:698.199668px;}
.y157{bottom:700.939220px;}
.y10b{bottom:701.135720px;}
.y11b{bottom:704.265920px;}
.yad{bottom:709.351713px;}
.y48{bottom:715.026211px;}
.y185{bottom:715.026511px;}
.y7a{bottom:715.221961px;}
.y17{bottom:716.982210px;}
.yc9{bottom:718.369200px;}
.y11a{bottom:722.852263px;}
.y103{bottom:722.853000px;}
.y106{bottom:722.869200px;}
.yac{bottom:728.134256px;}
.y184{bottom:733.809353px;}
.y47{bottom:733.809503px;}
.y79{bottom:734.004503px;}
.y16{bottom:735.765653px;}
.y108{bottom:738.310205px;}
.y119{bottom:741.634805px;}
.yab{bottom:747.112248px;}
.yc8{bottom:752.200036px;}
.y183{bottom:752.395696px;}
.y46{bottom:752.395846px;}
.y78{bottom:752.396146px;}
.y151{bottom:752.788800px;}
.y153{bottom:752.805000px;}
.y15{bottom:754.548195px;}
.y118{bottom:760.418098px;}
.yaa{bottom:765.698591px;}
.yc7{bottom:770.787879px;}
.y182{bottom:771.178988px;}
.y45{bottom:771.179138px;}
.y77{bottom:771.374138px;}
.y14{bottom:773.330138px;}
.y117{bottom:779.396090px;}
.yc6{bottom:789.569071px;}
.y44{bottom:789.960331px;}
.y76{bottom:789.960481px;}
.yf9{bottom:790.158600px;}
.yfb{bottom:790.174800px;}
.y13{bottom:792.112680px;}
.ya9{bottom:794.851529px;}
.y148{bottom:795.245400px;}
.y14b{bottom:795.261600px;}
.y116{bottom:798.227233px;}
.yc5{bottom:804.487975px;}
.y43{bottom:808.792823px;}
.y75{bottom:808.792973px;}
.y12{bottom:810.748973px;}
.y115{bottom:817.009775px;}
.y14e{bottom:817.988673px;}
.ya8{bottom:823.465217px;}
.y42{bottom:827.574016px;}
.y181{bottom:827.574166px;}
.y74{bottom:827.770966px;}
.y11{bottom:829.531365px;}
.y114{bottom:831.879464px;}
.yfd{bottom:832.663167px;}
.y1a6{bottom:841.074160px;}
.ya7{bottom:842.248510px;}
.y41{bottom:846.357308px;}
.y180{bottom:846.357458px;}
.y10{bottom:848.313308px;}
.y1a5{bottom:859.857453px;}
.ya6{bottom:861.031052px;}
.y40{bottom:864.943651px;}
.y73{bottom:865.140601px;}
.yf{bottom:867.095850px;}
.ya5{bottom:879.812995px;}
.y72{bottom:883.726943px;}
.y3f{bottom:883.727393px;}
.y147{bottom:883.922843px;}
.yf7{bottom:884.316600px;}
.ye{bottom:885.879143px;}
.y1a4{bottom:898.401438px;}
.ya4{bottom:898.987187px;}
.y146{bottom:902.509186px;}
.y71{bottom:902.509486px;}
.y17f{bottom:902.509636px;}
.y3e{bottom:902.509786px;}
.yd{bottom:904.662435px;}
.ya3{bottom:916.400830px;}
.y145{bottom:921.292478px;}
.y70{bottom:921.292778px;}
.y17e{bottom:921.292928px;}
.y3d{bottom:921.293078px;}
.yf6{bottom:921.488078px;}
.yc{bottom:922.662428px;}
.ya2{bottom:940.073671px;}
.y3c{bottom:940.074271px;}
.yf5{bottom:940.074421px;}
.y6f{bottom:940.270771px;}
.yb{bottom:940.271821px;}
.ya1{bottom:958.662113px;}
.y6e{bottom:958.662413px;}
.y3b{bottom:958.662713px;}
.yf4{bottom:958.662863px;}
.y17d{bottom:958.856963px;}
.ya{bottom:958.858163px;}
.y1a3{bottom:977.442556px;}
.ya0{bottom:977.443306px;}
.y6d{bottom:977.443606px;}
.y3a{bottom:977.443906px;}
.yf3{bottom:977.444056px;}
.y9{bottom:977.640706px;}
.y1a2{bottom:996.225848px;}
.y9f{bottom:996.226598px;}
.y6c{bottom:996.226898px;}
.y39{bottom:996.227198px;}
.yf2{bottom:996.227348px;}
.y8{bottom:996.423248px;}
.y9e{bottom:1015.009141px;}
.y6b{bottom:1015.009441px;}
.y38{bottom:1015.009741px;}
.yf1{bottom:1015.009891px;}
.y7{bottom:1015.205191px;}
.y9d{bottom:1033.792433px;}
.y6a{bottom:1033.792733px;}
.y6{bottom:1033.987733px;}
.y9c{bottom:1052.574376px;}
.y69{bottom:1052.574676px;}
.y5{bottom:1052.770276px;}
.y9b{bottom:1071.193868px;}
.y4{bottom:1071.390368px;}
.y2{bottom:1111.693852px;}
.h15{height:18.569520px;}
.h21{height:18.626400px;}
.h10{height:18.765000px;}
.h23{height:18.766440px;}
.h16{height:18.782100px;}
.h20{height:18.783000px;}
.h2c{height:18.783180px;}
.h14{height:18.805860px;}
.h2a{height:18.822600px;}
.hc{height:20.136060px;}
.hf{height:20.330820px;}
.he{height:20.347200px;}
.h1f{height:22.483800px;}
.h3a{height:23.266440px;}
.h39{height:23.283000px;}
.h18{height:23.461200px;}
.h32{height:24.439860px;}
.h34{height:24.440580px;}
.h31{height:24.456600px;}
.h38{height:24.494400px;}
.h28{height:37.364400px;}
.h29{height:37.369800px;}
.h27{height:37.371600px;}
.h22{height:37.549620px;}
.h11{height:38.225144px;}
.h6{height:42.760645px;}
.h12{height:43.525800px;}
.h2d{height:43.528560px;}
.h4{height:47.290162px;}
.h7{height:47.321879px;}
.h17{height:47.323679px;}
.h5{height:47.353596px;}
.h33{height:47.739600px;}
.h3{height:47.988262px;}
.h8{height:47.988862px;}
.h1e{height:49.288320px;}
.h1d{height:49.298400px;}
.h1c{height:49.305600px;}
.h13{height:50.351471px;}
.h2b{height:50.354231px;}
.hb{height:50.354255px;}
.h2{height:52.161241px;}
.ha{height:52.320276px;}
.h3b{height:52.417948px;}
.hd{height:53.466735px;}
.h9{height:57.014339px;}
.h26{height:63.581400px;}
.h24{height:63.585000px;}
.h25{height:63.586440px;}
.h36{height:74.917260px;}
.h37{height:74.928600px;}
.h35{height:74.934000px;}
.h30{height:74.959200px;}
.h2f{height:74.959380px;}
.h2e{height:74.973600px;}
.h1b{height:76.325580px;}
.h1a{height:76.329000px;}
.h19{height:76.341600px;}
.h1{height:1187.999297px;}
.h0{height:1188.000000px;}
.w4{width:51.261300px;}
.wc{width:51.262200px;}
.wd{width:56.347200px;}
.w5{width:56.347740px;}
.w19{width:66.317400px;}
.w1d{width:66.327480px;}
.w2{width:70.229520px;}
.wa{width:70.238880px;}
.w9{width:73.744380px;}
.w3{width:79.458120px;}
.wb{width:79.473600px;}
.w37{width:80.593560px;}
.w30{width:80.604000px;}
.w31{width:80.609400px;}
.w35{width:80.609760px;}
.w2d{width:80.611200px;}
.w38{width:80.630820px;}
.w32{width:80.632800px;}
.w3a{width:80.647200px;}
.w2c{width:80.827740px;}
.w2e{width:80.843400px;}
.w36{width:80.843940px;}
.w2f{width:80.852400px;}
.we{width:85.930200px;}
.w6{width:85.930380px;}
.w39{width:87.832260px;}
.w33{width:87.838200px;}
.w34{width:87.847200px;}
.w7{width:90.569520px;}
.w8{width:92.370240px;}
.wf{width:92.386800px;}
.w2b{width:109.369080px;}
.w1b{width:138.169620px;}
.w1f{width:138.169800px;}
.w22{width:138.180600px;}
.w1a{width:145.196640px;}
.w1e{width:145.198800px;}
.w21{width:145.213200px;}
.w23{width:147.903840px;}
.w26{width:147.914280px;}
.w11{width:148.881780px;}
.w15{width:148.891680px;}
.w17{width:148.930200px;}
.w13{width:148.930380px;}
.w12{width:149.110380px;}
.w16{width:149.126400px;}
.w14{width:155.958120px;}
.w18{width:155.973600px;}
.w25{width:187.842600px;}
.w28{width:187.858800px;}
.w1c{width:253.386000px;}
.w20{width:253.400400px;}
.w24{width:268.108200px;}
.w2a{width:268.110000px;}
.w27{width:268.124400px;}
.w29{width:268.126200px;}
.w1{width:841.303800px;}
.w3b{width:841.305060px;}
.w10{width:841.320000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:7.229217px;}
.x26{left:8.608617px;}
.xe{left:9.773216px;}
.x41{left:10.990076px;}
.x11{left:12.131275px;}
.x44{left:13.142575px;}
.x29{left:17.413648px;}
.x42{left:19.990073px;}
.x3d{left:21.317212px;}
.x59{left:23.069666px;}
.x2b{left:25.416989px;}
.x5c{left:27.407422px;}
.x27{left:30.308601px;}
.x5b{left:32.085920px;}
.x5d{left:35.397482px;}
.x56{left:37.158383px;}
.x1{left:38.347740px;}
.x3e{left:41.478103px;}
.x37{left:42.652603px;}
.x21{left:43.826143px;}
.x3a{left:44.992602px;}
.x20{left:46.597362px;}
.x18{left:49.490200px;}
.x4f{left:51.066100px;}
.x4c{left:53.984198px;}
.x1e{left:55.743938px;}
.x1a{left:57.554857px;}
.x1c{left:63.033695px;}
.x3c{left:67.500046px;}
.x36{left:68.853345px;}
.x5f{left:72.391666px;}
.x33{left:73.548691px;}
.x4e{left:74.722843px;}
.x4a{left:77.071842px;}
.x39{left:84.718539px;}
.x45{left:89.056045px;}
.x2d{left:99.391615px;}
.x2{left:101.778004px;}
.x3b{left:102.961939px;}
.x48{left:107.447538px;}
.x34{left:109.795037px;}
.x40{left:111.516075px;}
.x4d{left:114.490035px;}
.x49{left:117.034034px;}
.x4b{left:119.200933px;}
.x38{left:124.678931px;}
.x2e{left:128.395433px;}
.x47{left:144.228315px;}
.x3f{left:146.981926px;}
.xd{left:149.918220px;}
.x5e{left:153.046423px;}
.x4{left:160.474930px;}
.x2c{left:165.161433px;}
.x23{left:217.027800px;}
.xf{left:220.939200px;}
.x43{left:224.087491px;}
.x60{left:247.727646px;}
.x28{left:250.670884px;}
.x51{left:260.069400px;}
.x31{left:262.646640px;}
.x17{left:288.479869px;}
.x19{left:299.592000px;}
.x10{left:301.188600px;}
.xc{left:306.471522px;}
.x9{left:312.735355px;}
.x22{left:321.929106px;}
.x32{left:327.408814px;}
.x52{left:341.688600px;}
.x12{left:353.233800px;}
.x50{left:359.885151px;}
.x24{left:363.211200px;}
.x2a{left:364.979839px;}
.x3{left:407.038082px;}
.x13{left:410.558400px;}
.x54{left:413.110319px;}
.xb{left:420.732776px;}
.x53{left:423.081000px;}
.x5{left:433.060416px;}
.x6{left:439.124614px;}
.x1b{left:449.688600px;}
.x57{left:494.534787px;}
.x14{left:497.282400px;}
.x25{left:502.174800px;}
.x55{left:504.716400px;}
.x8{left:527.791034px;}
.x35{left:567.716400px;}
.x46{left:572.990755px;}
.x58{left:586.305000px;}
.x15{left:588.652200px;}
.x1d{left:599.608800px;}
.x7{left:646.796336px;}
.x5a{left:667.728000px;}
.x16{left:681.814800px;}
.xa{left:686.315470px;}
.x2f{left:699.040355px;}
.x30{left:700.988464px;}
@media print{
.v6{vertical-align:-17.390020pt;}
.v2{vertical-align:-4.172500pt;}
.v3{vertical-align:-2.785002pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.175001pt;}
.v4{vertical-align:17.392484pt;}
.v5{vertical-align:20.177485pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.169987pt;}
.lsd{letter-spacing:0.273889pt;}
.lsb{letter-spacing:0.293889pt;}
.lsc{letter-spacing:0.298902pt;}
.ls7{letter-spacing:0.591991pt;}
.ls9{letter-spacing:0.597005pt;}
.ls5{letter-spacing:0.686893pt;}
.ls6{letter-spacing:0.793734pt;}
.ls3{letter-spacing:8.993512pt;}
.ls0{letter-spacing:11.078525pt;}
.lsf{letter-spacing:13.165990pt;}
.ls10{letter-spacing:58.649668pt;}
.ls11{letter-spacing:58.677935pt;}
.ls8{letter-spacing:108.660794pt;}
.lsa{letter-spacing:192.646025pt;}
.ls2{letter-spacing:192.693256pt;}
.ls4{letter-spacing:868.601823pt;}
.ws6{word-spacing:-43.304383pt;}
.ws5{word-spacing:-39.130384pt;}
.ws0{word-spacing:-16.051491pt;}
.ws3{word-spacing:-12.957212pt;}
.ws2{word-spacing:-10.443129pt;}
.ws4{word-spacing:-8.122430pt;}
.ws1{word-spacing:0.000000pt;}
._2b{margin-left:-11.780472pt;}
._29{margin-left:-7.001741pt;}
._11{margin-left:-4.376100pt;}
._c{margin-left:-3.472341pt;}
._5{margin-left:-2.030623pt;}
._2{margin-left:-1.105348pt;}
._0{width:0.893705pt;}
._4{width:2.549713pt;}
._d{width:3.675423pt;}
._b{width:4.775841pt;}
._a{width:5.787148pt;}
._1{width:6.814691pt;}
._3{width:8.150875pt;}
._8{width:9.354805pt;}
._7{width:10.480857pt;}
._6{width:11.490710pt;}
._9{width:13.271039pt;}
._e{width:14.974467pt;}
._10{width:17.343892pt;}
._23{width:18.504519pt;}
._24{width:19.411106pt;}
._13{width:20.364794pt;}
._12{width:21.258501pt;}
._22{width:23.034401pt;}
._14{width:25.435373pt;}
._15{width:26.442718pt;}
._17{width:40.201202pt;}
._19{width:45.052717pt;}
._2c{width:64.208732pt;}
._25{width:100.638772pt;}
._18{width:145.720600pt;}
._2a{width:176.559491pt;}
._f{width:192.656002pt;}
._16{width:236.664661pt;}
._1a{width:298.564105pt;}
._27{width:302.565990pt;}
._1e{width:393.695733pt;}
._1d{width:450.389271pt;}
._26{width:535.088006pt;}
._1b{width:545.520898pt;}
._20{width:562.913093pt;}
._28{width:673.498629pt;}
._21{width:850.336406pt;}
._1c{width:980.976469pt;}
._1f{width:1278.210020pt;}
.fs6{font-size:29.217375pt;}
.fs4{font-size:37.565212pt;}
.fs5{font-size:46.608675pt;}
.fs3{font-size:52.173846pt;}
.fs2{font-size:57.739177pt;}
.fs1{font-size:63.999974pt;}
.fs0{font-size:69.565306pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000625pt;}
.yeb{bottom:3.114858pt;}
.y126{bottom:3.129147pt;}
.y13e{bottom:3.288188pt;}
.yea{bottom:3.288191pt;}
.y140{bottom:3.288201pt;}
.y154{bottom:3.289064pt;}
.yd2{bottom:3.289370pt;}
.y15c{bottom:3.290169pt;}
.y168{bottom:3.303284pt;}
.yee{bottom:3.303404pt;}
.y127{bottom:3.303814pt;}
.y16c{bottom:3.303841pt;}
.y16e{bottom:3.303856pt;}
.y13c{bottom:3.303908pt;}
.y158{bottom:3.304021pt;}
.y124{bottom:3.304067pt;}
.y12c{bottom:3.304113pt;}
.y12a{bottom:3.304234pt;}
.y142{bottom:3.304241pt;}
.y15a{bottom:3.304569pt;}
.y165{bottom:3.461936pt;}
.yd1{bottom:3.462703pt;}
.ye8{bottom:3.464178pt;}
.yed{bottom:3.478071pt;}
.y13a{bottom:3.490829pt;}
.y150{bottom:3.520649pt;}
.y121{bottom:3.984321pt;}
.y102{bottom:4.332651pt;}
.ycf{bottom:4.681090pt;}
.yca{bottom:4.681343pt;}
.ycd{bottom:4.695490pt;}
.ycc{bottom:4.868823pt;}
.y122{bottom:6.766986pt;}
.yf8{bottom:7.651149pt;}
.y167{bottom:8.347282pt;}
.y152{bottom:8.347462pt;}
.y133{bottom:9.910540pt;}
.y134{bottom:9.910806pt;}
.y109{bottom:13.725337pt;}
.y10a{bottom:13.725604pt;}
.y137{bottom:19.826022pt;}
.y138{bottom:19.999355pt;}
.y129{bottom:19.999827pt;}
.y164{bottom:20.158196pt;}
.y14f{bottom:20.216242pt;}
.y100{bottom:21.071177pt;}
.y101{bottom:21.071444pt;}
.y130{bottom:26.433466pt;}
.y132{bottom:26.606800pt;}
.y16a{bottom:29.042497pt;}
.y156{bottom:29.042677pt;}
.y107{bottom:30.419997pt;}
.y105{bottom:30.434397pt;}
.y104{bottom:30.609064pt;}
.y161{bottom:36.854322pt;}
.y162{bottom:36.868722pt;}
.y14d{bottom:36.897969pt;}
.y14a{bottom:36.912369pt;}
.yff{bottom:37.767437pt;}
.yfe{bottom:37.767704pt;}
.y12e{bottom:43.128126pt;}
.y131{bottom:43.302793pt;}
.y160{bottom:53.375516pt;}
.y15e{bottom:53.389916pt;}
.y14c{bottom:53.419163pt;}
.y149{bottom:53.433563pt;}
.yfc{bottom:54.462097pt;}
.yfa{bottom:54.651164pt;}
.y3{bottom:73.773079pt;}
.y144{bottom:95.339295pt;}
.y9a{bottom:95.685701pt;}
.y68{bottom:102.121201pt;}
.y1a1{bottom:102.295467pt;}
.y37{bottom:107.164399pt;}
.y143{bottom:108.731157pt;}
.y99{bottom:112.381961pt;}
.y1a0{bottom:118.816661pt;}
.y17c{bottom:118.816752pt;}
.y67{bottom:118.816794pt;}
.yf0{bottom:119.861819pt;}
.y36{bottom:123.860659pt;}
.y141{bottom:128.035040pt;}
.y98{bottom:128.903154pt;}
.yef{bottom:133.252480pt;}
.y17b{bottom:135.338613pt;}
.y66{bottom:135.512654pt;}
.y19f{bottom:135.512921pt;}
.y35{bottom:140.555052pt;}
.y97{bottom:145.593814pt;}
.y17a{bottom:152.029273pt;}
.y65{bottom:152.201981pt;}
.y19e{bottom:152.202247pt;}
.yec{bottom:152.551200pt;}
.y34{bottom:157.419445pt;}
.y13f{bottom:160.566400pt;}
.y96{bottom:162.288874pt;}
.y179{bottom:168.724866pt;}
.y19d{bottom:168.898507pt;}
.y64{bottom:168.899307pt;}
.y33{bottom:173.766905pt;}
.y95{bottom:178.984467pt;}
.ye9{bottom:185.262400pt;}
.y19c{bottom:185.419701pt;}
.y63{bottom:185.419834pt;}
.y178{bottom:185.419926pt;}
.y32{bottom:190.463165pt;}
.y13d{bottom:193.262400pt;}
.y94{bottom:195.680727pt;}
.y19b{bottom:202.115294pt;}
.y62{bottom:202.115427pt;}
.y177{bottom:202.115519pt;}
.y31{bottom:207.159425pt;}
.y93{bottom:212.376321pt;}
.ye7{bottom:217.782400pt;}
.y19a{bottom:218.811154pt;}
.y61{bottom:218.811687pt;}
.y176{bottom:218.811779pt;}
.y30{bottom:224.028219pt;}
.y13b{bottom:225.768000pt;}
.y92{bottom:228.897514pt;}
.y175{bottom:235.376839pt;}
.y199{bottom:235.549947pt;}
.y60{bottom:235.550481pt;}
.yc4{bottom:235.724881pt;}
.y2f{bottom:240.593812pt;}
.y91{bottom:245.636307pt;}
.ye6{bottom:246.681235pt;}
.y174{bottom:252.071899pt;}
.y198{bottom:252.245674pt;}
.y5f{bottom:252.246074pt;}
.y2e{bottom:257.288205pt;}
.y139{bottom:258.494400pt;}
.y136{bottom:258.507200pt;}
.y90{bottom:262.332562pt;}
.y113{bottom:262.681895pt;}
.ye5{bottom:263.377095pt;}
.yc3{bottom:263.897936pt;}
.y173{bottom:268.767492pt;}
.y197{bottom:268.941934pt;}
.y5e{bottom:268.942334pt;}
.y2d{bottom:273.984465pt;}
.y8f{bottom:279.550022pt;}
.ye4{bottom:279.725221pt;}
.yc2{bottom:280.767263pt;}
.y196{bottom:285.462994pt;}
.y5d{bottom:285.463527pt;}
.y172{bottom:285.463752pt;}
.y2c{bottom:290.505659pt;}
.y8e{bottom:296.419407pt;}
.ye3{bottom:296.420281pt;}
.yc1{bottom:297.288589pt;}
.y195{bottom:302.159254pt;}
.y5c{bottom:302.159787pt;}
.y171{bottom:302.333079pt;}
.y2b{bottom:307.201919pt;}
.y12d{bottom:307.726400pt;}
.y8d{bottom:313.115000pt;}
.ye2{bottom:313.115875pt;}
.yc0{bottom:313.811249pt;}
.y194{bottom:318.853647pt;}
.y5b{bottom:318.854181pt;}
.y170{bottom:318.854272pt;}
.y2a{bottom:324.071245pt;}
.y8c{bottom:329.811260pt;}
.ye1{bottom:329.812135pt;}
.ybf{bottom:330.505909pt;}
.y12f{bottom:334.159866pt;}
.y135{bottom:334.333200pt;}
.y193{bottom:335.549907pt;}
.y5a{bottom:335.550441pt;}
.y16f{bottom:335.550532pt;}
.y29{bottom:340.071506pt;}
.y8b{bottom:346.332454pt;}
.ye0{bottom:346.506528pt;}
.ybe{bottom:347.375385pt;}
.y192{bottom:352.245634pt;}
.y59{bottom:352.419767pt;}
.y28{bottom:355.724566pt;}
.y16d{bottom:357.464000pt;}
.y8a{bottom:363.028047pt;}
.ydf{bottom:363.029055pt;}
.ybd{bottom:363.896579pt;}
.y191{bottom:368.941894pt;}
.y58{bottom:368.942294pt;}
.y27{bottom:371.724693pt;}
.yde{bottom:379.724115pt;}
.y89{bottom:380.245507pt;}
.y12b{bottom:380.246400pt;}
.ybc{bottom:380.592839pt;}
.y190{bottom:385.463621pt;}
.y57{bottom:385.636687pt;}
.y26{bottom:387.376420pt;}
.y169{bottom:394.160000pt;}
.ydd{bottom:396.419708pt;}
.y88{bottom:397.114833pt;}
.ybb{bottom:397.287899pt;}
.y18f{bottom:402.159214pt;}
.y56{bottom:402.332947pt;}
.y25{bottom:404.071480pt;}
.y16b{bottom:406.506504pt;}
.y128{bottom:412.768000pt;}
.ydc{bottom:413.115968pt;}
.yba{bottom:413.810959pt;}
.y87{bottom:413.811093pt;}
.y18e{bottom:418.854007pt;}
.y55{bottom:418.854141pt;}
.y24{bottom:420.767073pt;}
.ydb{bottom:429.812228pt;}
.yb9{bottom:430.505352pt;}
.y86{bottom:430.505487pt;}
.y18d{bottom:435.549601pt;}
.y54{bottom:435.549734pt;}
.y23{bottom:437.288267pt;}
.yda{bottom:446.506621pt;}
.y85{bottom:447.028014pt;}
.yb8{bottom:447.201612pt;}
.y18c{bottom:452.245861pt;}
.y53{bottom:452.245994pt;}
.y166{bottom:452.595200pt;}
.y22{bottom:453.984527pt;}
.y125{bottom:462.160000pt;}
.yd9{bottom:463.029148pt;}
.y84{bottom:463.723074pt;}
.yb7{bottom:463.897205pt;}
.y18b{bottom:468.766921pt;}
.y52{bottom:468.767187pt;}
.y21{bottom:470.680120pt;}
.yd8{bottom:479.753141pt;}
.y83{bottom:480.448133pt;}
.yb6{bottom:480.621599pt;}
.y18a{bottom:485.492514pt;}
.y51{bottom:485.492781pt;}
.y20{bottom:487.404513pt;}
.y15d{bottom:490.363200pt;}
.y15f{bottom:490.377600pt;}
.y123{bottom:494.710400pt;}
.yd7{bottom:496.448655pt;}
.yb5{bottom:497.144109pt;}
.y82{bottom:498.883175pt;}
.y189{bottom:502.186907pt;}
.y50{bottom:502.187174pt;}
.y1f{bottom:504.100107pt;}
.y112{bottom:507.232464pt;}
.y163{bottom:510.535796pt;}
.yd6{bottom:512.622382pt;}
.yb4{bottom:513.838503pt;}
.y81{bottom:518.883167pt;}
.y4f{bottom:518.883434pt;}
.y1e{bottom:520.796367pt;}
.y111{bottom:523.928057pt;}
.yd5{bottom:525.839256pt;}
.y120{bottom:527.420800pt;}
.yb3{bottom:530.534763pt;}
.y4e{bottom:535.579027pt;}
.y80{bottom:535.752494pt;}
.y1d{bottom:537.317560pt;}
.yd4{bottom:539.231784pt;}
.y110{bottom:540.449250pt;}
.yb2{bottom:547.231023pt;}
.y7f{bottom:552.275154pt;}
.y188{bottom:552.275287pt;}
.y4d{bottom:552.448354pt;}
.yd3{bottom:552.622446pt;}
.y1c{bottom:554.013820pt;}
.y10f{bottom:557.145510pt;}
.y11f{bottom:559.404711pt;}
.yb1{bottom:563.926616pt;}
.y7e{bottom:568.796481pt;}
.y4c{bottom:568.969547pt;}
.y1b{bottom:570.709413pt;}
.yd0{bottom:571.942400pt;}
.y159{bottom:572.971200pt;}
.y15b{bottom:572.985600pt;}
.y10e{bottom:573.839904pt;}
.y11e{bottom:575.927238pt;}
.yb0{bottom:580.621676pt;}
.y4b{bottom:585.492607pt;}
.y187{bottom:585.492741pt;}
.y7d{bottom:585.666074pt;}
.y1a{bottom:587.404473pt;}
.y10d{bottom:590.536164pt;}
.y11d{bottom:592.622298pt;}
.yaf{bottom:597.144203pt;}
.y4a{bottom:602.187001pt;}
.y186{bottom:602.187134pt;}
.y7c{bottom:602.187267pt;}
.y19{bottom:604.100067pt;}
.ycb{bottom:604.449600pt;}
.yce{bottom:604.464000pt;}
.y10c{bottom:607.231757pt;}
.y11c{bottom:609.317891pt;}
.y155{bottom:610.710400pt;}
.yae{bottom:613.838596pt;}
.y49{bottom:618.883261pt;}
.y7b{bottom:618.883527pt;}
.y18{bottom:620.621927pt;}
.y157{bottom:623.057084pt;}
.y10b{bottom:623.231751pt;}
.y11b{bottom:626.014151pt;}
.yad{bottom:630.534856pt;}
.y48{bottom:635.578854pt;}
.y185{bottom:635.579121pt;}
.y7a{bottom:635.752854pt;}
.y17{bottom:637.317520pt;}
.yc9{bottom:638.550400pt;}
.y11a{bottom:642.535345pt;}
.y103{bottom:642.536000pt;}
.y106{bottom:642.550400pt;}
.yac{bottom:647.230449pt;}
.y184{bottom:652.274981pt;}
.y47{bottom:652.275114pt;}
.y79{bottom:652.448447pt;}
.y16{bottom:654.013913pt;}
.y108{bottom:656.275737pt;}
.y119{bottom:659.230938pt;}
.yab{bottom:664.099776pt;}
.yc8{bottom:668.622254pt;}
.y183{bottom:668.796174pt;}
.y46{bottom:668.796307pt;}
.y78{bottom:668.796574pt;}
.y151{bottom:669.145600pt;}
.y153{bottom:669.160000pt;}
.y15{bottom:670.709507pt;}
.y118{bottom:675.927198pt;}
.yaa{bottom:680.620969pt;}
.yc7{bottom:685.144781pt;}
.y182{bottom:685.492434pt;}
.y45{bottom:685.492567pt;}
.y77{bottom:685.665901pt;}
.y14{bottom:687.404567pt;}
.y117{bottom:692.796525pt;}
.yc6{bottom:701.839174pt;}
.y44{bottom:702.186961pt;}
.y76{bottom:702.187094pt;}
.yf9{bottom:702.363200pt;}
.yfb{bottom:702.377600pt;}
.y13{bottom:704.100160pt;}
.ya9{bottom:706.534692pt;}
.y148{bottom:706.884800pt;}
.y14b{bottom:706.899200pt;}
.y116{bottom:709.535318pt;}
.yc5{bottom:715.100422pt;}
.y43{bottom:718.926954pt;}
.y75{bottom:718.927087pt;}
.y12{bottom:720.665753pt;}
.y115{bottom:726.230911pt;}
.y14e{bottom:727.101042pt;}
.ya8{bottom:731.969082pt;}
.y42{bottom:735.621347pt;}
.y181{bottom:735.621481pt;}
.y74{bottom:735.796414pt;}
.y11{bottom:737.361213pt;}
.y114{bottom:739.448413pt;}
.yfd{bottom:740.145037pt;}
.y1a6{bottom:747.621476pt;}
.ya7{bottom:748.665342pt;}
.y41{bottom:752.317607pt;}
.y180{bottom:752.317741pt;}
.y10{bottom:754.056273pt;}
.y1a5{bottom:764.317736pt;}
.ya6{bottom:765.360936pt;}
.y40{bottom:768.838801pt;}
.y73{bottom:769.013867pt;}
.yf{bottom:770.751867pt;}
.ya5{bottom:782.055996pt;}
.y72{bottom:785.535061pt;}
.y3f{bottom:785.535461pt;}
.y147{bottom:785.709194pt;}
.yf7{bottom:786.059200pt;}
.ye{bottom:787.448127pt;}
.y1a4{bottom:798.579056pt;}
.ya4{bottom:799.099722pt;}
.y146{bottom:802.230387pt;}
.y71{bottom:802.230654pt;}
.y17f{bottom:802.230787pt;}
.y3e{bottom:802.230921pt;}
.yd{bottom:804.144387pt;}
.ya3{bottom:814.578516pt;}
.y145{bottom:818.926647pt;}
.y70{bottom:818.926914pt;}
.y17e{bottom:818.927047pt;}
.y3d{bottom:818.927181pt;}
.yf6{bottom:819.100514pt;}
.yc{bottom:820.144380pt;}
.ya2{bottom:835.621041pt;}
.y3c{bottom:835.621574pt;}
.yf5{bottom:835.621707pt;}
.y6f{bottom:835.796241pt;}
.yb{bottom:835.797174pt;}
.ya1{bottom:852.144101pt;}
.y6e{bottom:852.144367pt;}
.y3b{bottom:852.144634pt;}
.yf4{bottom:852.144767pt;}
.y17d{bottom:852.317301pt;}
.ya{bottom:852.318367pt;}
.y1a3{bottom:868.837827pt;}
.ya0{bottom:868.838494pt;}
.y6d{bottom:868.838761pt;}
.y3a{bottom:868.839027pt;}
.yf3{bottom:868.839161pt;}
.y9{bottom:869.013961pt;}
.y1a2{bottom:885.534087pt;}
.y9f{bottom:885.534754pt;}
.y6c{bottom:885.535021pt;}
.y39{bottom:885.535287pt;}
.yf2{bottom:885.535421pt;}
.y8{bottom:885.709554pt;}
.y9e{bottom:902.230347pt;}
.y6b{bottom:902.230614pt;}
.y38{bottom:902.230881pt;}
.yf1{bottom:902.231014pt;}
.y7{bottom:902.404614pt;}
.y9d{bottom:918.926607pt;}
.y6a{bottom:918.926874pt;}
.y6{bottom:919.100207pt;}
.y9c{bottom:935.621667pt;}
.y69{bottom:935.621934pt;}
.y5{bottom:935.795801pt;}
.y9b{bottom:952.172327pt;}
.y4{bottom:952.346994pt;}
.y2{bottom:988.172313pt;}
.h15{height:16.506240pt;}
.h21{height:16.556800pt;}
.h10{height:16.680000pt;}
.h23{height:16.681280pt;}
.h16{height:16.695200pt;}
.h20{height:16.696000pt;}
.h2c{height:16.696160pt;}
.h14{height:16.716320pt;}
.h2a{height:16.731200pt;}
.hc{height:17.898720pt;}
.hf{height:18.071840pt;}
.he{height:18.086400pt;}
.h1f{height:19.985600pt;}
.h3a{height:20.681280pt;}
.h39{height:20.696000pt;}
.h18{height:20.854400pt;}
.h32{height:21.724320pt;}
.h34{height:21.724960pt;}
.h31{height:21.739200pt;}
.h38{height:21.772800pt;}
.h28{height:33.212800pt;}
.h29{height:33.217600pt;}
.h27{height:33.219200pt;}
.h22{height:33.377440pt;}
.h11{height:33.977906pt;}
.h6{height:38.009462pt;}
.h12{height:38.689600pt;}
.h2d{height:38.692054pt;}
.h4{height:42.035700pt;}
.h7{height:42.063893pt;}
.h17{height:42.065493pt;}
.h5{height:42.092086pt;}
.h33{height:42.435200pt;}
.h3{height:42.656233pt;}
.h8{height:42.656766pt;}
.h1e{height:43.811840pt;}
.h1d{height:43.820800pt;}
.h1c{height:43.827200pt;}
.h13{height:44.756863pt;}
.h2b{height:44.759317pt;}
.hb{height:44.759338pt;}
.h2{height:46.365548pt;}
.ha{height:46.506912pt;}
.h3b{height:46.593731pt;}
.hd{height:47.525987pt;}
.h9{height:50.679412pt;}
.h26{height:56.516800pt;}
.h24{height:56.520000pt;}
.h25{height:56.521280pt;}
.h36{height:66.593120pt;}
.h37{height:66.603200pt;}
.h35{height:66.608000pt;}
.h30{height:66.630400pt;}
.h2f{height:66.630560pt;}
.h2e{height:66.643200pt;}
.h1b{height:67.844960pt;}
.h1a{height:67.848000pt;}
.h19{height:67.859200pt;}
.h1{height:1055.999375pt;}
.h0{height:1056.000000pt;}
.w4{width:45.565600pt;}
.wc{width:45.566400pt;}
.wd{width:50.086400pt;}
.w5{width:50.086880pt;}
.w19{width:58.948800pt;}
.w1d{width:58.957760pt;}
.w2{width:62.426240pt;}
.wa{width:62.434560pt;}
.w9{width:65.550560pt;}
.w3{width:70.629440pt;}
.wb{width:70.643200pt;}
.w37{width:71.638720pt;}
.w30{width:71.648000pt;}
.w31{width:71.652800pt;}
.w35{width:71.653120pt;}
.w2d{width:71.654400pt;}
.w38{width:71.671840pt;}
.w32{width:71.673600pt;}
.w3a{width:71.686400pt;}
.w2c{width:71.846880pt;}
.w2e{width:71.860800pt;}
.w36{width:71.861280pt;}
.w2f{width:71.868800pt;}
.we{width:76.382400pt;}
.w6{width:76.382560pt;}
.w39{width:78.073120pt;}
.w33{width:78.078400pt;}
.w34{width:78.086400pt;}
.w7{width:80.506240pt;}
.w8{width:82.106880pt;}
.wf{width:82.121600pt;}
.w2b{width:97.216960pt;}
.w1b{width:122.817440pt;}
.w1f{width:122.817600pt;}
.w22{width:122.827200pt;}
.w1a{width:129.063680pt;}
.w1e{width:129.065600pt;}
.w21{width:129.078400pt;}
.w23{width:131.470080pt;}
.w26{width:131.479360pt;}
.w11{width:132.339360pt;}
.w15{width:132.348160pt;}
.w17{width:132.382400pt;}
.w13{width:132.382560pt;}
.w12{width:132.542560pt;}
.w16{width:132.556800pt;}
.w14{width:138.629440pt;}
.w18{width:138.643200pt;}
.w25{width:166.971200pt;}
.w28{width:166.985600pt;}
.w1c{width:225.232000pt;}
.w20{width:225.244800pt;}
.w24{width:238.318400pt;}
.w2a{width:238.320000pt;}
.w27{width:238.332800pt;}
.w29{width:238.334400pt;}
.w1{width:747.825600pt;}
.w3b{width:747.826720pt;}
.w10{width:747.840000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.425971pt;}
.x26{left:7.652104pt;}
.xe{left:8.687303pt;}
.x41{left:9.768957pt;}
.x11{left:10.783355pt;}
.x44{left:11.682289pt;}
.x29{left:15.478798pt;}
.x42{left:17.768953pt;}
.x3d{left:18.948632pt;}
.x59{left:20.506370pt;}
.x2b{left:22.592879pt;}
.x5c{left:24.362153pt;}
.x27{left:26.940979pt;}
.x5b{left:28.520818pt;}
.x5d{left:31.464428pt;}
.x56{left:33.029674pt;}
.x1{left:34.086880pt;}
.x3e{left:36.869425pt;}
.x37{left:37.913425pt;}
.x21{left:38.956571pt;}
.x3a{left:39.993424pt;}
.x20{left:41.419877pt;}
.x18{left:43.991289pt;}
.x4f{left:45.392089pt;}
.x4c{left:47.985954pt;}
.x1e{left:49.550167pt;}
.x1a{left:51.159873pt;}
.x1c{left:56.029951pt;}
.x3c{left:60.000041pt;}
.x36{left:61.202974pt;}
.x5f{left:64.348147pt;}
.x33{left:65.376614pt;}
.x4e{left:66.420305pt;}
.x4a{left:68.508304pt;}
.x39{left:75.305368pt;}
.x45{left:79.160929pt;}
.x2d{left:88.348102pt;}
.x2{left:90.469337pt;}
.x3b{left:91.521724pt;}
.x48{left:95.508922pt;}
.x34{left:97.595588pt;}
.x40{left:99.125400pt;}
.x4d{left:101.768920pt;}
.x49{left:104.030252pt;}
.x4b{left:105.956385pt;}
.x38{left:110.825716pt;}
.x2e{left:114.129274pt;}
.x47{left:128.202947pt;}
.x3f{left:130.650601pt;}
.xd{left:133.260640pt;}
.x5e{left:136.041265pt;}
.x4{left:142.644383pt;}
.x2c{left:146.810163pt;}
.x23{left:192.913600pt;}
.xf{left:196.390400pt;}
.x43{left:199.188881pt;}
.x60{left:220.202352pt;}
.x28{left:222.818564pt;}
.x51{left:231.172800pt;}
.x31{left:233.463680pt;}
.x17{left:256.426550pt;}
.x19{left:266.304000pt;}
.x10{left:267.723200pt;}
.xc{left:272.419131pt;}
.x9{left:277.986982pt;}
.x22{left:286.159205pt;}
.x32{left:291.030057pt;}
.x52{left:303.723200pt;}
.x12{left:313.985600pt;}
.x50{left:319.897912pt;}
.x24{left:322.854400pt;}
.x2a{left:324.426523pt;}
.x3{left:361.811628pt;}
.x13{left:364.940800pt;}
.x54{left:367.209173pt;}
.xb{left:373.984690pt;}
.x53{left:376.072000pt;}
.x5{left:384.942592pt;}
.x6{left:390.332990pt;}
.x1b{left:399.723200pt;}
.x57{left:439.586477pt;}
.x14{left:442.028800pt;}
.x25{left:446.377600pt;}
.x55{left:448.636800pt;}
.x8{left:469.147585pt;}
.x35{left:504.636800pt;}
.x46{left:509.325116pt;}
.x58{left:521.160000pt;}
.x15{left:523.246400pt;}
.x1d{left:532.985600pt;}
.x7{left:574.930076pt;}
.x5a{left:593.536000pt;}
.x16{left:606.057600pt;}
.xa{left:610.058196pt;}
.x2f{left:621.369204pt;}
.x30{left:623.100857pt;}
}




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