
    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_354103f9d0d08f9e05a2e14e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_0b08550d2e27f9427b7f8be6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_bb80a7d99568d4f7c98d5938.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_310f3cb898648b592cd99097.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_1ef73987d4227a7730143324.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_362c6753992eb5edec0a616d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_d7c8b68deae60fc5222c3c9b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_fa9d7c3a6fbf9743019488d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.711000;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_145052d64f77b6468e449442.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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_2826bcbd3b2a565497381e0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.068000;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_a5aacd48248d7d6150488aaf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_02553691f964829245b8d7e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f0ef0db85654129b32dbfc3f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b97411931e51bb0dcfc1b847.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.715000;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:fff;src:url('chunks/assets/font_7ad82d7aa99b75f1eb8ece6a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a3f2aa7d5f7a67c6a2b5102e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.901000;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:ff11;src:url('chunks/assets/font_89d7b0733c46890184d39c39.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.715000;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);}
.m2{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-0.819000px;}
.ls29{letter-spacing:-0.570000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.022800px;}
.ls25{letter-spacing:0.025200px;}
.ls1e{letter-spacing:0.050400px;}
.ls26{letter-spacing:0.079800px;}
.ls11{letter-spacing:0.081900px;}
.ls13{letter-spacing:0.113400px;}
.ls12{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.151199px;}
.ls2a{letter-spacing:0.159600px;}
.ls24{letter-spacing:0.163800px;}
.ls1f{letter-spacing:0.195300px;}
.ls1{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.228000px;}
.ls22{letter-spacing:0.270900px;}
.ls18{letter-spacing:0.302399px;}
.ls2f{letter-spacing:0.307800px;}
.ls9{letter-spacing:0.315000px;}
.lsd{letter-spacing:0.415800px;}
.ls2c{letter-spacing:0.433200px;}
.ls1d{letter-spacing:0.434700px;}
.ls21{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.522900px;}
.ls23{letter-spacing:0.579600px;}
.ls14{letter-spacing:0.585899px;}
.ls3{letter-spacing:0.604799px;}
.lse{letter-spacing:0.623700px;}
.lsb{letter-spacing:0.630000px;}
.ls2b{letter-spacing:0.644100px;}
.lsf{letter-spacing:0.655200px;}
.ls1c{letter-spacing:0.667800px;}
.ls2e{letter-spacing:0.695400px;}
.ls8{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.762300px;}
.ls20{letter-spacing:0.781200px;}
.lsc{letter-spacing:0.831600px;}
.ls1b{letter-spacing:0.850500px;}
.ls28{letter-spacing:0.855000px;}
.ls7{letter-spacing:0.899988px;}
.ls19{letter-spacing:0.926100px;}
.ls10{letter-spacing:0.945000px;}
.ls5{letter-spacing:1.134000px;}
.ls17{letter-spacing:1.260000px;}
.ls1a{letter-spacing:1.575000px;}
.ls6{letter-spacing:155.497508px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.984000px;}
.ws3{word-spacing:-14.452199px;}
.ws4{word-spacing:-14.301000px;}
.ws2{word-spacing:-13.986000px;}
.ws8{word-spacing:-12.939000px;}
.ws9{word-spacing:-12.369000px;}
.wsa{word-spacing:-11.799000px;}
.ws5{word-spacing:-8.231765px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:146.004143px;}
.ws6{word-spacing:660.351745px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._11{margin-left:-3.012000px;}
._1{margin-left:-1.996800px;}
._9{width:1.927800px;}
._8{width:3.327300px;}
._5{width:4.378500px;}
._0{width:5.587200px;}
._4{width:6.954000px;}
._6{width:8.075400px;}
._d{width:9.579582px;}
._14{width:10.592153px;}
._a{width:11.613618px;}
._7{width:12.668400px;}
._e{width:13.873500px;}
._15{width:15.093900px;}
._f{width:16.650900px;}
._10{width:18.257400px;}
._13{width:28.116900px;}
._44{width:29.423400px;}
._45{width:36.462900px;}
._c{width:77.765610px;}
._b{width:89.518157px;}
._12{width:159.790611px;}
._18{width:212.161206px;}
._16{width:215.116073px;}
._17{width:241.447576px;}
._1c{width:264.542952px;}
._1a{width:270.182881px;}
._2b{width:284.539502px;}
._23{width:286.507477px;}
._24{width:300.230427px;}
._21{width:318.692016px;}
._19{width:323.123381px;}
._20{width:372.719186px;}
._3f{width:379.693512px;}
._42{width:386.947216px;}
._3d{width:402.493227px;}
._3b{width:425.292942px;}
._2c{width:436.649600px;}
._25{width:441.641538px;}
._26{width:463.518710px;}
._39{width:501.669587px;}
._27{width:521.128544px;}
._29{width:525.928484px;}
._28{width:545.176244px;}
._33{width:546.371429px;}
._2a{width:560.551393px;}
._40{width:566.752968px;}
._30{width:569.171144px;}
._35{width:591.970859px;}
._22{width:600.807548px;}
._1e{width:603.734557px;}
._43{width:604.885601px;}
._38{width:652.280195px;}
._2e{width:657.125244px;}
._36{width:659.912100px;}
._2d{width:677.931075px;}
._3e{width:694.489926px;}
._1f{width:713.290284px;}
._3c{width:747.299821px;}
._41{width:820.178251px;}
._32{width:840.769052px;}
._37{width:877.850485px;}
._1b{width:929.541039px;}
._31{width:967.454810px;}
._1d{width:1004.108107px;}
._2f{width:1020.264705px;}
._34{width:1093.143136px;}
._3a{width:1104.574696px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(84,119,179);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsf{font-size:31.995000px;}
.fsd{font-size:41.998800px;}
.fsa{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fsc{font-size:66.000600px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y5b{bottom:12.000000px;}
.y5a{bottom:47.622623px;}
.y59{bottom:59.698328px;}
.y1b{bottom:67.597501px;}
.y58{bottom:71.688985px;}
.y14b{bottom:76.792523px;}
.y57{bottom:83.679643px;}
.y1a{bottom:84.097501px;}
.y1a7{bottom:86.315325px;}
.y1d8{bottom:86.317800px;}
.ya8{bottom:86.320125px;}
.y16e{bottom:86.322075px;}
.ycf{bottom:86.323125px;}
.y87{bottom:86.323575px;}
.yf0{bottom:92.440800px;}
.y14a{bottom:95.245892px;}
.y56{bottom:95.669250px;}
.y236{bottom:95.927775px;}
.y20d{bottom:97.713300px;}
.y14{bottom:99.795000px;}
.y11e{bottom:101.283641px;}
.y1a6{bottom:102.812550px;}
.y1d7{bottom:102.986025px;}
.ya7{bottom:105.793425px;}
.y16d{bottom:105.795375px;}
.yce{bottom:105.798000px;}
.y86{bottom:105.798450px;}
.y149{bottom:108.767323px;}
.yef{bottom:111.999150px;}
.y53{bottom:112.166850px;}
.y235{bottom:112.851075px;}
.y18{bottom:113.670000px;}
.y11d{bottom:114.719873px;}
.y20c{bottom:114.722100px;}
.y1d6{bottom:119.483250px;}
.y148{bottom:122.288754px;}
.ya6{bottom:125.353350px;}
.y16c{bottom:125.353725px;}
.ycd{bottom:125.356350px;}
.y85{bottom:125.356800px;}
.y234{bottom:129.348300px;}
.y20b{bottom:131.219325px;}
.yee{bottom:131.472450px;}
.y1a5{bottom:132.066000px;}
.y11c{bottom:133.258441px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.y147{bottom:135.810185px;}
.y1d5{bottom:135.980475px;}
.ya5{bottom:144.826650px;}
.y16b{bottom:144.828600px;}
.ye6{bottom:144.830100px;}
.y233{bottom:145.845525px;}
.y11b{bottom:146.779872px;}
.y20a{bottom:147.716550px;}
.y146{bottom:149.246417px;}
.y52{bottom:149.247600px;}
.yed{bottom:150.947325px;}
.y1d4{bottom:152.648700px;}
.ycc{bottom:154.608825px;}
.y84{bottom:154.609275px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y11a{bottom:160.300103px;}
.y145{bottom:162.766648px;}
.y232{bottom:162.854325px;}
.ya4{bottom:164.299950px;}
.y16a{bottom:164.301900px;}
.ye5{bottom:164.304975px;}
.y209{bottom:164.639850px;}
.y51{bottom:168.720900px;}
.y1d3{bottom:169.145925px;}
.yec{bottom:170.505675px;}
.y119{bottom:173.736335px;}
.y144{bottom:176.288079px;}
.y231{bottom:179.776200px;}
.y208{bottom:181.137075px;}
.ya3{bottom:183.859875px;}
.y169{bottom:183.860250px;}
.ye4{bottom:183.863325px;}
.y1d2{bottom:185.644575px;}
.y118{bottom:187.257766px;}
.y50{bottom:188.195775px;}
.y1a4{bottom:188.873325px;}
.y143{bottom:189.809510px;}
.yeb{bottom:189.978975px;}
.y230{bottom:196.274850px;}
.y207{bottom:197.634300px;}
.y117{bottom:200.779197px;}
.y1d1{bottom:202.311375px;}
.y142{bottom:203.245742px;}
.ya2{bottom:203.333175px;}
.y168{bottom:203.335125px;}
.ye3{bottom:203.336625px;}
.y191{bottom:203.421675px;}
.y83{bottom:203.506725px;}
.y1a3{bottom:205.370550px;}
.ycb{bottom:206.568075px;}
.y4f{bottom:207.754125px;}
.yea{bottom:209.453850px;}
.y22f{bottom:212.772075px;}
.y206{bottom:214.132950px;}
.y116{bottom:214.300628px;}
.y141{bottom:216.767173px;}
.y1d0{bottom:218.979600px;}
.y1a2{bottom:221.867775px;}
.ya1{bottom:222.806475px;}
.y167{bottom:222.808425px;}
.ye2{bottom:222.811500px;}
.y190{bottom:222.896550px;}
.y82{bottom:222.981600px;}
.yca{bottom:226.126425px;}
.y4e{bottom:227.227425px;}
.y115{bottom:227.736860px;}
.ye9{bottom:229.012200px;}
.y22e{bottom:229.693950px;}
.y140{bottom:230.288604px;}
.y205{bottom:230.630175px;}
.y1cf{bottom:235.476825px;}
.y1a1{bottom:238.365000px;}
.y114{bottom:241.258291px;}
.ya0{bottom:242.281350px;}
.y166{bottom:242.281725px;}
.y178{bottom:242.284800px;}
.y18f{bottom:242.369850px;}
.y81{bottom:242.454900px;}
.y13f{bottom:243.808835px;}
.yc9{bottom:245.601300px;}
.y22d{bottom:246.192600px;}
.y4d{bottom:246.702300px;}
.y204{bottom:247.127400px;}
.ye8{bottom:248.485500px;}
.y1ce{bottom:251.974050px;}
.ye1{bottom:252.063975px;}
.y113{bottom:254.778522px;}
.y13e{bottom:257.245067px;}
.y9f{bottom:261.839700px;}
.y165{bottom:261.841650px;}
.y177{bottom:261.843150px;}
.y18e{bottom:261.928200px;}
.y80{bottom:262.013250px;}
.y22c{bottom:262.775325px;}
.y203{bottom:263.624625px;}
.yc8{bottom:265.074600px;}
.y4c{bottom:266.175600px;}
.y1a0{bottom:267.618000px;}
.y1cd{bottom:268.556775px;}
.y13d{bottom:270.766498px;}
.y112{bottom:272.551500px;}
.ye7{bottom:277.738500px;}
.y22b{bottom:279.697200px;}
.y202{bottom:280.547925px;}
.y9e{bottom:281.314575px;}
.y164{bottom:281.314950px;}
.y176{bottom:281.318025px;}
.y18d{bottom:281.403075px;}
.y7f{bottom:281.488125px;}
.y13c{bottom:284.287929px;}
.yc7{bottom:284.632950px;}
.y1cc{bottom:285.054000px;}
.y4b{bottom:285.733950px;}
.y110{bottom:291.600000px;}
.y22a{bottom:296.620500px;}
.y111{bottom:296.872500px;}
.y201{bottom:297.555300px;}
.y13b{bottom:297.809360px;}
.y9d{bottom:300.787875px;}
.y163{bottom:300.788250px;}
.y175{bottom:300.791325px;}
.y18c{bottom:300.876375px;}
.y7e{bottom:300.961425px;}
.y1cb{bottom:301.552650px;}
.yc6{bottom:304.107825px;}
.y4a{bottom:305.208825px;}
.ye0{bottom:307.338600px;}
.y10f{bottom:310.225050px;}
.y13a{bottom:311.245592px;}
.y229{bottom:313.543800px;}
.y200{bottom:314.053950px;}
.y1ca{bottom:318.219450px;}
.y9c{bottom:320.346225px;}
.y162{bottom:320.348175px;}
.y174{bottom:320.349675px;}
.y18b{bottom:320.434725px;}
.y7d{bottom:320.519775px;}
.yc5{bottom:323.581125px;}
.y19f{bottom:324.424500px;}
.y49{bottom:324.682125px;}
.y139{bottom:324.765823px;}
.y10e{bottom:326.722275px;}
.ydf{bottom:326.898525px;}
.y228{bottom:330.125100px;}
.y1ff{bottom:330.551175px;}
.y1c9{bottom:334.718100px;}
.y9b{bottom:339.821100px;}
.y161{bottom:339.821475px;}
.y173{bottom:339.824550px;}
.y18a{bottom:339.909600px;}
.y7c{bottom:339.994650px;}
.y138{bottom:342.624000px;}
.yc4{bottom:343.139475px;}
.y10d{bottom:343.219500px;}
.y48{bottom:344.240475px;}
.ya{bottom:344.680500px;}
.yde{bottom:346.371825px;}
.y227{bottom:346.623750px;}
.y1fe{bottom:347.473050px;}
.y1c8{bottom:351.215325px;}
.y19e{bottom:353.679000px;}
.y9a{bottom:359.294400px;}
.y160{bottom:359.294775px;}
.y172{bottom:359.297850px;}
.y189{bottom:359.382900px;}
.y7b{bottom:359.467950px;}
.y137{bottom:361.247550px;}
.yc3{bottom:362.614350px;}
.y226{bottom:363.545625px;}
.y47{bottom:363.715350px;}
.y1fd{bottom:363.971700px;}
.ydd{bottom:365.845125px;}
.y1c7{bottom:367.882125px;}
.y136{bottom:377.744775px;}
.y99{bottom:378.852750px;}
.y15f{bottom:378.854700px;}
.y171{bottom:378.856200px;}
.y188{bottom:378.941250px;}
.y7a{bottom:379.026300px;}
.y1fc{bottom:380.468925px;}
.yc2{bottom:382.087650px;}
.y46{bottom:383.188650px;}
.y2c{bottom:383.626501px;}
.y1c6{bottom:384.550350px;}
.ydc{bottom:385.405050px;}
.yd{bottom:386.490000px;}
.y135{bottom:394.242000px;}
.y9{bottom:395.689500px;}
.y225{bottom:396.966150px;}
.y1fb{bottom:397.392225px;}
.y98{bottom:398.327625px;}
.y170{bottom:398.331075px;}
.y187{bottom:398.416125px;}
.y79{bottom:398.501175px;}
.y1c5{bottom:401.047575px;}
.yc1{bottom:401.560950px;}
.y45{bottom:402.747000px;}
.ydb{bottom:404.878350px;}
.y100{bottom:407.256900px;}
.y15e{bottom:408.107175px;}
.y19d{bottom:410.570550px;}
.y224{bottom:413.463375px;}
.y1fa{bottom:413.974950px;}
.y1c4{bottom:417.544800px;}
.y97{bottom:417.800925px;}
.y186{bottom:417.889425px;}
.y78{bottom:417.974475px;}
.yc0{bottom:421.120875px;}
.y44{bottom:422.221875px;}
.yda{bottom:424.351650px;}
.yff{bottom:426.815250px;}
.y19c{bottom:427.067775px;}
.y16f{bottom:427.583550px;}
.y223{bottom:429.962025px;}
.y1f9{bottom:430.472175px;}
.y1c3{bottom:434.043450px;}
.yb{bottom:434.850000px;}
.y96{bottom:437.274225px;}
.y185{bottom:437.362725px;}
.y77{bottom:437.447775px;}
.ybf{bottom:440.594175px;}
.y43{bottom:441.695175px;}
.y19b{bottom:443.565000px;}
.yd9{bottom:443.911575px;}
.yfe{bottom:446.290125px;}
.y134{bottom:446.457267px;}
.y222{bottom:446.459250px;}
.y8{bottom:446.698500px;}
.y1f8{bottom:447.394050px;}
.y2b{bottom:447.976501px;}
.y1c2{bottom:450.540675px;}
.y95{bottom:456.834150px;}
.y15d{bottom:456.919575px;}
.y184{bottom:456.922650px;}
.y76{bottom:457.007700px;}
.ybe{bottom:460.067475px;}
.y42{bottom:461.168475px;}
.y221{bottom:463.466625px;}
.y1f7{bottom:463.892700px;}
.y133{bottom:464.995835px;}
.yfd{bottom:465.763425px;}
.y1c1{bottom:467.208900px;}
.y19a{bottom:472.818000px;}
.yd8{bottom:473.164050px;}
.y94{bottom:476.307450px;}
.y15c{bottom:476.392875px;}
.y183{bottom:476.395950px;}
.y75{bottom:476.481000px;}
.y132{bottom:478.517266px;}
.ybd{bottom:479.627400px;}
.y220{bottom:479.965275px;}
.y1f6{bottom:480.389925px;}
.y41{bottom:480.728400px;}
.y1c0{bottom:483.706125px;}
.y11{bottom:488.055000px;}
.y131{bottom:491.953498px;}
.yfc{bottom:495.015900px;}
.y93{bottom:495.780750px;}
.y15b{bottom:495.867750px;}
.y182{bottom:495.869250px;}
.y74{bottom:495.954300px;}
.y21f{bottom:496.462500px;}
.y1f5{bottom:497.313225px;}
.y7{bottom:497.707500px;}
.ybc{bottom:499.100700px;}
.y40{bottom:500.201700px;}
.y1bf{bottom:500.203350px;}
.y130{bottom:505.474929px;}
.y2a{bottom:512.326501px;}
.y21e{bottom:513.384375px;}
.y1f4{bottom:513.810450px;}
.y92{bottom:515.340675px;}
.y15a{bottom:515.426100px;}
.y181{bottom:515.429175px;}
.y73{bottom:515.514225px;}
.y1be{bottom:516.871575px;}
.ybb{bottom:518.574000px;}
.y12f{bottom:518.996360px;}
.y3f{bottom:519.675000px;}
.y199{bottom:526.905450px;}
.yd7{bottom:528.440250px;}
.y21d{bottom:529.883025px;}
.y1f3{bottom:530.307675px;}
.y12e{bottom:532.517791px;}
.y1bd{bottom:533.368800px;}
.y91{bottom:534.813975px;}
.y159{bottom:534.899400px;}
.y180{bottom:534.902475px;}
.y72{bottom:534.987525px;}
.yba{bottom:538.133925px;}
.y12{bottom:538.230000px;}
.y12d{bottom:545.952823px;}
.y21c{bottom:546.380250px;}
.y198{bottom:546.380325px;}
.y1f2{bottom:547.315050px;}
.yd6{bottom:547.913550px;}
.y6{bottom:548.716500px;}
.y3e{bottom:548.929500px;}
.y1bc{bottom:549.866025px;}
.y90{bottom:554.287275px;}
.y158{bottom:554.374275px;}
.y17f{bottom:554.375775px;}
.y71{bottom:554.460825px;}
.yfb{bottom:557.264625px;}
.y21b{bottom:563.303550px;}
.y12c{bottom:563.811000px;}
.y1f1{bottom:563.813700px;}
.y197{bottom:565.938675px;}
.y1bb{bottom:566.534250px;}
.yb9{bottom:567.386400px;}
.yd5{bottom:567.386850px;}
.y8f{bottom:573.847200px;}
.y157{bottom:573.932625px;}
.y17e{bottom:573.935700px;}
.y70{bottom:574.020750px;}
.yfa{bottom:576.822975px;}
.y29{bottom:579.607500px;}
.y21a{bottom:579.800775px;}
.y1f0{bottom:580.310925px;}
.y12b{bottom:582.434775px;}
.y1ba{bottom:583.031475px;}
.y196{bottom:585.411975px;}
.yd4{bottom:586.946775px;}
.y19{bottom:589.605000px;}
.y8e{bottom:593.320500px;}
.y156{bottom:593.405925px;}
.y17d{bottom:593.409000px;}
.y6f{bottom:593.494050px;}
.yf9{bottom:596.297850px;}
.y219{bottom:596.298000px;}
.y1ef{bottom:596.808150px;}
.y12a{bottom:598.932000px;}
.y1b9{bottom:599.528700px;}
.y5{bottom:599.725500px;}
.y195{bottom:604.886850px;}
.yd3{bottom:606.420075px;}
.y8d{bottom:612.793800px;}
.y155{bottom:612.880800px;}
.y17c{bottom:612.882300px;}
.y6e{bottom:612.967350px;}
.y1ee{bottom:613.305375px;}
.y28{bottom:613.957501px;}
.y3a{bottom:615.600300px;}
.yf8{bottom:615.771150px;}
.y1b8{bottom:616.196925px;}
.yb8{bottom:619.345650px;}
.y194{bottom:624.445200px;}
.yd2{bottom:625.893375px;}
.y27{bottom:628.957501px;}
.y1ed{bottom:630.228675px;}
.y39{bottom:630.567750px;}
.ye{bottom:631.920000px;}
.y8c{bottom:632.353725px;}
.y154{bottom:632.439150px;}
.y6d{bottom:632.442225px;}
.y1b7{bottom:632.694150px;}
.yf7{bottom:635.244450px;}
.yb7{bottom:638.904000px;}
.y193{bottom:643.918500px;}
.y26{bottom:643.957500px;}
.y129{bottom:644.687850px;}
.yd1{bottom:645.453300px;}
.y38{bottom:645.533850px;}
.y1ec{bottom:646.725900px;}
.y1b6{bottom:649.191375px;}
.y8b{bottom:651.827025px;}
.y153{bottom:651.912450px;}
.y17b{bottom:651.915525px;}
.y6c{bottom:652.000575px;}
.yf6{bottom:654.804375px;}
.yb6{bottom:658.377300px;}
.y37{bottom:660.586350px;}
.y1eb{bottom:663.224550px;}
.y128{bottom:664.161150px;}
.y1b5{bottom:665.859600px;}
.y152{bottom:671.387325px;}
.y17a{bottom:671.388825px;}
.y6b{bottom:671.473875px;}
.y192{bottom:673.171500px;}
.yf5{bottom:674.277675px;}
.yd0{bottom:674.705775px;}
.y36{bottom:675.553800px;}
.yb5{bottom:677.852175px;}
.y218{bottom:679.721775px;}
.y1ea{bottom:680.146425px;}
.y8a{bottom:681.079500px;}
.y1b4{bottom:682.356825px;}
.y127{bottom:683.634450px;}
.y35{bottom:690.604950px;}
.y151{bottom:690.860625px;}
.y6a{bottom:690.948750px;}
.yf4{bottom:693.750975px;}
.y3d{bottom:695.113537px;}
.y217{bottom:696.219000px;}
.y1e9{bottom:697.153800px;}
.yb4{bottom:697.410525px;}
.y1b3{bottom:698.855475px;}
.y179{bottom:700.642875px;}
.y126{bottom:703.194375px;}
.y34{bottom:705.572400px;}
.y3c{bottom:708.549769px;}
.y89{bottom:710.334000px;}
.y150{bottom:710.418975px;}
.y69{bottom:710.507100px;}
.y216{bottom:713.226375px;}
.yf3{bottom:713.310900px;}
.y1e8{bottom:713.652450px;}
.y1b2{bottom:715.352700px;}
.yb3{bottom:716.885400px;}
.y33{bottom:720.538500px;}
.y3b{bottom:722.070000px;}
.y25{bottom:725.317498px;}
.y215{bottom:729.725025px;}
.y14f{bottom:729.893850px;}
.y68{bottom:729.980400px;}
.y1e7{bottom:730.149675px;}
.y1b1{bottom:731.849925px;}
.y125{bottom:732.446850px;}
.yf2{bottom:732.784200px;}
.y32{bottom:735.591000px;}
.yb2{bottom:736.358700px;}
.y214{bottom:746.222250px;}
.y1e6{bottom:747.072975px;}
.y1b0{bottom:748.347150px;}
.y14e{bottom:749.367150px;}
.y67{bottom:749.455275px;}
.yf1{bottom:752.257500px;}
.y24{bottom:755.317498px;}
.y213{bottom:763.144125px;}
.y1e5{bottom:763.570200px;}
.y1af{bottom:764.845800px;}
.yb1{bottom:765.611175px;}
.y14d{bottom:768.925500px;}
.y66{bottom:769.013625px;}
.y23{bottom:773.317498px;}
.y4{bottom:778.225500px;}
.y31{bottom:779.130000px;}
.y1e4{bottom:780.067425px;}
.y1ae{bottom:781.512600px;}
.y124{bottom:784.831350px;}
.y65{bottom:788.486925px;}
.y22{bottom:791.317498px;}
.y1e3{bottom:797.074800px;}
.y1ad{bottom:798.009825px;}
.y14c{bottom:798.180000px;}
.y10c{bottom:799.031235px;}
.y123{bottom:804.304650px;}
.y30{bottom:806.938500px;}
.y64{bottom:807.961800px;}
.y1e2{bottom:813.573450px;}
.y212{bottom:813.998100px;}
.y1ac{bottom:814.508475px;}
.y13{bottom:815.670000px;}
.y10b{bottom:817.484604px;}
.yb0{bottom:817.655475px;}
.y122{bottom:823.863000px;}
.y63{bottom:827.520150px;}
.y1e1{bottom:830.070675px;}
.y211{bottom:830.921400px;}
.y10a{bottom:831.004835px;}
.y1ab{bottom:831.091200px;}
.y2f{bottom:835.427100px;}
.yaf{bottom:837.128775px;}
.y121{bottom:843.337875px;}
.y21{bottom:843.789002px;}
.y109{bottom:844.526266px;}
.y62{bottom:846.993450px;}
.y1e0{bottom:846.993975px;}
.y210{bottom:847.418625px;}
.y1aa{bottom:847.672500px;}
.y23c{bottom:848.779500px;}
.yae{bottom:856.688700px;}
.y108{bottom:858.047697px;}
.y2e{bottom:859.409100px;}
.y120{bottom:862.811175px;}
.y1df{bottom:863.915850px;}
.y23b{bottom:865.276725px;}
.y61{bottom:866.468325px;}
.y107{bottom:871.483929px;}
.yad{bottom:876.162000px;}
.y1a9{bottom:876.841500px;}
.y1de{bottom:880.413075px;}
.y20f{bottom:880.923225px;}
.y23a{bottom:881.773950px;}
.y2d{bottom:883.389000px;}
.y60{bottom:885.941625px;}
.y106{bottom:889.342106px;}
.y11f{bottom:892.065225px;}
.yac{bottom:895.635300px;}
.y1dd{bottom:896.911725px;}
.y20e{bottom:897.421875px;}
.y239{bottom:898.271175px;}
.y105{bottom:902.863537px;}
.y5f{bottom:905.499975px;}
.y3{bottom:905.716500px;}
.y20{bottom:907.453504px;}
.y1dc{bottom:913.919100px;}
.y238{bottom:914.769825px;}
.yab{bottom:915.110175px;}
.y104{bottom:916.299769px;}
.y5e{bottom:924.974850px;}
.y103{bottom:929.820000px;}
.y1db{bottom:930.842400px;}
.y237{bottom:931.267050px;}
.y1a8{bottom:934.668000px;}
.yaa{bottom:934.668525px;}
.y1f{bottom:938.953498px;}
.y5d{bottom:944.448150px;}
.y1da{bottom:947.764275px;}
.y102{bottom:948.529275px;}
.y55{bottom:955.757804px;}
.ya9{bottom:963.921000px;}
.y5c{bottom:964.006500px;}
.y2{bottom:964.228500px;}
.y1d9{bottom:964.261500px;}
.y101{bottom:965.026500px;}
.y54{bottom:969.193500px;}
.y1e{bottom:970.453498px;}
.y1{bottom:989.716500px;}
.y88{bottom:1004.995500px;}
.y1d{bottom:1035.546001px;}
.y1c{bottom:1165.122003px;}
.h21{height:22.876425px;}
.h1d{height:30.029142px;}
.h16{height:31.499580px;}
.h1c{height:32.174571px;}
.h1f{height:32.444567px;}
.h4{height:33.000000px;}
.h22{height:33.839577px;}
.h18{height:34.319571px;}
.h1b{height:34.607567px;}
.hd{height:36.726562px;}
.h15{height:38.610000px;}
.h17{height:38.934000px;}
.h20{height:40.755000px;}
.hb{height:41.317383px;}
.h14{height:45.423000px;}
.h10{height:45.908203px;}
.h23{height:46.227000px;}
.h19{height:47.586433px;}
.h1e{height:50.062500px;}
.h1a{height:51.093000px;}
.hf{height:55.089844px;}
.h3{height:58.406250px;}
.h13{height:59.640000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hc{height:68.862305px;}
.he{height:82.634766px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h11{height:1054.488000px;}
.h12{height:1054.500000px;}
.ha{height:1249.500000px;}
.h9{height:1249.560000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wc{width:739.500000px;}
.wb{width:739.842000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:951.480000px;}
.wa{width:951.750000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x11{left:75.000000px;}
.xe{left:89.971650px;}
.x1a{left:96.010116px;}
.x1f{left:102.557400px;}
.xf{left:108.000000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xc{left:145.650000px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.xd{left:197.700000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xb{left:231.989992px;}
.xa{left:293.590494px;}
.x1c{left:310.053000px;}
.x1e{left:318.642000px;}
.x12{left:324.424500px;}
.x15{left:367.540322px;}
.x16{left:368.645508px;}
.x14{left:370.771882px;}
.x13{left:377.319000px;}
.x1d{left:470.097000px;}
.x19{left:489.909993px;}
.x17{left:491.780769px;}
.x18{left:493.141552px;}
.x10{left:514.743000px;}
.x1b{left:549.013500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-0.728000pt;}
.ls29{letter-spacing:-0.506667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.020267pt;}
.ls25{letter-spacing:0.022400pt;}
.ls1e{letter-spacing:0.044800pt;}
.ls26{letter-spacing:0.070933pt;}
.ls11{letter-spacing:0.072800pt;}
.ls13{letter-spacing:0.100800pt;}
.ls12{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.134399pt;}
.ls2a{letter-spacing:0.141867pt;}
.ls24{letter-spacing:0.145600pt;}
.ls1f{letter-spacing:0.173600pt;}
.ls1{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.202667pt;}
.ls22{letter-spacing:0.240800pt;}
.ls18{letter-spacing:0.268799pt;}
.ls2f{letter-spacing:0.273600pt;}
.ls9{letter-spacing:0.280000pt;}
.lsd{letter-spacing:0.369600pt;}
.ls2c{letter-spacing:0.385067pt;}
.ls1d{letter-spacing:0.386400pt;}
.ls21{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.464800pt;}
.ls23{letter-spacing:0.515200pt;}
.ls14{letter-spacing:0.520799pt;}
.ls3{letter-spacing:0.537599pt;}
.lse{letter-spacing:0.554400pt;}
.lsb{letter-spacing:0.560000pt;}
.ls2b{letter-spacing:0.572533pt;}
.lsf{letter-spacing:0.582400pt;}
.ls1c{letter-spacing:0.593600pt;}
.ls2e{letter-spacing:0.618133pt;}
.ls8{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.677600pt;}
.ls20{letter-spacing:0.694400pt;}
.lsc{letter-spacing:0.739200pt;}
.ls1b{letter-spacing:0.756000pt;}
.ls28{letter-spacing:0.760000pt;}
.ls7{letter-spacing:0.799989pt;}
.ls19{letter-spacing:0.823200pt;}
.ls10{letter-spacing:0.840000pt;}
.ls5{letter-spacing:1.008000pt;}
.ls17{letter-spacing:1.120000pt;}
.ls1a{letter-spacing:1.400000pt;}
.ls6{letter-spacing:138.220007pt;}
.ws0{word-spacing:-16.874667pt;}
.ws3{word-spacing:-12.846399pt;}
.ws4{word-spacing:-12.712000pt;}
.ws2{word-spacing:-12.432000pt;}
.ws8{word-spacing:-11.501333pt;}
.ws9{word-spacing:-10.994667pt;}
.wsa{word-spacing:-10.488000pt;}
.ws5{word-spacing:-7.317124pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:129.781460pt;}
.ws6{word-spacing:586.979329pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._11{margin-left:-2.677333pt;}
._1{margin-left:-1.774933pt;}
._9{width:1.713600pt;}
._8{width:2.957600pt;}
._5{width:3.892000pt;}
._0{width:4.966400pt;}
._4{width:6.181333pt;}
._6{width:7.178133pt;}
._d{width:8.515184pt;}
._14{width:9.415247pt;}
._a{width:10.323216pt;}
._7{width:11.260800pt;}
._e{width:12.332000pt;}
._15{width:13.416800pt;}
._f{width:14.800800pt;}
._10{width:16.228800pt;}
._13{width:24.992800pt;}
._44{width:26.154133pt;}
._45{width:32.411467pt;}
._c{width:69.124987pt;}
._b{width:79.571695pt;}
._12{width:142.036099pt;}
._18{width:188.587739pt;}
._16{width:191.214287pt;}
._17{width:214.620068pt;}
._1c{width:235.149290pt;}
._1a{width:240.162561pt;}
._2b{width:252.924001pt;}
._23{width:254.673313pt;}
._24{width:266.871490pt;}
._21{width:283.281792pt;}
._19{width:287.220783pt;}
._20{width:331.305943pt;}
._3f{width:337.505344pt;}
._42{width:343.953081pt;}
._3d{width:357.771757pt;}
._3b{width:378.038171pt;}
._2c{width:388.132978pt;}
._25{width:392.570256pt;}
._26{width:412.016631pt;}
._39{width:445.928522pt;}
._27{width:463.225373pt;}
._29{width:467.491986pt;}
._28{width:484.601105pt;}
._33{width:485.663492pt;}
._2a{width:498.267905pt;}
._40{width:503.780416pt;}
._30{width:505.929905pt;}
._35{width:526.196319pt;}
._22{width:534.051154pt;}
._1e{width:536.652939pt;}
._43{width:537.676090pt;}
._38{width:579.804618pt;}
._2e{width:584.111328pt;}
._36{width:586.588533pt;}
._2d{width:602.605400pt;}
._3e{width:617.324379pt;}
._1f{width:634.035808pt;}
._3c{width:664.266507pt;}
._41{width:729.047335pt;}
._32{width:747.350269pt;}
._37{width:780.311542pt;}
._1b{width:826.258701pt;}
._31{width:859.959831pt;}
._1d{width:892.540539pt;}
._2f{width:906.901960pt;}
._34{width:971.682787pt;}
._3a{width:981.844175pt;}
.fsf{font-size:28.440000pt;}
.fsd{font-size:37.332267pt;}
.fsa{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fsc{font-size:58.667200pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y5b{bottom:10.666667pt;}
.y5a{bottom:42.331220pt;}
.y59{bottom:53.065180pt;}
.y1b{bottom:60.086668pt;}
.y58{bottom:63.723542pt;}
.y14b{bottom:68.260020pt;}
.y57{bottom:74.381905pt;}
.y1a{bottom:74.753335pt;}
.y1a7{bottom:76.724733pt;}
.y1d8{bottom:76.726933pt;}
.ya8{bottom:76.729000pt;}
.y16e{bottom:76.730733pt;}
.ycf{bottom:76.731667pt;}
.y87{bottom:76.732067pt;}
.yf0{bottom:82.169600pt;}
.y14a{bottom:84.663015pt;}
.y56{bottom:85.039333pt;}
.y236{bottom:85.269133pt;}
.y20d{bottom:86.856267pt;}
.y14{bottom:88.706667pt;}
.y11e{bottom:90.029903pt;}
.y1a6{bottom:91.388933pt;}
.y1d7{bottom:91.543133pt;}
.ya7{bottom:94.038600pt;}
.y16d{bottom:94.040333pt;}
.yce{bottom:94.042667pt;}
.y86{bottom:94.043067pt;}
.y149{bottom:96.682065pt;}
.yef{bottom:99.554800pt;}
.y53{bottom:99.703867pt;}
.y235{bottom:100.312067pt;}
.y18{bottom:101.040000pt;}
.y11d{bottom:101.973220pt;}
.y20c{bottom:101.975200pt;}
.y1d6{bottom:106.207333pt;}
.y148{bottom:108.701115pt;}
.ya6{bottom:111.425200pt;}
.y16c{bottom:111.425533pt;}
.ycd{bottom:111.427867pt;}
.y85{bottom:111.428267pt;}
.y234{bottom:114.976267pt;}
.y20b{bottom:116.639400pt;}
.yee{bottom:116.864400pt;}
.y1a5{bottom:117.392000pt;}
.y11c{bottom:118.451948pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.y147{bottom:120.720165pt;}
.y1d5{bottom:120.871533pt;}
.ya5{bottom:128.734800pt;}
.y16b{bottom:128.736533pt;}
.ye6{bottom:128.737867pt;}
.y233{bottom:129.640467pt;}
.y11b{bottom:130.470997pt;}
.y20a{bottom:131.303600pt;}
.y146{bottom:132.663482pt;}
.y52{bottom:132.664533pt;}
.yed{bottom:134.175400pt;}
.y1d4{bottom:135.687733pt;}
.ycc{bottom:137.430067pt;}
.y84{bottom:137.430467pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y11a{bottom:142.488981pt;}
.y145{bottom:144.681465pt;}
.y232{bottom:144.759400pt;}
.ya4{bottom:146.044400pt;}
.y16a{bottom:146.046133pt;}
.ye5{bottom:146.048867pt;}
.y209{bottom:146.346533pt;}
.y51{bottom:149.974133pt;}
.y1d3{bottom:150.351933pt;}
.yec{bottom:151.560600pt;}
.y119{bottom:154.432298pt;}
.y144{bottom:156.700515pt;}
.y231{bottom:159.801067pt;}
.y208{bottom:161.010733pt;}
.ya3{bottom:163.431000pt;}
.y169{bottom:163.431333pt;}
.ye4{bottom:163.434067pt;}
.y1d2{bottom:165.017400pt;}
.y118{bottom:166.451348pt;}
.y50{bottom:167.285133pt;}
.y1a4{bottom:167.887400pt;}
.y143{bottom:168.719565pt;}
.yeb{bottom:168.870200pt;}
.y230{bottom:174.466533pt;}
.y207{bottom:175.674933pt;}
.y117{bottom:178.470397pt;}
.y1d1{bottom:179.832333pt;}
.y142{bottom:180.662882pt;}
.ya2{bottom:180.740600pt;}
.y168{bottom:180.742333pt;}
.ye3{bottom:180.743667pt;}
.y191{bottom:180.819267pt;}
.y83{bottom:180.894867pt;}
.y1a3{bottom:182.551600pt;}
.ycb{bottom:183.616067pt;}
.y4f{bottom:184.670333pt;}
.yea{bottom:186.181200pt;}
.y22f{bottom:189.130733pt;}
.y206{bottom:190.340400pt;}
.y116{bottom:190.489447pt;}
.y141{bottom:192.681932pt;}
.y1d0{bottom:194.648533pt;}
.y1a2{bottom:197.215800pt;}
.ya1{bottom:198.050200pt;}
.y167{bottom:198.051933pt;}
.ye2{bottom:198.054667pt;}
.y190{bottom:198.130267pt;}
.y82{bottom:198.205867pt;}
.yca{bottom:201.001267pt;}
.y4e{bottom:201.979933pt;}
.y115{bottom:202.432765pt;}
.ye9{bottom:203.566400pt;}
.y22e{bottom:204.172400pt;}
.y140{bottom:204.700982pt;}
.y205{bottom:205.004600pt;}
.y1cf{bottom:209.312733pt;}
.y1a1{bottom:211.880000pt;}
.y114{bottom:214.451814pt;}
.ya0{bottom:215.361200pt;}
.y166{bottom:215.361533pt;}
.y178{bottom:215.364267pt;}
.y18f{bottom:215.439867pt;}
.y81{bottom:215.515467pt;}
.y13f{bottom:216.718965pt;}
.yc9{bottom:218.312267pt;}
.y22d{bottom:218.837867pt;}
.y4d{bottom:219.290933pt;}
.y204{bottom:219.668800pt;}
.ye8{bottom:220.876000pt;}
.y1ce{bottom:223.976933pt;}
.ye1{bottom:224.056867pt;}
.y113{bottom:226.469797pt;}
.y13e{bottom:228.662282pt;}
.y9f{bottom:232.746400pt;}
.y165{bottom:232.748133pt;}
.y177{bottom:232.749467pt;}
.y18e{bottom:232.825067pt;}
.y80{bottom:232.900667pt;}
.y22c{bottom:233.578067pt;}
.y203{bottom:234.333000pt;}
.yc8{bottom:235.621867pt;}
.y4c{bottom:236.600533pt;}
.y1a0{bottom:237.882667pt;}
.y1cd{bottom:238.717133pt;}
.y13d{bottom:240.681332pt;}
.y112{bottom:242.268000pt;}
.ye7{bottom:246.878667pt;}
.y22b{bottom:248.619733pt;}
.y202{bottom:249.375933pt;}
.y9e{bottom:250.057400pt;}
.y164{bottom:250.057733pt;}
.y176{bottom:250.060467pt;}
.y18d{bottom:250.136067pt;}
.y7f{bottom:250.211667pt;}
.y13c{bottom:252.700382pt;}
.yc7{bottom:253.007067pt;}
.y1cc{bottom:253.381333pt;}
.y4b{bottom:253.985733pt;}
.y110{bottom:259.200000pt;}
.y22a{bottom:263.662667pt;}
.y111{bottom:263.886667pt;}
.y201{bottom:264.493600pt;}
.y13b{bottom:264.719431pt;}
.y9d{bottom:267.367000pt;}
.y163{bottom:267.367333pt;}
.y175{bottom:267.370067pt;}
.y18c{bottom:267.445667pt;}
.y7e{bottom:267.521267pt;}
.y1cb{bottom:268.046800pt;}
.yc6{bottom:270.318067pt;}
.y4a{bottom:271.296733pt;}
.ye0{bottom:273.189867pt;}
.y10f{bottom:275.755600pt;}
.y13a{bottom:276.662749pt;}
.y229{bottom:278.705600pt;}
.y200{bottom:279.159067pt;}
.y1ca{bottom:282.861733pt;}
.y9c{bottom:284.752200pt;}
.y162{bottom:284.753933pt;}
.y174{bottom:284.755267pt;}
.y18b{bottom:284.830867pt;}
.y7d{bottom:284.906467pt;}
.yc5{bottom:287.627667pt;}
.y19f{bottom:288.377333pt;}
.y49{bottom:288.606333pt;}
.y139{bottom:288.680732pt;}
.y10e{bottom:290.419800pt;}
.ydf{bottom:290.576467pt;}
.y228{bottom:293.444533pt;}
.y1ff{bottom:293.823267pt;}
.y1c9{bottom:297.527200pt;}
.y9b{bottom:302.063200pt;}
.y161{bottom:302.063533pt;}
.y173{bottom:302.066267pt;}
.y18a{bottom:302.141867pt;}
.y7c{bottom:302.217467pt;}
.y138{bottom:304.554667pt;}
.yc4{bottom:305.012867pt;}
.y10d{bottom:305.084000pt;}
.y48{bottom:305.991533pt;}
.ya{bottom:306.382667pt;}
.yde{bottom:307.886067pt;}
.y227{bottom:308.110000pt;}
.y1fe{bottom:308.864933pt;}
.y1c8{bottom:312.191400pt;}
.y19e{bottom:314.381333pt;}
.y9a{bottom:319.372800pt;}
.y160{bottom:319.373133pt;}
.y172{bottom:319.375867pt;}
.y189{bottom:319.451467pt;}
.y7b{bottom:319.527067pt;}
.y137{bottom:321.108933pt;}
.yc3{bottom:322.323867pt;}
.y226{bottom:323.151667pt;}
.y47{bottom:323.302533pt;}
.y1fd{bottom:323.530400pt;}
.ydd{bottom:325.195667pt;}
.y1c7{bottom:327.006333pt;}
.y136{bottom:335.773133pt;}
.y99{bottom:336.758000pt;}
.y15f{bottom:336.759733pt;}
.y171{bottom:336.761067pt;}
.y188{bottom:336.836667pt;}
.y7a{bottom:336.912267pt;}
.y1fc{bottom:338.194600pt;}
.yc2{bottom:339.633467pt;}
.y46{bottom:340.612133pt;}
.y2c{bottom:341.001334pt;}
.y1c6{bottom:341.822533pt;}
.ydc{bottom:342.582267pt;}
.yd{bottom:343.546667pt;}
.y135{bottom:350.437333pt;}
.y9{bottom:351.724000pt;}
.y225{bottom:352.858800pt;}
.y1fb{bottom:353.237533pt;}
.y98{bottom:354.069000pt;}
.y170{bottom:354.072067pt;}
.y187{bottom:354.147667pt;}
.y79{bottom:354.223267pt;}
.y1c5{bottom:356.486733pt;}
.yc1{bottom:356.943067pt;}
.y45{bottom:357.997333pt;}
.ydb{bottom:359.891867pt;}
.y100{bottom:362.006133pt;}
.y15e{bottom:362.761933pt;}
.y19d{bottom:364.951600pt;}
.y224{bottom:367.523000pt;}
.y1fa{bottom:367.977733pt;}
.y1c4{bottom:371.150933pt;}
.y97{bottom:371.378600pt;}
.y186{bottom:371.457267pt;}
.y78{bottom:371.532867pt;}
.yc0{bottom:374.329667pt;}
.y44{bottom:375.308333pt;}
.yda{bottom:377.201467pt;}
.yff{bottom:379.391333pt;}
.y19c{bottom:379.615800pt;}
.y16f{bottom:380.074267pt;}
.y223{bottom:382.188467pt;}
.y1f9{bottom:382.641933pt;}
.y1c3{bottom:385.816400pt;}
.yb{bottom:386.533333pt;}
.y96{bottom:388.688200pt;}
.y185{bottom:388.766867pt;}
.y77{bottom:388.842467pt;}
.ybf{bottom:391.639267pt;}
.y43{bottom:392.617933pt;}
.y19b{bottom:394.280000pt;}
.yd9{bottom:394.588067pt;}
.yfe{bottom:396.702333pt;}
.y134{bottom:396.850904pt;}
.y222{bottom:396.852667pt;}
.y8{bottom:397.065333pt;}
.y1f8{bottom:397.683600pt;}
.y2b{bottom:398.201334pt;}
.y1c2{bottom:400.480600pt;}
.y95{bottom:406.074800pt;}
.y15d{bottom:406.150733pt;}
.y184{bottom:406.153467pt;}
.y76{bottom:406.229067pt;}
.ybe{bottom:408.948867pt;}
.y42{bottom:409.927533pt;}
.y221{bottom:411.970333pt;}
.y1f7{bottom:412.349067pt;}
.y133{bottom:413.329631pt;}
.yfd{bottom:414.011933pt;}
.y1c1{bottom:415.296800pt;}
.y19a{bottom:420.282667pt;}
.yd8{bottom:420.590267pt;}
.y94{bottom:423.384400pt;}
.y15c{bottom:423.460333pt;}
.y183{bottom:423.463067pt;}
.y75{bottom:423.538667pt;}
.y132{bottom:425.348681pt;}
.ybd{bottom:426.335467pt;}
.y220{bottom:426.635800pt;}
.y1f6{bottom:427.013267pt;}
.y41{bottom:427.314133pt;}
.y1c0{bottom:429.961000pt;}
.y11{bottom:433.826667pt;}
.y131{bottom:437.291998pt;}
.yfc{bottom:440.014133pt;}
.y93{bottom:440.694000pt;}
.y15b{bottom:440.771333pt;}
.y182{bottom:440.772667pt;}
.y74{bottom:440.848267pt;}
.y21f{bottom:441.300000pt;}
.y1f5{bottom:442.056200pt;}
.y7{bottom:442.406667pt;}
.ybc{bottom:443.645067pt;}
.y40{bottom:444.623733pt;}
.y1bf{bottom:444.625200pt;}
.y130{bottom:449.311048pt;}
.y2a{bottom:455.401334pt;}
.y21e{bottom:456.341667pt;}
.y1f4{bottom:456.720400pt;}
.y92{bottom:458.080600pt;}
.y15a{bottom:458.156533pt;}
.y181{bottom:458.159267pt;}
.y73{bottom:458.234867pt;}
.y1be{bottom:459.441400pt;}
.ybb{bottom:460.954667pt;}
.y12f{bottom:461.330098pt;}
.y3f{bottom:461.933333pt;}
.y199{bottom:468.360400pt;}
.yd7{bottom:469.724667pt;}
.y21d{bottom:471.007133pt;}
.y1f3{bottom:471.384600pt;}
.y12e{bottom:473.349148pt;}
.y1bd{bottom:474.105600pt;}
.y91{bottom:475.390200pt;}
.y159{bottom:475.466133pt;}
.y180{bottom:475.468867pt;}
.y72{bottom:475.544467pt;}
.yba{bottom:478.341267pt;}
.y12{bottom:478.426667pt;}
.y12d{bottom:485.291398pt;}
.y21c{bottom:485.671333pt;}
.y198{bottom:485.671400pt;}
.y1f2{bottom:486.502267pt;}
.yd6{bottom:487.034267pt;}
.y6{bottom:487.748000pt;}
.y3e{bottom:487.937333pt;}
.y1bc{bottom:488.769800pt;}
.y90{bottom:492.699800pt;}
.y158{bottom:492.777133pt;}
.y17f{bottom:492.778467pt;}
.y71{bottom:492.854067pt;}
.yfb{bottom:495.346333pt;}
.y21b{bottom:500.714267pt;}
.y12c{bottom:501.165333pt;}
.y1f1{bottom:501.167733pt;}
.y197{bottom:503.056600pt;}
.y1bb{bottom:503.586000pt;}
.yb9{bottom:504.343467pt;}
.yd5{bottom:504.343867pt;}
.y8f{bottom:510.086400pt;}
.y157{bottom:510.162333pt;}
.y17e{bottom:510.165067pt;}
.y70{bottom:510.240667pt;}
.yfa{bottom:512.731533pt;}
.y29{bottom:515.206667pt;}
.y21a{bottom:515.378467pt;}
.y1f0{bottom:515.831933pt;}
.y12b{bottom:517.719800pt;}
.y1ba{bottom:518.250200pt;}
.y196{bottom:520.366200pt;}
.yd4{bottom:521.730467pt;}
.y19{bottom:524.093333pt;}
.y8e{bottom:527.396000pt;}
.y156{bottom:527.471933pt;}
.y17d{bottom:527.474667pt;}
.y6f{bottom:527.550267pt;}
.yf9{bottom:530.042533pt;}
.y219{bottom:530.042667pt;}
.y1ef{bottom:530.496133pt;}
.y12a{bottom:532.384000pt;}
.y1b9{bottom:532.914400pt;}
.y5{bottom:533.089333pt;}
.y195{bottom:537.677200pt;}
.yd3{bottom:539.040067pt;}
.y8d{bottom:544.705600pt;}
.y155{bottom:544.782933pt;}
.y17c{bottom:544.784267pt;}
.y6e{bottom:544.859867pt;}
.y1ee{bottom:545.160333pt;}
.y28{bottom:545.740001pt;}
.y3a{bottom:547.200267pt;}
.yf8{bottom:547.352133pt;}
.y1b8{bottom:547.730600pt;}
.yb8{bottom:550.529467pt;}
.y194{bottom:555.062400pt;}
.yd2{bottom:556.349667pt;}
.y27{bottom:559.073335pt;}
.y1ed{bottom:560.203267pt;}
.y39{bottom:560.504667pt;}
.ye{bottom:561.706667pt;}
.y8c{bottom:562.092200pt;}
.y154{bottom:562.168133pt;}
.y6d{bottom:562.170867pt;}
.y1b7{bottom:562.394800pt;}
.yf7{bottom:564.661733pt;}
.yb7{bottom:567.914667pt;}
.y193{bottom:572.372000pt;}
.y26{bottom:572.406667pt;}
.y129{bottom:573.055867pt;}
.yd1{bottom:573.736267pt;}
.y38{bottom:573.807867pt;}
.y1ec{bottom:574.867467pt;}
.y1b6{bottom:577.059000pt;}
.y8b{bottom:579.401800pt;}
.y153{bottom:579.477733pt;}
.y17b{bottom:579.480467pt;}
.y6c{bottom:579.556067pt;}
.yf6{bottom:582.048333pt;}
.yb6{bottom:585.224267pt;}
.y37{bottom:587.187867pt;}
.y1eb{bottom:589.532933pt;}
.y128{bottom:590.365467pt;}
.y1b5{bottom:591.875200pt;}
.y152{bottom:596.788733pt;}
.y17a{bottom:596.790067pt;}
.y6b{bottom:596.865667pt;}
.y192{bottom:598.374667pt;}
.yf5{bottom:599.357933pt;}
.yd0{bottom:599.738467pt;}
.y36{bottom:600.492267pt;}
.yb5{bottom:602.535267pt;}
.y218{bottom:604.197133pt;}
.y1ea{bottom:604.574600pt;}
.y8a{bottom:605.404000pt;}
.y1b4{bottom:606.539400pt;}
.y127{bottom:607.675067pt;}
.y35{bottom:613.871067pt;}
.y151{bottom:614.098333pt;}
.y6a{bottom:614.176667pt;}
.yf4{bottom:616.667533pt;}
.y3d{bottom:617.878700pt;}
.y217{bottom:618.861333pt;}
.y1e9{bottom:619.692267pt;}
.yb4{bottom:619.920467pt;}
.y1b3{bottom:621.204867pt;}
.y179{bottom:622.793667pt;}
.y126{bottom:625.061667pt;}
.y34{bottom:627.175467pt;}
.y3c{bottom:629.822017pt;}
.y89{bottom:631.408000pt;}
.y150{bottom:631.483533pt;}
.y69{bottom:631.561867pt;}
.y216{bottom:633.979000pt;}
.yf3{bottom:634.054133pt;}
.y1e8{bottom:634.357733pt;}
.y1b2{bottom:635.869067pt;}
.yb3{bottom:637.231467pt;}
.y33{bottom:640.478667pt;}
.y3b{bottom:641.840000pt;}
.y25{bottom:644.726665pt;}
.y215{bottom:648.644467pt;}
.y14f{bottom:648.794533pt;}
.y68{bottom:648.871467pt;}
.y1e7{bottom:649.021933pt;}
.y1b1{bottom:650.533267pt;}
.y125{bottom:651.063867pt;}
.yf2{bottom:651.363733pt;}
.y32{bottom:653.858667pt;}
.yb2{bottom:654.541067pt;}
.y214{bottom:663.308667pt;}
.y1e6{bottom:664.064867pt;}
.y1b0{bottom:665.197467pt;}
.y14e{bottom:666.104133pt;}
.y67{bottom:666.182467pt;}
.yf1{bottom:668.673333pt;}
.y24{bottom:671.393332pt;}
.y213{bottom:678.350333pt;}
.y1e5{bottom:678.729067pt;}
.y1af{bottom:679.862933pt;}
.yb1{bottom:680.543267pt;}
.y14d{bottom:683.489333pt;}
.y66{bottom:683.567667pt;}
.y23{bottom:687.393332pt;}
.y4{bottom:691.756000pt;}
.y31{bottom:692.560000pt;}
.y1e4{bottom:693.393267pt;}
.y1ae{bottom:694.677867pt;}
.y124{bottom:697.627867pt;}
.y65{bottom:700.877267pt;}
.y22{bottom:703.393332pt;}
.y1e3{bottom:708.510933pt;}
.y1ad{bottom:709.342067pt;}
.y14c{bottom:709.493333pt;}
.y10c{bottom:710.249987pt;}
.y123{bottom:714.937467pt;}
.y30{bottom:717.278667pt;}
.y64{bottom:718.188267pt;}
.y1e2{bottom:723.176400pt;}
.y212{bottom:723.553867pt;}
.y1ac{bottom:724.007533pt;}
.y13{bottom:725.040000pt;}
.y10b{bottom:726.652982pt;}
.yb0{bottom:726.804867pt;}
.y122{bottom:732.322667pt;}
.y63{bottom:735.573467pt;}
.y1e1{bottom:737.840600pt;}
.y211{bottom:738.596800pt;}
.y10a{bottom:738.670965pt;}
.y1ab{bottom:738.747733pt;}
.y2f{bottom:742.601867pt;}
.yaf{bottom:744.114467pt;}
.y121{bottom:749.633667pt;}
.y21{bottom:750.034669pt;}
.y109{bottom:750.690014pt;}
.y62{bottom:752.883067pt;}
.y1e0{bottom:752.883533pt;}
.y210{bottom:753.261000pt;}
.y1aa{bottom:753.486667pt;}
.y23c{bottom:754.470667pt;}
.yae{bottom:761.501067pt;}
.y108{bottom:762.709064pt;}
.y2e{bottom:763.919200pt;}
.y120{bottom:766.943267pt;}
.y1df{bottom:767.925200pt;}
.y23b{bottom:769.134867pt;}
.y61{bottom:770.194067pt;}
.y107{bottom:774.652382pt;}
.yad{bottom:778.810667pt;}
.y1a9{bottom:779.414667pt;}
.y1de{bottom:782.589400pt;}
.y20f{bottom:783.042867pt;}
.y23a{bottom:783.799067pt;}
.y2d{bottom:785.234667pt;}
.y60{bottom:787.503667pt;}
.y106{bottom:790.526316pt;}
.y11f{bottom:792.946867pt;}
.yac{bottom:796.120267pt;}
.y1dd{bottom:797.254867pt;}
.y20e{bottom:797.708333pt;}
.y239{bottom:798.463267pt;}
.y105{bottom:802.545366pt;}
.y5f{bottom:804.888867pt;}
.y3{bottom:805.081333pt;}
.y20{bottom:806.625337pt;}
.y1dc{bottom:812.372533pt;}
.y238{bottom:813.128733pt;}
.yab{bottom:813.431267pt;}
.y104{bottom:814.488684pt;}
.y5e{bottom:822.199867pt;}
.y103{bottom:826.506667pt;}
.y1db{bottom:827.415467pt;}
.y237{bottom:827.792933pt;}
.y1a8{bottom:830.816000pt;}
.yaa{bottom:830.816467pt;}
.y1f{bottom:834.625331pt;}
.y5d{bottom:839.509467pt;}
.y1da{bottom:842.457133pt;}
.y102{bottom:843.137133pt;}
.y55{bottom:849.562493pt;}
.ya9{bottom:856.818667pt;}
.y5c{bottom:856.894667pt;}
.y2{bottom:857.092000pt;}
.y1d9{bottom:857.121333pt;}
.y101{bottom:857.801333pt;}
.y54{bottom:861.505333pt;}
.y1e{bottom:862.625331pt;}
.y1{bottom:879.748000pt;}
.y88{bottom:893.329333pt;}
.y1d{bottom:920.485335pt;}
.y1c{bottom:1035.664002pt;}
.h21{height:20.334600pt;}
.h1d{height:26.692571pt;}
.h16{height:27.999627pt;}
.h1c{height:28.599619pt;}
.h1f{height:28.839615pt;}
.h4{height:29.333333pt;}
.h22{height:30.079624pt;}
.h18{height:30.506285pt;}
.h1b{height:30.762282pt;}
.hd{height:32.645833pt;}
.h15{height:34.320000pt;}
.h17{height:34.608000pt;}
.h20{height:36.226667pt;}
.hb{height:36.726562pt;}
.h14{height:40.376000pt;}
.h10{height:40.807292pt;}
.h23{height:41.090667pt;}
.h19{height:42.299051pt;}
.h1e{height:44.500000pt;}
.h1a{height:45.416000pt;}
.hf{height:48.968750pt;}
.h3{height:51.916667pt;}
.h13{height:53.013333pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hc{height:61.210938pt;}
.he{height:73.453125pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h11{height:937.322667pt;}
.h12{height:937.333333pt;}
.ha{height:1110.666667pt;}
.h9{height:1110.720000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wc{width:657.333333pt;}
.wb{width:657.637333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:845.760000pt;}
.wa{width:846.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x11{left:66.666667pt;}
.xe{left:79.974800pt;}
.x1a{left:85.342326pt;}
.x1f{left:91.162133pt;}
.xf{left:96.000000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xc{left:129.466667pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.xd{left:175.733333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xb{left:206.213326pt;}
.xa{left:260.969328pt;}
.x1c{left:275.602667pt;}
.x1e{left:283.237333pt;}
.x12{left:288.377333pt;}
.x15{left:326.702509pt;}
.x16{left:327.684896pt;}
.x14{left:329.575006pt;}
.x13{left:335.394667pt;}
.x1d{left:417.864000pt;}
.x19{left:435.475549pt;}
.x17{left:437.138462pt;}
.x18{left:438.348046pt;}
.x10{left:457.549333pt;}
.x1b{left:488.012000pt;}
}




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