
    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_dd19ee963f582cd5012fdee4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_5ac2baa478e04b1a4da2109c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5151325feb6af52455c97f27.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_824f4041e342e77086309010.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967773;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_ddc0c02b52b489e2e5339375.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5bbe1f2b6c62f563eb2eb3d6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7474a60f6fbc1b39558bc727.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_592f74e0c30484ee195c2f22.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls35{letter-spacing:-5.961600px;}
.lsa{letter-spacing:-5.438304px;}
.ls26{letter-spacing:-4.418208px;}
.ls4d{letter-spacing:-4.186368px;}
.ls7c{letter-spacing:-3.682656px;}
.ls8{letter-spacing:-3.186144px;}
.ls45{letter-spacing:-2.556864px;}
.ls7d{letter-spacing:-2.533536px;}
.ls1d{letter-spacing:-2.325024px;}
.ls46{letter-spacing:-2.265408px;}
.ls53{letter-spacing:-2.172672px;}
.ls4f{letter-spacing:-1.901088px;}
.ls7b{letter-spacing:-1.865952px;}
.ls32{letter-spacing:-1.841472px;}
.ls5e{letter-spacing:-1.696320px;}
.ls66{letter-spacing:-1.603296px;}
.ls4b{letter-spacing:-1.569888px;}
.ls4a{letter-spacing:-1.463904px;}
.ls41{letter-spacing:-1.444032px;}
.lsc{letter-spacing:-1.404288px;}
.ls72{letter-spacing:-1.373472px;}
.ls48{letter-spacing:-1.351296px;}
.ls61{letter-spacing:-1.340640px;}
.ls1f{letter-spacing:-1.331424px;}
.ls3c{letter-spacing:-1.324800px;}
.ls31{letter-spacing:-1.278432px;}
.ls58{letter-spacing:-1.238688px;}
.ls3b{letter-spacing:-1.172448px;}
.ls49{letter-spacing:-1.145952px;}
.ls7e{letter-spacing:-1.138176px;}
.ls6a{letter-spacing:-1.094400px;}
.ls67{letter-spacing:-1.072512px;}
.ls47{letter-spacing:-1.046592px;}
.ls34{letter-spacing:-1.000224px;}
.ls65{letter-spacing:-0.984960px;}
.ls2e{letter-spacing:-0.980352px;}
.ls23{letter-spacing:-0.920736px;}
.ls55{letter-spacing:-0.887616px;}
.ls76{letter-spacing:-0.880992px;}
.ls11{letter-spacing:-0.859104px;}
.ls3a{letter-spacing:-0.828000px;}
.ls18{letter-spacing:-0.821376px;}
.ls73{letter-spacing:-0.820800px;}
.ls2f{letter-spacing:-0.794880px;}
.ls51{letter-spacing:-0.781632px;}
.ls4c{letter-spacing:-0.761760px;}
.ls63{letter-spacing:-0.760608px;}
.ls30{letter-spacing:-0.728640px;}
.ls25{letter-spacing:-0.715392px;}
.ls3d{letter-spacing:-0.682272px;}
.ls33{letter-spacing:-0.662400px;}
.ls1e{letter-spacing:-0.649152px;}
.ls5f{letter-spacing:-0.618336px;}
.ls59{letter-spacing:-0.589536px;}
.ls5d{letter-spacing:-0.585504px;}
.ls42{letter-spacing:-0.582912px;}
.ls19{letter-spacing:-0.563040px;}
.ls44{letter-spacing:-0.503424px;}
.ls6e{letter-spacing:-0.492480px;}
.ls60{letter-spacing:-0.481536px;}
.ls28{letter-spacing:-0.476928px;}
.ls39{letter-spacing:-0.470304px;}
.ls6b{letter-spacing:-0.459648px;}
.ls6d{letter-spacing:-0.448704px;}
.ls5b{letter-spacing:-0.437760px;}
.ls62{letter-spacing:-0.432288px;}
.ls38{letter-spacing:-0.423936px;}
.ls74{letter-spacing:-0.399456px;}
.ls13{letter-spacing:-0.393984px;}
.ls36{letter-spacing:-0.390816px;}
.ls77{letter-spacing:-0.383040px;}
.lsf{letter-spacing:-0.372096px;}
.ls79{letter-spacing:-0.366624px;}
.ls50{letter-spacing:-0.364320px;}
.ls68{letter-spacing:-0.361152px;}
.ls10{letter-spacing:-0.355680px;}
.ls75{letter-spacing:-0.344736px;}
.ls69{letter-spacing:-0.333792px;}
.ls7a{letter-spacing:-0.311904px;}
.ls5c{letter-spacing:-0.306432px;}
.ls71{letter-spacing:-0.279072px;}
.ls14{letter-spacing:-0.273600px;}
.ls78{letter-spacing:-0.240768px;}
.ls52{letter-spacing:-0.238464px;}
.ls6f{letter-spacing:-0.235296px;}
.ls1c{letter-spacing:-0.211968px;}
.ls70{letter-spacing:-0.207936px;}
.ls29{letter-spacing:-0.205344px;}
.ls6c{letter-spacing:-0.186048px;}
.ls40{letter-spacing:-0.185472px;}
.ls37{letter-spacing:-0.178848px;}
.ls43{letter-spacing:-0.165600px;}
.ls54{letter-spacing:-0.158976px;}
.ls12{letter-spacing:-0.158688px;}
.ls24{letter-spacing:-0.152352px;}
.ls15{letter-spacing:-0.145728px;}
.ls21{letter-spacing:-0.139104px;}
.ls64{letter-spacing:-0.136800px;}
.lsb{letter-spacing:-0.132480px;}
.ls22{letter-spacing:-0.125856px;}
.ls1a{letter-spacing:-0.112608px;}
.ls1b{letter-spacing:-0.105984px;}
.ls16{letter-spacing:-0.099360px;}
.ls9{letter-spacing:-0.092736px;}
.ls17{letter-spacing:-0.086112px;}
.ls20{letter-spacing:-0.079488px;}
.lsd{letter-spacing:-0.072864px;}
.ls2c{letter-spacing:-0.066240px;}
.ls2a{letter-spacing:-0.059616px;}
.ls5a{letter-spacing:-0.039744px;}
.lse{letter-spacing:-0.036000px;}
.ls27{letter-spacing:-0.033120px;}
.ls2d{letter-spacing:-0.019872px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000144px;}
.ls2{letter-spacing:0.013968px;}
.ls2b{letter-spacing:0.145728px;}
.ls6{letter-spacing:0.222336px;}
.ls5{letter-spacing:2.832480px;}
.ls56{letter-spacing:4.953600px;}
.ls3e{letter-spacing:10.317312px;}
.ls3{letter-spacing:11.360880px;}
.ls4{letter-spacing:15.524640px;}
.ls3f{letter-spacing:17.661600px;}
.ls1{letter-spacing:22.133232px;}
.ls4e{letter-spacing:40.459680px;}
.ls57{letter-spacing:52.917120px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-14.970240px;}
.ws1a{word-spacing:-14.950368px;}
.ws15{word-spacing:-14.937120px;}
.ws1d{word-spacing:-14.890752px;}
.wsd{word-spacing:-14.884128px;}
.ws1{word-spacing:-14.877504px;}
.ws9{word-spacing:-14.870880px;}
.ws12{word-spacing:-14.864256px;}
.ws8{word-spacing:-14.857632px;}
.ws10{word-spacing:-14.844384px;}
.ws2{word-spacing:-14.837760px;}
.wsc{word-spacing:-14.831136px;}
.ws1b{word-spacing:-14.824512px;}
.wsf{word-spacing:-14.817888px;}
.ws1f{word-spacing:-14.804640px;}
.ws14{word-spacing:-14.493312px;}
.ws20{word-spacing:-14.380704px;}
.wsa{word-spacing:-14.321088px;}
.ws1e{word-spacing:-14.307840px;}
.ws11{word-spacing:-14.254848px;}
.ws18{word-spacing:-14.241600px;}
.ws1c{word-spacing:-14.188608px;}
.ws19{word-spacing:-14.175360px;}
.wse{word-spacing:-14.049504px;}
.ws17{word-spacing:-13.989888px;}
.wsb{word-spacing:-13.638816px;}
.ws3{word-spacing:-13.565952px;}
.ws6{word-spacing:-12.366720px;}
.ws28{word-spacing:-12.229920px;}
.ws24{word-spacing:-12.208032px;}
.ws2d{word-spacing:-12.158784px;}
.ws26{word-spacing:-12.131424px;}
.ws2b{word-spacing:-12.125952px;}
.ws27{word-spacing:-12.087648px;}
.ws2c{word-spacing:-12.021984px;}
.ws2a{word-spacing:-12.011040px;}
.ws2e{word-spacing:-12.005568px;}
.ws2f{word-spacing:-12.000096px;}
.ws7{word-spacing:-11.994624px;}
.ws29{word-spacing:-11.983680px;}
.ws22{word-spacing:-11.928960px;}
.ws23{word-spacing:-11.885184px;}
.ws0{word-spacing:-11.784096px;}
.ws25{word-spacing:-11.748384px;}
.ws30{word-spacing:-11.545920px;}
.ws5{word-spacing:-11.507616px;}
.ws13{word-spacing:-10.552032px;}
.ws21{word-spacing:-9.008640px;}
.ws16{word-spacing:0.000000px;}
._47{margin-left:-7.868736px;}
._3d{margin-left:-6.664896px;}
._4{margin-left:-5.508000px;}
._6{margin-left:-4.487040px;}
._7{margin-left:-3.386880px;}
._c{margin-left:-2.247840px;}
._3{margin-left:-1.209600px;}
._2{width:1.258560px;}
._0{width:3.047040px;}
._b{width:4.124160px;}
._1{width:5.365440px;}
._9{width:7.220160px;}
._2a{width:8.611200px;}
._29{width:9.822240px;}
._13{width:11.001600px;}
._f{width:12.055680px;}
._19{width:13.380480px;}
._45{width:14.718240px;}
._8{width:15.996960px;}
._a{width:17.089920px;}
._1d{width:18.157248px;}
._d{width:19.342080px;}
._e{width:20.914560px;}
._5{width:22.325760px;}
._23{width:24.111360px;}
._28{width:25.617600px;}
._25{width:27.290880px;}
._26{width:28.335744px;}
._32{width:29.487888px;}
._30{width:30.536640px;}
._16{width:31.724640px;}
._20{width:32.806080px;}
._1a{width:34.312320px;}
._14{width:35.504640px;}
._34{width:36.564480px;}
._15{width:38.154240px;}
._38{width:39.218400px;}
._1c{width:40.402080px;}
._36{width:41.425920px;}
._27{width:43.109280px;}
._33{width:44.177760px;}
._12{width:45.506880px;}
._11{width:46.517760px;}
._1f{width:48.421440px;}
._2f{width:50.011200px;}
._2e{width:51.269760px;}
._37{width:52.744320px;}
._1b{width:53.919360px;}
._39{width:55.774080px;}
._17{width:57.098880px;}
._18{width:58.639680px;}
._3a{width:63.885600px;}
._41{width:65.161584px;}
._3c{width:66.571200px;}
._2b{width:69.998400px;}
._35{width:71.277120px;}
._31{width:73.658880px;}
._3b{width:79.488000px;}
._42{width:82.530720px;}
._22{width:84.443040px;}
._21{width:85.793760px;}
._44{width:87.039360px;}
._1e{width:89.311248px;}
._2d{width:94.939200px;}
._2c{width:96.246720px;}
._48{width:101.831040px;}
._10{width:103.330080px;}
._43{width:114.707808px;}
._24{width:116.599680px;}
._3e{width:119.629440px;}
._40{width:135.195840px;}
._49{width:165.199680px;}
._4a{width:166.458240px;}
._3f{width:176.132160px;}
._46{width:303.422400px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:36.000000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:4.980000px;}
.y9{bottom:5.100000px;}
.yd{bottom:5.280000px;}
.y7{bottom:5.760000px;}
.y10{bottom:5.820000px;}
.yb{bottom:5.940000px;}
.y13{bottom:57.600000px;}
.y12{bottom:77.760000px;}
.y5{bottom:85.260000px;}
.y3{bottom:86.640000px;}
.y2{bottom:87.360000px;}
.y110{bottom:106.920000px;}
.yce{bottom:107.640000px;}
.y171{bottom:111.960000px;}
.y9b{bottom:114.480000px;}
.y152{bottom:115.200000px;}
.y6e{bottom:117.360000px;}
.y132{bottom:123.480000px;}
.y1a9{bottom:126.720000px;}
.y10f{bottom:127.080000px;}
.ycd{bottom:127.800000px;}
.y170{bottom:128.520000px;}
.y9a{bottom:134.640000px;}
.y151{bottom:135.360000px;}
.y6d{bottom:137.520000px;}
.y1a8{bottom:143.280000px;}
.y131{bottom:143.640000px;}
.y16f{bottom:145.080000px;}
.y10e{bottom:147.240000px;}
.ycc{bottom:147.960000px;}
.y99{bottom:154.800000px;}
.y150{bottom:155.520000px;}
.y6c{bottom:157.680000px;}
.y130{bottom:163.800000px;}
.y1a7{bottom:164.160000px;}
.y16e{bottom:165.960000px;}
.y10d{bottom:167.400000px;}
.ycb{bottom:168.120000px;}
.y3a{bottom:169.920000px;}
.y98{bottom:174.960000px;}
.y14f{bottom:175.680000px;}
.y6b{bottom:177.840000px;}
.y1a6{bottom:180.720000px;}
.y16d{bottom:182.520000px;}
.y12f{bottom:183.960000px;}
.yca{bottom:188.280000px;}
.y10c{bottom:191.880000px;}
.y39{bottom:194.400000px;}
.y97{bottom:195.120000px;}
.y1a5{bottom:196.920000px;}
.y6a{bottom:198.000000px;}
.y16c{bottom:199.080000px;}
.y14e{bottom:200.160000px;}
.y12e{bottom:204.120000px;}
.yc9{bottom:208.440000px;}
.y10b{bottom:212.400000px;}
.y1a4{bottom:213.480000px;}
.y38{bottom:214.560000px;}
.y96{bottom:215.280000px;}
.y69{bottom:218.160000px;}
.y16b{bottom:219.960000px;}
.y14d{bottom:220.320000px;}
.y12d{bottom:224.280000px;}
.yc8{bottom:228.600000px;}
.y1a3{bottom:234.360000px;}
.y37{bottom:234.720000px;}
.y95{bottom:235.440000px;}
.y16a{bottom:236.520000px;}
.y68{bottom:238.320000px;}
.y14c{bottom:240.480000px;}
.y10a{bottom:241.200000px;}
.y12c{bottom:244.440000px;}
.yc7{bottom:248.760000px;}
.y1a2{bottom:250.920000px;}
.y11e{bottom:253.080000px;}
.y36{bottom:254.880000px;}
.y94{bottom:255.240000px;}
.y67{bottom:258.480000px;}
.y14b{bottom:260.640000px;}
.y109{bottom:261.360000px;}
.y12b{bottom:264.240000px;}
.yc6{bottom:268.920000px;}
.y169{bottom:269.640000px;}
.y1a1{bottom:271.800000px;}
.ye0{bottom:273.240000px;}
.y35{bottom:275.040000px;}
.y93{bottom:275.400000px;}
.y14a{bottom:280.800000px;}
.y108{bottom:281.520000px;}
.y66{bottom:282.960000px;}
.y12a{bottom:284.400000px;}
.y168{bottom:285.840000px;}
.y1a0{bottom:288.360000px;}
.yc5{bottom:289.080000px;}
.ydf{bottom:293.400000px;}
.y92{bottom:295.560000px;}
.y34{bottom:297.360000px;}
.y149{bottom:300.960000px;}
.y107{bottom:301.680000px;}
.y65{bottom:303.120000px;}
.y129{bottom:304.560000px;}
.y19f{bottom:304.920000px;}
.y167{bottom:307.440000px;}
.yc4{bottom:313.560000px;}
.y91{bottom:315.720000px;}
.y33{bottom:317.520000px;}
.y148{bottom:321.120000px;}
.y19e{bottom:321.480000px;}
.y106{bottom:321.840000px;}
.y64{bottom:323.280000px;}
.y128{bottom:329.040000px;}
.yc3{bottom:333.720000px;}
.y90{bottom:335.880000px;}
.y166{bottom:336.960000px;}
.y32{bottom:337.680000px;}
.y19d{bottom:338.040000px;}
.y147{bottom:341.280000px;}
.y105{bottom:342.000000px;}
.y63{bottom:343.440000px;}
.yc2{bottom:353.880000px;}
.y8f{bottom:356.040000px;}
.y165{bottom:357.120000px;}
.y127{bottom:358.560000px;}
.y19c{bottom:358.920000px;}
.y146{bottom:361.440000px;}
.y104{bottom:362.160000px;}
.y62{bottom:363.600000px;}
.y31{bottom:364.680000px;}
.yc1{bottom:374.040000px;}
.y19b{bottom:375.480000px;}
.y8e{bottom:376.200000px;}
.y164{bottom:377.280000px;}
.y126{bottom:378.720000px;}
.y145{bottom:381.600000px;}
.y103{bottom:382.320000px;}
.y61{bottom:383.760000px;}
.y30{bottom:389.160000px;}
.yc0{bottom:394.200000px;}
.y8d{bottom:396.360000px;}
.y163{bottom:397.440000px;}
.y125{bottom:398.880000px;}
.y144{bottom:401.760000px;}
.y102{bottom:402.480000px;}
.y60{bottom:403.920000px;}
.y19a{bottom:412.920000px;}
.y2f{bottom:414.000000px;}
.ybf{bottom:414.360000px;}
.y8c{bottom:416.520000px;}
.y124{bottom:419.040000px;}
.y162{bottom:421.560000px;}
.y143{bottom:421.920000px;}
.y101{bottom:422.640000px;}
.y5f{bottom:424.080000px;}
.y199{bottom:429.120000px;}
.ybe{bottom:434.520000px;}
.y2e{bottom:438.480000px;}
.y123{bottom:439.200000px;}
.y142{bottom:442.080000px;}
.y8b{bottom:442.800000px;}
.y5e{bottom:444.240000px;}
.y198{bottom:445.680000px;}
.y161{bottom:451.080000px;}
.ybd{bottom:454.680000px;}
.y122{bottom:459.360000px;}
.y141{bottom:462.240000px;}
.y2d{bottom:462.960000px;}
.y5d{bottom:464.400000px;}
.y197{bottom:466.560000px;}
.y100{bottom:467.280000px;}
.y8a{bottom:468.720000px;}
.y160{bottom:471.240000px;}
.ybc{bottom:474.840000px;}
.y121{bottom:479.160000px;}
.y140{bottom:482.400000px;}
.y196{bottom:483.120000px;}
.y5c{bottom:484.560000px;}
.yff{bottom:487.440000px;}
.y2c{bottom:487.800000px;}
.y89{bottom:488.880000px;}
.y15f{bottom:491.400000px;}
.ybb{bottom:495.000000px;}
.y120{bottom:499.320000px;}
.y13f{bottom:502.560000px;}
.y195{bottom:504.000000px;}
.yfe{bottom:507.600000px;}
.y5b{bottom:509.040000px;}
.y15e{bottom:511.560000px;}
.y2b{bottom:512.280000px;}
.yba{bottom:515.160000px;}
.y11d{bottom:519.480000px;}
.y194{bottom:520.560000px;}
.y13e{bottom:522.720000px;}
.yfd{bottom:527.760000px;}
.y5a{bottom:529.200000px;}
.y15d{bottom:531.720000px;}
.y2a{bottom:532.440000px;}
.yb9{bottom:535.320000px;}
.y193{bottom:537.120000px;}
.y11c{bottom:539.640000px;}
.yde{bottom:541.080000px;}
.y13d{bottom:547.200000px;}
.yfc{bottom:547.920000px;}
.y59{bottom:549.360000px;}
.y15c{bottom:551.880000px;}
.y29{bottom:552.600000px;}
.y192{bottom:553.680000px;}
.yb8{bottom:555.480000px;}
.y11b{bottom:559.800000px;}
.ydd{bottom:561.600000px;}
.y13c{bottom:567.360000px;}
.yfb{bottom:568.080000px;}
.y58{bottom:569.520000px;}
.y15b{bottom:572.040000px;}
.y28{bottom:572.760000px;}
.y191{bottom:574.560000px;}
.yb7{bottom:579.960000px;}
.ydc{bottom:587.520000px;}
.yfa{bottom:588.240000px;}
.y57{bottom:589.680000px;}
.y190{bottom:591.120000px;}
.y15a{bottom:592.200000px;}
.y27{bottom:592.920000px;}
.yb6{bottom:600.120000px;}
.ydb{bottom:607.680000px;}
.yf9{bottom:608.400000px;}
.y56{bottom:609.840000px;}
.y159{bottom:612.360000px;}
.y26{bottom:613.080000px;}
.y88{bottom:614.160000px;}
.yb5{bottom:620.280000px;}
.yda{bottom:627.840000px;}
.yf8{bottom:628.560000px;}
.y55{bottom:630.000000px;}
.y158{bottom:632.160000px;}
.y25{bottom:633.240000px;}
.y87{bottom:634.320000px;}
.yb4{bottom:640.440000px;}
.y18f{bottom:645.120000px;}
.yd9{bottom:648.000000px;}
.yf7{bottom:648.720000px;}
.y54{bottom:650.160000px;}
.y157{bottom:652.320000px;}
.y24{bottom:653.400000px;}
.y86{bottom:659.160000px;}
.yb3{bottom:660.600000px;}
.y18e{bottom:661.680000px;}
.yd8{bottom:668.160000px;}
.y53{bottom:670.320000px;}
.y156{bottom:672.480000px;}
.y23{bottom:673.560000px;}
.yf6{bottom:674.640000px;}
.y85{bottom:679.320000px;}
.yb2{bottom:680.760000px;}
.y18d{bottom:682.560000px;}
.yd7{bottom:688.320000px;}
.y52{bottom:690.480000px;}
.y155{bottom:692.640000px;}
.y22{bottom:693.720000px;}
.yf5{bottom:694.800000px;}
.y18c{bottom:699.120000px;}
.y84{bottom:699.480000px;}
.y11a{bottom:700.920000px;}
.yb1{bottom:707.040000px;}
.yd6{bottom:708.480000px;}
.y51{bottom:710.640000px;}
.y154{bottom:712.800000px;}
.y21{bottom:713.880000px;}
.y18b{bottom:715.320000px;}
.y83{bottom:719.640000px;}
.yf4{bottom:721.080000px;}
.yd5{bottom:728.640000px;}
.y50{bottom:730.800000px;}
.y18a{bottom:731.880000px;}
.yb0{bottom:732.960000px;}
.y20{bottom:734.040000px;}
.y82{bottom:739.800000px;}
.yf3{bottom:741.240000px;}
.y119{bottom:745.560000px;}
.yd4{bottom:748.800000px;}
.y4f{bottom:750.960000px;}
.y189{bottom:752.760000px;}
.yaf{bottom:753.120000px;}
.y1f{bottom:754.200000px;}
.y81{bottom:759.960000px;}
.yf2{bottom:761.400000px;}
.y118{bottom:765.720000px;}
.yd3{bottom:768.960000px;}
.y4e{bottom:771.120000px;}
.yae{bottom:773.280000px;}
.y188{bottom:773.640000px;}
.y1e{bottom:774.360000px;}
.y80{bottom:780.120000px;}
.yf1{bottom:781.560000px;}
.y117{bottom:785.880000px;}
.y13b{bottom:789.120000px;}
.y187{bottom:790.200000px;}
.y4d{bottom:790.920000px;}
.yad{bottom:793.440000px;}
.y1d{bottom:794.520000px;}
.y7f{bottom:799.920000px;}
.yf0{bottom:801.720000px;}
.y116{bottom:806.040000px;}
.y13a{bottom:808.920000px;}
.y4c{bottom:811.080000px;}
.y186{bottom:811.440000px;}
.yac{bottom:813.600000px;}
.y1c{bottom:814.680000px;}
.y7e{bottom:820.080000px;}
.yef{bottom:821.880000px;}
.y115{bottom:826.200000px;}
.y185{bottom:828.000000px;}
.y139{bottom:829.080000px;}
.yab{bottom:833.760000px;}
.y4b{bottom:835.920000px;}
.y1b{bottom:839.160000px;}
.y7d{bottom:840.240000px;}
.yee{bottom:842.040000px;}
.y184{bottom:844.200000px;}
.y114{bottom:846.360000px;}
.yaa{bottom:853.920000px;}
.y4a{bottom:856.080000px;}
.y7c{bottom:860.400000px;}
.y183{bottom:860.760000px;}
.yed{bottom:862.200000px;}
.y1a{bottom:864.000000px;}
.y113{bottom:866.520000px;}
.ya9{bottom:874.080000px;}
.y49{bottom:876.240000px;}
.y7b{bottom:880.560000px;}
.y182{bottom:881.640000px;}
.yec{bottom:882.000000px;}
.y112{bottom:886.680000px;}
.y19{bottom:894.240000px;}
.y48{bottom:896.400000px;}
.y181{bottom:898.200000px;}
.y153{bottom:898.560000px;}
.y7a{bottom:900.720000px;}
.y1b4{bottom:905.760000px;}
.yeb{bottom:906.840000px;}
.y18{bottom:914.400000px;}
.y180{bottom:914.760000px;}
.y47{bottom:916.560000px;}
.ya8{bottom:918.720000px;}
.y79{bottom:920.880000px;}
.y1b3{bottom:922.320000px;}
.yea{bottom:927.000000px;}
.y17f{bottom:931.320000px;}
.yd2{bottom:934.560000px;}
.y17{bottom:936.360000px;}
.y46{bottom:936.720000px;}
.ya7{bottom:938.880000px;}
.y78{bottom:941.040000px;}
.y1b2{bottom:943.200000px;}
.ye9{bottom:947.160000px;}
.y17e{bottom:952.200000px;}
.yd1{bottom:954.720000px;}
.y16{bottom:956.520000px;}
.y45{bottom:956.880000px;}
.ya6{bottom:959.040000px;}
.y1b1{bottom:959.760000px;}
.y77{bottom:961.200000px;}
.ye8{bottom:967.320000px;}
.y17d{bottom:968.760000px;}
.yd0{bottom:974.880000px;}
.y44{bottom:977.040000px;}
.ya5{bottom:979.200000px;}
.y1b0{bottom:980.640000px;}
.y76{bottom:981.360000px;}
.y17c{bottom:985.320000px;}
.ye7{bottom:987.480000px;}
.y15{bottom:990.720000px;}
.ycf{bottom:995.040000px;}
.y43{bottom:996.840000px;}
.ya4{bottom:999.360000px;}
.y1af{bottom:1001.520000px;}
.y75{bottom:1005.840000px;}
.y17b{bottom:1006.200000px;}
.ye6{bottom:1007.640000px;}
.y111{bottom:1013.400000px;}
.y138{bottom:1014.840000px;}
.y42{bottom:1017.000000px;}
.y1ae{bottom:1018.080000px;}
.ya3{bottom:1019.520000px;}
.y17a{bottom:1022.760000px;}
.y74{bottom:1026.000000px;}
.ye5{bottom:1027.800000px;}
.y14{bottom:1032.840000px;}
.y137{bottom:1035.000000px;}
.y41{bottom:1037.160000px;}
.y1ad{bottom:1038.960000px;}
.ya2{bottom:1039.680000px;}
.y179{bottom:1043.640000px;}
.y73{bottom:1046.160000px;}
.ye4{bottom:1047.960000px;}
.y136{bottom:1055.160000px;}
.y1ac{bottom:1055.520000px;}
.y40{bottom:1057.320000px;}
.ya1{bottom:1059.840000px;}
.y178{bottom:1060.200000px;}
.y72{bottom:1066.320000px;}
.ye3{bottom:1067.760000px;}
.y11{bottom:1073.160000px;}
.y135{bottom:1075.320000px;}
.y177{bottom:1076.400000px;}
.y3f{bottom:1077.480000px;}
.ya0{bottom:1080.000000px;}
.y1{bottom:1083.000000px;}
.y71{bottom:1086.480000px;}
.yf{bottom:1087.500000px;}
.ye2{bottom:1087.920000px;}
.y176{bottom:1092.960000px;}
.y11f{bottom:1094.040000px;}
.y134{bottom:1095.480000px;}
.y3e{bottom:1097.640000px;}
.y9f{bottom:1100.160000px;}
.y70{bottom:1106.640000px;}
.y4{bottom:1108.500000px;}
.y1ab{bottom:1109.520000px;}
.y175{bottom:1113.840000px;}
.ye1{bottom:1114.200000px;}
.y133{bottom:1115.640000px;}
.y9e{bottom:1120.320000px;}
.y3d{bottom:1122.120000px;}
.y1aa{bottom:1126.080000px;}
.y6f{bottom:1126.800000px;}
.yc{bottom:1128.000000px;}
.y174{bottom:1130.400000px;}
.y1b8{bottom:1133.640000px;}
.y9d{bottom:1140.480000px;}
.y173{bottom:1146.960000px;}
.ya{bottom:1147.500000px;}
.y1b7{bottom:1158.120000px;}
.y9c{bottom:1160.640000px;}
.y172{bottom:1163.520000px;}
.y8{bottom:1168.500000px;}
.y3c{bottom:1180.800000px;}
.y1b6{bottom:1182.960000px;}
.y6{bottom:1188.000000px;}
.y3b{bottom:1193.760000px;}
.y1b5{bottom:1201.320000px;}
.h7{height:21.000000px;}
.h5{height:22.500000px;}
.hd{height:24.486328px;}
.ha{height:28.991250px;}
.hb{height:43.391250px;}
.hc{height:45.895781px;}
.h6{height:46.057500px;}
.h8{height:47.988281px;}
.h3{height:52.526250px;}
.h9{height:59.484375px;}
.h4{height:102.000000px;}
.h2{height:179.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:22.500000px;}
.w6{width:76.500000px;}
.w4{width:225.000000px;}
.w5{width:277.500000px;}
.w2{width:330.000000px;}
.w3{width:375.300000px;}
.w8{width:384.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:9.239856px;}
.x1{left:11.519899px;}
.x4{left:84.000000px;}
.x15{left:138.134772px;}
.xd{left:148.784904px;}
.xa{left:212.652828px;}
.x13{left:270.037008px;}
.xc{left:271.138896px;}
.xb{left:272.670408px;}
.x3{left:325.500000px;}
.x6{left:360.000000px;}
.x10{left:381.669840px;}
.x14{left:433.840680px;}
.x7{left:435.000000px;}
.x9{left:438.022080px;}
.x11{left:446.384880px;}
.x8{left:456.000000px;}
.x12{left:473.040000px;}
.x2{left:517.500000px;}
.x16{left:526.214880px;}
.xf{left:714.240000px;}
.xe{left:807.809760px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls35{letter-spacing:-5.299200pt;}
.lsa{letter-spacing:-4.834048pt;}
.ls26{letter-spacing:-3.927296pt;}
.ls4d{letter-spacing:-3.721216pt;}
.ls7c{letter-spacing:-3.273472pt;}
.ls8{letter-spacing:-2.832128pt;}
.ls45{letter-spacing:-2.272768pt;}
.ls7d{letter-spacing:-2.252032pt;}
.ls1d{letter-spacing:-2.066688pt;}
.ls46{letter-spacing:-2.013696pt;}
.ls53{letter-spacing:-1.931264pt;}
.ls4f{letter-spacing:-1.689856pt;}
.ls7b{letter-spacing:-1.658624pt;}
.ls32{letter-spacing:-1.636864pt;}
.ls5e{letter-spacing:-1.507840pt;}
.ls66{letter-spacing:-1.425152pt;}
.ls4b{letter-spacing:-1.395456pt;}
.ls4a{letter-spacing:-1.301248pt;}
.ls41{letter-spacing:-1.283584pt;}
.lsc{letter-spacing:-1.248256pt;}
.ls72{letter-spacing:-1.220864pt;}
.ls48{letter-spacing:-1.201152pt;}
.ls61{letter-spacing:-1.191680pt;}
.ls1f{letter-spacing:-1.183488pt;}
.ls3c{letter-spacing:-1.177600pt;}
.ls31{letter-spacing:-1.136384pt;}
.ls58{letter-spacing:-1.101056pt;}
.ls3b{letter-spacing:-1.042176pt;}
.ls49{letter-spacing:-1.018624pt;}
.ls7e{letter-spacing:-1.011712pt;}
.ls6a{letter-spacing:-0.972800pt;}
.ls67{letter-spacing:-0.953344pt;}
.ls47{letter-spacing:-0.930304pt;}
.ls34{letter-spacing:-0.889088pt;}
.ls65{letter-spacing:-0.875520pt;}
.ls2e{letter-spacing:-0.871424pt;}
.ls23{letter-spacing:-0.818432pt;}
.ls55{letter-spacing:-0.788992pt;}
.ls76{letter-spacing:-0.783104pt;}
.ls11{letter-spacing:-0.763648pt;}
.ls3a{letter-spacing:-0.736000pt;}
.ls18{letter-spacing:-0.730112pt;}
.ls73{letter-spacing:-0.729600pt;}
.ls2f{letter-spacing:-0.706560pt;}
.ls51{letter-spacing:-0.694784pt;}
.ls4c{letter-spacing:-0.677120pt;}
.ls63{letter-spacing:-0.676096pt;}
.ls30{letter-spacing:-0.647680pt;}
.ls25{letter-spacing:-0.635904pt;}
.ls3d{letter-spacing:-0.606464pt;}
.ls33{letter-spacing:-0.588800pt;}
.ls1e{letter-spacing:-0.577024pt;}
.ls5f{letter-spacing:-0.549632pt;}
.ls59{letter-spacing:-0.524032pt;}
.ls5d{letter-spacing:-0.520448pt;}
.ls42{letter-spacing:-0.518144pt;}
.ls19{letter-spacing:-0.500480pt;}
.ls44{letter-spacing:-0.447488pt;}
.ls6e{letter-spacing:-0.437760pt;}
.ls60{letter-spacing:-0.428032pt;}
.ls28{letter-spacing:-0.423936pt;}
.ls39{letter-spacing:-0.418048pt;}
.ls6b{letter-spacing:-0.408576pt;}
.ls6d{letter-spacing:-0.398848pt;}
.ls5b{letter-spacing:-0.389120pt;}
.ls62{letter-spacing:-0.384256pt;}
.ls38{letter-spacing:-0.376832pt;}
.ls74{letter-spacing:-0.355072pt;}
.ls13{letter-spacing:-0.350208pt;}
.ls36{letter-spacing:-0.347392pt;}
.ls77{letter-spacing:-0.340480pt;}
.lsf{letter-spacing:-0.330752pt;}
.ls79{letter-spacing:-0.325888pt;}
.ls50{letter-spacing:-0.323840pt;}
.ls68{letter-spacing:-0.321024pt;}
.ls10{letter-spacing:-0.316160pt;}
.ls75{letter-spacing:-0.306432pt;}
.ls69{letter-spacing:-0.296704pt;}
.ls7a{letter-spacing:-0.277248pt;}
.ls5c{letter-spacing:-0.272384pt;}
.ls71{letter-spacing:-0.248064pt;}
.ls14{letter-spacing:-0.243200pt;}
.ls78{letter-spacing:-0.214016pt;}
.ls52{letter-spacing:-0.211968pt;}
.ls6f{letter-spacing:-0.209152pt;}
.ls1c{letter-spacing:-0.188416pt;}
.ls70{letter-spacing:-0.184832pt;}
.ls29{letter-spacing:-0.182528pt;}
.ls6c{letter-spacing:-0.165376pt;}
.ls40{letter-spacing:-0.164864pt;}
.ls37{letter-spacing:-0.158976pt;}
.ls43{letter-spacing:-0.147200pt;}
.ls54{letter-spacing:-0.141312pt;}
.ls12{letter-spacing:-0.141056pt;}
.ls24{letter-spacing:-0.135424pt;}
.ls15{letter-spacing:-0.129536pt;}
.ls21{letter-spacing:-0.123648pt;}
.ls64{letter-spacing:-0.121600pt;}
.lsb{letter-spacing:-0.117760pt;}
.ls22{letter-spacing:-0.111872pt;}
.ls1a{letter-spacing:-0.100096pt;}
.ls1b{letter-spacing:-0.094208pt;}
.ls16{letter-spacing:-0.088320pt;}
.ls9{letter-spacing:-0.082432pt;}
.ls17{letter-spacing:-0.076544pt;}
.ls20{letter-spacing:-0.070656pt;}
.lsd{letter-spacing:-0.064768pt;}
.ls2c{letter-spacing:-0.058880pt;}
.ls2a{letter-spacing:-0.052992pt;}
.ls5a{letter-spacing:-0.035328pt;}
.lse{letter-spacing:-0.032000pt;}
.ls27{letter-spacing:-0.029440pt;}
.ls2d{letter-spacing:-0.017664pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000128pt;}
.ls2{letter-spacing:0.012416pt;}
.ls2b{letter-spacing:0.129536pt;}
.ls6{letter-spacing:0.197632pt;}
.ls5{letter-spacing:2.517760pt;}
.ls56{letter-spacing:4.403200pt;}
.ls3e{letter-spacing:9.170944pt;}
.ls3{letter-spacing:10.098560pt;}
.ls4{letter-spacing:13.799680pt;}
.ls3f{letter-spacing:15.699200pt;}
.ls1{letter-spacing:19.673984pt;}
.ls4e{letter-spacing:35.964160pt;}
.ls57{letter-spacing:47.037440pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1a{word-spacing:-13.289216pt;}
.ws15{word-spacing:-13.277440pt;}
.ws1d{word-spacing:-13.236224pt;}
.wsd{word-spacing:-13.230336pt;}
.ws1{word-spacing:-13.224448pt;}
.ws9{word-spacing:-13.218560pt;}
.ws12{word-spacing:-13.212672pt;}
.ws8{word-spacing:-13.206784pt;}
.ws10{word-spacing:-13.195008pt;}
.ws2{word-spacing:-13.189120pt;}
.wsc{word-spacing:-13.183232pt;}
.ws1b{word-spacing:-13.177344pt;}
.wsf{word-spacing:-13.171456pt;}
.ws1f{word-spacing:-13.159680pt;}
.ws14{word-spacing:-12.882944pt;}
.ws20{word-spacing:-12.782848pt;}
.wsa{word-spacing:-12.729856pt;}
.ws1e{word-spacing:-12.718080pt;}
.ws11{word-spacing:-12.670976pt;}
.ws18{word-spacing:-12.659200pt;}
.ws1c{word-spacing:-12.612096pt;}
.ws19{word-spacing:-12.600320pt;}
.wse{word-spacing:-12.488448pt;}
.ws17{word-spacing:-12.435456pt;}
.wsb{word-spacing:-12.123392pt;}
.ws3{word-spacing:-12.058624pt;}
.ws6{word-spacing:-10.992640pt;}
.ws28{word-spacing:-10.871040pt;}
.ws24{word-spacing:-10.851584pt;}
.ws2d{word-spacing:-10.807808pt;}
.ws26{word-spacing:-10.783488pt;}
.ws2b{word-spacing:-10.778624pt;}
.ws27{word-spacing:-10.744576pt;}
.ws2c{word-spacing:-10.686208pt;}
.ws2a{word-spacing:-10.676480pt;}
.ws2e{word-spacing:-10.671616pt;}
.ws2f{word-spacing:-10.666752pt;}
.ws7{word-spacing:-10.661888pt;}
.ws29{word-spacing:-10.652160pt;}
.ws22{word-spacing:-10.603520pt;}
.ws23{word-spacing:-10.564608pt;}
.ws0{word-spacing:-10.474752pt;}
.ws25{word-spacing:-10.443008pt;}
.ws30{word-spacing:-10.263040pt;}
.ws5{word-spacing:-10.228992pt;}
.ws13{word-spacing:-9.379584pt;}
.ws21{word-spacing:-8.007680pt;}
.ws16{word-spacing:0.000000pt;}
._47{margin-left:-6.994432pt;}
._3d{margin-left:-5.924352pt;}
._4{margin-left:-4.896000pt;}
._6{margin-left:-3.988480pt;}
._7{margin-left:-3.010560pt;}
._c{margin-left:-1.998080pt;}
._3{margin-left:-1.075200pt;}
._2{width:1.118720pt;}
._0{width:2.708480pt;}
._b{width:3.665920pt;}
._1{width:4.769280pt;}
._9{width:6.417920pt;}
._2a{width:7.654400pt;}
._29{width:8.730880pt;}
._13{width:9.779200pt;}
._f{width:10.716160pt;}
._19{width:11.893760pt;}
._45{width:13.082880pt;}
._8{width:14.219520pt;}
._a{width:15.191040pt;}
._1d{width:16.139776pt;}
._d{width:17.192960pt;}
._e{width:18.590720pt;}
._5{width:19.845120pt;}
._23{width:21.432320pt;}
._28{width:22.771200pt;}
._25{width:24.258560pt;}
._26{width:25.187328pt;}
._32{width:26.211456pt;}
._30{width:27.143680pt;}
._16{width:28.199680pt;}
._20{width:29.160960pt;}
._1a{width:30.499840pt;}
._14{width:31.559680pt;}
._34{width:32.501760pt;}
._15{width:33.914880pt;}
._38{width:34.860800pt;}
._1c{width:35.912960pt;}
._36{width:36.823040pt;}
._27{width:38.319360pt;}
._33{width:39.269120pt;}
._12{width:40.450560pt;}
._11{width:41.349120pt;}
._1f{width:43.041280pt;}
._2f{width:44.454400pt;}
._2e{width:45.573120pt;}
._37{width:46.883840pt;}
._1b{width:47.928320pt;}
._39{width:49.576960pt;}
._17{width:50.754560pt;}
._18{width:52.124160pt;}
._3a{width:56.787200pt;}
._41{width:57.921408pt;}
._3c{width:59.174400pt;}
._2b{width:62.220800pt;}
._35{width:63.357440pt;}
._31{width:65.474560pt;}
._3b{width:70.656000pt;}
._42{width:73.360640pt;}
._22{width:75.060480pt;}
._21{width:76.261120pt;}
._44{width:77.368320pt;}
._1e{width:79.387776pt;}
._2d{width:84.390400pt;}
._2c{width:85.552640pt;}
._48{width:90.516480pt;}
._10{width:91.848960pt;}
._43{width:101.962496pt;}
._24{width:103.644160pt;}
._3e{width:106.337280pt;}
._40{width:120.174080pt;}
._49{width:146.844160pt;}
._4a{width:147.962880pt;}
._3f{width:156.561920pt;}
._46{width:269.708800pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:4.426667pt;}
.y9{bottom:4.533333pt;}
.yd{bottom:4.693333pt;}
.y7{bottom:5.120000pt;}
.y10{bottom:5.173333pt;}
.yb{bottom:5.280000pt;}
.y13{bottom:51.200000pt;}
.y12{bottom:69.120000pt;}
.y5{bottom:75.786667pt;}
.y3{bottom:77.013333pt;}
.y2{bottom:77.653333pt;}
.y110{bottom:95.040000pt;}
.yce{bottom:95.680000pt;}
.y171{bottom:99.520000pt;}
.y9b{bottom:101.760000pt;}
.y152{bottom:102.400000pt;}
.y6e{bottom:104.320000pt;}
.y132{bottom:109.760000pt;}
.y1a9{bottom:112.640000pt;}
.y10f{bottom:112.960000pt;}
.ycd{bottom:113.600000pt;}
.y170{bottom:114.240000pt;}
.y9a{bottom:119.680000pt;}
.y151{bottom:120.320000pt;}
.y6d{bottom:122.240000pt;}
.y1a8{bottom:127.360000pt;}
.y131{bottom:127.680000pt;}
.y16f{bottom:128.960000pt;}
.y10e{bottom:130.880000pt;}
.ycc{bottom:131.520000pt;}
.y99{bottom:137.600000pt;}
.y150{bottom:138.240000pt;}
.y6c{bottom:140.160000pt;}
.y130{bottom:145.600000pt;}
.y1a7{bottom:145.920000pt;}
.y16e{bottom:147.520000pt;}
.y10d{bottom:148.800000pt;}
.ycb{bottom:149.440000pt;}
.y3a{bottom:151.040000pt;}
.y98{bottom:155.520000pt;}
.y14f{bottom:156.160000pt;}
.y6b{bottom:158.080000pt;}
.y1a6{bottom:160.640000pt;}
.y16d{bottom:162.240000pt;}
.y12f{bottom:163.520000pt;}
.yca{bottom:167.360000pt;}
.y10c{bottom:170.560000pt;}
.y39{bottom:172.800000pt;}
.y97{bottom:173.440000pt;}
.y1a5{bottom:175.040000pt;}
.y6a{bottom:176.000000pt;}
.y16c{bottom:176.960000pt;}
.y14e{bottom:177.920000pt;}
.y12e{bottom:181.440000pt;}
.yc9{bottom:185.280000pt;}
.y10b{bottom:188.800000pt;}
.y1a4{bottom:189.760000pt;}
.y38{bottom:190.720000pt;}
.y96{bottom:191.360000pt;}
.y69{bottom:193.920000pt;}
.y16b{bottom:195.520000pt;}
.y14d{bottom:195.840000pt;}
.y12d{bottom:199.360000pt;}
.yc8{bottom:203.200000pt;}
.y1a3{bottom:208.320000pt;}
.y37{bottom:208.640000pt;}
.y95{bottom:209.280000pt;}
.y16a{bottom:210.240000pt;}
.y68{bottom:211.840000pt;}
.y14c{bottom:213.760000pt;}
.y10a{bottom:214.400000pt;}
.y12c{bottom:217.280000pt;}
.yc7{bottom:221.120000pt;}
.y1a2{bottom:223.040000pt;}
.y11e{bottom:224.960000pt;}
.y36{bottom:226.560000pt;}
.y94{bottom:226.880000pt;}
.y67{bottom:229.760000pt;}
.y14b{bottom:231.680000pt;}
.y109{bottom:232.320000pt;}
.y12b{bottom:234.880000pt;}
.yc6{bottom:239.040000pt;}
.y169{bottom:239.680000pt;}
.y1a1{bottom:241.600000pt;}
.ye0{bottom:242.880000pt;}
.y35{bottom:244.480000pt;}
.y93{bottom:244.800000pt;}
.y14a{bottom:249.600000pt;}
.y108{bottom:250.240000pt;}
.y66{bottom:251.520000pt;}
.y12a{bottom:252.800000pt;}
.y168{bottom:254.080000pt;}
.y1a0{bottom:256.320000pt;}
.yc5{bottom:256.960000pt;}
.ydf{bottom:260.800000pt;}
.y92{bottom:262.720000pt;}
.y34{bottom:264.320000pt;}
.y149{bottom:267.520000pt;}
.y107{bottom:268.160000pt;}
.y65{bottom:269.440000pt;}
.y129{bottom:270.720000pt;}
.y19f{bottom:271.040000pt;}
.y167{bottom:273.280000pt;}
.yc4{bottom:278.720000pt;}
.y91{bottom:280.640000pt;}
.y33{bottom:282.240000pt;}
.y148{bottom:285.440000pt;}
.y19e{bottom:285.760000pt;}
.y106{bottom:286.080000pt;}
.y64{bottom:287.360000pt;}
.y128{bottom:292.480000pt;}
.yc3{bottom:296.640000pt;}
.y90{bottom:298.560000pt;}
.y166{bottom:299.520000pt;}
.y32{bottom:300.160000pt;}
.y19d{bottom:300.480000pt;}
.y147{bottom:303.360000pt;}
.y105{bottom:304.000000pt;}
.y63{bottom:305.280000pt;}
.yc2{bottom:314.560000pt;}
.y8f{bottom:316.480000pt;}
.y165{bottom:317.440000pt;}
.y127{bottom:318.720000pt;}
.y19c{bottom:319.040000pt;}
.y146{bottom:321.280000pt;}
.y104{bottom:321.920000pt;}
.y62{bottom:323.200000pt;}
.y31{bottom:324.160000pt;}
.yc1{bottom:332.480000pt;}
.y19b{bottom:333.760000pt;}
.y8e{bottom:334.400000pt;}
.y164{bottom:335.360000pt;}
.y126{bottom:336.640000pt;}
.y145{bottom:339.200000pt;}
.y103{bottom:339.840000pt;}
.y61{bottom:341.120000pt;}
.y30{bottom:345.920000pt;}
.yc0{bottom:350.400000pt;}
.y8d{bottom:352.320000pt;}
.y163{bottom:353.280000pt;}
.y125{bottom:354.560000pt;}
.y144{bottom:357.120000pt;}
.y102{bottom:357.760000pt;}
.y60{bottom:359.040000pt;}
.y19a{bottom:367.040000pt;}
.y2f{bottom:368.000000pt;}
.ybf{bottom:368.320000pt;}
.y8c{bottom:370.240000pt;}
.y124{bottom:372.480000pt;}
.y162{bottom:374.720000pt;}
.y143{bottom:375.040000pt;}
.y101{bottom:375.680000pt;}
.y5f{bottom:376.960000pt;}
.y199{bottom:381.440000pt;}
.ybe{bottom:386.240000pt;}
.y2e{bottom:389.760000pt;}
.y123{bottom:390.400000pt;}
.y142{bottom:392.960000pt;}
.y8b{bottom:393.600000pt;}
.y5e{bottom:394.880000pt;}
.y198{bottom:396.160000pt;}
.y161{bottom:400.960000pt;}
.ybd{bottom:404.160000pt;}
.y122{bottom:408.320000pt;}
.y141{bottom:410.880000pt;}
.y2d{bottom:411.520000pt;}
.y5d{bottom:412.800000pt;}
.y197{bottom:414.720000pt;}
.y100{bottom:415.360000pt;}
.y8a{bottom:416.640000pt;}
.y160{bottom:418.880000pt;}
.ybc{bottom:422.080000pt;}
.y121{bottom:425.920000pt;}
.y140{bottom:428.800000pt;}
.y196{bottom:429.440000pt;}
.y5c{bottom:430.720000pt;}
.yff{bottom:433.280000pt;}
.y2c{bottom:433.600000pt;}
.y89{bottom:434.560000pt;}
.y15f{bottom:436.800000pt;}
.ybb{bottom:440.000000pt;}
.y120{bottom:443.840000pt;}
.y13f{bottom:446.720000pt;}
.y195{bottom:448.000000pt;}
.yfe{bottom:451.200000pt;}
.y5b{bottom:452.480000pt;}
.y15e{bottom:454.720000pt;}
.y2b{bottom:455.360000pt;}
.yba{bottom:457.920000pt;}
.y11d{bottom:461.760000pt;}
.y194{bottom:462.720000pt;}
.y13e{bottom:464.640000pt;}
.yfd{bottom:469.120000pt;}
.y5a{bottom:470.400000pt;}
.y15d{bottom:472.640000pt;}
.y2a{bottom:473.280000pt;}
.yb9{bottom:475.840000pt;}
.y193{bottom:477.440000pt;}
.y11c{bottom:479.680000pt;}
.yde{bottom:480.960000pt;}
.y13d{bottom:486.400000pt;}
.yfc{bottom:487.040000pt;}
.y59{bottom:488.320000pt;}
.y15c{bottom:490.560000pt;}
.y29{bottom:491.200000pt;}
.y192{bottom:492.160000pt;}
.yb8{bottom:493.760000pt;}
.y11b{bottom:497.600000pt;}
.ydd{bottom:499.200000pt;}
.y13c{bottom:504.320000pt;}
.yfb{bottom:504.960000pt;}
.y58{bottom:506.240000pt;}
.y15b{bottom:508.480000pt;}
.y28{bottom:509.120000pt;}
.y191{bottom:510.720000pt;}
.yb7{bottom:515.520000pt;}
.ydc{bottom:522.240000pt;}
.yfa{bottom:522.880000pt;}
.y57{bottom:524.160000pt;}
.y190{bottom:525.440000pt;}
.y15a{bottom:526.400000pt;}
.y27{bottom:527.040000pt;}
.yb6{bottom:533.440000pt;}
.ydb{bottom:540.160000pt;}
.yf9{bottom:540.800000pt;}
.y56{bottom:542.080000pt;}
.y159{bottom:544.320000pt;}
.y26{bottom:544.960000pt;}
.y88{bottom:545.920000pt;}
.yb5{bottom:551.360000pt;}
.yda{bottom:558.080000pt;}
.yf8{bottom:558.720000pt;}
.y55{bottom:560.000000pt;}
.y158{bottom:561.920000pt;}
.y25{bottom:562.880000pt;}
.y87{bottom:563.840000pt;}
.yb4{bottom:569.280000pt;}
.y18f{bottom:573.440000pt;}
.yd9{bottom:576.000000pt;}
.yf7{bottom:576.640000pt;}
.y54{bottom:577.920000pt;}
.y157{bottom:579.840000pt;}
.y24{bottom:580.800000pt;}
.y86{bottom:585.920000pt;}
.yb3{bottom:587.200000pt;}
.y18e{bottom:588.160000pt;}
.yd8{bottom:593.920000pt;}
.y53{bottom:595.840000pt;}
.y156{bottom:597.760000pt;}
.y23{bottom:598.720000pt;}
.yf6{bottom:599.680000pt;}
.y85{bottom:603.840000pt;}
.yb2{bottom:605.120000pt;}
.y18d{bottom:606.720000pt;}
.yd7{bottom:611.840000pt;}
.y52{bottom:613.760000pt;}
.y155{bottom:615.680000pt;}
.y22{bottom:616.640000pt;}
.yf5{bottom:617.600000pt;}
.y18c{bottom:621.440000pt;}
.y84{bottom:621.760000pt;}
.y11a{bottom:623.040000pt;}
.yb1{bottom:628.480000pt;}
.yd6{bottom:629.760000pt;}
.y51{bottom:631.680000pt;}
.y154{bottom:633.600000pt;}
.y21{bottom:634.560000pt;}
.y18b{bottom:635.840000pt;}
.y83{bottom:639.680000pt;}
.yf4{bottom:640.960000pt;}
.yd5{bottom:647.680000pt;}
.y50{bottom:649.600000pt;}
.y18a{bottom:650.560000pt;}
.yb0{bottom:651.520000pt;}
.y20{bottom:652.480000pt;}
.y82{bottom:657.600000pt;}
.yf3{bottom:658.880000pt;}
.y119{bottom:662.720000pt;}
.yd4{bottom:665.600000pt;}
.y4f{bottom:667.520000pt;}
.y189{bottom:669.120000pt;}
.yaf{bottom:669.440000pt;}
.y1f{bottom:670.400000pt;}
.y81{bottom:675.520000pt;}
.yf2{bottom:676.800000pt;}
.y118{bottom:680.640000pt;}
.yd3{bottom:683.520000pt;}
.y4e{bottom:685.440000pt;}
.yae{bottom:687.360000pt;}
.y188{bottom:687.680000pt;}
.y1e{bottom:688.320000pt;}
.y80{bottom:693.440000pt;}
.yf1{bottom:694.720000pt;}
.y117{bottom:698.560000pt;}
.y13b{bottom:701.440000pt;}
.y187{bottom:702.400000pt;}
.y4d{bottom:703.040000pt;}
.yad{bottom:705.280000pt;}
.y1d{bottom:706.240000pt;}
.y7f{bottom:711.040000pt;}
.yf0{bottom:712.640000pt;}
.y116{bottom:716.480000pt;}
.y13a{bottom:719.040000pt;}
.y4c{bottom:720.960000pt;}
.y186{bottom:721.280000pt;}
.yac{bottom:723.200000pt;}
.y1c{bottom:724.160000pt;}
.y7e{bottom:728.960000pt;}
.yef{bottom:730.560000pt;}
.y115{bottom:734.400000pt;}
.y185{bottom:736.000000pt;}
.y139{bottom:736.960000pt;}
.yab{bottom:741.120000pt;}
.y4b{bottom:743.040000pt;}
.y1b{bottom:745.920000pt;}
.y7d{bottom:746.880000pt;}
.yee{bottom:748.480000pt;}
.y184{bottom:750.400000pt;}
.y114{bottom:752.320000pt;}
.yaa{bottom:759.040000pt;}
.y4a{bottom:760.960000pt;}
.y7c{bottom:764.800000pt;}
.y183{bottom:765.120000pt;}
.yed{bottom:766.400000pt;}
.y1a{bottom:768.000000pt;}
.y113{bottom:770.240000pt;}
.ya9{bottom:776.960000pt;}
.y49{bottom:778.880000pt;}
.y7b{bottom:782.720000pt;}
.y182{bottom:783.680000pt;}
.yec{bottom:784.000000pt;}
.y112{bottom:788.160000pt;}
.y19{bottom:794.880000pt;}
.y48{bottom:796.800000pt;}
.y181{bottom:798.400000pt;}
.y153{bottom:798.720000pt;}
.y7a{bottom:800.640000pt;}
.y1b4{bottom:805.120000pt;}
.yeb{bottom:806.080000pt;}
.y18{bottom:812.800000pt;}
.y180{bottom:813.120000pt;}
.y47{bottom:814.720000pt;}
.ya8{bottom:816.640000pt;}
.y79{bottom:818.560000pt;}
.y1b3{bottom:819.840000pt;}
.yea{bottom:824.000000pt;}
.y17f{bottom:827.840000pt;}
.yd2{bottom:830.720000pt;}
.y17{bottom:832.320000pt;}
.y46{bottom:832.640000pt;}
.ya7{bottom:834.560000pt;}
.y78{bottom:836.480000pt;}
.y1b2{bottom:838.400000pt;}
.ye9{bottom:841.920000pt;}
.y17e{bottom:846.400000pt;}
.yd1{bottom:848.640000pt;}
.y16{bottom:850.240000pt;}
.y45{bottom:850.560000pt;}
.ya6{bottom:852.480000pt;}
.y1b1{bottom:853.120000pt;}
.y77{bottom:854.400000pt;}
.ye8{bottom:859.840000pt;}
.y17d{bottom:861.120000pt;}
.yd0{bottom:866.560000pt;}
.y44{bottom:868.480000pt;}
.ya5{bottom:870.400000pt;}
.y1b0{bottom:871.680000pt;}
.y76{bottom:872.320000pt;}
.y17c{bottom:875.840000pt;}
.ye7{bottom:877.760000pt;}
.y15{bottom:880.640000pt;}
.ycf{bottom:884.480000pt;}
.y43{bottom:886.080000pt;}
.ya4{bottom:888.320000pt;}
.y1af{bottom:890.240000pt;}
.y75{bottom:894.080000pt;}
.y17b{bottom:894.400000pt;}
.ye6{bottom:895.680000pt;}
.y111{bottom:900.800000pt;}
.y138{bottom:902.080000pt;}
.y42{bottom:904.000000pt;}
.y1ae{bottom:904.960000pt;}
.ya3{bottom:906.240000pt;}
.y17a{bottom:909.120000pt;}
.y74{bottom:912.000000pt;}
.ye5{bottom:913.600000pt;}
.y14{bottom:918.080000pt;}
.y137{bottom:920.000000pt;}
.y41{bottom:921.920000pt;}
.y1ad{bottom:923.520000pt;}
.ya2{bottom:924.160000pt;}
.y179{bottom:927.680000pt;}
.y73{bottom:929.920000pt;}
.ye4{bottom:931.520000pt;}
.y136{bottom:937.920000pt;}
.y1ac{bottom:938.240000pt;}
.y40{bottom:939.840000pt;}
.ya1{bottom:942.080000pt;}
.y178{bottom:942.400000pt;}
.y72{bottom:947.840000pt;}
.ye3{bottom:949.120000pt;}
.y11{bottom:953.920000pt;}
.y135{bottom:955.840000pt;}
.y177{bottom:956.800000pt;}
.y3f{bottom:957.760000pt;}
.ya0{bottom:960.000000pt;}
.y1{bottom:962.666667pt;}
.y71{bottom:965.760000pt;}
.yf{bottom:966.666667pt;}
.ye2{bottom:967.040000pt;}
.y176{bottom:971.520000pt;}
.y11f{bottom:972.480000pt;}
.y134{bottom:973.760000pt;}
.y3e{bottom:975.680000pt;}
.y9f{bottom:977.920000pt;}
.y70{bottom:983.680000pt;}
.y4{bottom:985.333333pt;}
.y1ab{bottom:986.240000pt;}
.y175{bottom:990.080000pt;}
.ye1{bottom:990.400000pt;}
.y133{bottom:991.680000pt;}
.y9e{bottom:995.840000pt;}
.y3d{bottom:997.440000pt;}
.y1aa{bottom:1000.960000pt;}
.y6f{bottom:1001.600000pt;}
.yc{bottom:1002.666667pt;}
.y174{bottom:1004.800000pt;}
.y1b8{bottom:1007.680000pt;}
.y9d{bottom:1013.760000pt;}
.y173{bottom:1019.520000pt;}
.ya{bottom:1020.000000pt;}
.y1b7{bottom:1029.440000pt;}
.y9c{bottom:1031.680000pt;}
.y172{bottom:1034.240000pt;}
.y8{bottom:1038.666667pt;}
.y3c{bottom:1049.600000pt;}
.y1b6{bottom:1051.520000pt;}
.y6{bottom:1056.000000pt;}
.y3b{bottom:1061.120000pt;}
.y1b5{bottom:1067.840000pt;}
.h7{height:18.666667pt;}
.h5{height:20.000000pt;}
.hd{height:21.765625pt;}
.ha{height:25.770000pt;}
.hb{height:38.570000pt;}
.hc{height:40.796250pt;}
.h6{height:40.940000pt;}
.h8{height:42.656250pt;}
.h3{height:46.690000pt;}
.h9{height:52.875000pt;}
.h4{height:90.666667pt;}
.h2{height:159.893333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:20.000000pt;}
.w6{width:68.000000pt;}
.w4{width:200.000000pt;}
.w5{width:246.666667pt;}
.w2{width:293.333333pt;}
.w3{width:333.600000pt;}
.w8{width:341.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:8.213205pt;}
.x1{left:10.239910pt;}
.x4{left:74.666667pt;}
.x15{left:122.786464pt;}
.xd{left:132.253248pt;}
.xa{left:189.024736pt;}
.x13{left:240.032896pt;}
.xc{left:241.012352pt;}
.xb{left:242.373696pt;}
.x3{left:289.333333pt;}
.x6{left:320.000000pt;}
.x10{left:339.262080pt;}
.x14{left:385.636160pt;}
.x7{left:386.666667pt;}
.x9{left:389.352960pt;}
.x11{left:396.786560pt;}
.x8{left:405.333333pt;}
.x12{left:420.480000pt;}
.x2{left:460.000000pt;}
.x16{left:467.746560pt;}
.xf{left:634.880000pt;}
.xe{left:718.053120pt;}
}




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