
    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_2d31269283dcf91a5e530f87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0d14ae424345eaffa5b04926.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_e6abaa677770c99f8f762c1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149414;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_6ef38c1aa3b4fe7c0935e580.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_216ca5094adbf670ed59a13f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_df2a891cd99f5cd614712dfa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_4d2917fb242d17089ea40f7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_3a09e2d9207fc4d9e93c233a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_32514887d0fc21c89a5cc063.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_824372a317fd4433a24d3104.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.768555;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;}
.m5{transform:matrix(0.236181,0.000000,-0.080779,0.236590,0,0);-ms-transform:matrix(0.236181,0.000000,-0.080779,0.236590,0,0);-webkit-transform:matrix(0.236181,0.000000,-0.080779,0.236590,0,0);}
.m3{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-22.348203px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.343759px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.044202px;}
.ls6{letter-spacing:0.051809px;}
.ls8{letter-spacing:0.082239px;}
.lsa{letter-spacing:0.182901px;}
.ls1{letter-spacing:0.249035px;}
.ls3{letter-spacing:0.335785px;}
.ls2{letter-spacing:0.521801px;}
.ls7{letter-spacing:0.811805px;}
.ls9{letter-spacing:0.823124px;}
.lsb{letter-spacing:5.098101px;}
.ls4{letter-spacing:6.561130px;}
.lsd{letter-spacing:38.253112px;}
.lsc{letter-spacing:41.182789px;}
.ls5{letter-spacing:56.321943px;}
.lsf{letter-spacing:72.927929px;}
.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:-62.258871px;}
.ws5{word-spacing:-17.245707px;}
.ws3{word-spacing:-14.070505px;}
.ws7{word-spacing:-12.559525px;}
.ws1{word-spacing:-10.872205px;}
.ws4{word-spacing:-10.247121px;}
.ws2{word-spacing:-8.870463px;}
.ws0{word-spacing:0.000000px;}
._54{margin-left:-8.404948px;}
._55{margin-left:-6.848476px;}
._38{margin-left:-5.472031px;}
._16{margin-left:-3.922309px;}
._6{margin-left:-2.213565px;}
._1{margin-left:-1.120660px;}
._2{width:1.120660px;}
._35{width:2.123551px;}
._5{width:3.175202px;}
._a{width:4.261358px;}
._8{width:5.264249px;}
._7{width:6.288146px;}
._9{width:8.093653px;}
._13{width:10.023678px;}
._c{width:11.455632px;}
._b{width:13.447916px;}
._f{width:14.478562px;}
._12{width:15.966026px;}
._29{width:18.276353px;}
._10{width:19.300250px;}
._23{width:20.981240px;}
._28{width:22.350935px;}
._2d{width:24.349968px;}
._e{width:25.650655px;}
._d{width:26.833573px;}
._27{width:27.864220px;}
._2e{width:29.102647px;}
._3d{width:30.347825px;}
._2f{width:31.440730px;}
._1a{width:32.872684px;}
._19{width:33.993344px;}
._18{width:35.798851px;}
._50{width:36.891756px;}
._14{width:37.915652px;}
._34{width:39.347606px;}
._15{width:40.530525px;}
._1d{width:41.588926px;}
._45{width:42.834103px;}
._3e{width:43.892504px;}
._22{width:45.573494px;}
._21{width:46.631894px;}
._2c{width:47.690295px;}
._11{width:48.845459px;}
._4e{width:49.931615px;}
._4a{width:50.990015px;}
._26{width:52.546487px;}
._37{width:53.729406px;}
._33{width:55.597172px;}
._32{width:56.717831px;}
._2a{width:58.336562px;}
._25{width:60.017552px;}
._49{width:63.130495px;}
._48{width:64.410177px;}
._36{width:66.181180px;}
._44{width:68.048946px;}
._1b{width:69.231865px;}
._1c{width:70.885099px;}
._1e{width:72.026764px;}
._30{width:73.714503px;}
._20{width:75.146457px;}
._1f{width:76.204858px;}
._46{width:78.072624px;}
._4c{width:80.438461px;}
._3c{width:81.593625px;}
._31{width:83.302369px;}
._39{width:84.360770px;}
._3{width:86.106486px;}
._4f{width:89.901810px;}
._41{width:94.446707px;}
._42{width:95.505108px;}
._51{width:99.053864px;}
._2b{width:102.851655px;}
._3a{width:104.691666px;}
._3b{width:111.069826px;}
._52{width:113.684698px;}
._47{width:115.303429px;}
._4b{width:116.984419px;}
._3f{width:123.085788px;}
._40{width:124.863541px;}
._0{width:145.934794px;}
._17{width:155.647177px;}
._43{width:178.184889px;}
._4{width:189.516003px;}
._53{width:236.645969px;}
._4d{width:345.661252px;}
._24{width:1260.368584px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(192,0,0);}
.fc5{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.249837px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.341244px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:62.258871px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.787731px;}
.fs9{font-size:67.673455px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:101.508708px;}
.fs2{font-size:102.000000px;}
.y152{bottom:-1.261596px;}
.y0{bottom:0.000000px;}
.y58{bottom:1.255672px;}
.y1cd{bottom:1.982184px;}
.y1cb{bottom:2.341775px;}
.y54{bottom:3.061447px;}
.y24{bottom:4.141982px;}
.y27{bottom:55.805422px;}
.y5{bottom:66.525004px;}
.y26{bottom:74.881396px;}
.y4{bottom:97.125005px;}
.y164{bottom:105.841677px;}
.y8a{bottom:106.197925px;}
.y14e{bottom:110.881382px;}
.y57{bottom:112.491101px;}
.y1cc{bottom:114.106549px;}
.yf7{bottom:114.481900px;}
.y1ca{bottom:116.457871px;}
.y13a{bottom:118.619110px;}
.y18d{bottom:119.877853px;}
.y14f{bottom:121.863380px;}
.yb9{bottom:122.039092px;}
.y89{bottom:125.459074px;}
.y163{bottom:126.361569px;}
.y52{bottom:127.083621px;}
.y56{bottom:127.604565px;}
.y14d{bottom:129.962087px;}
.yf6{bottom:133.743049px;}
.ydb{bottom:136.621515px;}
.y139{bottom:137.884990px;}
.y18c{bottom:138.963290px;}
.y21{bottom:139.264499px;}
.y55{bottom:141.289461px;}
.yb8{bottom:141.304972px;}
.y126{bottom:141.476045px;}
.y1b0{bottom:144.183531px;}
.y88{bottom:144.539779px;}
.y51{bottom:146.339945px;}
.y162{bottom:146.881461px;}
.y14c{bottom:149.223236px;}
.y53{bottom:151.909397px;}
.yf5{bottom:152.999466px;}
.y1c3{bottom:155.341148px;}
.yda{bottom:155.877932px;}
.y138{bottom:157.141407px;}
.y18b{bottom:158.039171px;}
.yb7{bottom:160.380946px;}
.y1af{bottom:163.078876px;}
.y87{bottom:163.800928px;}
.y50{bottom:165.601094px;}
.y161{bottom:167.581889px;}
.y14b{bottom:168.479653px;}
.yf4{bottom:172.255883px;}
.y1c2{bottom:174.421853px;}
.yd9{bottom:175.139081px;}
.y137{bottom:176.583092px;}
.yb6{bottom:179.637270px;}
.y1ae{bottom:182.344756px;}
.y86{bottom:183.057252px;}
.y4f{bottom:184.857511px;}
.y14a{bottom:187.740802px;}
.y18a{bottom:188.819009px;}
.yf3{bottom:191.521763px;}
.y1c1{bottom:193.683002px;}
.yd8{bottom:194.219693px;}
.y18{bottom:196.933500px;}
.yb5{bottom:199.078955px;}
.y160{bottom:200.703409px;}
.y85{bottom:202.323225px;}
.y4e{bottom:204.123391px;}
.y149{bottom:206.997126px;}
.y136{bottom:207.177662px;}
.y189{bottom:207.899621px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yf2{bottom:210.597644px;}
.y1c0{bottom:212.939419px;}
.y1ad{bottom:213.124594px;}
.yd7{bottom:213.480842px;}
.yd5{bottom:213.661378px;}
.yb4{bottom:218.344835px;}
.y13e{bottom:218.520640px;}
.y84{bottom:221.579549px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y4d{bottom:223.384540px;}
.y135{bottom:226.263099px;}
.y188{bottom:227.160770px;}
.yf1{bottom:230.039329px;}
.y15f{bottom:232.191921px;}
.y1ac{bottom:232.200568px;}
.yd4{bottom:232.737259px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yb3{bottom:237.420716px;}
.y83{bottom:240.840698px;}
.y4c{bottom:242.640957px;}
.y1bf{bottom:243.719257px;}
.y134{bottom:245.519423px;}
.y187{bottom:246.417187px;}
.y15b{bottom:248.758962px;}
.yf0{bottom:249.300478px;}
.yd3{bottom:252.178944px;}
.yb2{bottom:256.677133px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y82{bottom:260.097115px;}
.y4b{bottom:261.716838px;}
.y1be{bottom:262.804601px;}
.y1ab{bottom:262.980406px;}
.y133{bottom:264.595397px;}
.y15a{bottom:268.015379px;}
.y125{bottom:268.200554px;}
.yef{bottom:268.556802px;}
.yd2{bottom:271.264288px;}
.y154{bottom:271.435361px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yb1{bottom:275.943013px;}
.y186{bottom:277.197025px;}
.y81{bottom:279.362995px;}
.y15e{bottom:279.538800px;}
.y4a{bottom:280.982811px;}
.y1aa{bottom:281.880482px;}
.y132{bottom:283.861277px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y159{bottom:287.281259px;}
.yee{bottom:287.642239px;}
.yd1{bottom:290.520705px;}
.y10e{bottom:295.204162px;}
.y185{bottom:296.097194px;}
.y80{bottom:298.438969px;}
.y124{bottom:298.624144px;}
.y49{bottom:300.424403px;}
.y131{bottom:303.122426px;}
.y158{bottom:306.357140px;}
.yb0{bottom:306.542408px;}
.yed{bottom:306.898656px;}
.yd0{bottom:309.777122px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1a9{bottom:312.660320px;}
.y10d{bottom:314.460579px;}
.y184{bottom:315.358343px;}
.y7f{bottom:317.700118px;}
.y48{bottom:319.680820px;}
.y148{bottom:322.564018px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yaf{bottom:325.618289px;}
.yec{bottom:326.155073px;}
.ycf{bottom:329.038271px;}
.y1a8{bottom:331.741025px;}
.y10c{bottom:333.716996px;}
.y130{bottom:333.902264px;}
.y7e{bottom:336.965998px;}
.y47{bottom:338.756701px;}
.y147{bottom:341.639992px;}
.yae{bottom:345.059974px;}
.yeb{bottom:345.420953px;}
.y183{bottom:345.962469px;}
.yce{bottom:348.118883px;}
.yf{bottom:348.133500px;}
.y1bd{bottom:351.002174px;}
.y10b{bottom:352.978145px;}
.y7d{bottom:356.398127px;}
.y46{bottom:358.022581px;}
.y1a7{bottom:362.340327px;}
.yad{bottom:364.325854px;}
.y13d{bottom:364.496834px;}
.yea{bottom:364.682102px;}
.y182{bottom:365.038350px;}
.ycd{bottom:367.560568px;}
.y10a{bottom:372.244025px;}
.y146{bottom:372.419830px;}
.y7c{bottom:375.478739px;}
.y45{bottom:377.283730px;}
.y1a6{bottom:381.596744px;}
.y1bc{bottom:381.782012px;}
.yac{bottom:383.401735px;}
.y181{bottom:384.479942px;}
.ye{bottom:386.785499px;}
.ycc{bottom:386.821717px;}
.y109{bottom:391.319906px;}
.y7b{bottom:394.739888px;}
.ye9{bottom:395.461940px;}
.y44{bottom:396.540147px;}
.y1a5{bottom:400.682181px;}
.yab{bottom:402.658152px;}
.ycb{bottom:406.078134px;}
.yd{bottom:408.044999px;}
.y1c9{bottom:408.956600px;}
.y108{bottom:410.576323px;}
.y7a{bottom:413.996305px;}
.y157{bottom:414.181573px;}
.ye8{bottom:414.537821px;}
.y180{bottom:415.084068px;}
.y43{bottom:415.796564px;}
.y123{bottom:417.060039px;}
.y1a4{bottom:419.938552px;}
.yaa{bottom:421.924032px;}
.yca{bottom:425.163524px;}
.y107{bottom:429.842250px;}
.y79{bottom:433.262232px;}
.y17f{bottom:434.159949px;}
.y42{bottom:435.057713px;}
.y1a3{bottom:439.199700px;}
.ya9{bottom:441.180449px;}
.yc9{bottom:444.419895px;}
.y156{bottom:444.600431px;}
.ye7{bottom:446.220154px;}
.y106{bottom:449.283888px;}
.y78{bottom:452.338113px;}
.y17e{bottom:453.416366px;}
.y41{bottom:454.323593px;}
.ya8{bottom:460.441598px;}
.yc8{bottom:463.676312px;}
.ye6{bottom:465.296035px;}
.y105{bottom:468.359769px;}
.y1a2{bottom:469.803780px;}
.y77{bottom:471.779751px;}
.y11e{bottom:471.960287px;}
.y40{bottom:473.580010px;}
.ya7{bottom:479.697969px;}
.yc7{bottom:483.117951px;}
.y17d{bottom:484.025224px;}
.ye5{bottom:484.561962px;}
.y104{bottom:487.616186px;}
.y1a1{bottom:488.879661px;}
.y76{bottom:491.036168px;}
.ya6{bottom:498.959117px;}
.yc6{bottom:502.203341px;}
.yc{bottom:502.864502px;}
.y17c{bottom:503.101105px;}
.ye4{bottom:503.823110px;}
.y3f{bottom:504.179358px;}
.y12f{bottom:506.882066px;}
.y1c8{bottom:508.321346px;}
.y75{bottom:510.302048px;}
.ya5{bottom:518.225044px;}
.y103{bottom:518.396024px;}
.y1a0{bottom:519.840035px;}
.yb{bottom:520.864502px;}
.yc5{bottom:521.459758px;}
.y145{bottom:526.143215px;}
.y11d{bottom:529.377976px;}
.y17b{bottom:533.880943px;}
.y3e{bottom:534.783438px;}
.ye3{bottom:535.495934px;}
.ya4{bottom:537.300925px;}
.y12e{bottom:537.481415px;}
.y19f{bottom:538.744936px;}
.ya{bottom:538.864499px;}
.y1c7{bottom:538.915916px;}
.yc4{bottom:540.720907px;}
.y74{bottom:540.901397px;}
.y144{bottom:545.399632px;}
.y11c{bottom:548.639124px;}
.y17a{bottom:552.961602px;}
.ye2{bottom:554.581325px;}
.ya3{bottom:556.557342px;}
.y9{bottom:556.864499px;}
.y1bb{bottom:558.001307px;}
.y73{bottom:559.977324px;}
.y143{bottom:564.660781px;}
.y3d{bottom:565.197519px;}
.y11b{bottom:567.905004px;}
.y19e{bottom:569.524774px;}
.y179{bottom:572.222750px;}
.ye1{bottom:573.837742px;}
.ya2{bottom:575.998980px;}
.y72{bottom:579.243204px;}
.y3c{bottom:584.458667px;}
.y11a{bottom:587.337180px;}
.y13c{bottom:587.517670px;}
.y19d{bottom:588.600655px;}
.y1ba{bottom:588.781145px;}
.ye0{bottom:593.098890px;}
.ya1{bottom:595.264860px;}
.y142{bottom:595.440619px;}
.y71{bottom:598.499621px;}
.y178{bottom:602.817321px;}
.y3b{bottom:603.724594px;}
.y119{bottom:606.422570px;}
.y19c{bottom:607.681314px;}
.ya0{bottom:614.340788px;}
.y70{bottom:617.760770px;}
.y177{bottom:621.902711px;}
.y3a{bottom:622.800475px;}
.ydf{bottom:624.781224px;}
.y118{bottom:625.678941px;}
.y9f{bottom:633.597159px;}
.y6f{bottom:637.017141px;}
.y122{bottom:637.202408px;}
.y19b{bottom:638.461152px;}
.y39{bottom:642.056892px;}
.yde{bottom:643.857105px;}
.y117{bottom:644.935358px;}
.y8{bottom:645.510000px;}
.y176{bottom:652.682549px;}
.y9e{bottom:652.863085px;}
.y6e{bottom:656.283067px;}
.y19a{bottom:657.537033px;}
.y38{bottom:661.322772px;}
.ydd{bottom:663.298743px;}
.y116{bottom:664.201238px;}
.y7{bottom:666.771000px;}
.y121{bottom:667.621220px;}
.y175{bottom:671.758476px;}
.y9d{bottom:672.124234px;}
.y6d{bottom:675.358948px;}
.y199{bottom:676.802959px;}
.y37{bottom:680.579189px;}
.y115{bottom:683.277166px;}
.y141{bottom:683.462387px;}
.y120{bottom:686.697148px;}
.y1b9{bottom:688.316871px;}
.y174{bottom:691.024356px;}
.y9c{bottom:691.380605px;}
.y6c{bottom:694.620097px;}
.ydc{bottom:694.800587px;}
.y36{bottom:699.840338px;}
.y114{bottom:702.718804px;}
.y11f{bottom:705.958296px;}
.yc3{bottom:706.138786px;}
.y1b8{bottom:707.402261px;}
.y198{bottom:707.582797px;}
.y173{bottom:710.280774px;}
.y9b{bottom:710.637022px;}
.y6b{bottom:714.058906px;}
.y153{bottom:714.241297px;}
.y35{bottom:719.097683px;}
.y113{bottom:721.978051px;}
.yc2{bottom:725.223249px;}
.yd6{bottom:725.398033px;}
.y6{bottom:726.298500px;}
.y197{bottom:726.477214px;}
.y9a{bottom:729.897196px;}
.y6a{bottom:733.317178px;}
.y34{bottom:738.363563px;}
.y172{bottom:740.879148px;}
.y112{bottom:741.243931px;}
.yc1{bottom:744.481521px;}
.y196{bottom:745.743141px;}
.y99{bottom:749.163123px;}
.y69{bottom:752.400713px;}
.y3{bottom:752.599495px;}
.y1b7{bottom:757.257052px;}
.y33{bottom:757.621882px;}
.y171{bottom:759.962636px;}
.y111{bottom:760.319858px;}
.yc0{bottom:763.739840px;}
.y195{bottom:765.001413px;}
.y98{bottom:768.239004px;}
.y68{bottom:771.658986px;}
.y1b6{bottom:776.340587px;}
.y32{bottom:776.697763px;}
.y140{bottom:779.578131px;}
.y12d{bottom:779.760569px;}
.ybf{bottom:782.998113px;}
.y97{bottom:787.497323px;}
.y170{bottom:790.560083px;}
.y67{bottom:790.917305px;}
.y110{bottom:791.099696px;}
.y1b5{bottom:795.598860px;}
.y194{bottom:795.781251px;}
.y31{bottom:795.963643px;}
.y12c{bottom:798.844057px;}
.ybe{bottom:802.081625px;}
.y102{bottom:806.938010px;}
.y16f{bottom:809.818402px;}
.y66{bottom:810.183185px;}
.y13f{bottom:810.357992px;}
.y193{bottom:814.857156px;}
.y96{bottom:818.277138px;}
.ybd{bottom:821.339921px;}
.y101{bottom:826.203913px;}
.y1b4{bottom:826.378698px;}
.y30{bottom:826.743504px;}
.y16e{bottom:829.076697px;}
.y65{bottom:829.441481px;}
.y1c6{bottom:834.123059px;}
.y12b{bottom:837.360649px;}
.ybc{bottom:840.780631px;}
.y100{bottom:845.279795px;}
.y192{bottom:845.462209px;}
.y64{bottom:848.699777px;}
.y95{bottom:848.882191px;}
.y12a{bottom:856.618945px;}
.y2f{bottom:857.340951px;}
.y16d{bottom:859.681728px;}
.ybb{bottom:860.038927px;}
.y155{bottom:860.221319px;}
.yff{bottom:864.538114px;}
.y1c5{bottom:864.720505px;}
.y63{bottom:867.958096px;}
.y15d{bottom:868.140487px;}
.y129{bottom:875.877241px;}
.y16c{bottom:878.757632px;}
.yba{bottom:879.122415px;}
.y94{bottom:879.297223px;}
.y2{bottom:879.369000px;}
.yfe{bottom:883.796409px;}
.y62{bottom:887.223976px;}
.y2e{bottom:888.660379px;}
.y1b3{bottom:895.317952px;}
.y16b{bottom:898.023535px;}
.y93{bottom:898.380735px;}
.y15c{bottom:898.563126px;}
.yfd{bottom:903.062289px;}
.y61{bottom:906.299880px;}
.y128{bottom:906.482271px;}
.y2d{bottom:907.743868px;}
.y1b2{bottom:914.219048px;}
.y191{bottom:914.401440px;}
.y16a{bottom:917.281831px;}
.y92{bottom:917.639030px;}
.yfc{bottom:922.320609px;}
.y60{bottom:925.558176px;}
.y2c{bottom:932.224431px;}
.y190{bottom:933.659736px;}
.y91{bottom:936.897326px;}
.y13b{bottom:937.079718px;}
.yfb{bottom:941.578904px;}
.y2b{bottom:944.816472px;}
.y5f{bottom:944.998886px;}
.y169{bottom:947.879255px;}
.y18f{bottom:952.918032px;}
.y90{bottom:956.163229px;}
.y5e{bottom:964.257182px;}
.y1b1{bottom:964.439574px;}
.y1{bottom:966.726000px;}
.y1c4{bottom:972.183935px;}
.yfa{bottom:972.358742px;}
.y8f{bottom:975.421525px;}
.y168{bottom:978.476701px;}
.y2a{bottom:981.005000px;}
.y5d{bottom:983.340671px;}
.y18e{bottom:983.523085px;}
.y8e{bottom:994.679821px;}
.y5c{bottom:1002.598978px;}
.yf9{bottom:1002.781370px;}
.y167{bottom:1009.978533px;}
.y8d{bottom:1013.938117px;}
.y29{bottom:1019.876207px;}
.y151{bottom:1021.682478px;}
.y5b{bottom:1021.857274px;}
.y166{bottom:1030.863231px;}
.y8c{bottom:1033.021617px;}
.yf8{bottom:1033.196413px;}
.y10f{bottom:1033.198621px;}
.y127{bottom:1041.123177px;}
.y165{bottom:1051.383123px;}
.y150{bottom:1052.097510px;}
.y8b{bottom:1052.279913px;}
.y5a{bottom:1052.462316px;}
.y28{bottom:1058.400444px;}
.y59{bottom:1071.720612px;}
.y25{bottom:1092.597703px;}
.y23{bottom:1118.156366px;}
.y22{bottom:1122.298348px;}
.h14{height:12.058976px;}
.h1d{height:12.242344px;}
.h18{height:13.497525px;}
.h12{height:13.677870px;}
.h1c{height:17.099910px;}
.ha{height:18.901103px;}
.h7{height:32.130000px;}
.h1a{height:34.094490px;}
.he{height:39.576270px;}
.h1e{height:40.647717px;}
.h13{height:45.097712px;}
.h6{height:45.900000px;}
.h11{height:45.934157px;}
.h17{height:46.785353px;}
.h10{height:46.815753px;}
.h16{height:46.988112px;}
.h3{height:48.195000px;}
.hd{height:51.857797px;}
.h2{height:55.080000px;}
.hf{height:55.814105px;}
.h1b{height:57.520823px;}
.h15{height:57.529243px;}
.h19{height:58.977673px;}
.h9{height:61.924473px;}
.hb{height:63.748463px;}
.hc{height:76.577614px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:2.701782px;}
.wb{width:2.883029px;}
.w15{width:3.060910px;}
.w16{width:6.121820px;}
.wa{width:6.661887px;}
.we{width:7.738566px;}
.w10{width:9.180034px;}
.wc{width:9.180057px;}
.w13{width:12.597238px;}
.w14{width:12.602752px;}
.w6{width:38.338660px;}
.w11{width:62.997184px;}
.w12{width:71.638432px;}
.wf{width:73.084776px;}
.w8{width:118.977518px;}
.wd{width:134.457399px;}
.w5{width:143.818355px;}
.w9{width:212.572684px;}
.w4{width:419.763599px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:78.842232px;}
.x9{left:90.541107px;}
.x5{left:100.441910px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x20{left:113.938613px;}
.xd{left:118.802012px;}
.xa{left:120.419806px;}
.x1a{left:125.099075px;}
.xc{left:128.702814px;}
.xb{left:140.401689px;}
.x17{left:144.179922px;}
.x18{left:169.557844px;}
.x21{left:176.759007px;}
.x19{left:182.701653px;}
.x4{left:203.484001px;}
.x22{left:248.397438px;}
.x23{left:260.994676px;}
.xf{left:273.055962px;}
.x24{left:276.476001px;}
.x10{left:311.394622px;}
.x11{left:313.914067px;}
.x1b{left:327.416802px;}
.x1c{left:333.000714px;}
.x12{left:341.992629px;}
.x16{left:440.642496px;}
.x8{left:450.717816px;}
.x3{left:454.959000px;}
.x6{left:458.638457px;}
.xe{left:463.683665px;}
.x1d{left:560.523745px;}
.x1e{left:694.981144px;}
.x1f{left:702.539532px;}
.x7{left:775.979940px;}
.x15{left:812.700121px;}
.x14{left:875.519028px;}
@media print{
.v2{vertical-align:-19.865069pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.861119pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.039290pt;}
.ls6{letter-spacing:0.046053pt;}
.ls8{letter-spacing:0.073101pt;}
.lsa{letter-spacing:0.162578pt;}
.ls1{letter-spacing:0.221365pt;}
.ls3{letter-spacing:0.298476pt;}
.ls2{letter-spacing:0.463823pt;}
.ls7{letter-spacing:0.721605pt;}
.ls9{letter-spacing:0.731665pt;}
.lsb{letter-spacing:4.531645pt;}
.ls4{letter-spacing:5.832116pt;}
.lsd{letter-spacing:34.002766pt;}
.lsc{letter-spacing:36.606924pt;}
.ls5{letter-spacing:50.063949pt;}
.lsf{letter-spacing:64.824826pt;}
.ws6{word-spacing:-55.341219pt;}
.ws5{word-spacing:-15.329518pt;}
.ws3{word-spacing:-12.507115pt;}
.ws7{word-spacing:-11.164022pt;}
.ws1{word-spacing:-9.664182pt;}
.ws4{word-spacing:-9.108552pt;}
.ws2{word-spacing:-7.884856pt;}
.ws0{word-spacing:0.000000pt;}
._54{margin-left:-7.471065pt;}
._55{margin-left:-6.087534pt;}
._38{margin-left:-4.864028pt;}
._16{margin-left:-3.486497pt;}
._6{margin-left:-1.967613pt;}
._1{margin-left:-0.996142pt;}
._2{width:0.996142pt;}
._35{width:1.887601pt;}
._5{width:2.822402pt;}
._a{width:3.787874pt;}
._8{width:4.679333pt;}
._7{width:5.589463pt;}
._9{width:7.194358pt;}
._13{width:8.909936pt;}
._c{width:10.182784pt;}
._b{width:11.953703pt;}
._f{width:12.869833pt;}
._12{width:14.192023pt;}
._29{width:16.245648pt;}
._10{width:17.155778pt;}
._23{width:18.649991pt;}
._28{width:19.867497pt;}
._2d{width:21.644416pt;}
._e{width:22.800582pt;}
._d{width:23.852065pt;}
._27{width:24.768195pt;}
._2e{width:25.869020pt;}
._3d{width:26.975844pt;}
._2f{width:27.947315pt;}
._1a{width:29.220163pt;}
._19{width:30.216305pt;}
._18{width:31.821201pt;}
._50{width:32.792672pt;}
._14{width:33.702802pt;}
._34{width:34.975650pt;}
._15{width:36.027133pt;}
._1d{width:36.967934pt;}
._45{width:38.074758pt;}
._3e{width:39.015559pt;}
._22{width:40.509772pt;}
._21{width:41.450573pt;}
._2c{width:42.391373pt;}
._11{width:43.418186pt;}
._4e{width:44.383657pt;}
._4a{width:45.324458pt;}
._26{width:46.707989pt;}
._37{width:47.759472pt;}
._33{width:49.419708pt;}
._32{width:50.415850pt;}
._2a{width:51.854722pt;}
._25{width:53.348935pt;}
._49{width:56.115996pt;}
._48{width:57.253491pt;}
._36{width:58.827715pt;}
._44{width:60.487952pt;}
._1b{width:61.539435pt;}
._1c{width:63.008977pt;}
._1e{width:64.023790pt;}
._30{width:65.524003pt;}
._20{width:66.796851pt;}
._1f{width:67.737652pt;}
._46{width:69.397888pt;}
._4c{width:71.500855pt;}
._3c{width:72.527667pt;}
._31{width:74.046551pt;}
._39{width:74.987351pt;}
._3{width:76.539099pt;}
._4f{width:79.912720pt;}
._41{width:83.952629pt;}
._42{width:84.893429pt;}
._51{width:88.047879pt;}
._2b{width:91.423693pt;}
._3a{width:93.059259pt;}
._3b{width:98.728734pt;}
._52{width:101.053065pt;}
._47{width:102.491937pt;}
._4b{width:103.986150pt;}
._3f{width:109.409589pt;}
._40{width:110.989814pt;}
._0{width:129.719817pt;}
._17{width:138.353047pt;}
._43{width:158.386568pt;}
._4{width:168.458670pt;}
._53{width:210.351972pt;}
._4d{width:307.254446pt;}
._24{width:1120.327631pt;}
.fs7{font-size:34.888744pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.303328pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:55.341219pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.477983pt;}
.fs9{font-size:60.154182pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:90.229963pt;}
.fs2{font-size:90.666667pt;}
.y152{bottom:-1.121419pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:1.116153pt;}
.y1cd{bottom:1.761942pt;}
.y1cb{bottom:2.081578pt;}
.y54{bottom:2.721287pt;}
.y24{bottom:3.681761pt;}
.y27{bottom:49.604819pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:66.561241pt;}
.y4{bottom:86.333337pt;}
.y164{bottom:94.081491pt;}
.y8a{bottom:94.398156pt;}
.y14e{bottom:98.561228pt;}
.y57{bottom:99.992090pt;}
.y1cc{bottom:101.428044pt;}
.yf7{bottom:101.761689pt;}
.y1ca{bottom:103.518108pt;}
.y13a{bottom:105.439209pt;}
.y18d{bottom:106.558092pt;}
.y14f{bottom:108.323004pt;}
.yb9{bottom:108.479193pt;}
.y89{bottom:111.519177pt;}
.y163{bottom:112.321395pt;}
.y52{bottom:112.963219pt;}
.y56{bottom:113.426280pt;}
.y14d{bottom:115.521855pt;}
.yf6{bottom:118.882710pt;}
.ydb{bottom:121.441347pt;}
.y139{bottom:122.564435pt;}
.y18c{bottom:123.522924pt;}
.y21{bottom:123.790666pt;}
.y55{bottom:125.590632pt;}
.yb8{bottom:125.604419pt;}
.y126{bottom:125.756485pt;}
.y1b0{bottom:128.163139pt;}
.y88{bottom:128.479804pt;}
.y51{bottom:130.079951pt;}
.y162{bottom:130.561299pt;}
.y14c{bottom:132.642876pt;}
.y53{bottom:135.030575pt;}
.yf5{bottom:135.999525pt;}
.y1c3{bottom:138.081020pt;}
.yda{bottom:138.558162pt;}
.y138{bottom:139.681251pt;}
.y18b{bottom:140.479263pt;}
.yb7{bottom:142.560841pt;}
.y1af{bottom:144.959001pt;}
.y87{bottom:145.600825pt;}
.y50{bottom:147.200972pt;}
.y161{bottom:148.961679pt;}
.y14b{bottom:149.759692pt;}
.yf4{bottom:153.116341pt;}
.y1c2{bottom:155.041647pt;}
.yd9{bottom:155.679183pt;}
.y137{bottom:156.962748pt;}
.yb6{bottom:159.677573pt;}
.y1ae{bottom:162.084227pt;}
.y86{bottom:162.717557pt;}
.y4f{bottom:164.317788pt;}
.y14a{bottom:166.880713pt;}
.y18a{bottom:167.839119pt;}
.yf3{bottom:170.241567pt;}
.y1c1{bottom:172.162668pt;}
.yd8{bottom:172.639727pt;}
.y18{bottom:175.052000pt;}
.yb5{bottom:176.959071pt;}
.y160{bottom:178.403030pt;}
.y85{bottom:179.842867pt;}
.y4e{bottom:181.443014pt;}
.y149{bottom:183.997445pt;}
.y136{bottom:184.157922pt;}
.y189{bottom:184.799663pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yf2{bottom:187.197906pt;}
.y1c0{bottom:189.279484pt;}
.y1ad{bottom:189.444083pt;}
.yd7{bottom:189.760748pt;}
.yd5{bottom:189.921225pt;}
.yb4{bottom:194.084298pt;}
.y13e{bottom:194.240569pt;}
.y84{bottom:196.959599pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y4d{bottom:198.564035pt;}
.y135{bottom:201.122755pt;}
.y188{bottom:201.920684pt;}
.yf1{bottom:204.479404pt;}
.y15f{bottom:206.392818pt;}
.y1ac{bottom:206.400505pt;}
.yd4{bottom:206.877564pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yb3{bottom:211.040636pt;}
.y83{bottom:214.080620pt;}
.y4c{bottom:215.680851pt;}
.y1bf{bottom:216.639340pt;}
.y134{bottom:218.239487pt;}
.y187{bottom:219.037500pt;}
.y15b{bottom:221.119077pt;}
.yf0{bottom:221.600425pt;}
.yd3{bottom:224.159061pt;}
.yb2{bottom:228.157452pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y82{bottom:231.197436pt;}
.y4b{bottom:232.637189pt;}
.y1be{bottom:233.604090pt;}
.y1ab{bottom:233.760361pt;}
.y133{bottom:235.195909pt;}
.y15a{bottom:238.235893pt;}
.y125{bottom:238.400492pt;}
.yef{bottom:238.717157pt;}
.yd2{bottom:241.123811pt;}
.y154{bottom:241.275877pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yb1{bottom:245.282678pt;}
.y186{bottom:246.397356pt;}
.y81{bottom:248.322662pt;}
.y15e{bottom:248.478933pt;}
.y4a{bottom:249.762499pt;}
.y1aa{bottom:250.560428pt;}
.y132{bottom:252.321135pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y159{bottom:255.361119pt;}
.yee{bottom:255.681990pt;}
.yd1{bottom:258.240627pt;}
.y10e{bottom:262.403699pt;}
.y185{bottom:263.197506pt;}
.y80{bottom:265.279084pt;}
.y124{bottom:265.443683pt;}
.y49{bottom:267.043914pt;}
.y131{bottom:269.442156pt;}
.y158{bottom:272.317458pt;}
.yb0{bottom:272.482140pt;}
.yed{bottom:272.798805pt;}
.yd0{bottom:275.357442pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1a9{bottom:277.920284pt;}
.y10d{bottom:279.520515pt;}
.y184{bottom:280.318527pt;}
.y7f{bottom:282.400105pt;}
.y48{bottom:284.160729pt;}
.y148{bottom:286.723571pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yaf{bottom:289.438479pt;}
.yec{bottom:289.915621pt;}
.ycf{bottom:292.478463pt;}
.y1a8{bottom:294.880911pt;}
.y10c{bottom:296.637330pt;}
.y130{bottom:296.802012pt;}
.y7e{bottom:299.525331pt;}
.y47{bottom:301.117068pt;}
.y147{bottom:303.679993pt;}
.yae{bottom:306.719977pt;}
.yeb{bottom:307.040847pt;}
.y183{bottom:307.522195pt;}
.yce{bottom:309.439007pt;}
.yf{bottom:309.452000pt;}
.y1bd{bottom:312.001932pt;}
.y10b{bottom:313.758351pt;}
.y7d{bottom:316.798335pt;}
.y46{bottom:318.242294pt;}
.y1a7{bottom:322.080291pt;}
.yad{bottom:323.845203pt;}
.y13d{bottom:323.997186pt;}
.yea{bottom:324.161868pt;}
.y182{bottom:324.478533pt;}
.ycd{bottom:326.720505pt;}
.y10a{bottom:330.883578pt;}
.y146{bottom:331.039849pt;}
.y7c{bottom:333.758879pt;}
.y45{bottom:335.363315pt;}
.y1a6{bottom:339.197106pt;}
.y1bc{bottom:339.361788pt;}
.yac{bottom:340.801542pt;}
.y181{bottom:341.759948pt;}
.ye{bottom:343.809333pt;}
.ycc{bottom:343.841526pt;}
.y109{bottom:347.839916pt;}
.y7b{bottom:350.879900pt;}
.ye9{bottom:351.521724pt;}
.y44{bottom:352.480131pt;}
.y1a5{bottom:356.161939pt;}
.yab{bottom:357.918357pt;}
.ycb{bottom:360.958341pt;}
.yd{bottom:362.706666pt;}
.y1c9{bottom:363.516978pt;}
.y108{bottom:364.956732pt;}
.y7a{bottom:367.996716pt;}
.y157{bottom:368.161398pt;}
.ye8{bottom:368.478063pt;}
.y180{bottom:368.963616pt;}
.y43{bottom:369.596946pt;}
.y123{bottom:370.720035pt;}
.y1a4{bottom:373.278713pt;}
.yaa{bottom:375.043584pt;}
.yca{bottom:377.923133pt;}
.y107{bottom:382.082000pt;}
.y79{bottom:385.121984pt;}
.y17f{bottom:385.919955pt;}
.y42{bottom:386.717967pt;}
.y1a3{bottom:390.399734pt;}
.ya9{bottom:392.160399pt;}
.yc9{bottom:395.039907pt;}
.y156{bottom:395.200383pt;}
.ye7{bottom:396.640137pt;}
.y106{bottom:399.363456pt;}
.y78{bottom:402.078322pt;}
.y17e{bottom:403.036770pt;}
.y41{bottom:403.843194pt;}
.ya8{bottom:409.281420pt;}
.yc8{bottom:412.156722pt;}
.ye6{bottom:413.596476pt;}
.y105{bottom:416.319795pt;}
.y1a2{bottom:417.603360pt;}
.y77{bottom:419.359779pt;}
.y11e{bottom:419.520255pt;}
.y40{bottom:420.960009pt;}
.ya7{bottom:426.398194pt;}
.yc7{bottom:429.438178pt;}
.y17d{bottom:430.244643pt;}
.ye5{bottom:430.721744pt;}
.y104{bottom:433.436610pt;}
.y1a1{bottom:434.559699pt;}
.y76{bottom:436.476594pt;}
.ya6{bottom:443.519215pt;}
.yc6{bottom:446.402970pt;}
.yc{bottom:446.990669pt;}
.y17c{bottom:447.200982pt;}
.ye4{bottom:447.842765pt;}
.y3f{bottom:448.159430pt;}
.y12f{bottom:450.561837pt;}
.y1c8{bottom:451.841196pt;}
.y75{bottom:453.601821pt;}
.ya5{bottom:460.644483pt;}
.y103{bottom:460.796466pt;}
.y1a0{bottom:462.080031pt;}
.yb{bottom:462.990669pt;}
.yc5{bottom:463.519785pt;}
.y145{bottom:467.682858pt;}
.y11d{bottom:470.558201pt;}
.y17b{bottom:474.560838pt;}
.y3e{bottom:475.363056pt;}
.ye3{bottom:475.996386pt;}
.ya4{bottom:477.600822pt;}
.y12e{bottom:477.761257pt;}
.y19f{bottom:478.884387pt;}
.ya{bottom:478.990666pt;}
.y1c7{bottom:479.036370pt;}
.yc4{bottom:480.640806pt;}
.y74{bottom:480.801241pt;}
.y144{bottom:484.799673pt;}
.y11c{bottom:487.679222pt;}
.y17a{bottom:491.521424pt;}
.ye2{bottom:492.961177pt;}
.ya3{bottom:494.717637pt;}
.y9{bottom:494.990666pt;}
.y1bb{bottom:496.001161pt;}
.y73{bottom:497.757621pt;}
.y143{bottom:501.920694pt;}
.y3d{bottom:502.397794pt;}
.y11b{bottom:504.804448pt;}
.y19e{bottom:506.244243pt;}
.y179{bottom:508.642445pt;}
.ye1{bottom:510.077993pt;}
.ya2{bottom:511.999094pt;}
.y72{bottom:514.882848pt;}
.y3c{bottom:519.518815pt;}
.y11a{bottom:522.077493pt;}
.y13c{bottom:522.237929pt;}
.y19d{bottom:523.200582pt;}
.y1ba{bottom:523.361017pt;}
.ye0{bottom:527.199014pt;}
.ya1{bottom:529.124320pt;}
.y142{bottom:529.280550pt;}
.y71{bottom:531.999663pt;}
.y178{bottom:535.837618pt;}
.y3b{bottom:536.644083pt;}
.y119{bottom:539.042285pt;}
.y19c{bottom:540.161168pt;}
.ya0{bottom:546.080700pt;}
.y70{bottom:549.120684pt;}
.y177{bottom:552.802410pt;}
.y3a{bottom:553.600422pt;}
.ydf{bottom:555.361088pt;}
.y118{bottom:556.159059pt;}
.y9f{bottom:563.197474pt;}
.y6f{bottom:566.237458pt;}
.y122{bottom:566.402141pt;}
.y19b{bottom:567.521024pt;}
.y39{bottom:570.717237pt;}
.yde{bottom:572.317426pt;}
.y117{bottom:573.275874pt;}
.y8{bottom:573.786667pt;}
.y176{bottom:580.162266pt;}
.y9e{bottom:580.322742pt;}
.y6e{bottom:583.362726pt;}
.y19a{bottom:584.477362pt;}
.y38{bottom:587.842464pt;}
.ydd{bottom:589.598883pt;}
.y116{bottom:590.401101pt;}
.y7{bottom:592.685334pt;}
.y121{bottom:593.441085pt;}
.y175{bottom:597.118646pt;}
.y9d{bottom:597.443763pt;}
.y6d{bottom:600.319065pt;}
.y199{bottom:601.602630pt;}
.y37{bottom:604.959279pt;}
.y115{bottom:607.357481pt;}
.y141{bottom:607.522122pt;}
.y120{bottom:610.397465pt;}
.y1b9{bottom:611.837218pt;}
.y174{bottom:614.243872pt;}
.y9c{bottom:614.560537pt;}
.y6c{bottom:617.440086pt;}
.ydc{bottom:617.600521pt;}
.y36{bottom:622.080300pt;}
.y114{bottom:624.638937pt;}
.y11f{bottom:627.518486pt;}
.yc3{bottom:627.678921pt;}
.y1b8{bottom:628.802010pt;}
.y198{bottom:628.962486pt;}
.y173{bottom:631.360688pt;}
.y9b{bottom:631.677353pt;}
.y6b{bottom:634.719027pt;}
.y153{bottom:634.881153pt;}
.y35{bottom:639.197940pt;}
.y113{bottom:641.758267pt;}
.yc2{bottom:644.642888pt;}
.yd6{bottom:644.798251pt;}
.y6{bottom:645.598667pt;}
.y197{bottom:645.757524pt;}
.y9a{bottom:648.797508pt;}
.y6a{bottom:651.837492pt;}
.y34{bottom:656.323167pt;}
.y172{bottom:658.559242pt;}
.y112{bottom:658.883494pt;}
.yc1{bottom:661.761352pt;}
.y196{bottom:662.882792pt;}
.y99{bottom:665.922776pt;}
.y69{bottom:668.800634pt;}
.y3{bottom:668.977329pt;}
.y1b7{bottom:673.117380pt;}
.y33{bottom:673.441673pt;}
.y171{bottom:675.522343pt;}
.y111{bottom:675.839874pt;}
.yc0{bottom:678.879858pt;}
.y195{bottom:680.001256pt;}
.y98{bottom:682.879114pt;}
.y68{bottom:685.919098pt;}
.y1b6{bottom:690.080522pt;}
.y32{bottom:690.398011pt;}
.y140{bottom:692.958339pt;}
.y12d{bottom:693.120506pt;}
.ybf{bottom:695.998323pt;}
.y97{bottom:699.997620pt;}
.y170{bottom:702.720073pt;}
.y67{bottom:703.037604pt;}
.y110{bottom:703.199730pt;}
.y1b5{bottom:707.198986pt;}
.y194{bottom:707.361112pt;}
.y31{bottom:707.523238pt;}
.y12c{bottom:710.083607pt;}
.ybe{bottom:712.961444pt;}
.y102{bottom:717.278231pt;}
.y16f{bottom:719.838579pt;}
.y66{bottom:720.162831pt;}
.y13f{bottom:720.318215pt;}
.y193{bottom:724.317472pt;}
.y96{bottom:727.357456pt;}
.ybd{bottom:730.079929pt;}
.y101{bottom:734.403479pt;}
.y1b4{bottom:734.558842pt;}
.y30{bottom:734.883115pt;}
.y16e{bottom:736.957064pt;}
.y65{bottom:737.281316pt;}
.y1c6{bottom:741.442719pt;}
.y12b{bottom:744.320577pt;}
.ybc{bottom:747.360561pt;}
.y100{bottom:751.359817pt;}
.y192{bottom:751.521964pt;}
.y64{bottom:754.399801pt;}
.y95{bottom:754.561948pt;}
.y12a{bottom:761.439062pt;}
.y2f{bottom:762.080845pt;}
.y16d{bottom:764.161536pt;}
.ybb{bottom:764.479046pt;}
.y155{bottom:764.641172pt;}
.yff{bottom:768.478323pt;}
.y1c5{bottom:768.640449pt;}
.y63{bottom:771.518307pt;}
.y15d{bottom:771.680433pt;}
.y129{bottom:778.557547pt;}
.y16c{bottom:781.117895pt;}
.yba{bottom:781.442147pt;}
.y94{bottom:781.597531pt;}
.y2{bottom:781.661334pt;}
.yfe{bottom:785.596808pt;}
.y62{bottom:788.643534pt;}
.y2e{bottom:789.920337pt;}
.y1b3{bottom:795.838179pt;}
.y16b{bottom:798.243143pt;}
.y93{bottom:798.560653pt;}
.y15c{bottom:798.722779pt;}
.yfd{bottom:802.722035pt;}
.y61{bottom:805.599893pt;}
.y128{bottom:805.762019pt;}
.y2d{bottom:806.883438pt;}
.y1b2{bottom:812.639154pt;}
.y191{bottom:812.801280pt;}
.y16a{bottom:815.361628pt;}
.y92{bottom:815.679138pt;}
.yfc{bottom:819.840541pt;}
.y60{bottom:822.718378pt;}
.y2c{bottom:828.643939pt;}
.y190{bottom:829.919765pt;}
.y91{bottom:832.797623pt;}
.y13b{bottom:832.959749pt;}
.yfb{bottom:836.959026pt;}
.y2b{bottom:839.836864pt;}
.y5f{bottom:839.999010pt;}
.y169{bottom:842.559337pt;}
.y18f{bottom:847.038250pt;}
.y90{bottom:849.922871pt;}
.y5e{bottom:857.117495pt;}
.y1b1{bottom:857.279621pt;}
.y1{bottom:859.312000pt;}
.y1c4{bottom:864.163498pt;}
.yfa{bottom:864.318882pt;}
.y8f{bottom:867.041356pt;}
.y168{bottom:869.757067pt;}
.y2a{bottom:872.004445pt;}
.y5d{bottom:874.080596pt;}
.y18e{bottom:874.242743pt;}
.y8e{bottom:884.159841pt;}
.y5c{bottom:891.199092pt;}
.yf9{bottom:891.361218pt;}
.y167{bottom:897.758696pt;}
.y8d{bottom:901.278326pt;}
.y29{bottom:906.556629pt;}
.y151{bottom:908.162203pt;}
.y5b{bottom:908.317577pt;}
.y166{bottom:916.322872pt;}
.y8c{bottom:918.241437pt;}
.yf8{bottom:918.396811pt;}
.y10f{bottom:918.398774pt;}
.y127{bottom:925.442824pt;}
.y165{bottom:934.562776pt;}
.y150{bottom:935.197786pt;}
.y8b{bottom:935.359923pt;}
.y5a{bottom:935.522059pt;}
.y28{bottom:940.800394pt;}
.y59{bottom:952.640544pt;}
.y25{bottom:971.197958pt;}
.y23{bottom:993.916770pt;}
.y22{bottom:997.598532pt;}
.h14{height:10.719089pt;}
.h1d{height:10.882083pt;}
.h18{height:11.997800pt;}
.h12{height:12.158107pt;}
.h1c{height:15.199920pt;}
.ha{height:16.800980pt;}
.h7{height:28.560000pt;}
.h1a{height:30.306214pt;}
.he{height:35.178907pt;}
.h1e{height:36.131304pt;}
.h13{height:40.086855pt;}
.h6{height:40.800000pt;}
.h11{height:40.830362pt;}
.h17{height:41.586980pt;}
.h10{height:41.614002pt;}
.h16{height:41.767211pt;}
.h3{height:42.840000pt;}
.hd{height:46.095819pt;}
.h2{height:48.960000pt;}
.hf{height:49.612538pt;}
.h1b{height:51.129621pt;}
.h15{height:51.137105pt;}
.h19{height:52.424598pt;}
.h9{height:55.043976pt;}
.hb{height:56.665301pt;}
.hc{height:68.068991pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:2.401584pt;}
.wb{width:2.562692pt;}
.w15{width:2.720809pt;}
.w16{width:5.441618pt;}
.wa{width:5.921677pt;}
.we{width:6.878725pt;}
.w10{width:8.160030pt;}
.wc{width:8.160051pt;}
.w13{width:11.197545pt;}
.w14{width:11.202446pt;}
.w6{width:34.078809pt;}
.w11{width:55.997497pt;}
.w12{width:63.678606pt;}
.wf{width:64.964245pt;}
.w8{width:105.757794pt;}
.wd{width:119.517688pt;}
.w5{width:127.838538pt;}
.w9{width:188.953497pt;}
.w4{width:373.123199pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:70.081984pt;}
.x9{left:80.480984pt;}
.x5{left:89.281697pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x20{left:101.278767pt;}
.xd{left:105.601788pt;}
.xa{left:107.039828pt;}
.x1a{left:111.199177pt;}
.xc{left:114.402501pt;}
.xb{left:124.801501pt;}
.x17{left:128.159931pt;}
.x18{left:150.718084pt;}
.x21{left:157.119117pt;}
.x19{left:162.401469pt;}
.x4{left:180.874667pt;}
.x22{left:220.797723pt;}
.x23{left:231.995268pt;}
.xf{left:242.716411pt;}
.x24{left:245.756445pt;}
.x10{left:276.795220pt;}
.x11{left:279.034726pt;}
.x1b{left:291.037157pt;}
.x1c{left:296.000634pt;}
.x12{left:303.993448pt;}
.x16{left:391.682219pt;}
.x8{left:400.638058pt;}
.x3{left:404.408000pt;}
.x6{left:407.678629pt;}
.xe{left:412.163258pt;}
.x1d{left:498.243329pt;}
.x1e{left:617.761017pt;}
.x1f{left:624.479584pt;}
.x7{left:689.759947pt;}
.x15{left:722.400108pt;}
.x14{left:778.239136pt;}
}




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