
    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_f047c692946db96b67e9c5ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.041000;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_49c9b6fb56c4eebd1d0ca29c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.044000;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_32af77cb4f76e3fef179aab3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_a93594ee0402791b1da6a144.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981000;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_c660bac3c09864dcf08b1087.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989000;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_755c9e357bf8dac38d407388.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_61c88837ac38f528dba0cd07.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_98d52f6c0e0ccec58baa341d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.795000;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_356564b3c10356639c1fe7dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.044000;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_d3614dcf7c9b5c9dab671be3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.080000;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_d121344ecba5bafcf1220710.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_c6b05b05d06ea6d6f440d20d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000090px;}
.ls3{letter-spacing:0.000141px;}
.ls2{letter-spacing:0.000180px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-49.500001px;}
.ws0{word-spacing:-16.980000px;}
.ws5{word-spacing:-15.720000px;}
.ws2{word-spacing:-13.584000px;}
.ws3{word-spacing:-12.576000px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-4.170462px;}
._1{margin-left:-2.619325px;}
._0{margin-left:-1.292327px;}
._2{width:1.346651px;}
._28{width:2.607977px;}
._3{width:4.442701px;}
._26{width:5.454981px;}
._25{width:8.079136px;}
._12{width:9.123067px;}
._22{width:12.588028px;}
._15{width:13.770847px;}
._14{width:17.027871px;}
._5{width:18.310842px;}
._4{width:22.463815px;}
._21{width:23.580002px;}
._10{width:26.247882px;}
._1f{width:27.548246px;}
._29{width:31.398343px;}
._19{width:35.767124px;}
._23{width:44.183960px;}
._1d{width:45.188735px;}
._18{width:48.907720px;}
._27{width:50.160964px;}
._b{width:53.054522px;}
._2b{width:58.180081px;}
._f{width:62.390724px;}
._1a{width:66.901337px;}
._24{width:69.360001px;}
._d{width:75.776059px;}
._20{width:81.000974px;}
._a{width:85.403228px;}
._17{width:89.418424px;}
._1b{width:94.496715px;}
._8{width:98.444326px;}
._c{width:103.353165px;}
._7{width:107.855989px;}
._9{width:116.866304px;}
._e{width:121.708216px;}
._13{width:135.083975px;}
._1e{width:156.896593px;}
._6{width:188.935640px;}
._11{width:215.917599px;}
._1c{width:246.527871px;}
._2a{width:1709.993955px;}
.fc5{color:transparent;}
.fc3{color:rgb(3,72,96);}
.fc2{color:rgb(68,114,196);}
.fc4{color:rgb(9,56,77);}
.fc1{color:rgb(129,180,226);}
.fc7{color:rgb(111,164,219);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.000002px;}
.fs5{font-size:41.999999px;}
.fs3{font-size:48.000002px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.999999px;}
.fs7{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y56{bottom:2.447181px;}
.y49{bottom:2.447184px;}
.y31{bottom:2.447190px;}
.y2c{bottom:2.447193px;}
.y46{bottom:2.447196px;}
.y3b{bottom:2.447199px;}
.y39{bottom:2.447202px;}
.y41{bottom:2.447364px;}
.y43{bottom:2.447376px;}
.y34{bottom:2.447379px;}
.y4e{bottom:2.447385px;}
.y2a{bottom:2.635347px;}
.y9c{bottom:3.011563px;}
.yb2{bottom:3.011568px;}
.yef{bottom:3.011919px;}
.y6d{bottom:3.011920px;}
.yb4{bottom:3.011925px;}
.y71{bottom:3.011926px;}
.yed{bottom:3.011928px;}
.y9e{bottom:3.011929px;}
.yd8{bottom:3.011931px;}
.y7c{bottom:3.011934px;}
.ybb{bottom:3.011940px;}
.y68{bottom:3.012105px;}
.y79{bottom:3.012113px;}
.y77{bottom:3.012123px;}
.yd4{bottom:3.012291px;}
.ye3{bottom:3.012294px;}
.ybd{bottom:3.012296px;}
.y93{bottom:3.012300px;}
.ya5{bottom:3.012304px;}
.ya9{bottom:3.012306px;}
.yfa{bottom:3.012666px;}
.y28{bottom:3.765003px;}
.yfe{bottom:12.907368px;}
.y23{bottom:12.907459px;}
.y4{bottom:12.907506px;}
.y63{bottom:12.907734px;}
.y54{bottom:14.332380px;}
.y45{bottom:14.332386px;}
.y4d{bottom:14.332395px;}
.y33{bottom:14.332569px;}
.y38{bottom:14.332572px;}
.y30{bottom:14.332575px;}
.yb1{bottom:17.639493px;}
.y9b{bottom:17.639503px;}
.y70{bottom:17.639851px;}
.y7b{bottom:17.639859px;}
.yd2{bottom:17.639860px;}
.yc0{bottom:17.639869px;}
.yd7{bottom:17.639871px;}
.y6c{bottom:17.640040px;}
.y76{bottom:17.640048px;}
.ye2{bottom:17.640219px;}
.yc7{bottom:17.640220px;}
.y67{bottom:17.640225px;}
.yec{bottom:17.640228px;}
.ya4{bottom:17.640229px;}
.ya8{bottom:17.640231px;}
.y2f{bottom:26.217585px;}
.y53{bottom:26.217750px;}
.y40{bottom:26.217759px;}
.y37{bottom:26.217762px;}
.y4c{bottom:26.217765px;}
.y17{bottom:26.267933px;}
.y12{bottom:26.267978px;}
.y14{bottom:26.268025px;}
.y1f{bottom:30.351045px;}
.yfc{bottom:31.641600px;}
.yc9{bottom:31.641960px;}
.y9a{bottom:32.267788px;}
.yb0{bottom:32.267793px;}
.ya3{bottom:32.267794px;}
.y6f{bottom:32.267971px;}
.y75{bottom:32.267973px;}
.yd1{bottom:32.268145px;}
.yce{bottom:32.268150px;}
.ya7{bottom:32.268156px;}
.ye1{bottom:32.268159px;}
.y6b{bottom:32.268160px;}
.y92{bottom:32.268165px;}
.yf9{bottom:32.268516px;}
.yc6{bottom:32.268520px;}
.y2e{bottom:38.102955px;}
.y3f{bottom:38.103129px;}
.y15c{bottom:40.334736px;}
.y22{bottom:40.334919px;}
.y3{bottom:40.335000px;}
.y62{bottom:40.335102px;}
.yfd{bottom:40.335468px;}
.yaf{bottom:46.895718px;}
.ybf{bottom:46.895719px;}
.y99{bottom:46.895728px;}
.ycd{bottom:46.896075px;}
.y6a{bottom:46.896085px;}
.y91{bottom:46.896090px;}
.y74{bottom:46.896093px;}
.ya2{bottom:46.896094px;}
.ye0{bottom:46.896444px;}
.yc5{bottom:46.896445px;}
.yf8{bottom:46.896456px;}
.y3e{bottom:49.988319px;}
.y1e{bottom:53.583765px;}
.y5f{bottom:53.583855px;}
.yae{bottom:61.523643px;}
.y98{bottom:61.523653px;}
.y90{bottom:61.524015px;}
.yeb{bottom:61.524018px;}
.ya1{bottom:61.524019px;}
.y73{bottom:61.524198px;}
.yf7{bottom:61.524381px;}
.ydf{bottom:61.524384px;}
.yc4{bottom:61.524385px;}
.y3d{bottom:61.873524px;}
.yc2{bottom:63.479735px;}
.y133{bottom:66.829755px;}
.y197{bottom:66.871119px;}
.y15b{bottom:67.761738px;}
.y21{bottom:67.762470px;}
.y2{bottom:67.762500px;}
.y61{bottom:67.762653px;}
.y184{bottom:74.955582px;}
.y97{bottom:76.151578px;}
.yad{bottom:76.151583px;}
.yea{bottom:76.151943px;}
.ya0{bottom:76.151944px;}
.yba{bottom:76.151955px;}
.yf6{bottom:76.152306px;}
.yde{bottom:76.152309px;}
.yc3{bottom:76.152310px;}
.y8f{bottom:76.152315px;}
.y1d{bottom:76.977750px;}
.y11b{bottom:84.626490px;}
.yac{bottom:90.779508px;}
.y96{bottom:90.779698px;}
.yb9{bottom:90.779880px;}
.ye9{bottom:90.779883px;}
.ydd{bottom:90.780234px;}
.y8e{bottom:90.780240px;}
.yf5{bottom:90.780246px;}
.yc8{bottom:92.735955px;}
.y196{bottom:94.297383px;}
.yc1{bottom:100.049920px;}
.y183{bottom:102.383312px;}
.y1b3{bottom:103.534680px;}
.y1a5{bottom:105.200216px;}
.y95{bottom:105.407803px;}
.yb8{bottom:105.407805px;}
.ye8{bottom:105.407808px;}
.yf4{bottom:105.408171px;}
.ydc{bottom:105.408174px;}
.y8d{bottom:105.408180px;}
.y15a{bottom:114.632340px;}
.y132{bottom:117.999675px;}
.ye7{bottom:120.035733px;}
.yb7{bottom:120.035745px;}
.ydb{bottom:120.036099px;}
.y8c{bottom:120.036465px;}
.yf3{bottom:120.036471px;}
.y195{bottom:121.725120px;}
.y182{bottom:129.811048px;}
.y11a{bottom:130.054951px;}
.y1b2{bottom:130.962419px;}
.y1a4{bottom:132.626486px;}
.y8b{bottom:134.664030px;}
.yf2{bottom:134.664396px;}
.y159{bottom:142.060080px;}
.y153{bottom:144.044938px;}
.y8a{bottom:149.291970px;}
.ybe{bottom:152.373041px;}
.y181{bottom:157.238785px;}
.y119{bottom:157.481960px;}
.y1b1{bottom:158.390156px;}
.y1a3{bottom:160.055685px;}
.y89{bottom:163.920075px;}
.y158{bottom:168.197625px;}
.y131{bottom:169.169595px;}
.y194{bottom:170.152855px;}
.y152{bottom:171.472666px;}
.y88{bottom:178.548195px;}
.y180{bottom:184.666518px;}
.y118{bottom:184.909688px;}
.y1b0{bottom:185.817894px;}
.ybc{bottom:188.942869px;}
.y87{bottom:193.176120px;}
.y157{bottom:194.173110px;}
.y193{bottom:197.580588px;}
.y151{bottom:198.900404px;}
.y86{bottom:207.804045px;}
.y1a2{bottom:208.481963px;}
.y17f{bottom:212.094255px;}
.y117{bottom:212.336695px;}
.y1af{bottom:213.245626px;}
.y130{bottom:220.340250px;}
.y85{bottom:222.432165px;}
.y192{bottom:225.008325px;}
.y150{bottom:226.327403px;}
.y1a1{bottom:235.911169px;}
.y84{bottom:237.060270px;}
.y116{bottom:239.764428px;}
.y1ae{bottom:240.671895px;}
.yb6{bottom:241.265985px;}
.y83{bottom:251.688210px;}
.y14f{bottom:253.754410px;}
.y175{bottom:253.754415px;}
.y17e{bottom:262.771995px;}
.y1a0{bottom:263.337422px;}
.y1c{bottom:263.784754px;}
.y82{bottom:266.316135px;}
.y115{bottom:267.192165px;}
.y12f{bottom:271.510905px;}
.y191{bottom:272.145869px;}
.y81{bottom:280.944240px;}
.y174{bottom:281.182142px;}
.y14e{bottom:281.182878px;}
.y1ad{bottom:289.099623px;}
.y19f{bottom:290.765159px;}
.y1b{bottom:291.212303px;}
.y80{bottom:295.572360px;}
.y190{bottom:296.829952px;}
.yb5{bottom:307.092040px;}
.y173{bottom:308.609878px;}
.y14d{bottom:308.609880px;}
.y7f{bottom:310.200285px;}
.y114{bottom:312.619527px;}
.y17d{bottom:313.448265px;}
.y1ac{bottom:316.527360px;}
.y19e{bottom:318.192896px;}
.y1a{bottom:318.639765px;}
.y18f{bottom:321.514035px;}
.y12e{bottom:322.680825px;}
.y7e{bottom:324.828030px;}
.y172{bottom:336.037616px;}
.y14c{bottom:336.037627px;}
.y113{bottom:340.046895px;}
.y19{bottom:343.485750px;}
.y19d{bottom:345.620634px;}
.y18{bottom:356.226739px;}
.y17c{bottom:361.875990px;}
.y14b{bottom:363.464632px;}
.y171{bottom:363.465348px;}
.y1ab{bottom:364.954853px;}
.y112{bottom:367.474259px;}
.y18e{bottom:368.490255px;}
.y19c{bottom:373.048367px;}
.y12d{bottom:373.850760px;}
.yfb{bottom:381.805200px;}
.yab{bottom:388.671387px;}
.y170{bottom:390.893085px;}
.y14a{bottom:390.893100px;}
.y111{bottom:394.902360px;}
.yf1{bottom:397.450194px;}
.y19b{bottom:400.474635px;}
.y17b{bottom:409.012077px;}
.y16{bottom:409.014771px;}
.y16f{bottom:418.320086px;}
.y149{bottom:418.320088px;}
.y110{bottom:422.329365px;}
.y12c{bottom:425.020680px;}
.yb3{bottom:425.240850px;}
.yaa{bottom:432.555175px;}
.y17a{bottom:433.697623px;}
.y16e{bottom:445.747080px;}
.y148{bottom:445.747095px;}
.y19a{bottom:447.611925px;}
.y5e{bottom:456.662280px;}
.y15{bottom:461.802709px;}
.yf0{bottom:463.276615px;}
.y5d{bottom:467.225286px;}
.y10f{bottom:467.757105px;}
.y5c{bottom:473.167962px;}
.y16d{bottom:473.174816px;}
.y147{bottom:473.174825px;}
.y12b{bottom:476.191335px;}
.y179{bottom:480.672355px;}
.y9f{bottom:492.191890px;}
.y5b{bottom:495.120849px;}
.y146{bottom:500.602553px;}
.y16c{bottom:500.602564px;}
.y5a{bottom:501.063354px;}
.y12a{bottom:506.361990px;}
.y10e{bottom:513.184110px;}
.ya6{bottom:514.133784px;}
.y13{bottom:514.590725px;}
.y59{bottom:523.016229px;}
.y16b{bottom:528.029558px;}
.y145{bottom:528.030295px;}
.y9d{bottom:528.762085px;}
.y129{bottom:536.531910px;}
.y58{bottom:539.026617px;}
.y10d{bottom:540.612200px;}
.ye6{bottom:544.855587px;}
.y57{bottom:555.036801px;}
.y144{bottom:555.457293px;}
.y16a{bottom:555.458025px;}
.y128{bottom:566.702565px;}
.y11{bottom:567.378756px;}
.y10c{bottom:568.039568px;}
.y1aa{bottom:573.080100px;}
.y7d{bottom:581.084835px;}
.y143{bottom:582.885030px;}
.y169{bottom:582.885769px;}
.y55{bottom:582.932379px;}
.y10b{bottom:595.466945px;}
.yee{bottom:596.053716px;}
.ye5{bottom:603.367309px;}
.y168{bottom:610.312759px;}
.y142{bottom:610.312770px;}
.y52{bottom:610.827765px;}
.y127{bottom:617.872484px;}
.y1a9{bottom:621.507828px;}
.y51{bottom:622.712946px;}
.y10a{bottom:622.894308px;}
.y141{bottom:637.739753px;}
.y167{bottom:637.739759px;}
.y10{bottom:640.783495px;}
.y126{bottom:648.043140px;}
.y1a8{bottom:648.935565px;}
.y109{bottom:650.322045px;}
.y50{bottom:662.493711px;}
.y140{bottom:665.167495px;}
.y166{bottom:665.167496px;}
.yf{bottom:665.468265px;}
.y4f{bottom:668.436402px;}
.yda{bottom:677.632326px;}
.y178{bottom:688.955098px;}
.y108{bottom:689.349510px;}
.y4b{bottom:690.389280px;}
.y94{bottom:690.795406px;}
.y125{bottom:691.522965px;}
.y13f{bottom:692.595228px;}
.y165{bottom:692.595234px;}
.y1a7{bottom:697.363305px;}
.ye{bottom:699.153000px;}
.y4a{bottom:708.217167px;}
.y13e{bottom:720.022230px;}
.y164{bottom:720.022233px;}
.ye4{bottom:721.516479px;}
.y156{bottom:729.080100px;}
.y7a{bottom:734.679201px;}
.y107{bottom:734.777610px;}
.y177{bottom:736.091175px;}
.yd9{bottom:736.144780px;}
.y124{bottom:736.949970px;}
.y78{bottom:741.992797px;}
.y48{bottom:742.055241px;}
.y1a6{bottom:744.499147px;}
.y18d{bottom:745.522964px;}
.y163{bottom:747.449235px;}
.y13d{bottom:747.449963px;}
.y47{bottom:747.997932px;}
.yd{bottom:754.780513px;}
.y155{bottom:755.216175px;}
.y176{bottom:762.067375px;}
.y44{bottom:769.950804px;}
.y18c{bottom:772.950712px;}
.y162{bottom:774.876975px;}
.y13c{bottom:774.877705px;}
.y42{bottom:775.893309px;}
.y106{bottom:780.204610px;}
.y154{bottom:781.192375px;}
.y123{bottom:782.376973px;}
.y3c{bottom:797.846196px;}
.y18b{bottom:800.376986px;}
.y13b{bottom:802.304703px;}
.y161{bottom:802.305434px;}
.y105{bottom:807.632343px;}
.y122{bottom:809.805445px;}
.yc{bottom:813.149235px;}
.yd6{bottom:817.717524px;}
.y3a{bottom:821.616756px;}
.y18a{bottom:827.804711px;}
.y160{bottom:829.732433px;}
.y13a{bottom:829.732440px;}
.yd5{bottom:832.345465px;}
.y104{bottom:835.059345px;}
.y121{bottom:837.232443px;}
.yb{bottom:846.834015px;}
.y189{bottom:855.232441px;}
.y15f{bottom:857.160175px;}
.y139{bottom:857.160176px;}
.y199{bottom:861.660178px;}
.y120{bottom:864.660180px;}
.yd0{bottom:870.034429px;}
.y36{bottom:873.282708px;}
.yd3{bottom:877.348389px;}
.y103{bottom:880.487447px;}
.ya{bottom:880.518746px;}
.y188{bottom:882.660169px;}
.y15e{bottom:884.587908px;}
.y138{bottom:884.587914px;}
.y35{bottom:885.167907px;}
.ycf{bottom:891.976690px;}
.y102{bottom:907.914820px;}
.y11f{bottom:910.087178px;}
.y187{bottom:910.087907px;}
.y198{bottom:910.087908px;}
.y15d{bottom:912.014910px;}
.y137{bottom:912.014913px;}
.y32{bottom:913.063476px;}
.y72{bottom:918.653862px;}
.y69{bottom:925.968020px;}
.ycc{bottom:929.671515px;}
.y6e{bottom:933.281984px;}
.y101{bottom:935.342187px;}
.y11e{bottom:937.514906px;}
.y186{bottom:937.515644px;}
.y136{bottom:939.441915px;}
.y66{bottom:940.595955px;}
.y2d{bottom:940.959045px;}
.y2b{bottom:958.786932px;}
.ycb{bottom:958.927735px;}
.y100{bottom:962.769555px;}
.y185{bottom:964.941914px;}
.y11d{bottom:964.942648px;}
.y135{bottom:990.119646px;}
.y11c{bottom:992.369646px;}
.y27{bottom:992.624999px;}
.y29{bottom:995.367918px;}
.y65{bottom:1000.060470px;}
.yff{bottom:1001.797384px;}
.y9{bottom:1003.510491px;}
.yca{bottom:1003.936524px;}
.y134{bottom:1017.547383px;}
.y64{bottom:1019.797383px;}
.y60{bottom:1034.317383px;}
.y8{bottom:1037.195260px;}
.y26{bottom:1039.523937px;}
.y7{bottom:1061.880006px;}
.y25{bottom:1077.564751px;}
.y6{bottom:1086.564751px;}
.y5{bottom:1111.249497px;}
.y24{bottom:1111.249566px;}
.y1{bottom:1124.317497px;}
.y20{bottom:1124.317566px;}
.h24{height:14.627930px;}
.h20{height:14.628113px;}
.h2a{height:14.628296px;}
.h11{height:14.885193px;}
.h18{height:14.885376px;}
.hf{height:15.799347px;}
.he{height:21.285004px;}
.h19{height:26.770386px;}
.h15{height:26.770569px;}
.h21{height:29.255859px;}
.h1c{height:29.256225px;}
.h12{height:30.693001px;}
.h14{height:32.838001px;}
.h10{height:33.053999px;}
.h16{height:38.655762px;}
.ha{height:40.416001px;}
.h26{height:42.288001px;}
.h4{height:42.498000px;}
.h1e{height:43.883971px;}
.h27{height:43.884156px;}
.h32{height:44.519999px;}
.h3{height:45.468000px;}
.h7{height:47.219999px;}
.h35{height:47.574000px;}
.h2{height:50.519999px;}
.h13{height:50.540955px;}
.h9{height:51.662934px;}
.h6{height:51.662979px;}
.h8{height:51.663026px;}
.h33{height:52.859999px;}
.h1b{height:55.572001px;}
.hd{height:56.664000px;}
.h34{height:58.146001px;}
.h1d{height:58.512086px;}
.h31{height:58.724850px;}
.h2c{height:58.725225px;}
.h36{height:58.725585px;}
.h2d{height:73.140015px;}
.h1f{height:73.140198px;}
.h17{height:74.311524px;}
.h25{height:87.767945px;}
.h2b{height:87.768310px;}
.hb{height:88.593750px;}
.h28{height:102.395508px;}
.h23{height:117.023804px;}
.h5{height:122.772005px;}
.h2f{height:131.651733px;}
.h2e{height:131.652099px;}
.hc{height:138.682434px;}
.h1{height:138.682503px;}
.h29{height:146.280030px;}
.h30{height:146.280396px;}
.h1a{height:228.682617px;}
.h22{height:336.444030px;}
.h0{height:1263.000000px;}
.wa{width:64.125000px;}
.we{width:72.000000px;}
.wd{width:73.124954px;}
.wc{width:74.250000px;}
.w8{width:85.500023px;}
.wb{width:93.375000px;}
.wf{width:96.749954px;}
.w9{width:114.750000px;}
.w5{width:183.375023px;}
.w3{width:274.500030px;}
.w4{width:437.624910px;}
.w7{width:536.624910px;}
.w6{width:537.749910px;}
.w2{width:713.249910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xb{left:6.750000px;}
.x10{left:7.875000px;}
.x12{left:9.000000px;}
.x1f{left:11.041766px;}
.x2a{left:12.539752px;}
.x1e{left:16.340747px;}
.x24{left:20.162530px;}
.x29{left:21.255283px;}
.x26{left:23.148425px;}
.x18{left:25.319933px;}
.x1d{left:31.500000px;}
.x2d{left:32.875050px;}
.x28{left:35.437500px;}
.x23{left:36.562500px;}
.x1b{left:38.176512px;}
.x17{left:42.187500px;}
.x21{left:46.125000px;}
.x2c{left:47.812500px;}
.x1a{left:56.812500px;}
.xf{left:78.299996px;}
.x1{left:85.049996px;}
.xa{left:86.174995px;}
.x8{left:88.834590px;}
.xe{left:94.049996px;}
.x39{left:95.541901px;}
.x3b{left:99.441447px;}
.x16{left:105.299995px;}
.x32{left:116.549996px;}
.x2f{left:121.049996px;}
.x30{left:148.049996px;}
.x31{left:175.049996px;}
.x19{left:191.925018px;}
.x3a{left:209.266700px;}
.x37{left:230.742457px;}
.x14{left:259.424996px;}
.x11{left:261.675015px;}
.x13{left:262.800015px;}
.x6{left:291.697454px;}
.x1c{left:307.800015px;}
.x36{left:319.279012px;}
.x7{left:342.069498px;}
.xc{left:361.800015px;}
.x20{left:373.050015px;}
.x3c{left:414.954132px;}
.x15{left:439.283651px;}
.xd{left:440.680934px;}
.x2e{left:442.649651px;}
.x2{left:446.456696px;}
.x3{left:450.956696px;}
.x22{left:467.550015px;}
.x5{left:509.524736px;}
.x25{left:542.925015px;}
.x35{left:549.956696px;}
.x27{left:617.174970px;}
.x34{left:655.706696px;}
.x33{left:669.206662px;}
.x9{left:677.627966px;}
.x2b{left:690.299970px;}
.x38{left:775.519162px;}
.x4{left:807.863384px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000080pt;}
.ls3{letter-spacing:0.000125pt;}
.ls2{letter-spacing:0.000160pt;}
.ws4{word-spacing:-44.000001pt;}
.ws0{word-spacing:-15.093333pt;}
.ws5{word-spacing:-13.973333pt;}
.ws2{word-spacing:-12.074667pt;}
.ws3{word-spacing:-11.178667pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-3.707077pt;}
._1{margin-left:-2.328289pt;}
._0{margin-left:-1.148735pt;}
._2{width:1.197023pt;}
._28{width:2.318202pt;}
._3{width:3.949067pt;}
._26{width:4.848872pt;}
._25{width:7.181454pt;}
._12{width:8.109393pt;}
._22{width:11.189359pt;}
._15{width:12.240753pt;}
._14{width:15.135885pt;}
._5{width:16.276304pt;}
._4{width:19.967835pt;}
._21{width:20.960002pt;}
._10{width:23.331450pt;}
._1f{width:24.487330pt;}
._29{width:27.909638pt;}
._19{width:31.792999pt;}
._23{width:39.274632pt;}
._1d{width:40.167764pt;}
._18{width:43.473529pt;}
._27{width:44.587523pt;}
._b{width:47.159575pt;}
._2b{width:51.715627pt;}
._f{width:55.458422pt;}
._1a{width:59.467855pt;}
._24{width:61.653334pt;}
._d{width:67.356497pt;}
._20{width:72.000866pt;}
._a{width:75.913981pt;}
._17{width:79.483044pt;}
._1b{width:83.997080pt;}
._8{width:87.506067pt;}
._c{width:91.869480pt;}
._7{width:95.871991pt;}
._9{width:103.881159pt;}
._e{width:108.185081pt;}
._13{width:120.074644pt;}
._1e{width:139.463638pt;}
._6{width:167.942791pt;}
._11{width:191.926755pt;}
._1c{width:219.135885pt;}
._2a{width:1519.994627pt;}
.fs6{font-size:34.666668pt;}
.fs5{font-size:37.333332pt;}
.fs3{font-size:42.666668pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333332pt;}
.fs7{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:2.175272pt;}
.y49{bottom:2.175274pt;}
.y31{bottom:2.175280pt;}
.y2c{bottom:2.175283pt;}
.y46{bottom:2.175285pt;}
.y3b{bottom:2.175288pt;}
.y39{bottom:2.175290pt;}
.y41{bottom:2.175434pt;}
.y43{bottom:2.175446pt;}
.y34{bottom:2.175448pt;}
.y4e{bottom:2.175453pt;}
.y2a{bottom:2.342531pt;}
.y9c{bottom:2.676945pt;}
.yb2{bottom:2.676949pt;}
.yef{bottom:2.677261pt;}
.y6d{bottom:2.677262pt;}
.yb4{bottom:2.677266pt;}
.y71{bottom:2.677268pt;}
.yed{bottom:2.677269pt;}
.y9e{bottom:2.677271pt;}
.yd8{bottom:2.677272pt;}
.y7c{bottom:2.677274pt;}
.ybb{bottom:2.677280pt;}
.y68{bottom:2.677426pt;}
.y79{bottom:2.677433pt;}
.y77{bottom:2.677442pt;}
.yd4{bottom:2.677592pt;}
.ye3{bottom:2.677594pt;}
.ybd{bottom:2.677596pt;}
.y93{bottom:2.677600pt;}
.ya5{bottom:2.677604pt;}
.ya9{bottom:2.677605pt;}
.yfa{bottom:2.677925pt;}
.y28{bottom:3.346669pt;}
.yfe{bottom:11.473216pt;}
.y23{bottom:11.473297pt;}
.y4{bottom:11.473339pt;}
.y63{bottom:11.473541pt;}
.y54{bottom:12.739893pt;}
.y45{bottom:12.739899pt;}
.y4d{bottom:12.739906pt;}
.y33{bottom:12.740062pt;}
.y38{bottom:12.740064pt;}
.y30{bottom:12.740066pt;}
.yb1{bottom:15.679549pt;}
.y9b{bottom:15.679558pt;}
.y70{bottom:15.679868pt;}
.y7b{bottom:15.679874pt;}
.yd2{bottom:15.679876pt;}
.yc0{bottom:15.679884pt;}
.yd7{bottom:15.679885pt;}
.y6c{bottom:15.680036pt;}
.y76{bottom:15.680042pt;}
.ye2{bottom:15.680194pt;}
.yc7{bottom:15.680196pt;}
.y67{bottom:15.680200pt;}
.yec{bottom:15.680202pt;}
.ya4{bottom:15.680204pt;}
.ya8{bottom:15.680205pt;}
.y2f{bottom:23.304520pt;}
.y53{bottom:23.304666pt;}
.y40{bottom:23.304674pt;}
.y37{bottom:23.304678pt;}
.y4c{bottom:23.304680pt;}
.y17{bottom:23.349274pt;}
.y12{bottom:23.349314pt;}
.y14{bottom:23.349356pt;}
.y1f{bottom:26.978706pt;}
.yfc{bottom:28.125866pt;}
.yc9{bottom:28.126186pt;}
.y9a{bottom:28.682478pt;}
.yb0{bottom:28.682482pt;}
.ya3{bottom:28.682484pt;}
.y6f{bottom:28.682641pt;}
.y75{bottom:28.682642pt;}
.yd1{bottom:28.682796pt;}
.yce{bottom:28.682800pt;}
.ya7{bottom:28.682805pt;}
.ye1{bottom:28.682808pt;}
.y6b{bottom:28.682809pt;}
.y92{bottom:28.682813pt;}
.yf9{bottom:28.683125pt;}
.yc6{bottom:28.683129pt;}
.y2e{bottom:33.869294pt;}
.y3f{bottom:33.869448pt;}
.y15c{bottom:35.853099pt;}
.y22{bottom:35.853261pt;}
.y3{bottom:35.853333pt;}
.y62{bottom:35.853424pt;}
.yfd{bottom:35.853749pt;}
.yaf{bottom:41.685082pt;}
.ybf{bottom:41.685084pt;}
.y99{bottom:41.685092pt;}
.ycd{bottom:41.685400pt;}
.y6a{bottom:41.685409pt;}
.y91{bottom:41.685413pt;}
.y74{bottom:41.685416pt;}
.ya2{bottom:41.685417pt;}
.ye0{bottom:41.685728pt;}
.yc5{bottom:41.685729pt;}
.yf8{bottom:41.685738pt;}
.y3e{bottom:44.434061pt;}
.y1e{bottom:47.630013pt;}
.y5f{bottom:47.630093pt;}
.yae{bottom:54.687682pt;}
.y98{bottom:54.687692pt;}
.y90{bottom:54.688013pt;}
.yeb{bottom:54.688016pt;}
.ya1{bottom:54.688017pt;}
.y73{bottom:54.688176pt;}
.yf7{bottom:54.688338pt;}
.ydf{bottom:54.688341pt;}
.yc4{bottom:54.688342pt;}
.y3d{bottom:54.998688pt;}
.yc2{bottom:56.426431pt;}
.y133{bottom:59.404227pt;}
.y197{bottom:59.440994pt;}
.y15b{bottom:60.232656pt;}
.y21{bottom:60.233307pt;}
.y2{bottom:60.233333pt;}
.y61{bottom:60.233469pt;}
.y184{bottom:66.627184pt;}
.y97{bottom:67.690292pt;}
.yad{bottom:67.690296pt;}
.yea{bottom:67.690616pt;}
.ya0{bottom:67.690617pt;}
.yba{bottom:67.690626pt;}
.yf6{bottom:67.690938pt;}
.yde{bottom:67.690941pt;}
.yc3{bottom:67.690942pt;}
.y8f{bottom:67.690946pt;}
.y1d{bottom:68.424666pt;}
.y11b{bottom:75.223547pt;}
.yac{bottom:80.692896pt;}
.y96{bottom:80.693065pt;}
.yb9{bottom:80.693226pt;}
.ye9{bottom:80.693229pt;}
.ydd{bottom:80.693541pt;}
.y8e{bottom:80.693546pt;}
.yf5{bottom:80.693552pt;}
.yc8{bottom:82.431960pt;}
.y196{bottom:83.819896pt;}
.yc1{bottom:88.933263pt;}
.y183{bottom:91.007388pt;}
.y1b3{bottom:92.030827pt;}
.y1a5{bottom:93.511303pt;}
.y95{bottom:93.695825pt;}
.yb8{bottom:93.695826pt;}
.ye8{bottom:93.695829pt;}
.yf4{bottom:93.696152pt;}
.ydc{bottom:93.696154pt;}
.y8d{bottom:93.696160pt;}
.y15a{bottom:101.895413pt;}
.y132{bottom:104.888600pt;}
.ye7{bottom:106.698429pt;}
.yb7{bottom:106.698440pt;}
.ydb{bottom:106.698754pt;}
.y8c{bottom:106.699080pt;}
.yf3{bottom:106.699085pt;}
.y195{bottom:108.200107pt;}
.y182{bottom:115.387598pt;}
.y11a{bottom:115.604401pt;}
.y1b2{bottom:116.411039pt;}
.y1a4{bottom:117.890210pt;}
.y8b{bottom:119.701360pt;}
.yf2{bottom:119.701685pt;}
.y159{bottom:126.275627pt;}
.y153{bottom:128.039945pt;}
.y8a{bottom:132.703973pt;}
.ybe{bottom:135.442703pt;}
.y181{bottom:139.767809pt;}
.y119{bottom:139.983964pt;}
.y1b1{bottom:140.791250pt;}
.y1a3{bottom:142.271720pt;}
.y89{bottom:145.706733pt;}
.y158{bottom:149.509000pt;}
.y131{bottom:150.372973pt;}
.y194{bottom:151.246983pt;}
.y152{bottom:152.420148pt;}
.y88{bottom:158.709506pt;}
.y180{bottom:164.148016pt;}
.y118{bottom:164.364167pt;}
.y1b0{bottom:165.171461pt;}
.ybc{bottom:167.949217pt;}
.y87{bottom:171.712106pt;}
.y157{bottom:172.598320pt;}
.y193{bottom:175.627190pt;}
.y151{bottom:176.800359pt;}
.y86{bottom:184.714706pt;}
.y1a2{bottom:185.317300pt;}
.y17f{bottom:188.528227pt;}
.y117{bottom:188.743729pt;}
.y1af{bottom:189.551668pt;}
.y130{bottom:195.858000pt;}
.y85{bottom:197.717480pt;}
.y192{bottom:200.007400pt;}
.y150{bottom:201.179914pt;}
.y1a1{bottom:209.698817pt;}
.y84{bottom:210.720240pt;}
.y116{bottom:213.123936pt;}
.y1ae{bottom:213.930573pt;}
.yb6{bottom:214.458653pt;}
.y83{bottom:223.722853pt;}
.y14f{bottom:225.559476pt;}
.y175{bottom:225.559480pt;}
.y17e{bottom:233.575107pt;}
.y1a0{bottom:234.077708pt;}
.y1c{bottom:234.475337pt;}
.y82{bottom:236.725453pt;}
.y115{bottom:237.504147pt;}
.y12f{bottom:241.343027pt;}
.y191{bottom:241.907439pt;}
.y81{bottom:249.728213pt;}
.y174{bottom:249.939682pt;}
.y14e{bottom:249.940336pt;}
.y1ad{bottom:256.977443pt;}
.y19f{bottom:258.457919pt;}
.y1b{bottom:258.855380pt;}
.y80{bottom:262.730986pt;}
.y190{bottom:263.848846pt;}
.yb5{bottom:272.970703pt;}
.y173{bottom:274.319892pt;}
.y14d{bottom:274.319893pt;}
.y7f{bottom:275.733586pt;}
.y114{bottom:277.884024pt;}
.y17d{bottom:278.620680pt;}
.y1ac{bottom:281.357653pt;}
.y19e{bottom:282.838130pt;}
.y1a{bottom:283.235347pt;}
.y18f{bottom:285.790253pt;}
.y12e{bottom:286.827400pt;}
.y7e{bottom:288.736026pt;}
.y172{bottom:298.700103pt;}
.y14c{bottom:298.700113pt;}
.y113{bottom:302.263907pt;}
.y19{bottom:305.320666pt;}
.y19d{bottom:307.218341pt;}
.y18{bottom:316.645991pt;}
.y17c{bottom:321.667547pt;}
.y14b{bottom:323.079673pt;}
.y171{bottom:323.080310pt;}
.y1ab{bottom:324.404314pt;}
.y112{bottom:326.643786pt;}
.y18e{bottom:327.546893pt;}
.y19c{bottom:331.598548pt;}
.y12d{bottom:332.311787pt;}
.yfb{bottom:339.382400pt;}
.yab{bottom:345.485677pt;}
.y170{bottom:347.460520pt;}
.y14a{bottom:347.460533pt;}
.y111{bottom:351.024320pt;}
.yf1{bottom:353.289061pt;}
.y19b{bottom:355.977453pt;}
.y17b{bottom:363.566291pt;}
.y16{bottom:363.568685pt;}
.y16f{bottom:371.840077pt;}
.y149{bottom:371.840078pt;}
.y110{bottom:375.403880pt;}
.y12c{bottom:377.796160pt;}
.yb3{bottom:377.991867pt;}
.yaa{bottom:384.493489pt;}
.y17a{bottom:385.508998pt;}
.y16e{bottom:396.219627pt;}
.y148{bottom:396.219640pt;}
.y19a{bottom:397.877266pt;}
.y5e{bottom:405.922026pt;}
.y15{bottom:410.491297pt;}
.yf0{bottom:411.801436pt;}
.y5d{bottom:415.311365pt;}
.y10f{bottom:415.784093pt;}
.y5c{bottom:420.593744pt;}
.y16d{bottom:420.599837pt;}
.y147{bottom:420.599844pt;}
.y12b{bottom:423.281187pt;}
.y179{bottom:427.264315pt;}
.y9f{bottom:437.503903pt;}
.y5b{bottom:440.107421pt;}
.y146{bottom:444.980047pt;}
.y16c{bottom:444.980057pt;}
.y5a{bottom:445.389648pt;}
.y12a{bottom:450.099547pt;}
.y10e{bottom:456.163654pt;}
.ya6{bottom:457.007808pt;}
.y13{bottom:457.413977pt;}
.y59{bottom:464.903315pt;}
.y16b{bottom:469.359607pt;}
.y145{bottom:469.360262pt;}
.y9d{bottom:470.010743pt;}
.y129{bottom:476.917253pt;}
.y58{bottom:479.134771pt;}
.y10d{bottom:480.544178pt;}
.ye6{bottom:484.316077pt;}
.y57{bottom:493.366045pt;}
.y144{bottom:493.739816pt;}
.y16a{bottom:493.740467pt;}
.y128{bottom:503.735613pt;}
.y11{bottom:504.336672pt;}
.y10c{bottom:504.924061pt;}
.y1aa{bottom:509.404533pt;}
.y7d{bottom:516.519853pt;}
.y143{bottom:518.120027pt;}
.y169{bottom:518.120684pt;}
.y55{bottom:518.162115pt;}
.y10b{bottom:529.303951pt;}
.yee{bottom:529.825525pt;}
.ye5{bottom:536.326497pt;}
.y168{bottom:542.500231pt;}
.y142{bottom:542.500240pt;}
.y52{bottom:542.958013pt;}
.y127{bottom:549.219986pt;}
.y1a9{bottom:552.451403pt;}
.y51{bottom:553.522619pt;}
.y10a{bottom:553.683830pt;}
.y141{bottom:566.879781pt;}
.y167{bottom:566.879786pt;}
.y10{bottom:569.585329pt;}
.y126{bottom:576.038346pt;}
.y1a8{bottom:576.831613pt;}
.y109{bottom:578.064040pt;}
.y50{bottom:588.883299pt;}
.y140{bottom:591.259996pt;}
.y166{bottom:591.259997pt;}
.yf{bottom:591.527346pt;}
.y4f{bottom:594.165691pt;}
.yda{bottom:602.339845pt;}
.y178{bottom:612.404532pt;}
.y108{bottom:612.755120pt;}
.y4b{bottom:613.679360pt;}
.y94{bottom:614.040361pt;}
.y125{bottom:614.687080pt;}
.y13f{bottom:615.640203pt;}
.y165{bottom:615.640208pt;}
.y1a7{bottom:619.878493pt;}
.ye{bottom:621.469333pt;}
.y4a{bottom:629.526371pt;}
.y13e{bottom:640.019760pt;}
.y164{bottom:640.019763pt;}
.ye4{bottom:641.347981pt;}
.y156{bottom:648.071200pt;}
.y7a{bottom:653.048179pt;}
.y107{bottom:653.135653pt;}
.y177{bottom:654.303266pt;}
.yd9{bottom:654.350916pt;}
.y124{bottom:655.066640pt;}
.y78{bottom:659.549153pt;}
.y48{bottom:659.604659pt;}
.y1a6{bottom:661.777020pt;}
.y18d{bottom:662.687079pt;}
.y163{bottom:664.399320pt;}
.y13d{bottom:664.399967pt;}
.y47{bottom:664.887051pt;}
.yd{bottom:670.916012pt;}
.y155{bottom:671.303266pt;}
.y176{bottom:677.393223pt;}
.y44{bottom:684.400715pt;}
.y18c{bottom:687.067299pt;}
.y162{bottom:688.779533pt;}
.y13c{bottom:688.780182pt;}
.y42{bottom:689.682941pt;}
.y106{bottom:693.515209pt;}
.y154{bottom:694.393223pt;}
.y123{bottom:695.446198pt;}
.y3c{bottom:709.196619pt;}
.y18b{bottom:711.446209pt;}
.y13b{bottom:713.159736pt;}
.y161{bottom:713.160386pt;}
.y105{bottom:717.895416pt;}
.y122{bottom:719.827062pt;}
.yc{bottom:722.799320pt;}
.yd6{bottom:726.860021pt;}
.y3a{bottom:730.326005pt;}
.y18a{bottom:735.826409pt;}
.y160{bottom:737.539941pt;}
.y13a{bottom:737.539947pt;}
.yd5{bottom:739.862636pt;}
.y104{bottom:742.274973pt;}
.y121{bottom:744.206616pt;}
.yb{bottom:752.741346pt;}
.y189{bottom:760.206614pt;}
.y15f{bottom:761.920156pt;}
.y139{bottom:761.920157pt;}
.y199{bottom:765.920159pt;}
.y120{bottom:768.586827pt;}
.yd0{bottom:773.363937pt;}
.y36{bottom:776.251296pt;}
.yd3{bottom:779.865235pt;}
.y103{bottom:782.655509pt;}
.ya{bottom:782.683330pt;}
.y188{bottom:784.586817pt;}
.y15e{bottom:786.300363pt;}
.y138{bottom:786.300368pt;}
.y35{bottom:786.815917pt;}
.ycf{bottom:792.868169pt;}
.y102{bottom:807.035396pt;}
.y11f{bottom:808.966380pt;}
.y187{bottom:808.967028pt;}
.y198{bottom:808.967030pt;}
.y15d{bottom:810.679920pt;}
.y137{bottom:810.679923pt;}
.y32{bottom:811.611979pt;}
.y72{bottom:816.581211pt;}
.y69{bottom:823.082684pt;}
.ycc{bottom:826.374680pt;}
.y6e{bottom:829.583985pt;}
.y101{bottom:831.415278pt;}
.y11e{bottom:833.346583pt;}
.y186{bottom:833.347239pt;}
.y136{bottom:835.059480pt;}
.y66{bottom:836.085293pt;}
.y2d{bottom:836.408040pt;}
.y2b{bottom:852.255051pt;}
.ycb{bottom:852.380209pt;}
.y100{bottom:855.795160pt;}
.y185{bottom:857.726145pt;}
.y11d{bottom:857.726798pt;}
.y135{bottom:880.106352pt;}
.y11c{bottom:882.106352pt;}
.y27{bottom:882.333333pt;}
.y29{bottom:884.771483pt;}
.y65{bottom:888.942640pt;}
.yff{bottom:890.486564pt;}
.y9{bottom:892.009325pt;}
.yca{bottom:892.388021pt;}
.y134{bottom:904.486563pt;}
.y64{bottom:906.486563pt;}
.y60{bottom:919.393229pt;}
.y8{bottom:921.951342pt;}
.y26{bottom:924.021277pt;}
.y7{bottom:943.893338pt;}
.y25{bottom:957.835334pt;}
.y6{bottom:965.835334pt;}
.y5{bottom:987.777330pt;}
.y24{bottom:987.777392pt;}
.y1{bottom:999.393331pt;}
.y20{bottom:999.393392pt;}
.h24{height:13.002604pt;}
.h20{height:13.002767pt;}
.h2a{height:13.002930pt;}
.h11{height:13.231283pt;}
.h18{height:13.231445pt;}
.hf{height:14.043864pt;}
.he{height:18.920003pt;}
.h19{height:23.795899pt;}
.h15{height:23.796061pt;}
.h21{height:26.005208pt;}
.h1c{height:26.005533pt;}
.h12{height:27.282668pt;}
.h14{height:29.189334pt;}
.h10{height:29.381332pt;}
.h16{height:34.360677pt;}
.ha{height:35.925334pt;}
.h26{height:37.589335pt;}
.h4{height:37.776000pt;}
.h1e{height:39.007975pt;}
.h27{height:39.008139pt;}
.h32{height:39.573332pt;}
.h3{height:40.416000pt;}
.h7{height:41.973332pt;}
.h35{height:42.288000pt;}
.h2{height:44.906666pt;}
.h13{height:44.925293pt;}
.h9{height:45.922608pt;}
.h6{height:45.922648pt;}
.h8{height:45.922689pt;}
.h33{height:46.986665pt;}
.h1b{height:49.397334pt;}
.hd{height:50.368000pt;}
.h34{height:51.685335pt;}
.h1d{height:52.010743pt;}
.h31{height:52.199867pt;}
.h2c{height:52.200200pt;}
.h36{height:52.200520pt;}
.h2d{height:65.013347pt;}
.h1f{height:65.013509pt;}
.h17{height:66.054688pt;}
.h25{height:78.015951pt;}
.h2b{height:78.016276pt;}
.hb{height:78.750000pt;}
.h28{height:91.018229pt;}
.h23{height:104.021159pt;}
.h5{height:109.130671pt;}
.h2f{height:117.023763pt;}
.h2e{height:117.024088pt;}
.hc{height:123.273275pt;}
.h1{height:123.273336pt;}
.h29{height:130.026693pt;}
.h30{height:130.027019pt;}
.h1a{height:203.273437pt;}
.h22{height:299.061360pt;}
.h0{height:1122.666667pt;}
.wa{width:57.000000pt;}
.we{width:64.000000pt;}
.wd{width:64.999959pt;}
.wc{width:66.000000pt;}
.w8{width:76.000020pt;}
.wb{width:83.000000pt;}
.wf{width:85.999959pt;}
.w9{width:102.000000pt;}
.w5{width:163.000020pt;}
.w3{width:244.000027pt;}
.w4{width:388.999920pt;}
.w7{width:476.999920pt;}
.w6{width:477.999920pt;}
.w2{width:633.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xb{left:6.000000pt;}
.x10{left:7.000000pt;}
.x12{left:8.000000pt;}
.x1f{left:9.814903pt;}
.x2a{left:11.146446pt;}
.x1e{left:14.525108pt;}
.x24{left:17.922249pt;}
.x29{left:18.893585pt;}
.x26{left:20.576378pt;}
.x18{left:22.506607pt;}
.x1d{left:28.000000pt;}
.x2d{left:29.222267pt;}
.x28{left:31.500000pt;}
.x23{left:32.500000pt;}
.x1b{left:33.934677pt;}
.x17{left:37.500000pt;}
.x21{left:41.000000pt;}
.x2c{left:42.500000pt;}
.x1a{left:50.500000pt;}
.xf{left:69.599996pt;}
.x1{left:75.599996pt;}
.xa{left:76.599996pt;}
.x8{left:78.964080pt;}
.xe{left:83.599996pt;}
.x39{left:84.926135pt;}
.x3b{left:88.392397pt;}
.x16{left:93.599996pt;}
.x32{left:103.599996pt;}
.x2f{left:107.599996pt;}
.x30{left:131.599996pt;}
.x31{left:155.599996pt;}
.x19{left:170.600016pt;}
.x3a{left:186.014844pt;}
.x37{left:205.104406pt;}
.x14{left:230.599996pt;}
.x11{left:232.600013pt;}
.x13{left:233.600013pt;}
.x6{left:259.286626pt;}
.x1c{left:273.600013pt;}
.x36{left:283.803566pt;}
.x7{left:304.061776pt;}
.xc{left:321.600013pt;}
.x20{left:331.600013pt;}
.x3c{left:368.848117pt;}
.x15{left:390.474356pt;}
.xd{left:391.716386pt;}
.x2e{left:393.466356pt;}
.x2{left:396.850396pt;}
.x3{left:400.850396pt;}
.x22{left:415.600013pt;}
.x5{left:452.910876pt;}
.x25{left:482.600013pt;}
.x35{left:488.850396pt;}
.x27{left:548.599973pt;}
.x34{left:582.850396pt;}
.x33{left:594.850366pt;}
.x9{left:602.335970pt;}
.x2b{left:613.599973pt;}
.x38{left:689.350366pt;}
.x4{left:718.100786pt;}
}




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