
    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_6499c4b69eed483d92fb5798.woff')format("woff");}.ff1{font-family:ff1;line-height:0.975586;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_9913abee1f21ceb8d06e6af8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.956500;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_224e844baf20b514e93d965a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_a9fefd540c7bef119ce43341.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_027da8d088a171a330dd7129.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_179457847e1b6d6f772e64e7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_5c5fb65b1b213544e84ae04a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_97bcdbe76e6ea4072a2b8bc4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_6168821e5420c641789ff2b5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_187e44fc5d5e680689e3d793.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_7d823c23c756ccad7f293516.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_fceafd94aff2a245ede1ef84.woff')format("woff");}.ffc{font-family:ffc;line-height:0.652000;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_7734bb5f29294ce6cb5bcfc8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.838000;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_554f24afa63542f30db1b002.woff')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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);}
.m1{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);}
.v2{vertical-align:-8.964000px;}
.v4{vertical-align:-6.948000px;}
.v1{vertical-align:-4.674000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.952000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000607px;}
.ls9{letter-spacing:12.702061px;}
.ls6{letter-spacing:18.432557px;}
.ls8{letter-spacing:19.928793px;}
.ls3{letter-spacing:32.709290px;}
.ls2{letter-spacing:32.709427px;}
.ls5{letter-spacing:32.720915px;}
.ls4{letter-spacing:32.727606px;}
.ls1{letter-spacing:52.748915px;}
.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;}
}
.ws0{word-spacing:-28.488078px;}
.ws1c{word-spacing:-22.001332px;}
.ws36{word-spacing:-12.222945px;}
.ws3e{word-spacing:-9.091930px;}
.ws1{word-spacing:-7.658862px;}
.ws3b{word-spacing:-3.658276px;}
.ws4{word-spacing:-2.743718px;}
.ws2c{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.047821px;}
.wsa{word-spacing:-0.035866px;}
.ws5{word-spacing:0.000000px;}
.ws42{word-spacing:3.066509px;}
.ws34{word-spacing:3.132249px;}
.ws44{word-spacing:3.245837px;}
.ws47{word-spacing:3.598199px;}
.ws2f{word-spacing:3.600374px;}
.ws3{word-spacing:3.604493px;}
.ws2d{word-spacing:3.606559px;}
.ws40{word-spacing:3.610906px;}
.ws14{word-spacing:3.612334px;}
.ws43{word-spacing:3.640358px;}
.ws41{word-spacing:3.959562px;}
.ws26{word-spacing:3.995428px;}
.ws1e{word-spacing:4.654372px;}
.ws25{word-spacing:4.658410px;}
.ws23{word-spacing:4.658938px;}
.ws18{word-spacing:4.673883px;}
.ws1d{word-spacing:4.677120px;}
.wsf{word-spacing:4.678051px;}
.ws16{word-spacing:4.679336px;}
.ws20{word-spacing:4.683120px;}
.ws28{word-spacing:4.683444px;}
.ws22{word-spacing:4.700079px;}
.ws1a{word-spacing:4.710146px;}
.ws35{word-spacing:4.716082px;}
.ws37{word-spacing:4.720309px;}
.ws11{word-spacing:4.722849px;}
.ws3a{word-spacing:4.732731px;}
.ws38{word-spacing:4.733789px;}
.ws9{word-spacing:4.805970px;}
.ws32{word-spacing:4.927933px;}
.wsc{word-spacing:5.196925px;}
.ws17{word-spacing:5.200610px;}
.ws2b{word-spacing:5.211049px;}
.ws1f{word-spacing:5.218827px;}
.ws21{word-spacing:5.248704px;}
.wsd{word-spacing:5.250724px;}
.wse{word-spacing:5.252004px;}
.ws19{word-spacing:5.279394px;}
.ws12{word-spacing:5.327215px;}
.ws24{word-spacing:5.939343px;}
.wsb{word-spacing:5.993142px;}
.ws27{word-spacing:6.099124px;}
.ws8{word-spacing:6.159278px;}
.ws30{word-spacing:6.224732px;}
.ws39{word-spacing:6.715417px;}
.ws15{word-spacing:6.968093px;}
.ws29{word-spacing:7.291642px;}
.ws33{word-spacing:7.376816px;}
.ws10{word-spacing:8.237588px;}
.ws1b{word-spacing:8.272937px;}
.ws45{word-spacing:8.274548px;}
.ws7{word-spacing:9.502923px;}
.ws6{word-spacing:9.589000px;}
.ws2a{word-spacing:9.893888px;}
.ws3d{word-spacing:12.660557px;}
.ws13{word-spacing:18.399053px;}
.ws3c{word-spacing:23.617498px;}
.ws3f{word-spacing:27.975090px;}
.ws46{word-spacing:28.061167px;}
.ws31{word-spacing:29.027019px;}
.ws2e{word-spacing:38.070570px;}
._14{margin-left:-26.704214px;}
._20{margin-left:-25.359254px;}
._d{margin-left:-24.005941px;}
._10{margin-left:-18.412073px;}
._f{margin-left:-17.307427px;}
._1d{margin-left:-7.058330px;}
._a{margin-left:-5.432732px;}
._1{margin-left:-4.204426px;}
._9{margin-left:-2.668393px;}
._0{margin-left:-1.184884px;}
._7{width:1.075968px;}
._2{width:2.917057px;}
._15{width:6.702317px;}
._13{width:9.200845px;}
._11{width:11.088302px;}
._6{width:12.696422px;}
._22{width:13.718955px;}
._c{width:15.541695px;}
._21{width:16.924706px;}
._b{width:18.495637px;}
._19{width:19.744013px;}
._12{width:21.582452px;}
._1f{width:22.828410px;}
._3{width:25.392845px;}
._16{width:27.817344px;}
._e{width:29.094094px;}
._1a{width:32.700401px;}
._1e{width:38.257971px;}
._1c{width:50.244175px;}
._18{width:72.483114px;}
._8{width:88.910822px;}
._1b{width:174.737733px;}
._4{width:226.587942px;}
._17{width:242.403224px;}
._5{width:261.453224px;}
.fc8{color:rgb(255,0,0);}
.fc5{color:rgb(235,235,247);}
.fc4{color:rgb(51,51,178);}
.fc6{color:rgb(251,251,253);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc7{color:rgb(214,214,240);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:32.730178px;}
.fs4{font-size:35.865600px;}
.fs1{font-size:38.222057px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:81.862294px;}
.fs5{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.985500px;}
.y11e{bottom:16.411500px;}
.ydb{bottom:21.918000px;}
.y96{bottom:22.545000px;}
.y3{bottom:22.961076px;}
.y146{bottom:23.385000px;}
.y7b{bottom:24.151500px;}
.y93{bottom:24.313500px;}
.y162{bottom:24.354000px;}
.y34{bottom:24.486000px;}
.y102{bottom:24.987000px;}
.y128{bottom:26.247000px;}
.y63{bottom:26.266500px;}
.y54{bottom:26.509500px;}
.yda{bottom:26.590500px;}
.y145{bottom:33.846000px;}
.yed{bottom:34.519500px;}
.y7a{bottom:34.612500px;}
.ya{bottom:34.721393px;}
.y161{bottom:34.815000px;}
.yb0{bottom:35.574000px;}
.y33{bottom:38.712000px;}
.ybc{bottom:39.460500px;}
.y92{bottom:40.573500px;}
.y11d{bottom:41.734500px;}
.y101{bottom:43.872000px;}
.y144{bottom:44.307000px;}
.y47{bottom:44.872500px;}
.yd9{bottom:47.292000px;}
.y2{bottom:47.469130px;}
.y160{bottom:48.496500px;}
.yca{bottom:50.113500px;}
.y62{bottom:50.463000px;}
.yc9{bottom:51.984000px;}
.yaf{bottom:52.012500px;}
.y11c{bottom:52.195500px;}
.yec{bottom:53.200500px;}
.y79{bottom:53.577000px;}
.y100{bottom:54.333000px;}
.y143{bottom:56.827500px;}
.y9{bottom:57.643573px;}
.y15f{bottom:58.957500px;}
.y46{bottom:59.100000px;}
.y32{bottom:63.168000px;}
.y53{bottom:63.556500px;}
.y127{bottom:63.810000px;}
.y11b{bottom:66.909000px;}
.y142{bottom:67.287000px;}
.yd8{bottom:67.992000px;}
.y8{bottom:69.055871px;}
.y91{bottom:69.819000px;}
.yff{bottom:69.999000px;}
.y61{bottom:70.773000px;}
.yae{bottom:71.365500px;}
.y170{bottom:71.377500px;}
.yeb{bottom:71.880000px;}
.y15e{bottom:72.640500px;}
.y78{bottom:72.856500px;}
.ye{bottom:73.546500px;}
.y126{bottom:74.271000px;}
.y45{bottom:76.698000px;}
.ya2{bottom:76.750500px;}
.y11a{bottom:77.370000px;}
.y141{bottom:77.748000px;}
.y52{bottom:79.995000px;}
.yfe{bottom:80.458500px;}
.y7{bottom:80.507066px;}
.ybb{bottom:81.276000px;}
.y15d{bottom:83.101500px;}
.yad{bottom:83.551500px;}
.yc8{bottom:85.063500px;}
.y90{bottom:86.257500px;}
.y119{bottom:87.829500px;}
.y19{bottom:88.600500px;}
.yd7{bottom:88.693500px;}
.y140{bottom:90.268500px;}
.yea{bottom:90.559500px;}
.y44{bottom:90.924000px;}
.y60{bottom:91.084500px;}
.y77{bottom:91.536000px;}
.y125{bottom:93.466500px;}
.yfd{bottom:96.324000px;}
.y51{bottom:96.433500px;}
.y24{bottom:96.540000px;}
.y15c{bottom:96.784500px;}
.yc7{bottom:97.257000px;}
.y31{bottom:97.392000px;}
.y4{bottom:98.141607px;}
.yac{bottom:99.990000px;}
.y13f{bottom:100.729500px;}
.y8f{bottom:102.696000px;}
.y124{bottom:103.927500px;}
.y16f{bottom:104.689500px;}
.y43{bottom:105.121500px;}
.y118{bottom:105.763500px;}
.y15b{bottom:107.245500px;}
.yba{bottom:108.144000px;}
.yd6{bottom:109.393500px;}
.yc6{bottom:109.452000px;}
.y76{bottom:110.215500px;}
.y5f{bottom:111.498000px;}
.y23{bottom:112.978500px;}
.y13e{bottom:113.250000px;}
.ya1{bottom:114.804000px;}
.y16e{bottom:115.150500px;}
.y117{bottom:116.223000px;}
.y50{bottom:116.608500px;}
.y30{bottom:116.818500px;}
.ye9{bottom:117.744000px;}
.y123{bottom:118.872000px;}
.y15a{bottom:120.928500px;}
.yc5{bottom:121.645500px;}
.yab{bottom:121.957500px;}
.y8e{bottom:123.618000px;}
.y13d{bottom:123.711000px;}
.yfc{bottom:124.875000px;}
.y18{bottom:125.587500px;}
.y16d{bottom:125.610000px;}
.y116{bottom:126.684000px;}
.y75{bottom:128.896500px;}
.y122{bottom:129.333000px;}
.yd5{bottom:130.095000px;}
.y22{bottom:130.585500px;}
.y159{bottom:131.388000px;}
.ye8{bottom:131.940000px;}
.y42{bottom:132.768000px;}
.yb9{bottom:135.013500px;}
.y13c{bottom:136.231500px;}
.y2f{bottom:136.245000px;}
.y115{bottom:137.145000px;}
.y17{bottom:139.783500px;}
.y8d{bottom:140.055000px;}
.y4f{bottom:140.518500px;}
.yfb{bottom:144.078000px;}
.y5e{bottom:144.300000px;}
.y158{bottom:145.071000px;}
.yd4{bottom:146.533500px;}
.y16c{bottom:146.551500px;}
.y13b{bottom:146.692500px;}
.y74{bottom:147.576000px;}
.ye7{bottom:150.621000px;}
.ya0{bottom:151.689000px;}
.y114{bottom:155.077500px;}
.y157{bottom:155.532000px;}
.y8c{bottom:156.493500px;}
.y16b{bottom:157.011000px;}
.yaa{bottom:158.190000px;}
.y13a{bottom:159.213000px;}
.yfa{bottom:159.544500px;}
.y2e{bottom:161.650500px;}
.y73{bottom:161.772000px;}
.y41{bottom:161.842500px;}
.yb8{bottom:161.883000px;}
.yd3{bottom:162.972000px;}
.y16{bottom:163.000500px;}
.y81{bottom:163.359000px;}
.ye6{bottom:164.817000px;}
.yd{bottom:164.863498px;}
.y113{bottom:165.538500px;}
.y9f{bottom:168.127500px;}
.y5d{bottom:168.496500px;}
.y156{bottom:169.215000px;}
.y139{bottom:169.674000px;}
.yf9{bottom:175.012500px;}
.ya9{bottom:175.113000px;}
.y40{bottom:176.038500px;}
.y21{bottom:177.022500px;}
.y8b{bottom:177.415500px;}
.y16a{bottom:177.952500px;}
.y2d{bottom:178.572000px;}
.y155{bottom:179.676000px;}
.y80{bottom:179.797500px;}
.y72{bottom:180.453000px;}
.y15{bottom:181.449000px;}
.yc{bottom:181.633927px;}
.y138{bottom:182.194500px;}
.yd2{bottom:182.251500px;}
.y4e{bottom:182.931000px;}
.y112{bottom:183.471000px;}
.ye5{bottom:183.496500px;}
.y9e{bottom:184.566000px;}
.y67{bottom:188.224500px;}
.y169{bottom:188.413500px;}
.yb7{bottom:188.752500px;}
.y5c{bottom:188.806500px;}
.y3f{bottom:190.236000px;}
.yf8{bottom:190.479000px;}
.yb{bottom:191.132120px;}
.y137{bottom:192.654000px;}
.y2c{bottom:192.769500px;}
.y154{bottom:193.359000px;}
.y8a{bottom:193.854000px;}
.y111{bottom:193.932000px;}
.y71{bottom:194.649000px;}
.ya8{bottom:195.262500px;}
.y7f{bottom:197.403000px;}
.y9d{bottom:202.173000px;}
.ye4{bottom:202.177500px;}
.y168{bottom:203.125500px;}
.y153{bottom:203.818500px;}
.y110{bottom:204.393000px;}
.yd1{bottom:204.447000px;}
.y136{bottom:205.174500px;}
.yf7{bottom:205.288500px;}
.y3e{bottom:206.983500px;}
.y6{bottom:207.573637px;}
.y4d{bottom:208.335000px;}
.y14{bottom:208.402500px;}
.yb6{bottom:209.076000px;}
.yc4{bottom:209.098500px;}
.y5b{bottom:209.220000px;}
.ya7{bottom:209.458500px;}
.y89{bottom:210.292500px;}
.y2b{bottom:212.943000px;}
.y70{bottom:213.328500px;}
.y10f{bottom:214.854000px;}
.y135{bottom:215.635500px;}
.y152{bottom:217.501500px;}
.y167{bottom:217.839000px;}
.ye3{bottom:220.857000px;}
.yd0{bottom:220.885500px;}
.y3d{bottom:221.181000px;}
.y20{bottom:222.291000px;}
.ya6{bottom:223.738500px;}
.y10e{bottom:225.315000px;}
.yc3{bottom:225.357000px;}
.y66{bottom:225.397500px;}
.y6f{bottom:227.526000px;}
.y151{bottom:227.962500px;}
.y134{bottom:228.156000px;}
.y166{bottom:228.298500px;}
.y88{bottom:231.214500px;}
.y5{bottom:232.062585px;}
.y4c{bottom:233.740500px;}
.yf6{bottom:233.838000px;}
.y7e{bottom:234.576000px;}
.ye2{bottom:235.054500px;}
.yc2{bottom:235.818000px;}
.yb5{bottom:235.945500px;}
.ycf{bottom:237.324000px;}
.y5a{bottom:238.047000px;}
.y133{bottom:238.617000px;}
.y1f{bottom:238.729500px;}
.y3c{bottom:238.779000px;}
.y9c{bottom:239.058000px;}
.y150{bottom:241.645500px;}
.y13{bottom:242.773500px;}
.y10d{bottom:243.247500px;}
.y6e{bottom:246.205500px;}
.yc1{bottom:246.279000px;}
.y87{bottom:247.653000px;}
.y132{bottom:249.078000px;}
.y165{bottom:249.240000px;}
.ye1{bottom:249.250500px;}
.yf5{bottom:251.770500px;}
.y14f{bottom:252.106500px;}
.y10c{bottom:253.708500px;}
.yce{bottom:253.762500px;}
.y1e{bottom:255.168000px;}
.y9b{bottom:255.496500px;}
.y2a{bottom:256.252500px;}
.y4b{bottom:259.144500px;}
.y164{bottom:259.701000px;}
.y131{bottom:261.598500px;}
.y3b{bottom:261.711000px;}
.y65{bottom:262.569000px;}
.yb4{bottom:262.813500px;}
.y86{bottom:264.090000px;}
.y10b{bottom:264.169500px;}
.y6d{bottom:264.886500px;}
.yc0{bottom:265.243500px;}
.y14e{bottom:265.789500px;}
.yf4{bottom:265.968000px;}
.y59{bottom:266.875500px;}
.ye0{bottom:267.930000px;}
.y29{bottom:270.480000px;}
.y1d{bottom:271.606500px;}
.y7d{bottom:271.749000px;}
.y9a{bottom:271.935000px;}
.y130{bottom:272.059500px;}
.y3a{bottom:272.172000px;}
.ycd{bottom:273.042000px;}
.y10a{bottom:274.630500px;}
.ybf{bottom:275.704500px;}
.y14d{bottom:276.250500px;}
.yf3{bottom:280.164000px;}
.y4a{bottom:281.560500px;}
.y1{bottom:281.729217px;}
.ydf{bottom:282.127500px;}
.y39{bottom:282.631500px;}
.y163{bottom:283.147500px;}
.y6c{bottom:283.566000px;}
.y12f{bottom:284.580000px;}
.y28{bottom:288.078000px;}
.y99{bottom:288.373500px;}
.y1c{bottom:289.213500px;}
.yb3{bottom:289.683000px;}
.y14c{bottom:289.932000px;}
.ybe{bottom:290.416500px;}
.y64{bottom:291.663000px;}
.y109{bottom:292.563000px;}
.yf2{bottom:294.361500px;}
.y12e{bottom:295.041000px;}
.ycc{bottom:295.237500px;}
.ya5{bottom:295.690500px;}
.y12{bottom:295.905000px;}
.y6b{bottom:297.762000px;}
.y58{bottom:299.631000px;}
.y38{bottom:300.127500px;}
.y14b{bottom:300.393000px;}
.yde{bottom:300.807000px;}
.y7c{bottom:300.843000px;}
.y85{bottom:302.020500px;}
.y27{bottom:302.304000px;}
.y108{bottom:303.024000px;}
.y98{bottom:305.979000px;}
.y12d{bottom:307.561500px;}
.y49{bottom:308.229000px;}
.yf1{bottom:308.557500px;}
.y37{bottom:310.588500px;}
.y57{bottom:311.826000px;}
.y107{bottom:313.483500px;}
.y14a{bottom:314.076000px;}
.ycb{bottom:315.937500px;}
.ya4{bottom:316.014000px;}
.y6a{bottom:316.443000px;}
.y26{bottom:316.501500px;}
.yb2{bottom:316.552500px;}
.y12c{bottom:318.022500px;}
.y84{bottom:318.279000px;}
.y56{bottom:322.287000px;}
.yf0{bottom:322.755000px;}
.ydd{bottom:323.508000px;}
.y106{bottom:323.944500px;}
.y149{bottom:324.537000px;}
.y121{bottom:326.188500px;}
.y11{bottom:326.206500px;}
.y1b{bottom:327.570000px;}
.y12b{bottom:330.541500px;}
.y69{bottom:330.639000px;}
.y36{bottom:334.036500px;}
.y105{bottom:334.405500px;}
.y97{bottom:335.953500px;}
.ybd{bottom:336.411000px;}
.y120{bottom:336.649500px;}
.y25{bottom:336.675000px;}
.yef{bottom:336.951000px;}
.y148{bottom:338.220000px;}
.y12a{bottom:341.002500px;}
.yb1{bottom:341.359500px;}
.y48{bottom:341.674500px;}
.ydc{bottom:341.799000px;}
.y83{bottom:343.221000px;}
.y95{bottom:343.819500px;}
.y104{bottom:344.866500px;}
.y55{bottom:345.180000px;}
.y35{bottom:348.262500px;}
.y147{bottom:348.681000px;}
.y11f{bottom:351.594000px;}
.yee{bottom:351.760500px;}
.y129{bottom:353.523000px;}
.y68{bottom:353.571000px;}
.y103{bottom:355.327500px;}
.ya3{bottom:355.533000px;}
.y10{bottom:356.506500px;}
.y82{bottom:357.448500px;}
.y94{bottom:358.047000px;}
.y1a{bottom:376.603500px;}
.h11{height:24.890726px;}
.h7{height:25.349523px;}
.h13{height:26.895450px;}
.h9{height:26.899200px;}
.h12{height:26.901450px;}
.h6{height:28.150545px;}
.h5{height:29.602983px;}
.hf{height:31.384800px;}
.h8{height:33.187496px;}
.hc{height:35.865450px;}
.hd{height:40.348800px;}
.h14{height:44.831700px;}
.h10{height:47.817450px;}
.hb{height:49.090950px;}
.he{height:53.798400px;}
.h15{height:60.770503px;}
.h3{height:62.196157px;}
.h2{height:63.040599px;}
.ha{height:64.557900px;}
.h4{height:276.357917px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w2{width:280.807785px;}
.w3{width:491.301371px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x2e{left:9.153000px;}
.x29{left:11.338500px;}
.x16{left:12.756000px;}
.x17{left:16.363500px;}
.x2c{left:21.855000px;}
.x2{left:26.809758px;}
.xd{left:27.849000px;}
.x20{left:33.112500px;}
.x13{left:35.241000px;}
.x1f{left:36.301500px;}
.x22{left:37.734000px;}
.x18{left:46.251000px;}
.x23{left:49.090500px;}
.x1c{left:50.839500px;}
.x1d{left:55.455000px;}
.x1b{left:56.535000px;}
.x19{left:59.550000px;}
.x15{left:61.260000px;}
.x21{left:62.797500px;}
.x25{left:65.631000px;}
.xc{left:67.764000px;}
.x12{left:70.062000px;}
.x1a{left:73.560000px;}
.x28{left:76.198500px;}
.x2a{left:81.819000px;}
.x3{left:88.224903px;}
.x27{left:91.387500px;}
.x1e{left:94.498500px;}
.x14{left:104.152500px;}
.x2b{left:107.329500px;}
.x26{left:109.585500px;}
.xe{left:112.425000px;}
.x11{left:113.484000px;}
.x2d{left:133.947000px;}
.x24{left:144.457500px;}
.xf{left:153.993000px;}
.x5{left:176.740504px;}
.x8{left:182.001735px;}
.x6{left:186.218226px;}
.x1{left:192.780260px;}
.x7{left:203.975392px;}
.x10{left:206.058000px;}
.x9{left:234.402502px;}
.x4{left:254.539163px;}
.xa{left:274.733827px;}
.xb{left:288.370719px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v4{vertical-align:-6.176000pt;}
.v1{vertical-align:-4.154667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.624000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000539pt;}
.ls9{letter-spacing:11.290721pt;}
.ls6{letter-spacing:16.384495pt;}
.ls8{letter-spacing:17.714482pt;}
.ls3{letter-spacing:29.074925pt;}
.ls2{letter-spacing:29.075046pt;}
.ls5{letter-spacing:29.085258pt;}
.ls4{letter-spacing:29.091205pt;}
.ls1{letter-spacing:46.887925pt;}
.ws0{word-spacing:-25.322736pt;}
.ws1c{word-spacing:-19.556740pt;}
.ws36{word-spacing:-10.864840pt;}
.ws3e{word-spacing:-8.081715pt;}
.ws1{word-spacing:-6.807877pt;}
.ws3b{word-spacing:-3.251801pt;}
.ws4{word-spacing:-2.438861pt;}
.ws2c{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.042507pt;}
.wsa{word-spacing:-0.031881pt;}
.ws5{word-spacing:0.000000pt;}
.ws42{word-spacing:2.725786pt;}
.ws34{word-spacing:2.784222pt;}
.ws44{word-spacing:2.885188pt;}
.ws47{word-spacing:3.198399pt;}
.ws2f{word-spacing:3.200333pt;}
.ws3{word-spacing:3.203994pt;}
.ws2d{word-spacing:3.205830pt;}
.ws40{word-spacing:3.209694pt;}
.ws14{word-spacing:3.210964pt;}
.ws43{word-spacing:3.235874pt;}
.ws41{word-spacing:3.519611pt;}
.ws26{word-spacing:3.551491pt;}
.ws1e{word-spacing:4.137219pt;}
.ws25{word-spacing:4.140809pt;}
.ws23{word-spacing:4.141278pt;}
.ws18{word-spacing:4.154563pt;}
.ws1d{word-spacing:4.157440pt;}
.wsf{word-spacing:4.158268pt;}
.ws16{word-spacing:4.159409pt;}
.ws20{word-spacing:4.162773pt;}
.ws28{word-spacing:4.163062pt;}
.ws22{word-spacing:4.177848pt;}
.ws1a{word-spacing:4.186796pt;}
.ws35{word-spacing:4.192073pt;}
.ws37{word-spacing:4.195831pt;}
.ws11{word-spacing:4.198088pt;}
.ws3a{word-spacing:4.206872pt;}
.ws38{word-spacing:4.207812pt;}
.ws9{word-spacing:4.271974pt;}
.ws32{word-spacing:4.380385pt;}
.wsc{word-spacing:4.619489pt;}
.ws17{word-spacing:4.622764pt;}
.ws2b{word-spacing:4.632044pt;}
.ws1f{word-spacing:4.638957pt;}
.ws21{word-spacing:4.665515pt;}
.wsd{word-spacing:4.667310pt;}
.wse{word-spacing:4.668448pt;}
.ws19{word-spacing:4.692795pt;}
.ws12{word-spacing:4.735302pt;}
.ws24{word-spacing:5.279416pt;}
.wsb{word-spacing:5.327237pt;}
.ws27{word-spacing:5.421443pt;}
.ws8{word-spacing:5.474914pt;}
.ws30{word-spacing:5.533096pt;}
.ws39{word-spacing:5.969260pt;}
.ws15{word-spacing:6.193860pt;}
.ws29{word-spacing:6.481460pt;}
.ws33{word-spacing:6.557170pt;}
.ws10{word-spacing:7.322300pt;}
.ws1b{word-spacing:7.353722pt;}
.ws45{word-spacing:7.355154pt;}
.ws7{word-spacing:8.447043pt;}
.ws6{word-spacing:8.523556pt;}
.ws2a{word-spacing:8.794567pt;}
.ws3d{word-spacing:11.253828pt;}
.ws13{word-spacing:16.354714pt;}
.ws3c{word-spacing:20.993331pt;}
.ws3f{word-spacing:24.866747pt;}
.ws46{word-spacing:24.943260pt;}
.ws31{word-spacing:25.801795pt;}
.ws2e{word-spacing:33.840507pt;}
._14{margin-left:-23.737079pt;}
._20{margin-left:-22.541559pt;}
._d{margin-left:-21.338614pt;}
._10{margin-left:-16.366287pt;}
._f{margin-left:-15.384380pt;}
._1d{margin-left:-6.274071pt;}
._a{margin-left:-4.829095pt;}
._1{margin-left:-3.737268pt;}
._9{margin-left:-2.371905pt;}
._0{margin-left:-1.053230pt;}
._7{width:0.956416pt;}
._2{width:2.592939pt;}
._15{width:5.957615pt;}
._13{width:8.178529pt;}
._11{width:9.856269pt;}
._6{width:11.285709pt;}
._22{width:12.194627pt;}
._c{width:13.814840pt;}
._21{width:15.044183pt;}
._b{width:16.440566pt;}
._19{width:17.550234pt;}
._12{width:19.184402pt;}
._1f{width:20.291920pt;}
._3{width:22.571418pt;}
._16{width:24.726528pt;}
._e{width:25.861417pt;}
._1a{width:29.067023pt;}
._1e{width:34.007085pt;}
._1c{width:44.661489pt;}
._18{width:64.429435pt;}
._8{width:79.031842pt;}
._1b{width:155.322429pt;}
._4{width:201.411504pt;}
._17{width:215.469532pt;}
._5{width:232.402865pt;}
.fs2{font-size:29.093492pt;}
.fs4{font-size:31.880533pt;}
.fs1{font-size:33.975161pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:72.766484pt;}
.fs5{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.542667pt;}
.y11e{bottom:14.588000pt;}
.ydb{bottom:19.482667pt;}
.y96{bottom:20.040000pt;}
.y3{bottom:20.409845pt;}
.y146{bottom:20.786667pt;}
.y7b{bottom:21.468000pt;}
.y93{bottom:21.612000pt;}
.y162{bottom:21.648000pt;}
.y34{bottom:21.765333pt;}
.y102{bottom:22.210667pt;}
.y128{bottom:23.330667pt;}
.y63{bottom:23.348000pt;}
.y54{bottom:23.564000pt;}
.yda{bottom:23.636000pt;}
.y145{bottom:30.085333pt;}
.yed{bottom:30.684000pt;}
.y7a{bottom:30.766667pt;}
.ya{bottom:30.863461pt;}
.y161{bottom:30.946667pt;}
.yb0{bottom:31.621333pt;}
.y33{bottom:34.410667pt;}
.ybc{bottom:35.076000pt;}
.y92{bottom:36.065333pt;}
.y11d{bottom:37.097333pt;}
.y101{bottom:38.997333pt;}
.y144{bottom:39.384000pt;}
.y47{bottom:39.886667pt;}
.yd9{bottom:42.037333pt;}
.y2{bottom:42.194783pt;}
.y160{bottom:43.108000pt;}
.yca{bottom:44.545333pt;}
.y62{bottom:44.856000pt;}
.yc9{bottom:46.208000pt;}
.yaf{bottom:46.233333pt;}
.y11c{bottom:46.396000pt;}
.yec{bottom:47.289333pt;}
.y79{bottom:47.624000pt;}
.y100{bottom:48.296000pt;}
.y143{bottom:50.513333pt;}
.y9{bottom:51.238731pt;}
.y15f{bottom:52.406667pt;}
.y46{bottom:52.533333pt;}
.y32{bottom:56.149333pt;}
.y53{bottom:56.494667pt;}
.y127{bottom:56.720000pt;}
.y11b{bottom:59.474667pt;}
.y142{bottom:59.810667pt;}
.yd8{bottom:60.437333pt;}
.y8{bottom:61.382997pt;}
.y91{bottom:62.061333pt;}
.yff{bottom:62.221333pt;}
.y61{bottom:62.909333pt;}
.yae{bottom:63.436000pt;}
.y170{bottom:63.446667pt;}
.yeb{bottom:63.893333pt;}
.y15e{bottom:64.569333pt;}
.y78{bottom:64.761333pt;}
.ye{bottom:65.374667pt;}
.y126{bottom:66.018667pt;}
.y45{bottom:68.176000pt;}
.ya2{bottom:68.222667pt;}
.y11a{bottom:68.773333pt;}
.y141{bottom:69.109333pt;}
.y52{bottom:71.106667pt;}
.yfe{bottom:71.518667pt;}
.y7{bottom:71.561837pt;}
.ybb{bottom:72.245333pt;}
.y15d{bottom:73.868000pt;}
.yad{bottom:74.268000pt;}
.yc8{bottom:75.612000pt;}
.y90{bottom:76.673333pt;}
.y119{bottom:78.070667pt;}
.y19{bottom:78.756000pt;}
.yd7{bottom:78.838667pt;}
.y140{bottom:80.238667pt;}
.yea{bottom:80.497333pt;}
.y44{bottom:80.821333pt;}
.y60{bottom:80.964000pt;}
.y77{bottom:81.365333pt;}
.y125{bottom:83.081333pt;}
.yfd{bottom:85.621333pt;}
.y51{bottom:85.718667pt;}
.y24{bottom:85.813333pt;}
.y15c{bottom:86.030667pt;}
.yc7{bottom:86.450667pt;}
.y31{bottom:86.570667pt;}
.y4{bottom:87.236984pt;}
.yac{bottom:88.880000pt;}
.y13f{bottom:89.537333pt;}
.y8f{bottom:91.285333pt;}
.y124{bottom:92.380000pt;}
.y16f{bottom:93.057333pt;}
.y43{bottom:93.441333pt;}
.y118{bottom:94.012000pt;}
.y15b{bottom:95.329333pt;}
.yba{bottom:96.128000pt;}
.yd6{bottom:97.238667pt;}
.yc6{bottom:97.290667pt;}
.y76{bottom:97.969333pt;}
.y5f{bottom:99.109333pt;}
.y23{bottom:100.425333pt;}
.y13e{bottom:100.666667pt;}
.ya1{bottom:102.048000pt;}
.y16e{bottom:102.356000pt;}
.y117{bottom:103.309333pt;}
.y50{bottom:103.652000pt;}
.y30{bottom:103.838667pt;}
.ye9{bottom:104.661333pt;}
.y123{bottom:105.664000pt;}
.y15a{bottom:107.492000pt;}
.yc5{bottom:108.129333pt;}
.yab{bottom:108.406667pt;}
.y8e{bottom:109.882667pt;}
.y13d{bottom:109.965333pt;}
.yfc{bottom:111.000000pt;}
.y18{bottom:111.633333pt;}
.y16d{bottom:111.653333pt;}
.y116{bottom:112.608000pt;}
.y75{bottom:114.574667pt;}
.y122{bottom:114.962667pt;}
.yd5{bottom:115.640000pt;}
.y22{bottom:116.076000pt;}
.y159{bottom:116.789333pt;}
.ye8{bottom:117.280000pt;}
.y42{bottom:118.016000pt;}
.yb9{bottom:120.012000pt;}
.y13c{bottom:121.094667pt;}
.y2f{bottom:121.106667pt;}
.y115{bottom:121.906667pt;}
.y17{bottom:124.252000pt;}
.y8d{bottom:124.493333pt;}
.y4f{bottom:124.905333pt;}
.yfb{bottom:128.069333pt;}
.y5e{bottom:128.266667pt;}
.y158{bottom:128.952000pt;}
.yd4{bottom:130.252000pt;}
.y16c{bottom:130.268000pt;}
.y13b{bottom:130.393333pt;}
.y74{bottom:131.178667pt;}
.ye7{bottom:133.885333pt;}
.ya0{bottom:134.834667pt;}
.y114{bottom:137.846667pt;}
.y157{bottom:138.250667pt;}
.y8c{bottom:139.105333pt;}
.y16b{bottom:139.565333pt;}
.yaa{bottom:140.613333pt;}
.y13a{bottom:141.522667pt;}
.yfa{bottom:141.817333pt;}
.y2e{bottom:143.689333pt;}
.y73{bottom:143.797333pt;}
.y41{bottom:143.860000pt;}
.yb8{bottom:143.896000pt;}
.yd3{bottom:144.864000pt;}
.y16{bottom:144.889333pt;}
.y81{bottom:145.208000pt;}
.ye6{bottom:146.504000pt;}
.yd{bottom:146.545331pt;}
.y113{bottom:147.145333pt;}
.y9f{bottom:149.446667pt;}
.y5d{bottom:149.774667pt;}
.y156{bottom:150.413333pt;}
.y139{bottom:150.821333pt;}
.yf9{bottom:155.566667pt;}
.ya9{bottom:155.656000pt;}
.y40{bottom:156.478667pt;}
.y21{bottom:157.353333pt;}
.y8b{bottom:157.702667pt;}
.y16a{bottom:158.180000pt;}
.y2d{bottom:158.730667pt;}
.y155{bottom:159.712000pt;}
.y80{bottom:159.820000pt;}
.y72{bottom:160.402667pt;}
.y15{bottom:161.288000pt;}
.yc{bottom:161.452379pt;}
.y138{bottom:161.950667pt;}
.yd2{bottom:162.001333pt;}
.y4e{bottom:162.605333pt;}
.y112{bottom:163.085333pt;}
.ye5{bottom:163.108000pt;}
.y9e{bottom:164.058667pt;}
.y67{bottom:167.310667pt;}
.y169{bottom:167.478667pt;}
.yb7{bottom:167.780000pt;}
.y5c{bottom:167.828000pt;}
.y3f{bottom:169.098667pt;}
.yf8{bottom:169.314667pt;}
.yb{bottom:169.895218pt;}
.y137{bottom:171.248000pt;}
.y2c{bottom:171.350667pt;}
.y154{bottom:171.874667pt;}
.y8a{bottom:172.314667pt;}
.y111{bottom:172.384000pt;}
.y71{bottom:173.021333pt;}
.ya8{bottom:173.566667pt;}
.y7f{bottom:175.469333pt;}
.y9d{bottom:179.709333pt;}
.ye4{bottom:179.713333pt;}
.y168{bottom:180.556000pt;}
.y153{bottom:181.172000pt;}
.y110{bottom:181.682667pt;}
.yd1{bottom:181.730667pt;}
.y136{bottom:182.377333pt;}
.yf7{bottom:182.478667pt;}
.y3e{bottom:183.985333pt;}
.y6{bottom:184.509899pt;}
.y4d{bottom:185.186667pt;}
.y14{bottom:185.246667pt;}
.yb6{bottom:185.845333pt;}
.yc4{bottom:185.865333pt;}
.y5b{bottom:185.973333pt;}
.ya7{bottom:186.185333pt;}
.y89{bottom:186.926667pt;}
.y2b{bottom:189.282667pt;}
.y70{bottom:189.625333pt;}
.y10f{bottom:190.981333pt;}
.y135{bottom:191.676000pt;}
.y152{bottom:193.334667pt;}
.y167{bottom:193.634667pt;}
.ye3{bottom:196.317333pt;}
.yd0{bottom:196.342667pt;}
.y3d{bottom:196.605333pt;}
.y20{bottom:197.592000pt;}
.ya6{bottom:198.878667pt;}
.y10e{bottom:200.280000pt;}
.yc3{bottom:200.317333pt;}
.y66{bottom:200.353333pt;}
.y6f{bottom:202.245333pt;}
.y151{bottom:202.633333pt;}
.y134{bottom:202.805333pt;}
.y166{bottom:202.932000pt;}
.y88{bottom:205.524000pt;}
.y5{bottom:206.277853pt;}
.y4c{bottom:207.769333pt;}
.yf6{bottom:207.856000pt;}
.y7e{bottom:208.512000pt;}
.ye2{bottom:208.937333pt;}
.yc2{bottom:209.616000pt;}
.yb5{bottom:209.729333pt;}
.ycf{bottom:210.954667pt;}
.y5a{bottom:211.597333pt;}
.y133{bottom:212.104000pt;}
.y1f{bottom:212.204000pt;}
.y3c{bottom:212.248000pt;}
.y9c{bottom:212.496000pt;}
.y150{bottom:214.796000pt;}
.y13{bottom:215.798667pt;}
.y10d{bottom:216.220000pt;}
.y6e{bottom:218.849333pt;}
.yc1{bottom:218.914667pt;}
.y87{bottom:220.136000pt;}
.y132{bottom:221.402667pt;}
.y165{bottom:221.546667pt;}
.ye1{bottom:221.556000pt;}
.yf5{bottom:223.796000pt;}
.y14f{bottom:224.094667pt;}
.y10c{bottom:225.518667pt;}
.yce{bottom:225.566667pt;}
.y1e{bottom:226.816000pt;}
.y9b{bottom:227.108000pt;}
.y2a{bottom:227.780000pt;}
.y4b{bottom:230.350667pt;}
.y164{bottom:230.845333pt;}
.y131{bottom:232.532000pt;}
.y3b{bottom:232.632000pt;}
.y65{bottom:233.394667pt;}
.yb4{bottom:233.612000pt;}
.y86{bottom:234.746667pt;}
.y10b{bottom:234.817333pt;}
.y6d{bottom:235.454667pt;}
.yc0{bottom:235.772000pt;}
.y14e{bottom:236.257333pt;}
.yf4{bottom:236.416000pt;}
.y59{bottom:237.222667pt;}
.ye0{bottom:238.160000pt;}
.y29{bottom:240.426667pt;}
.y1d{bottom:241.428000pt;}
.y7d{bottom:241.554667pt;}
.y9a{bottom:241.720000pt;}
.y130{bottom:241.830667pt;}
.y3a{bottom:241.930667pt;}
.ycd{bottom:242.704000pt;}
.y10a{bottom:244.116000pt;}
.ybf{bottom:245.070667pt;}
.y14d{bottom:245.556000pt;}
.yf3{bottom:249.034667pt;}
.y4a{bottom:250.276000pt;}
.y1{bottom:250.425971pt;}
.ydf{bottom:250.780000pt;}
.y39{bottom:251.228000pt;}
.y163{bottom:251.686667pt;}
.y6c{bottom:252.058667pt;}
.y12f{bottom:252.960000pt;}
.y28{bottom:256.069333pt;}
.y99{bottom:256.332000pt;}
.y1c{bottom:257.078667pt;}
.yb3{bottom:257.496000pt;}
.y14c{bottom:257.717333pt;}
.ybe{bottom:258.148000pt;}
.y64{bottom:259.256000pt;}
.y109{bottom:260.056000pt;}
.yf2{bottom:261.654667pt;}
.y12e{bottom:262.258667pt;}
.ycc{bottom:262.433333pt;}
.ya5{bottom:262.836000pt;}
.y12{bottom:263.026667pt;}
.y6b{bottom:264.677333pt;}
.y58{bottom:266.338667pt;}
.y38{bottom:266.780000pt;}
.y14b{bottom:267.016000pt;}
.yde{bottom:267.384000pt;}
.y7c{bottom:267.416000pt;}
.y85{bottom:268.462667pt;}
.y27{bottom:268.714667pt;}
.y108{bottom:269.354667pt;}
.y98{bottom:271.981333pt;}
.y12d{bottom:273.388000pt;}
.y49{bottom:273.981333pt;}
.yf1{bottom:274.273333pt;}
.y37{bottom:276.078667pt;}
.y57{bottom:277.178667pt;}
.y107{bottom:278.652000pt;}
.y14a{bottom:279.178667pt;}
.ycb{bottom:280.833333pt;}
.ya4{bottom:280.901333pt;}
.y6a{bottom:281.282667pt;}
.y26{bottom:281.334667pt;}
.yb2{bottom:281.380000pt;}
.y12c{bottom:282.686667pt;}
.y84{bottom:282.914667pt;}
.y56{bottom:286.477333pt;}
.yf0{bottom:286.893333pt;}
.ydd{bottom:287.562667pt;}
.y106{bottom:287.950667pt;}
.y149{bottom:288.477333pt;}
.y121{bottom:289.945333pt;}
.y11{bottom:289.961333pt;}
.y1b{bottom:291.173333pt;}
.y12b{bottom:293.814667pt;}
.y69{bottom:293.901333pt;}
.y36{bottom:296.921333pt;}
.y105{bottom:297.249333pt;}
.y97{bottom:298.625333pt;}
.ybd{bottom:299.032000pt;}
.y120{bottom:299.244000pt;}
.y25{bottom:299.266667pt;}
.yef{bottom:299.512000pt;}
.y148{bottom:300.640000pt;}
.y12a{bottom:303.113333pt;}
.yb1{bottom:303.430667pt;}
.y48{bottom:303.710667pt;}
.ydc{bottom:303.821333pt;}
.y83{bottom:305.085333pt;}
.y95{bottom:305.617333pt;}
.y104{bottom:306.548000pt;}
.y55{bottom:306.826667pt;}
.y35{bottom:309.566667pt;}
.y147{bottom:309.938667pt;}
.y11f{bottom:312.528000pt;}
.yee{bottom:312.676000pt;}
.y129{bottom:314.242667pt;}
.y68{bottom:314.285333pt;}
.y103{bottom:315.846667pt;}
.ya3{bottom:316.029333pt;}
.y10{bottom:316.894667pt;}
.y82{bottom:317.732000pt;}
.y94{bottom:318.264000pt;}
.y1a{bottom:334.758667pt;}
.h11{height:22.125090pt;}
.h7{height:22.532909pt;}
.h13{height:23.907067pt;}
.h9{height:23.910400pt;}
.h12{height:23.912400pt;}
.h6{height:25.022706pt;}
.h5{height:26.313763pt;}
.hf{height:27.897600pt;}
.h8{height:29.499997pt;}
.hc{height:31.880400pt;}
.hd{height:35.865600pt;}
.h14{height:39.850400pt;}
.h10{height:42.504400pt;}
.hb{height:43.636400pt;}
.he{height:47.820800pt;}
.h15{height:54.018225pt;}
.h3{height:55.285473pt;}
.h2{height:56.036088pt;}
.ha{height:57.384800pt;}
.h4{height:245.651481pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w2{width:249.606920pt;}
.w3{width:436.712329pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:8.136000pt;}
.x29{left:10.078667pt;}
.x16{left:11.338667pt;}
.x17{left:14.545333pt;}
.x2c{left:19.426667pt;}
.x2{left:23.830896pt;}
.xd{left:24.754667pt;}
.x20{left:29.433333pt;}
.x13{left:31.325333pt;}
.x1f{left:32.268000pt;}
.x22{left:33.541333pt;}
.x18{left:41.112000pt;}
.x23{left:43.636000pt;}
.x1c{left:45.190667pt;}
.x1d{left:49.293333pt;}
.x1b{left:50.253333pt;}
.x19{left:52.933333pt;}
.x15{left:54.453333pt;}
.x21{left:55.820000pt;}
.x25{left:58.338667pt;}
.xc{left:60.234667pt;}
.x12{left:62.277333pt;}
.x1a{left:65.386667pt;}
.x28{left:67.732000pt;}
.x2a{left:72.728000pt;}
.x3{left:78.422136pt;}
.x27{left:81.233333pt;}
.x1e{left:83.998667pt;}
.x14{left:92.580000pt;}
.x2b{left:95.404000pt;}
.x26{left:97.409333pt;}
.xe{left:99.933333pt;}
.x11{left:100.874667pt;}
.x2d{left:119.064000pt;}
.x24{left:128.406667pt;}
.xf{left:136.882667pt;}
.x5{left:157.102670pt;}
.x8{left:161.779320pt;}
.x6{left:165.527312pt;}
.x1{left:171.360231pt;}
.x7{left:181.311459pt;}
.x10{left:183.162667pt;}
.x9{left:208.357779pt;}
.x4{left:226.257034pt;}
.xa{left:244.207846pt;}
.xb{left:256.329528pt;}
}




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