
    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_7cf281d84321f6b3ea17a872.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_f9111917d7f0913d1e9eb805.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b8485f5a903eb69f6c2c375f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_dee4c30e1a4f5390e4af4c39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_34e8bde121ee8f7eca01b3f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_1452f9de50fa38f1f1fc88c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6c506af251eb42c99dfb5aff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_c75e4d7f4c774d9a8cb76986.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_df85c381da00599f3de9ec4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ec73d28072790ca915d7d3f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_fb12c796c56f8c6196fb7d9f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.728027;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_7095031b517c24d3759f1bee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.856934;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_11908effaa7ab6b6ad6213aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900391;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_86ba2a0602435e44949d0d1a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8b6245e9f429ddeee9163016.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_cbfdf15990a16349578ed010.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.689453;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_691bb39571e342a3da6366ad.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908203;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:ff12;src:url('chunks/assets/font_7fe1787f12a191a30ff55bfa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900391;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:ff13;src:url('chunks/assets/font_a59586d2a56ca021207c50e6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.678223;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:ff14;src:url('chunks/assets/font_885e8d93021e5044cb8f2c4f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.680176;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:ff15;src:url('chunks/assets/font_907d74be3e5c2b9c5356200c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f5364738c00273d2095f0f76.woff2')format("woff");}.ff16{font-family:ff16;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);}
.v3{vertical-align:-21.600000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls2b{letter-spacing:-0.477792px;}
.ls2c{letter-spacing:-0.459648px;}
.ls29{letter-spacing:-0.417312px;}
.lsa{letter-spacing:-0.395568px;}
.ls2a{letter-spacing:-0.381024px;}
.ls11{letter-spacing:-0.338688px;}
.ls1f{letter-spacing:-0.320544px;}
.ls9{letter-spacing:-0.318384px;}
.ls10{letter-spacing:-0.302400px;}
.ls35{letter-spacing:-0.272160px;}
.ls20{letter-spacing:-0.260064px;}
.lsb{letter-spacing:-0.250848px;}
.ls12{letter-spacing:-0.241920px;}
.ls23{letter-spacing:-0.223776px;}
.ls28{letter-spacing:-0.175392px;}
.ls25{letter-spacing:-0.157248px;}
.ls27{letter-spacing:-0.145152px;}
.lsc{letter-spacing:-0.144720px;}
.ls26{letter-spacing:-0.120960px;}
.ls15{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000576px;}
.ls7{letter-spacing:0.007200px;}
.ls1b{letter-spacing:0.010944px;}
.ls2d{letter-spacing:0.011376px;}
.ls18{letter-spacing:0.011520px;}
.ls13{letter-spacing:0.014400px;}
.ls1e{letter-spacing:0.031104px;}
.ls1c{letter-spacing:0.046080px;}
.ls21{letter-spacing:0.046656px;}
.ls34{letter-spacing:0.047376px;}
.ls33{letter-spacing:0.047520px;}
.ls22{letter-spacing:0.058320px;}
.ls24{letter-spacing:0.059040px;}
.ls1d{letter-spacing:0.060048px;}
.ls32{letter-spacing:0.072720px;}
.ls4{letter-spacing:0.116928px;}
.ls2{letter-spacing:0.119232px;}
.ls6{letter-spacing:0.119952px;}
.ls5{letter-spacing:0.120096px;}
.lsf{letter-spacing:0.158688px;}
.ls1{letter-spacing:0.169344px;}
.ls2f{letter-spacing:0.194400px;}
.ls30{letter-spacing:0.194832px;}
.lsd{letter-spacing:0.209664px;}
.ls19{letter-spacing:0.239040px;}
.ls2e{letter-spacing:0.240048px;}
.ls31{letter-spacing:0.240480px;}
.ls3{letter-spacing:0.242208px;}
.ls0{letter-spacing:0.319536px;}
.lse{letter-spacing:0.359136px;}
.ls17{letter-spacing:2.779200px;}
.ls16{letter-spacing:33.984000px;}
.ls14{letter-spacing:53.483904px;}
.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;}
}
.ws1{word-spacing:-21.239136px;}
.ws2{word-spacing:-21.122208px;}
.ws3{word-spacing:-20.996928px;}
.ws5{word-spacing:-18.014400px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.ws9{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.944608px;}
.wsc{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.wsa{word-spacing:-14.859936px;}
.ws11{word-spacing:-14.847840px;}
.ws12{word-spacing:-14.817600px;}
.wsf{word-spacing:-14.799456px;}
.ws7{word-spacing:-14.781312px;}
.wsd{word-spacing:-14.660352px;}
.wse{word-spacing:-14.642208px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-4.733136px;}
._b{margin-left:-3.302064px;}
._7{margin-left:-2.230560px;}
._1{margin-left:-1.061280px;}
._0{width:1.061280px;}
._8{width:2.786400px;}
._10{width:3.837600px;}
._9{width:5.320800px;}
._a{width:7.048800px;}
._3{width:8.683200px;}
._4{width:10.080000px;}
._5{width:11.131200px;}
._f{width:12.492000px;}
._11{width:14.486400px;}
._6{width:16.156800px;}
._c{width:19.972800px;}
._e{width:21.607200px;}
._16{width:23.198400px;}
._15{width:24.566400px;}
._12{width:25.610112px;}
._13{width:26.892864px;}
._14{width:28.180800px;}
._1a{width:30.173040px;}
._19{width:31.708800px;}
._1f{width:34.358400px;}
._1d{width:35.568000px;}
._1c{width:37.209600px;}
._1e{width:50.652000px;}
._18{width:96.493536px;}
._2{width:113.459760px;}
._1b{width:183.081600px;}
._17{width:846.000000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(227,108,10);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:80.640000px;}
.fs4{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fsb{font-size:108.000000px;}
.fs9{font-size:288.000000px;}
.yc3{bottom:-15.608550px;}
.yd0{bottom:-14.888550px;}
.yd6{bottom:-13.448550px;}
.yb2{bottom:-12.548550px;}
.yca{bottom:-11.228550px;}
.ybb{bottom:-11.108550px;}
.ydf{bottom:-0.008550px;}
.y0{bottom:0.000000px;}
.yc2{bottom:1.671450px;}
.ycf{bottom:2.031450px;}
.yf7{bottom:3.471450px;}
.yf9{bottom:3.531450px;}
.y8b{bottom:3.651450px;}
.yd5{bottom:3.831450px;}
.y139{bottom:3.951450px;}
.y131{bottom:4.071450px;}
.y94{bottom:4.131450px;}
.y8d{bottom:4.371450px;}
.y11d{bottom:4.431450px;}
.y10d{bottom:4.551450px;}
.y11a{bottom:4.611450px;}
.y32{bottom:4.671450px;}
.yb1{bottom:4.731450px;}
.y30{bottom:4.911450px;}
.y92{bottom:5.271450px;}
.y8f{bottom:5.571450px;}
.yc9{bottom:6.051450px;}
.yba{bottom:6.171450px;}
.y2e{bottom:6.231450px;}
.yda{bottom:7.731450px;}
.ye4{bottom:8.271450px;}
.yaa{bottom:9.111450px;}
.ye8{bottom:10.851450px;}
.ye6{bottom:11.031450px;}
.yfb{bottom:14.091450px;}
.yfd{bottom:14.211450px;}
.y103{bottom:14.271450px;}
.y105{bottom:14.391450px;}
.y101{bottom:14.631450px;}
.yff{bottom:15.351450px;}
.ydb{bottom:16.371450px;}
.y111{bottom:17.151450px;}
.yde{bottom:17.271450px;}
.y10a{bottom:17.451450px;}
.y106{bottom:17.511450px;}
.y113{bottom:17.691450px;}
.y10f{bottom:18.111450px;}
.y108{bottom:18.411450px;}
.yc1{bottom:18.951450px;}
.ye0{bottom:19.071450px;}
.yce{bottom:19.311450px;}
.y126{bottom:19.371450px;}
.y11e{bottom:19.731450px;}
.yd1{bottom:20.391450px;}
.yf6{bottom:20.751450px;}
.y98{bottom:20.931450px;}
.yd4{bottom:21.111450px;}
.y138{bottom:21.231450px;}
.y130{bottom:21.351450px;}
.yd7{bottom:21.471450px;}
.y10c{bottom:21.831450px;}
.yb0{bottom:22.011450px;}
.y2c{bottom:22.551450px;}
.yc8{bottom:23.331450px;}
.yb9{bottom:23.451450px;}
.yd9{bottom:25.011450px;}
.ye3{bottom:25.551450px;}
.ya9{bottom:26.391450px;}
.y11b{bottom:29.451450px;}
.ycb{bottom:30.891450px;}
.y122{bottom:33.171450px;}
.y124{bottom:33.651450px;}
.y125{bottom:34.131450px;}
.ydd{bottom:34.551450px;}
.yc0{bottom:36.231450px;}
.ycd{bottom:36.591450px;}
.yc4{bottom:37.311450px;}
.y97{bottom:38.211450px;}
.yd3{bottom:38.391450px;}
.y137{bottom:38.511450px;}
.yaf{bottom:39.291450px;}
.yc7{bottom:40.611450px;}
.yb8{bottom:40.731450px;}
.ye2{bottom:42.831450px;}
.ya8{bottom:43.671450px;}
.yb3{bottom:47.571450px;}
.ybc{bottom:48.651450px;}
.ybf{bottom:53.511450px;}
.y96{bottom:55.491450px;}
.y136{bottom:55.791450px;}
.yae{bottom:56.571450px;}
.y8{bottom:56.871450px;}
.yc6{bottom:57.891450px;}
.yb7{bottom:58.011450px;}
.ybe{bottom:70.791450px;}
.y135{bottom:73.071450px;}
.yad{bottom:73.851450px;}
.yb6{bottom:74.931450px;}
.y7{bottom:77.391450px;}
.y134{bottom:90.351450px;}
.yac{bottom:91.131450px;}
.yb5{bottom:92.211450px;}
.y6{bottom:98.271450px;}
.y133{bottom:107.631450px;}
.y5{bottom:118.791450px;}
.y120{bottom:129.171450px;}
.y4{bottom:139.671450px;}
.y3{bottom:160.191450px;}
.y2a{bottom:179.991450px;}
.y146{bottom:185.031450px;}
.y12d{bottom:185.751450px;}
.y1a4{bottom:190.791450px;}
.y6f{bottom:195.111450px;}
.y56{bottom:196.191450px;}
.ye7{bottom:196.500000px;}
.y116{bottom:196.911450px;}
.y29{bottom:197.271450px;}
.ya4{bottom:198.351450px;}
.y18a{bottom:199.431450px;}
.y28{bottom:202.671450px;}
.y87{bottom:205.911450px;}
.y1a3{bottom:211.671450px;}
.y27{bottom:215.631450px;}
.y145{bottom:215.991450px;}
.y12c{bottom:216.711450px;}
.y169{bottom:219.231450px;}
.y189{bottom:220.671450px;}
.y6e{bottom:226.071450px;}
.y55{bottom:227.151450px;}
.ye5{bottom:228.000000px;}
.y115{bottom:228.231450px;}
.ya3{bottom:229.311450px;}
.y1a2{bottom:232.191450px;}
.y86{bottom:237.231450px;}
.y26{bottom:239.751450px;}
.y168{bottom:240.111450px;}
.y188{bottom:241.191450px;}
.y144{bottom:247.311450px;}
.y12b{bottom:247.671450px;}
.y1a1{bottom:253.071450px;}
.y6d{bottom:257.031450px;}
.y54{bottom:258.471450px;}
.y114{bottom:259.191450px;}
.y25{bottom:260.271450px;}
.y167{bottom:260.631450px;}
.ye1{bottom:261.000000px;}
.y85{bottom:268.191450px;}
.y187{bottom:270.711450px;}
.y12a{bottom:273.231450px;}
.y1a0{bottom:273.591450px;}
.y112{bottom:277.500000px;}
.y143{bottom:278.271450px;}
.y24{bottom:281.151450px;}
.y166{bottom:281.511450px;}
.y6c{bottom:288.351450px;}
.y53{bottom:289.431450px;}
.y129{bottom:290.511450px;}
.ya2{bottom:291.591450px;}
.y19f{bottom:294.471450px;}
.y84{bottom:299.151450px;}
.y23{bottom:301.671450px;}
.y165{bottom:302.031450px;}
.y128{bottom:307.791450px;}
.y110{bottom:309.000000px;}
.y142{bottom:309.231450px;}
.y186{bottom:312.471450px;}
.y1bf{bottom:314.631450px;}
.y6b{bottom:319.311450px;}
.y127{bottom:319.671450px;}
.y52{bottom:320.391450px;}
.y22{bottom:322.551450px;}
.y19e{bottom:323.631450px;}
.ydc{bottom:324.000000px;}
.y83{bottom:330.111450px;}
.y164{bottom:331.551450px;}
.y11f{bottom:334.500000px;}
.y1be{bottom:335.871450px;}
.y10e{bottom:339.000000px;}
.y141{bottom:340.191450px;}
.y185{bottom:341.631450px;}
.y21{bottom:343.071450px;}
.y19d{bottom:344.871450px;}
.y6a{bottom:350.271450px;}
.y51{bottom:351.351450px;}
.y163{bottom:352.431450px;}
.ya1{bottom:353.511450px;}
.y1bd{bottom:356.391450px;}
.y82{bottom:361.431450px;}
.y184{bottom:362.871450px;}
.y20{bottom:363.951450px;}
.y19c{bottom:365.391450px;}
.y140{bottom:371.511450px;}
.y10b{bottom:372.000000px;}
.y162{bottom:373.311450px;}
.yd8{bottom:373.500000px;}
.y69{bottom:381.231450px;}
.y123{bottom:382.500000px;}
.y50{bottom:382.671450px;}
.y183{bottom:383.391450px;}
.ya0{bottom:384.471450px;}
.y19b{bottom:386.271450px;}
.y1bc{bottom:389.151450px;}
.y81{bottom:392.391450px;}
.y1f{bottom:394.551450px;}
.y13f{bottom:402.471450px;}
.y182{bottom:404.271450px;}
.y109{bottom:409.500000px;}
.y1bb{bottom:409.671450px;}
.y68{bottom:412.551450px;}
.y4f{bottom:413.631450px;}
.y19a{bottom:415.431450px;}
.y9f{bottom:415.791450px;}
.yd2{bottom:417.000000px;}
.y80{bottom:423.351450px;}
.y161{bottom:423.711450px;}
.y181{bottom:424.791450px;}
.y1e{bottom:425.511450px;}
.y121{bottom:430.500000px;}
.y1ba{bottom:430.551450px;}
.y13e{bottom:433.431450px;}
.y199{bottom:436.671450px;}
.y107{bottom:439.500000px;}
.y67{bottom:443.511450px;}
.y160{bottom:444.231450px;}
.y4e{bottom:444.591450px;}
.y180{bottom:445.671450px;}
.y9e{bottom:446.751450px;}
.y1d{bottom:447.111450px;}
.y1b9{bottom:451.071450px;}
.y7f{bottom:454.311450px;}
.y198{bottom:457.191450px;}
.y13d{bottom:464.391450px;}
.y17f{bottom:466.191450px;}
.ycc{bottom:471.000000px;}
.y1c{bottom:471.231450px;}
.y1b8{bottom:471.951450px;}
.y15f{bottom:473.751450px;}
.y66{bottom:474.471450px;}
.y4d{bottom:475.551450px;}
.y9d{bottom:477.711450px;}
.y119{bottom:478.500000px;}
.y7e{bottom:485.271450px;}
.y197{bottom:486.711450px;}
.y1b7{bottom:492.471450px;}
.y15e{bottom:494.631450px;}
.y13c{bottom:495.711450px;}
.y9c{bottom:497.871450px;}
.y104{bottom:504.000000px;}
.y65{bottom:505.431450px;}
.y4c{bottom:506.871450px;}
.y1a{bottom:507.231450px;}
.y196{bottom:507.591450px;}
.y1b6{bottom:513.351450px;}
.y1b{bottom:514.791450px;}
.y7d{bottom:516.591450px;}
.y9b{bottom:520.551450px;}
.yc5{bottom:523.500000px;}
.y15d{bottom:524.151450px;}
.y13b{bottom:526.671450px;}
.y11c{bottom:528.000000px;}
.y195{bottom:528.471450px;}
.y9a{bottom:532.431450px;}
.y1b5{bottom:533.871450px;}
.y102{bottom:534.000000px;}
.y64{bottom:536.751450px;}
.y17e{bottom:537.471450px;}
.y4b{bottom:537.831450px;}
.y19{bottom:540.351450px;}
.y15c{bottom:545.031450px;}
.y7c{bottom:547.551450px;}
.y99{bottom:549.711450px;}
.y1b4{bottom:554.751450px;}
.y13a{bottom:557.631450px;}
.y18{bottom:560.871450px;}
.y100{bottom:561.000000px;}
.y95{bottom:565.500000px;}
.y15b{bottom:565.911450px;}
.y17d{bottom:566.631450px;}
.y63{bottom:567.711450px;}
.y4a{bottom:568.791450px;}
.y118{bottom:570.591450px;}
.y1b3{bottom:575.271450px;}
.y132{bottom:576.000000px;}
.y7b{bottom:578.511450px;}
.y194{bottom:578.871450px;}
.y17{bottom:584.991450px;}
.y15a{bottom:586.431450px;}
.y17c{bottom:587.871450px;}
.yfe{bottom:588.000000px;}
.y49{bottom:590.031450px;}
.ybd{bottom:597.000000px;}
.y117{bottom:597.231450px;}
.y62{bottom:598.671450px;}
.y193{bottom:599.391450px;}
.y159{bottom:607.311450px;}
.y1b2{bottom:608.031450px;}
.y17b{bottom:608.391450px;}
.y7a{bottom:609.471450px;}
.y48{bottom:609.831450px;}
.yfc{bottom:616.500000px;}
.y16{bottom:620.991450px;}
.y158{bottom:627.831450px;}
.y1b1{bottom:628.551450px;}
.y192{bottom:628.911450px;}
.y61{bottom:629.631450px;}
.y93{bottom:634.500000px;}
.y17a{bottom:637.911450px;}
.y47{bottom:640.791450px;}
.yfa{bottom:646.500000px;}
.y1b0{bottom:649.431450px;}
.y91{bottom:651.000000px;}
.y157{bottom:657.351450px;}
.y191{bottom:658.431450px;}
.y179{bottom:658.791450px;}
.y60{bottom:660.951450px;}
.y46{bottom:661.671450px;}
.y15{bottom:665.631450px;}
.y90{bottom:669.000000px;}
.y1af{bottom:669.951450px;}
.y79{bottom:671.751450px;}
.yf8{bottom:676.500000px;}
.y156{bottom:678.231450px;}
.y178{bottom:679.671450px;}
.yb4{bottom:682.500000px;}
.y45{bottom:682.551450px;}
.y8e{bottom:688.500000px;}
.y1ae{bottom:690.831450px;}
.y5f{bottom:691.911450px;}
.yf5{bottom:696.000000px;}
.y12f{bottom:699.000000px;}
.y155{bottom:699.111450px;}
.y14{bottom:701.271450px;}
.y44{bottom:702.711450px;}
.y177{bottom:708.831450px;}
.y8c{bottom:709.500000px;}
.y1ad{bottom:711.351450px;}
.y5e{bottom:722.871450px;}
.y43{bottom:723.231450px;}
.y8a{bottom:727.500000px;}
.y154{bottom:728.271450px;}
.y176{bottom:730.071450px;}
.y1ac{bottom:732.231450px;}
.y78{bottom:733.671450px;}
.y13{bottom:739.431450px;}
.y42{bottom:744.111450px;}
.yf4{bottom:748.791450px;}
.y153{bottom:749.511450px;}
.y190{bottom:750.591450px;}
.y12e{bottom:752.391450px;}
.y1ab{bottom:752.751450px;}
.y5d{bottom:753.831450px;}
.y175{bottom:759.231450px;}
.y89{bottom:763.191450px;}
.y41{bottom:764.631450px;}
.y77{bottom:764.991450px;}
.y152{bottom:770.031450px;}
.y1aa{bottom:773.631450px;}
.y18f{bottom:780.111450px;}
.y174{bottom:780.471450px;}
.y12{bottom:780.831450px;}
.yf3{bottom:781.551450px;}
.y5c{bottom:785.151450px;}
.y40{bottom:785.511450px;}
.yab{bottom:790.500000px;}
.y151{bottom:790.911450px;}
.y76{bottom:795.951450px;}
.y1a9{bottom:804.231450px;}
.y11{bottom:805.671450px;}
.y3f{bottom:806.031450px;}
.y173{bottom:809.631450px;}
.yf2{bottom:812.511450px;}
.y5b{bottom:816.111450px;}
.y88{bottom:817.191450px;}
.y150{bottom:820.071450px;}
.y3e{bottom:826.911450px;}
.y172{bottom:830.871450px;}
.y10{bottom:831.591450px;}
.y1a8{bottom:836.991450px;}
.y14f{bottom:841.311450px;}
.yf1{bottom:843.831450px;}
.y5a{bottom:847.071450px;}
.y3d{bottom:847.431450px;}
.y171{bottom:851.391450px;}
.y75{bottom:857.871450px;}
.y14e{bottom:861.831450px;}
.y3c{bottom:868.311450px;}
.yf{bottom:872.991450px;}
.yf0{bottom:874.791450px;}
.y59{bottom:878.031450px;}
.y1a7{bottom:878.391450px;}
.y170{bottom:880.911450px;}
.y3b{bottom:888.831450px;}
.y74{bottom:889.191450px;}
.y14d{bottom:891.351450px;}
.ya7{bottom:897.000000px;}
.y1a6{bottom:899.271450px;}
.y16f{bottom:901.791450px;}
.yef{bottom:905.751450px;}
.y58{bottom:909.351450px;}
.y14c{bottom:912.231450px;}
.ye{bottom:914.391450px;}
.y3a{bottom:919.431450px;}
.y1a5{bottom:919.791450px;}
.y73{bottom:920.151450px;}
.y16e{bottom:922.671450px;}
.y14b{bottom:933.111450px;}
.yee{bottom:936.711450px;}
.y57{bottom:940.311450px;}
.y39{bottom:940.671450px;}
.yd{bottom:941.391450px;}
.y18e{bottom:943.191450px;}
.y72{bottom:951.111450px;}
.y16d{bottom:951.831450px;}
.y14a{bottom:953.631450px;}
.y38{bottom:961.191450px;}
.ya6{bottom:961.500000px;}
.yed{bottom:967.671450px;}
.yc{bottom:971.271450px;}
.y18d{bottom:972.711450px;}
.y16c{bottom:973.071450px;}
.y31{bottom:981.000000px;}
.y37{bottom:982.071450px;}
.y149{bottom:983.151450px;}
.y16b{bottom:993.591450px;}
.yec{bottom:998.991450px;}
.y2f{bottom:1002.000000px;}
.yb{bottom:1002.231450px;}
.y36{bottom:1002.591450px;}
.y148{bottom:1004.031450px;}
.y71{bottom:1013.391450px;}
.y18c{bottom:1014.471450px;}
.y2d{bottom:1023.000000px;}
.y16a{bottom:1023.111450px;}
.y35{bottom:1023.471450px;}
.y147{bottom:1024.911450px;}
.yeb{bottom:1029.951450px;}
.ya5{bottom:1031.751450px;}
.ya{bottom:1033.551450px;}
.y70{bottom:1034.631450px;}
.y18b{bottom:1043.631450px;}
.y34{bottom:1043.991450px;}
.y2b{bottom:1047.000000px;}
.yea{bottom:1050.111450px;}
.y9{bottom:1064.511450px;}
.y33{bottom:1064.871450px;}
.ye9{bottom:1067.391450px;}
.y2{bottom:1097.271450px;}
.y1{bottom:1118.151450px;}
.h12{height:18.000000px;}
.h15{height:19.500000px;}
.h4{height:20.155078px;}
.he{height:22.500000px;}
.hc{height:24.000000px;}
.h8{height:26.995781px;}
.h24{height:28.500000px;}
.h25{height:30.000000px;}
.h22{height:31.500000px;}
.h28{height:31.672266px;}
.h26{height:33.000000px;}
.h23{height:36.000000px;}
.h7{height:36.978750px;}
.h14{height:41.402813px;}
.h13{height:41.993438px;}
.h9{height:42.022969px;}
.h1f{height:43.500000px;}
.h2{height:44.149219px;}
.h2c{height:47.513672px;}
.h2a{height:48.000000px;}
.h17{height:48.595781px;}
.hd{height:48.937500px;}
.hf{height:49.289063px;}
.h20{height:49.500000px;}
.h11{height:49.992188px;}
.h1{height:50.027344px;}
.h1e{height:51.000000px;}
.h18{height:52.500000px;}
.h27{height:56.152266px;}
.h10{height:56.593125px;}
.h5{height:57.990938px;}
.h21{height:61.500000px;}
.h19{height:63.000000px;}
.h3{height:66.047344px;}
.h29{height:69.000000px;}
.h16{height:70.500000px;}
.h2e{height:71.982422px;}
.h1d{height:72.000000px;}
.h1c{height:85.500000px;}
.ha{height:102.000000px;}
.h1a{height:105.000000px;}
.h1b{height:106.500000px;}
.h2d{height:121.500000px;}
.h2b{height:144.000000px;}
.hb{height:206.156250px;}
.h6{height:1170.000000px;}
.h0{height:1188.000000px;}
.w1b{width:-130.500000px;}
.w1f{width:-52.500000px;}
.w25{width:1.500000px;}
.w14{width:4.500000px;}
.w12{width:6.000000px;}
.w1d{width:10.500000px;}
.w18{width:13.500000px;}
.w20{width:22.500000px;}
.w11{width:42.000000px;}
.w22{width:52.500000px;}
.w4{width:58.500000px;}
.w3{width:60.000000px;}
.w5{width:61.500000px;}
.w23{width:63.000000px;}
.w24{width:67.500000px;}
.w2{width:69.000000px;}
.w19{width:73.500000px;}
.w1c{width:78.000000px;}
.w1e{width:81.000000px;}
.w17{width:90.000000px;}
.w16{width:91.500000px;}
.wd{width:96.000000px;}
.wc{width:105.000000px;}
.w21{width:120.000000px;}
.wa{width:135.000000px;}
.w9{width:139.500000px;}
.wf{width:142.500000px;}
.w1a{width:145.500000px;}
.w13{width:148.500000px;}
.w15{width:151.500000px;}
.w10{width:157.500000px;}
.we{width:159.000000px;}
.w6{width:256.500000px;}
.w8{width:273.000000px;}
.w7{width:370.500000px;}
.wb{width:465.000000px;}
.w26{width:486.000000px;}
.w1{width:900.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:1.568550px;}
.x3f{left:3.346110px;}
.x3a{left:5.333430px;}
.x13{left:6.848658px;}
.x11{left:8.648579px;}
.x45{left:11.911110px;}
.x15{left:16.565346px;}
.xa{left:18.000000px;}
.x16{left:19.648091px;}
.x51{left:22.364190px;}
.x17{left:23.458151px;}
.x4f{left:24.533550px;}
.x43{left:26.033550px;}
.x4e{left:27.998430px;}
.x20{left:31.418670px;}
.x39{left:33.646110px;}
.x46{left:35.798670px;}
.x3e{left:39.556230px;}
.x29{left:42.649410px;}
.x41{left:44.896110px;}
.x18{left:46.467918px;}
.x23{left:47.940750px;}
.x22{left:50.798550px;}
.x53{left:54.638550px;}
.x1f{left:56.825310px;}
.x40{left:58.253682px;}
.x4c{left:61.438470px;}
.x42{left:63.878682px;}
.x25{left:67.313430px;}
.x24{left:70.170870px;}
.x38{left:71.378670px;}
.x52{left:74.010870px;}
.x12{left:90.000000px;}
.x47{left:97.163550px;}
.x3c{left:101.086110px;}
.xf{left:109.808550px;}
.x2{left:127.808478px;}
.x26{left:130.500000px;}
.x10{left:132.848658px;}
.x6{left:146.881854px;}
.x8{left:151.200198px;}
.x14{left:153.000000px;}
.x1c{left:154.808478px;}
.x55{left:156.248442px;}
.x1a{left:159.758586px;}
.x54{left:170.333622px;}
.x1b{left:180.983394px;}
.x48{left:205.500000px;}
.x5{left:213.579126px;}
.x9{left:238.575222px;}
.x4{left:285.158682px;}
.xe{left:343.808478px;}
.x7{left:367.258806px;}
.x19{left:412.225110px;}
.xd{left:416.228670px;}
.xb{left:426.608550px;}
.x30{left:435.000000px;}
.xc{left:451.598310px;}
.x49{left:462.000000px;}
.x1e{left:496.500000px;}
.x31{left:502.500000px;}
.x4a{left:513.000000px;}
.x1{left:571.248270px;}
.x4b{left:574.500000px;}
.x2a{left:582.000000px;}
.x32{left:592.500000px;}
.x27{left:597.000000px;}
.x50{left:616.500000px;}
.x2c{left:622.500000px;}
.x2d{left:627.000000px;}
.x21{left:634.500000px;}
.x4d{left:640.500000px;}
.x44{left:669.000000px;}
.x33{left:681.000000px;}
.x3b{left:690.000000px;}
.x34{left:693.000000px;}
.x35{left:697.500000px;}
.x28{left:702.000000px;}
.x36{left:769.500000px;}
.x1d{left:772.658190px;}
.x2e{left:775.500000px;}
.x2f{left:778.500000px;}
.x3{left:781.658190px;}
.x3d{left:970.500000px;}
.x37{left:1048.500000px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls2b{letter-spacing:-0.424704pt;}
.ls2c{letter-spacing:-0.408576pt;}
.ls29{letter-spacing:-0.370944pt;}
.lsa{letter-spacing:-0.351616pt;}
.ls2a{letter-spacing:-0.338688pt;}
.ls11{letter-spacing:-0.301056pt;}
.ls1f{letter-spacing:-0.284928pt;}
.ls9{letter-spacing:-0.283008pt;}
.ls10{letter-spacing:-0.268800pt;}
.ls35{letter-spacing:-0.241920pt;}
.ls20{letter-spacing:-0.231168pt;}
.lsb{letter-spacing:-0.222976pt;}
.ls12{letter-spacing:-0.215040pt;}
.ls23{letter-spacing:-0.198912pt;}
.ls28{letter-spacing:-0.155904pt;}
.ls25{letter-spacing:-0.139776pt;}
.ls27{letter-spacing:-0.129024pt;}
.lsc{letter-spacing:-0.128640pt;}
.ls26{letter-spacing:-0.107520pt;}
.ls15{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000512pt;}
.ls7{letter-spacing:0.006400pt;}
.ls1b{letter-spacing:0.009728pt;}
.ls2d{letter-spacing:0.010112pt;}
.ls18{letter-spacing:0.010240pt;}
.ls13{letter-spacing:0.012800pt;}
.ls1e{letter-spacing:0.027648pt;}
.ls1c{letter-spacing:0.040960pt;}
.ls21{letter-spacing:0.041472pt;}
.ls34{letter-spacing:0.042112pt;}
.ls33{letter-spacing:0.042240pt;}
.ls22{letter-spacing:0.051840pt;}
.ls24{letter-spacing:0.052480pt;}
.ls1d{letter-spacing:0.053376pt;}
.ls32{letter-spacing:0.064640pt;}
.ls4{letter-spacing:0.103936pt;}
.ls2{letter-spacing:0.105984pt;}
.ls6{letter-spacing:0.106624pt;}
.ls5{letter-spacing:0.106752pt;}
.lsf{letter-spacing:0.141056pt;}
.ls1{letter-spacing:0.150528pt;}
.ls2f{letter-spacing:0.172800pt;}
.ls30{letter-spacing:0.173184pt;}
.lsd{letter-spacing:0.186368pt;}
.ls19{letter-spacing:0.212480pt;}
.ls2e{letter-spacing:0.213376pt;}
.ls31{letter-spacing:0.213760pt;}
.ls3{letter-spacing:0.215296pt;}
.ls0{letter-spacing:0.284032pt;}
.lse{letter-spacing:0.319232pt;}
.ls17{letter-spacing:2.470400pt;}
.ls16{letter-spacing:30.208000pt;}
.ls14{letter-spacing:47.541248pt;}
.ws1{word-spacing:-18.879232pt;}
.ws2{word-spacing:-18.775296pt;}
.ws3{word-spacing:-18.663936pt;}
.ws5{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.ws9{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.284096pt;}
.wsc{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.wsa{word-spacing:-13.208832pt;}
.ws11{word-spacing:-13.198080pt;}
.ws12{word-spacing:-13.171200pt;}
.wsf{word-spacing:-13.155072pt;}
.ws7{word-spacing:-13.138944pt;}
.wsd{word-spacing:-13.031424pt;}
.wse{word-spacing:-13.015296pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-4.207232pt;}
._b{margin-left:-2.935168pt;}
._7{margin-left:-1.982720pt;}
._1{margin-left:-0.943360pt;}
._0{width:0.943360pt;}
._8{width:2.476800pt;}
._10{width:3.411200pt;}
._9{width:4.729600pt;}
._a{width:6.265600pt;}
._3{width:7.718400pt;}
._4{width:8.960000pt;}
._5{width:9.894400pt;}
._f{width:11.104000pt;}
._11{width:12.876800pt;}
._6{width:14.361600pt;}
._c{width:17.753600pt;}
._e{width:19.206400pt;}
._16{width:20.620800pt;}
._15{width:21.836800pt;}
._12{width:22.764544pt;}
._13{width:23.904768pt;}
._14{width:25.049600pt;}
._1a{width:26.820480pt;}
._19{width:28.185600pt;}
._1f{width:30.540800pt;}
._1d{width:31.616000pt;}
._1c{width:33.075200pt;}
._1e{width:45.024000pt;}
._18{width:85.772032pt;}
._2{width:100.853120pt;}
._1b{width:162.739200pt;}
._17{width:752.000000pt;}
.fs3{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:71.680000pt;}
.fs4{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fsb{font-size:96.000000pt;}
.fs9{font-size:256.000000pt;}
.yc3{bottom:-13.874267pt;}
.yd0{bottom:-13.234267pt;}
.yd6{bottom:-11.954267pt;}
.yb2{bottom:-11.154267pt;}
.yca{bottom:-9.980933pt;}
.ybb{bottom:-9.874267pt;}
.ydf{bottom:-0.007600pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:1.485733pt;}
.ycf{bottom:1.805733pt;}
.yf7{bottom:3.085733pt;}
.yf9{bottom:3.139067pt;}
.y8b{bottom:3.245733pt;}
.yd5{bottom:3.405733pt;}
.y139{bottom:3.512400pt;}
.y131{bottom:3.619067pt;}
.y94{bottom:3.672400pt;}
.y8d{bottom:3.885733pt;}
.y11d{bottom:3.939067pt;}
.y10d{bottom:4.045733pt;}
.y11a{bottom:4.099067pt;}
.y32{bottom:4.152400pt;}
.yb1{bottom:4.205733pt;}
.y30{bottom:4.365733pt;}
.y92{bottom:4.685733pt;}
.y8f{bottom:4.952400pt;}
.yc9{bottom:5.379067pt;}
.yba{bottom:5.485733pt;}
.y2e{bottom:5.539067pt;}
.yda{bottom:6.872400pt;}
.ye4{bottom:7.352400pt;}
.yaa{bottom:8.099067pt;}
.ye8{bottom:9.645733pt;}
.ye6{bottom:9.805733pt;}
.yfb{bottom:12.525733pt;}
.yfd{bottom:12.632400pt;}
.y103{bottom:12.685733pt;}
.y105{bottom:12.792400pt;}
.y101{bottom:13.005733pt;}
.yff{bottom:13.645733pt;}
.ydb{bottom:14.552400pt;}
.y111{bottom:15.245733pt;}
.yde{bottom:15.352400pt;}
.y10a{bottom:15.512400pt;}
.y106{bottom:15.565733pt;}
.y113{bottom:15.725733pt;}
.y10f{bottom:16.099067pt;}
.y108{bottom:16.365733pt;}
.yc1{bottom:16.845733pt;}
.ye0{bottom:16.952400pt;}
.yce{bottom:17.165733pt;}
.y126{bottom:17.219067pt;}
.y11e{bottom:17.539067pt;}
.yd1{bottom:18.125733pt;}
.yf6{bottom:18.445733pt;}
.y98{bottom:18.605733pt;}
.yd4{bottom:18.765733pt;}
.y138{bottom:18.872400pt;}
.y130{bottom:18.979067pt;}
.yd7{bottom:19.085733pt;}
.y10c{bottom:19.405733pt;}
.yb0{bottom:19.565733pt;}
.y2c{bottom:20.045733pt;}
.yc8{bottom:20.739067pt;}
.yb9{bottom:20.845733pt;}
.yd9{bottom:22.232400pt;}
.ye3{bottom:22.712400pt;}
.ya9{bottom:23.459067pt;}
.y11b{bottom:26.179067pt;}
.ycb{bottom:27.459067pt;}
.y122{bottom:29.485733pt;}
.y124{bottom:29.912400pt;}
.y125{bottom:30.339067pt;}
.ydd{bottom:30.712400pt;}
.yc0{bottom:32.205733pt;}
.ycd{bottom:32.525733pt;}
.yc4{bottom:33.165733pt;}
.y97{bottom:33.965733pt;}
.yd3{bottom:34.125733pt;}
.y137{bottom:34.232400pt;}
.yaf{bottom:34.925733pt;}
.yc7{bottom:36.099067pt;}
.yb8{bottom:36.205733pt;}
.ye2{bottom:38.072400pt;}
.ya8{bottom:38.819067pt;}
.yb3{bottom:42.285733pt;}
.ybc{bottom:43.245733pt;}
.ybf{bottom:47.565733pt;}
.y96{bottom:49.325733pt;}
.y136{bottom:49.592400pt;}
.yae{bottom:50.285733pt;}
.y8{bottom:50.552400pt;}
.yc6{bottom:51.459067pt;}
.yb7{bottom:51.565733pt;}
.ybe{bottom:62.925733pt;}
.y135{bottom:64.952400pt;}
.yad{bottom:65.645733pt;}
.yb6{bottom:66.605733pt;}
.y7{bottom:68.792400pt;}
.y134{bottom:80.312400pt;}
.yac{bottom:81.005733pt;}
.yb5{bottom:81.965733pt;}
.y6{bottom:87.352400pt;}
.y133{bottom:95.672400pt;}
.y5{bottom:105.592400pt;}
.y120{bottom:114.819067pt;}
.y4{bottom:124.152400pt;}
.y3{bottom:142.392400pt;}
.y2a{bottom:159.992400pt;}
.y146{bottom:164.472400pt;}
.y12d{bottom:165.112400pt;}
.y1a4{bottom:169.592400pt;}
.y6f{bottom:173.432400pt;}
.y56{bottom:174.392400pt;}
.ye7{bottom:174.666667pt;}
.y116{bottom:175.032400pt;}
.y29{bottom:175.352400pt;}
.ya4{bottom:176.312400pt;}
.y18a{bottom:177.272400pt;}
.y28{bottom:180.152400pt;}
.y87{bottom:183.032400pt;}
.y1a3{bottom:188.152400pt;}
.y27{bottom:191.672400pt;}
.y145{bottom:191.992400pt;}
.y12c{bottom:192.632400pt;}
.y169{bottom:194.872400pt;}
.y189{bottom:196.152400pt;}
.y6e{bottom:200.952400pt;}
.y55{bottom:201.912400pt;}
.ye5{bottom:202.666667pt;}
.y115{bottom:202.872400pt;}
.ya3{bottom:203.832400pt;}
.y1a2{bottom:206.392400pt;}
.y86{bottom:210.872400pt;}
.y26{bottom:213.112400pt;}
.y168{bottom:213.432400pt;}
.y188{bottom:214.392400pt;}
.y144{bottom:219.832400pt;}
.y12b{bottom:220.152400pt;}
.y1a1{bottom:224.952400pt;}
.y6d{bottom:228.472400pt;}
.y54{bottom:229.752400pt;}
.y114{bottom:230.392400pt;}
.y25{bottom:231.352400pt;}
.y167{bottom:231.672400pt;}
.ye1{bottom:232.000000pt;}
.y85{bottom:238.392400pt;}
.y187{bottom:240.632400pt;}
.y12a{bottom:242.872400pt;}
.y1a0{bottom:243.192400pt;}
.y112{bottom:246.666667pt;}
.y143{bottom:247.352400pt;}
.y24{bottom:249.912400pt;}
.y166{bottom:250.232400pt;}
.y6c{bottom:256.312400pt;}
.y53{bottom:257.272400pt;}
.y129{bottom:258.232400pt;}
.ya2{bottom:259.192400pt;}
.y19f{bottom:261.752400pt;}
.y84{bottom:265.912400pt;}
.y23{bottom:268.152400pt;}
.y165{bottom:268.472400pt;}
.y128{bottom:273.592400pt;}
.y110{bottom:274.666667pt;}
.y142{bottom:274.872400pt;}
.y186{bottom:277.752400pt;}
.y1bf{bottom:279.672400pt;}
.y6b{bottom:283.832400pt;}
.y127{bottom:284.152400pt;}
.y52{bottom:284.792400pt;}
.y22{bottom:286.712400pt;}
.y19e{bottom:287.672400pt;}
.ydc{bottom:288.000000pt;}
.y83{bottom:293.432400pt;}
.y164{bottom:294.712400pt;}
.y11f{bottom:297.333333pt;}
.y1be{bottom:298.552400pt;}
.y10e{bottom:301.333333pt;}
.y141{bottom:302.392400pt;}
.y185{bottom:303.672400pt;}
.y21{bottom:304.952400pt;}
.y19d{bottom:306.552400pt;}
.y6a{bottom:311.352400pt;}
.y51{bottom:312.312400pt;}
.y163{bottom:313.272400pt;}
.ya1{bottom:314.232400pt;}
.y1bd{bottom:316.792400pt;}
.y82{bottom:321.272400pt;}
.y184{bottom:322.552400pt;}
.y20{bottom:323.512400pt;}
.y19c{bottom:324.792400pt;}
.y140{bottom:330.232400pt;}
.y10b{bottom:330.666667pt;}
.y162{bottom:331.832400pt;}
.yd8{bottom:332.000000pt;}
.y69{bottom:338.872400pt;}
.y123{bottom:340.000000pt;}
.y50{bottom:340.152400pt;}
.y183{bottom:340.792400pt;}
.ya0{bottom:341.752400pt;}
.y19b{bottom:343.352400pt;}
.y1bc{bottom:345.912400pt;}
.y81{bottom:348.792400pt;}
.y1f{bottom:350.712400pt;}
.y13f{bottom:357.752400pt;}
.y182{bottom:359.352400pt;}
.y109{bottom:364.000000pt;}
.y1bb{bottom:364.152400pt;}
.y68{bottom:366.712400pt;}
.y4f{bottom:367.672400pt;}
.y19a{bottom:369.272400pt;}
.y9f{bottom:369.592400pt;}
.yd2{bottom:370.666667pt;}
.y80{bottom:376.312400pt;}
.y161{bottom:376.632400pt;}
.y181{bottom:377.592400pt;}
.y1e{bottom:378.232400pt;}
.y121{bottom:382.666667pt;}
.y1ba{bottom:382.712400pt;}
.y13e{bottom:385.272400pt;}
.y199{bottom:388.152400pt;}
.y107{bottom:390.666667pt;}
.y67{bottom:394.232400pt;}
.y160{bottom:394.872400pt;}
.y4e{bottom:395.192400pt;}
.y180{bottom:396.152400pt;}
.y9e{bottom:397.112400pt;}
.y1d{bottom:397.432400pt;}
.y1b9{bottom:400.952400pt;}
.y7f{bottom:403.832400pt;}
.y198{bottom:406.392400pt;}
.y13d{bottom:412.792400pt;}
.y17f{bottom:414.392400pt;}
.ycc{bottom:418.666667pt;}
.y1c{bottom:418.872400pt;}
.y1b8{bottom:419.512400pt;}
.y15f{bottom:421.112400pt;}
.y66{bottom:421.752400pt;}
.y4d{bottom:422.712400pt;}
.y9d{bottom:424.632400pt;}
.y119{bottom:425.333333pt;}
.y7e{bottom:431.352400pt;}
.y197{bottom:432.632400pt;}
.y1b7{bottom:437.752400pt;}
.y15e{bottom:439.672400pt;}
.y13c{bottom:440.632400pt;}
.y9c{bottom:442.552400pt;}
.y104{bottom:448.000000pt;}
.y65{bottom:449.272400pt;}
.y4c{bottom:450.552400pt;}
.y1a{bottom:450.872400pt;}
.y196{bottom:451.192400pt;}
.y1b6{bottom:456.312400pt;}
.y1b{bottom:457.592400pt;}
.y7d{bottom:459.192400pt;}
.y9b{bottom:462.712400pt;}
.yc5{bottom:465.333333pt;}
.y15d{bottom:465.912400pt;}
.y13b{bottom:468.152400pt;}
.y11c{bottom:469.333333pt;}
.y195{bottom:469.752400pt;}
.y9a{bottom:473.272400pt;}
.y1b5{bottom:474.552400pt;}
.y102{bottom:474.666667pt;}
.y64{bottom:477.112400pt;}
.y17e{bottom:477.752400pt;}
.y4b{bottom:478.072400pt;}
.y19{bottom:480.312400pt;}
.y15c{bottom:484.472400pt;}
.y7c{bottom:486.712400pt;}
.y99{bottom:488.632400pt;}
.y1b4{bottom:493.112400pt;}
.y13a{bottom:495.672400pt;}
.y18{bottom:498.552400pt;}
.y100{bottom:498.666667pt;}
.y95{bottom:502.666667pt;}
.y15b{bottom:503.032400pt;}
.y17d{bottom:503.672400pt;}
.y63{bottom:504.632400pt;}
.y4a{bottom:505.592400pt;}
.y118{bottom:507.192400pt;}
.y1b3{bottom:511.352400pt;}
.y132{bottom:512.000000pt;}
.y7b{bottom:514.232400pt;}
.y194{bottom:514.552400pt;}
.y17{bottom:519.992400pt;}
.y15a{bottom:521.272400pt;}
.y17c{bottom:522.552400pt;}
.yfe{bottom:522.666667pt;}
.y49{bottom:524.472400pt;}
.ybd{bottom:530.666667pt;}
.y117{bottom:530.872400pt;}
.y62{bottom:532.152400pt;}
.y193{bottom:532.792400pt;}
.y159{bottom:539.832400pt;}
.y1b2{bottom:540.472400pt;}
.y17b{bottom:540.792400pt;}
.y7a{bottom:541.752400pt;}
.y48{bottom:542.072400pt;}
.yfc{bottom:548.000000pt;}
.y16{bottom:551.992400pt;}
.y158{bottom:558.072400pt;}
.y1b1{bottom:558.712400pt;}
.y192{bottom:559.032400pt;}
.y61{bottom:559.672400pt;}
.y93{bottom:564.000000pt;}
.y17a{bottom:567.032400pt;}
.y47{bottom:569.592400pt;}
.yfa{bottom:574.666667pt;}
.y1b0{bottom:577.272400pt;}
.y91{bottom:578.666667pt;}
.y157{bottom:584.312400pt;}
.y191{bottom:585.272400pt;}
.y179{bottom:585.592400pt;}
.y60{bottom:587.512400pt;}
.y46{bottom:588.152400pt;}
.y15{bottom:591.672400pt;}
.y90{bottom:594.666667pt;}
.y1af{bottom:595.512400pt;}
.y79{bottom:597.112400pt;}
.yf8{bottom:601.333333pt;}
.y156{bottom:602.872400pt;}
.y178{bottom:604.152400pt;}
.yb4{bottom:606.666667pt;}
.y45{bottom:606.712400pt;}
.y8e{bottom:612.000000pt;}
.y1ae{bottom:614.072400pt;}
.y5f{bottom:615.032400pt;}
.yf5{bottom:618.666667pt;}
.y12f{bottom:621.333333pt;}
.y155{bottom:621.432400pt;}
.y14{bottom:623.352400pt;}
.y44{bottom:624.632400pt;}
.y177{bottom:630.072400pt;}
.y8c{bottom:630.666667pt;}
.y1ad{bottom:632.312400pt;}
.y5e{bottom:642.552400pt;}
.y43{bottom:642.872400pt;}
.y8a{bottom:646.666667pt;}
.y154{bottom:647.352400pt;}
.y176{bottom:648.952400pt;}
.y1ac{bottom:650.872400pt;}
.y78{bottom:652.152400pt;}
.y13{bottom:657.272400pt;}
.y42{bottom:661.432400pt;}
.yf4{bottom:665.592400pt;}
.y153{bottom:666.232400pt;}
.y190{bottom:667.192400pt;}
.y12e{bottom:668.792400pt;}
.y1ab{bottom:669.112400pt;}
.y5d{bottom:670.072400pt;}
.y175{bottom:674.872400pt;}
.y89{bottom:678.392400pt;}
.y41{bottom:679.672400pt;}
.y77{bottom:679.992400pt;}
.y152{bottom:684.472400pt;}
.y1aa{bottom:687.672400pt;}
.y18f{bottom:693.432400pt;}
.y174{bottom:693.752400pt;}
.y12{bottom:694.072400pt;}
.yf3{bottom:694.712400pt;}
.y5c{bottom:697.912400pt;}
.y40{bottom:698.232400pt;}
.yab{bottom:702.666667pt;}
.y151{bottom:703.032400pt;}
.y76{bottom:707.512400pt;}
.y1a9{bottom:714.872400pt;}
.y11{bottom:716.152400pt;}
.y3f{bottom:716.472400pt;}
.y173{bottom:719.672400pt;}
.yf2{bottom:722.232400pt;}
.y5b{bottom:725.432400pt;}
.y88{bottom:726.392400pt;}
.y150{bottom:728.952400pt;}
.y3e{bottom:735.032400pt;}
.y172{bottom:738.552400pt;}
.y10{bottom:739.192400pt;}
.y1a8{bottom:743.992400pt;}
.y14f{bottom:747.832400pt;}
.yf1{bottom:750.072400pt;}
.y5a{bottom:752.952400pt;}
.y3d{bottom:753.272400pt;}
.y171{bottom:756.792400pt;}
.y75{bottom:762.552400pt;}
.y14e{bottom:766.072400pt;}
.y3c{bottom:771.832400pt;}
.yf{bottom:775.992400pt;}
.yf0{bottom:777.592400pt;}
.y59{bottom:780.472400pt;}
.y1a7{bottom:780.792400pt;}
.y170{bottom:783.032400pt;}
.y3b{bottom:790.072400pt;}
.y74{bottom:790.392400pt;}
.y14d{bottom:792.312400pt;}
.ya7{bottom:797.333333pt;}
.y1a6{bottom:799.352400pt;}
.y16f{bottom:801.592400pt;}
.yef{bottom:805.112400pt;}
.y58{bottom:808.312400pt;}
.y14c{bottom:810.872400pt;}
.ye{bottom:812.792400pt;}
.y3a{bottom:817.272400pt;}
.y1a5{bottom:817.592400pt;}
.y73{bottom:817.912400pt;}
.y16e{bottom:820.152400pt;}
.y14b{bottom:829.432400pt;}
.yee{bottom:832.632400pt;}
.y57{bottom:835.832400pt;}
.y39{bottom:836.152400pt;}
.yd{bottom:836.792400pt;}
.y18e{bottom:838.392400pt;}
.y72{bottom:845.432400pt;}
.y16d{bottom:846.072400pt;}
.y14a{bottom:847.672400pt;}
.y38{bottom:854.392400pt;}
.ya6{bottom:854.666667pt;}
.yed{bottom:860.152400pt;}
.yc{bottom:863.352400pt;}
.y18d{bottom:864.632400pt;}
.y16c{bottom:864.952400pt;}
.y31{bottom:872.000000pt;}
.y37{bottom:872.952400pt;}
.y149{bottom:873.912400pt;}
.y16b{bottom:883.192400pt;}
.yec{bottom:887.992400pt;}
.y2f{bottom:890.666667pt;}
.yb{bottom:890.872400pt;}
.y36{bottom:891.192400pt;}
.y148{bottom:892.472400pt;}
.y71{bottom:900.792400pt;}
.y18c{bottom:901.752400pt;}
.y2d{bottom:909.333333pt;}
.y16a{bottom:909.432400pt;}
.y35{bottom:909.752400pt;}
.y147{bottom:911.032400pt;}
.yeb{bottom:915.512400pt;}
.ya5{bottom:917.112400pt;}
.ya{bottom:918.712400pt;}
.y70{bottom:919.672400pt;}
.y18b{bottom:927.672400pt;}
.y34{bottom:927.992400pt;}
.y2b{bottom:930.666667pt;}
.yea{bottom:933.432400pt;}
.y9{bottom:946.232400pt;}
.y33{bottom:946.552400pt;}
.ye9{bottom:948.792400pt;}
.y2{bottom:975.352400pt;}
.y1{bottom:993.912400pt;}
.h12{height:16.000000pt;}
.h15{height:17.333333pt;}
.h4{height:17.915625pt;}
.he{height:20.000000pt;}
.hc{height:21.333333pt;}
.h8{height:23.996250pt;}
.h24{height:25.333333pt;}
.h25{height:26.666667pt;}
.h22{height:28.000000pt;}
.h28{height:28.153125pt;}
.h26{height:29.333333pt;}
.h23{height:32.000000pt;}
.h7{height:32.870000pt;}
.h14{height:36.802500pt;}
.h13{height:37.327500pt;}
.h9{height:37.353750pt;}
.h1f{height:38.666667pt;}
.h2{height:39.243750pt;}
.h2c{height:42.234375pt;}
.h2a{height:42.666667pt;}
.h17{height:43.196250pt;}
.hd{height:43.500000pt;}
.hf{height:43.812500pt;}
.h20{height:44.000000pt;}
.h11{height:44.437500pt;}
.h1{height:44.468750pt;}
.h1e{height:45.333333pt;}
.h18{height:46.666667pt;}
.h27{height:49.913125pt;}
.h10{height:50.305000pt;}
.h5{height:51.547500pt;}
.h21{height:54.666667pt;}
.h19{height:56.000000pt;}
.h3{height:58.708750pt;}
.h29{height:61.333333pt;}
.h16{height:62.666667pt;}
.h2e{height:63.984375pt;}
.h1d{height:64.000000pt;}
.h1c{height:76.000000pt;}
.ha{height:90.666667pt;}
.h1a{height:93.333333pt;}
.h1b{height:94.666667pt;}
.h2d{height:108.000000pt;}
.h2b{height:128.000000pt;}
.hb{height:183.250000pt;}
.h6{height:1040.000000pt;}
.h0{height:1056.000000pt;}
.w1b{width:-116.000000pt;}
.w1f{width:-46.666667pt;}
.w25{width:1.333333pt;}
.w14{width:4.000000pt;}
.w12{width:5.333333pt;}
.w1d{width:9.333333pt;}
.w18{width:12.000000pt;}
.w20{width:20.000000pt;}
.w11{width:37.333333pt;}
.w22{width:46.666667pt;}
.w4{width:52.000000pt;}
.w3{width:53.333333pt;}
.w5{width:54.666667pt;}
.w23{width:56.000000pt;}
.w24{width:60.000000pt;}
.w2{width:61.333333pt;}
.w19{width:65.333333pt;}
.w1c{width:69.333333pt;}
.w1e{width:72.000000pt;}
.w17{width:80.000000pt;}
.w16{width:81.333333pt;}
.wd{width:85.333333pt;}
.wc{width:93.333333pt;}
.w21{width:106.666667pt;}
.wa{width:120.000000pt;}
.w9{width:124.000000pt;}
.wf{width:126.666667pt;}
.w1a{width:129.333333pt;}
.w13{width:132.000000pt;}
.w15{width:134.666667pt;}
.w10{width:140.000000pt;}
.we{width:141.333333pt;}
.w6{width:228.000000pt;}
.w8{width:242.666667pt;}
.w7{width:329.333333pt;}
.wb{width:413.333333pt;}
.w26{width:432.000000pt;}
.w1{width:800.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.394267pt;}
.x3f{left:2.974320pt;}
.x3a{left:4.740827pt;}
.x13{left:6.087696pt;}
.x11{left:7.687626pt;}
.x45{left:10.587653pt;}
.x15{left:14.724752pt;}
.xa{left:16.000000pt;}
.x16{left:17.464970pt;}
.x51{left:19.879280pt;}
.x17{left:20.851690pt;}
.x4f{left:21.807600pt;}
.x43{left:23.140933pt;}
.x4e{left:24.887493pt;}
.x20{left:27.927707pt;}
.x39{left:29.907653pt;}
.x46{left:31.821040pt;}
.x3e{left:35.161093pt;}
.x29{left:37.910587pt;}
.x41{left:39.907653pt;}
.x18{left:41.304816pt;}
.x23{left:42.614000pt;}
.x22{left:45.154267pt;}
.x53{left:48.567600pt;}
.x1f{left:50.511387pt;}
.x40{left:51.781051pt;}
.x4c{left:54.611973pt;}
.x42{left:56.781051pt;}
.x25{left:59.834160pt;}
.x24{left:62.374107pt;}
.x38{left:63.447707pt;}
.x52{left:65.787440pt;}
.x12{left:80.000000pt;}
.x47{left:86.367600pt;}
.x3c{left:89.854320pt;}
.xf{left:97.607600pt;}
.x2{left:113.607536pt;}
.x26{left:116.000000pt;}
.x10{left:118.087696pt;}
.x6{left:130.561648pt;}
.x8{left:134.400176pt;}
.x14{left:136.000000pt;}
.x1c{left:137.607536pt;}
.x55{left:138.887504pt;}
.x1a{left:142.007632pt;}
.x54{left:151.407664pt;}
.x1b{left:160.874128pt;}
.x48{left:182.666667pt;}
.x5{left:189.848112pt;}
.x9{left:212.066864pt;}
.x4{left:253.474384pt;}
.xe{left:305.607536pt;}
.x7{left:326.452272pt;}
.x19{left:366.422320pt;}
.xd{left:369.981040pt;}
.xb{left:379.207600pt;}
.x30{left:386.666667pt;}
.xc{left:401.420720pt;}
.x49{left:410.666667pt;}
.x1e{left:441.333333pt;}
.x31{left:446.666667pt;}
.x4a{left:456.000000pt;}
.x1{left:507.776240pt;}
.x4b{left:510.666667pt;}
.x2a{left:517.333333pt;}
.x32{left:526.666667pt;}
.x27{left:530.666667pt;}
.x50{left:548.000000pt;}
.x2c{left:553.333333pt;}
.x2d{left:557.333333pt;}
.x21{left:564.000000pt;}
.x4d{left:569.333333pt;}
.x44{left:594.666667pt;}
.x33{left:605.333333pt;}
.x3b{left:613.333333pt;}
.x34{left:616.000000pt;}
.x35{left:620.000000pt;}
.x28{left:624.000000pt;}
.x36{left:684.000000pt;}
.x1d{left:686.807280pt;}
.x2e{left:689.333333pt;}
.x2f{left:692.000000pt;}
.x3{left:694.807280pt;}
.x3d{left:862.666667pt;}
.x37{left:932.000000pt;}
}




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