
    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_03f35037215120fa353d836d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_04bf2634aa830872e3986833.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_132541be4c393a971d1d1ece.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_eaf8951b6f586cd792fe098c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_251bf6b46c8c15b0946fda73.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_5a668f81cf3d8003a5643053.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_4546e0ba40877cf6bf7e08df.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4b8b64d780228752f88d7ff8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_8977deea63bf39a34d8a18f6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_f1abe50fa06b40dd5ba27afa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_f4467f8a025a36ce85757e98.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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_ead338e92d3de25528f88c4e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_7ba59395d33f8fe20e519854.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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_8d1d6ca398e7c489b2362458.woff')format("woff");}.ff13{font-family:ff13;line-height:0.934082;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_06160286b84ebe44e35380a1.woff')format("woff");}.ff14{font-family:ff14;line-height:0.867676;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-51.960000px;}
.vd{vertical-align:-43.680000px;}
.v11{vertical-align:-36.180000px;}
.v7{vertical-align:-32.700000px;}
.vb{vertical-align:-21.720000px;}
.v10{vertical-align:-18.000000px;}
.v4{vertical-align:-16.320000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.380000px;}
.v1{vertical-align:18.000000px;}
.vc{vertical-align:21.900000px;}
.v5{vertical-align:32.700000px;}
.v12{vertical-align:36.000000px;}
.ve{vertical-align:43.680000px;}
.v3{vertical-align:49.020000px;}
.va{vertical-align:52.020000px;}
.v14{vertical-align:57.420000px;}
.v6{vertical-align:65.400000px;}
.v13{vertical-align:85.680000px;}
.vf{vertical-align:87.300000px;}
.lsc{letter-spacing:-2.724000px;}
.ls15{letter-spacing:-2.250000px;}
.lse{letter-spacing:-1.482000px;}
.lsd{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.454200px;}
.lsb{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.304200px;}
.ls1d{letter-spacing:-0.228000px;}
.lsa{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.013500px;}
.ls4{letter-spacing:0.099000px;}
.ls9{letter-spacing:0.279000px;}
.ls12{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls5{letter-spacing:1.842000px;}
.ls2{letter-spacing:1.854000px;}
.lsf{letter-spacing:1.944000px;}
.ls3{letter-spacing:1.966500px;}
.ls10{letter-spacing:2.118000px;}
.ls2d{letter-spacing:2.164500px;}
.ls2e{letter-spacing:2.190000px;}
.ls2b{letter-spacing:2.227500px;}
.ls6{letter-spacing:2.250000px;}
.ls14{letter-spacing:2.310000px;}
.ls16{letter-spacing:2.370000px;}
.ls26{letter-spacing:2.400000px;}
.ls13{letter-spacing:2.430000px;}
.ls8{letter-spacing:4.779000px;}
.ls2f{letter-spacing:15.387000px;}
.ls7{letter-spacing:46.737000px;}
.ls11{letter-spacing:46.887000px;}
.ls18{letter-spacing:67.542000px;}
.ls1c{letter-spacing:69.325950px;}
.ls17{letter-spacing:81.222000px;}
.ls1a{letter-spacing:82.902000px;}
.ls1b{letter-spacing:83.022000px;}
.ls19{letter-spacing:83.082000px;}
.ls29{letter-spacing:89.245950px;}
.ls2a{letter-spacing:89.262000px;}
.ls28{letter-spacing:89.322000px;}
.ls27{letter-spacing:89.425950px;}
.ls24{letter-spacing:89.965950px;}
.ls25{letter-spacing:90.042000px;}
.ls22{letter-spacing:90.085950px;}
.ls21{letter-spacing:90.102000px;}
.ls23{letter-spacing:90.162000px;}
.ls20{letter-spacing:90.222000px;}
.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;}
}
.ws37{word-spacing:-101.483850px;}
.ws1d{word-spacing:-95.226000px;}
.ws16{word-spacing:-93.426000px;}
.wsd{word-spacing:-58.500000px;}
.ws5{word-spacing:-26.100000px;}
.ws4{word-spacing:-25.926000px;}
.ws9{word-spacing:-16.875000px;}
.ws44{word-spacing:-16.789500px;}
.ws24{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.146000px;}
.wse{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.ws7{word-spacing:-15.063000px;}
.ws8{word-spacing:-14.625000px;}
.ws18{word-spacing:-13.254900px;}
.wsa{word-spacing:-13.221000px;}
.wsc{word-spacing:-13.143000px;}
.ws1{word-spacing:-12.531000px;}
.wsf{word-spacing:-12.375000px;}
.ws43{word-spacing:-12.352500px;}
.ws0{word-spacing:-11.826000px;}
.ws35{word-spacing:-10.125000px;}
.ws6{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
.ws3a{word-spacing:24.112950px;}
.ws34{word-spacing:25.012950px;}
.ws3b{word-spacing:36.622050px;}
.ws14{word-spacing:42.324000px;}
.ws15{word-spacing:42.366600px;}
.ws13{word-spacing:42.714000px;}
.ws11{word-spacing:42.756600px;}
.ws10{word-spacing:42.774000px;}
.ws12{word-spacing:42.834000px;}
.ws17{word-spacing:43.086000px;}
.ws1a{word-spacing:44.106600px;}
.ws22{word-spacing:44.166600px;}
.ws19{word-spacing:44.394000px;}
.ws1f{word-spacing:44.482800px;}
.ws21{word-spacing:44.496600px;}
.ws1b{word-spacing:44.574000px;}
.ws23{word-spacing:44.616600px;}
.ws3e{word-spacing:48.444000px;}
.ws3f{word-spacing:48.504000px;}
.ws41{word-spacing:48.714000px;}
.ws3d{word-spacing:48.774000px;}
.ws40{word-spacing:48.876600px;}
.ws39{word-spacing:50.646600px;}
.ws3c{word-spacing:50.856600px;}
.ws38{word-spacing:50.916600px;}
.ws33{word-spacing:51.306600px;}
.ws2e{word-spacing:51.324000px;}
.ws27{word-spacing:51.366600px;}
.ws29{word-spacing:51.426600px;}
.ws26{word-spacing:51.594000px;}
.ws28{word-spacing:51.636600px;}
.ws25{word-spacing:51.654000px;}
.ws2d{word-spacing:51.696600px;}
.ws2c{word-spacing:51.774000px;}
.ws2b{word-spacing:51.816600px;}
.ws2a{word-spacing:51.834000px;}
.ws20{word-spacing:57.741900px;}
.ws1e{word-spacing:70.708050px;}
.ws1c{word-spacing:70.818000px;}
.ws42{word-spacing:75.018000px;}
.ws36{word-spacing:77.118000px;}
.ws30{word-spacing:77.788050px;}
.ws2f{word-spacing:77.898000px;}
.ws32{word-spacing:77.908050px;}
.ws31{word-spacing:78.018000px;}
._16{margin-left:-83.142000px;}
._13{margin-left:-12.900000px;}
._a{margin-left:-7.105500px;}
._e{margin-left:-5.535000px;}
._6{margin-left:-4.374000px;}
._12{margin-left:-3.271500px;}
._2{margin-left:-2.214000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:2.970000px;}
._3{width:4.716000px;}
._10{width:6.682500px;}
._8{width:7.776000px;}
._7{width:9.403500px;}
._5{width:10.950000px;}
._d{width:12.424500px;}
._9{width:14.553000px;}
._c{width:16.515000px;}
._b{width:18.042000px;}
._f{width:21.109500px;}
._11{width:22.153500px;}
._27{width:25.929000px;}
._1a{width:29.578500px;}
._19{width:30.820500px;}
._25{width:33.912000px;}
._24{width:47.700000px;}
._20{width:49.440300px;}
._1d{width:50.520300px;}
._21{width:62.520300px;}
._1c{width:63.660300px;}
._14{width:67.908000px;}
._17{width:69.745950px;}
._23{width:73.902000px;}
._1b{width:76.045950px;}
._15{width:96.219000px;}
._18{width:106.793850px;}
._1e{width:118.179000px;}
._1f{width:120.877500px;}
._26{width:155.671500px;}
._22{width:459.823500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc9{color:rgb(34,34,34);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:54.150000px;}
.fs4{font-size:58.500000px;}
.fs9{font-size:58.650000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y10e{bottom:-11.250000px;}
.y1b6{bottom:-1.395000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:2.250000px;}
.ya9{bottom:2.265000px;}
.y3{bottom:3.375000px;}
.y57{bottom:3.420000px;}
.y122{bottom:4.485000px;}
.y1a{bottom:4.500000px;}
.y119{bottom:4.515000px;}
.ycb{bottom:5.625000px;}
.y112{bottom:5.670000px;}
.ye{bottom:11.250000px;}
.y11e{bottom:11.265000px;}
.yae{bottom:11.295000px;}
.y1c{bottom:12.420000px;}
.y18f{bottom:12.900000px;}
.yc{bottom:13.500000px;}
.y15f{bottom:13.755000px;}
.y5a{bottom:14.625000px;}
.y1b5{bottom:15.075000px;}
.y190{bottom:16.695000px;}
.y4{bottom:16.875000px;}
.y10c{bottom:17.100000px;}
.yf3{bottom:17.850000px;}
.y59{bottom:18.000000px;}
.y160{bottom:18.720000px;}
.y2{bottom:19.125000px;}
.yb8{bottom:19.140000px;}
.y116{bottom:19.155000px;}
.ya0{bottom:20.250000px;}
.yac{bottom:20.295000px;}
.y56{bottom:21.420000px;}
.y19{bottom:25.920000px;}
.yc8{bottom:28.170000px;}
.yb{bottom:30.375000px;}
.y5{bottom:31.500000px;}
.y18d{bottom:36.150000px;}
.y15d{bottom:37.005000px;}
.yc7{bottom:37.170000px;}
.y10a{bottom:37.800000px;}
.y55{bottom:38.295000px;}
.y1b3{bottom:38.325000px;}
.yf1{bottom:38.925000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.yc9{bottom:46.170000px;}
.y186{bottom:53.700000px;}
.yc6{bottom:54.045000px;}
.y156{bottom:54.570000px;}
.y1{bottom:55.162500px;}
.y54{bottom:55.200000px;}
.y104{bottom:55.350000px;}
.y1ac{bottom:55.905000px;}
.ye8{bottom:56.475000px;}
.y17{bottom:58.545000px;}
.y17c{bottom:67.950000px;}
.y150{bottom:68.820000px;}
.yf6{bottom:69.600000px;}
.y9{bottom:73.155000px;}
.y53{bottom:73.200000px;}
.y14d{bottom:74.295000px;}
.y177{bottom:76.995000px;}
.y16{bottom:78.825000px;}
.y151{bottom:79.755000px;}
.y101{bottom:82.620000px;}
.ye5{bottom:82.995000px;}
.y155{bottom:85.200000px;}
.y17f{bottom:85.995000px;}
.y52{bottom:90.105000px;}
.y152{bottom:90.675000px;}
.y15{bottom:91.200000px;}
.y8{bottom:93.450000px;}
.y185{bottom:94.995000px;}
.yfb{bottom:95.625000px;}
.y14e{bottom:96.120000px;}
.ye9{bottom:97.350000px;}
.ycd{bottom:97.950000px;}
.y187{bottom:98.775000px;}
.y175{bottom:99.075000px;}
.y9e{bottom:101.325000px;}
.y181{bottom:104.025000px;}
.y14{bottom:104.745000px;}
.y5e{bottom:105.825000px;}
.y51{bottom:106.980000px;}
.yf5{bottom:108.600000px;}
.y157{bottom:109.170000px;}
.y1ad{bottom:109.455000px;}
.y7{bottom:110.325000px;}
.ye6{bottom:111.600000px;}
.y131{bottom:112.500000px;}
.y198{bottom:112.995000px;}
.y178{bottom:113.025000px;}
.y174{bottom:115.950000px;}
.y153{bottom:117.945000px;}
.y9d{bottom:118.237500px;}
.ycc{bottom:119.362500px;}
.y13{bottom:119.370000px;}
.y105{bottom:120.330000px;}
.y103{bottom:121.620000px;}
.y5d{bottom:122.737500px;}
.y154{bottom:123.420000px;}
.y50{bottom:124.995000px;}
.y14f{bottom:128.850000px;}
.yd4{bottom:132.000000px;}
.y173{bottom:133.987500px;}
.y133{bottom:134.325000px;}
.y19a{bottom:134.445000px;}
.y9c{bottom:136.237500px;}
.yea{bottom:138.195000px;}
.y12{bottom:138.495000px;}
.y138{bottom:139.755000px;}
.y179{bottom:140.070000px;}
.ye4{bottom:140.175000px;}
.y5c{bottom:140.737500px;}
.yca{bottom:141.862500px;}
.y4f{bottom:141.900000px;}
.y188{bottom:143.820000px;}
.y192{bottom:145.125000px;}
.y12b{bottom:145.245000px;}
.y102{bottom:147.600000px;}
.y182{bottom:149.070000px;}
.y19b{bottom:150.495000px;}
.y134{bottom:150.675000px;}
.y172{bottom:150.870000px;}
.yd8{bottom:152.445000px;}
.y9b{bottom:153.105000px;}
.y194{bottom:155.850000px;}
.y12d{bottom:156.150000px;}
.y5b{bottom:157.620000px;}
.y184{bottom:158.100000px;}
.y4e{bottom:158.775000px;}
.ydb{bottom:160.620000px;}
.y19e{bottom:161.220000px;}
.y137{bottom:161.625000px;}
.y1ae{bottom:163.005000px;}
.y158{bottom:163.725000px;}
.y11{bottom:164.400000px;}
.ydd{bottom:164.700000px;}
.y19c{bottom:166.530000px;}
.y135{bottom:167.070000px;}
.y17b{bottom:167.100000px;}
.y171{bottom:167.775000px;}
.y9a{bottom:170.025000px;}
.y58{bottom:171.150000px;}
.y193{bottom:171.900000px;}
.y12c{bottom:172.545000px;}
.yd7{bottom:172.875000px;}
.y4d{bottom:176.805000px;}
.ye2{bottom:176.955000px;}
.y197{bottom:177.270000px;}
.y130{bottom:177.975000px;}
.yeb{bottom:179.025000px;}
.yd0{bottom:181.050000px;}
.y19d{bottom:182.625000px;}
.y18e{bottom:182.850000px;}
.y136{bottom:183.450000px;}
.y106{bottom:185.325000px;}
.y170{bottom:185.775000px;}
.yc5{bottom:186.900000px;}
.y1b4{bottom:187.995000px;}
.y99{bottom:188.025000px;}
.y149{bottom:188.880000px;}
.y10{bottom:189.195000px;}
.yd6{bottom:189.225000px;}
.y15e{bottom:189.495000px;}
.y10b{bottom:189.675000px;}
.yf2{bottom:191.955000px;}
.y196{bottom:193.320000px;}
.y4c{bottom:193.680000px;}
.y180{bottom:194.130000px;}
.y12f{bottom:194.370000px;}
.yfd{bottom:199.575000px;}
.y1d{bottom:200.400000px;}
.y16f{bottom:202.695000px;}
.y98{bottom:204.945000px;}
.y147{bottom:205.275000px;}
.yd2{bottom:205.545000px;}
.y195{bottom:209.400000px;}
.y4b{bottom:210.600000px;}
.y12e{bottom:210.720000px;}
.y17e{bottom:212.130000px;}
.yf7{bottom:212.580000px;}
.y199{bottom:214.755000px;}
.y132{bottom:216.195000px;}
.y1af{bottom:216.570000px;}
.ye0{bottom:217.800000px;}
.y159{bottom:218.295000px;}
.y16e{bottom:219.570000px;}
.yec{bottom:219.900000px;}
.y183{bottom:221.175000px;}
.y14b{bottom:221.625000px;}
.y97{bottom:221.820000px;}
.yf9{bottom:225.600000px;}
.y14a{bottom:227.100000px;}
.y4a{bottom:228.600000px;}
.ye3{bottom:230.070000px;}
.y17d{bottom:230.175000px;}
.y189{bottom:233.955000px;}
.yde{bottom:234.150000px;}
.y33{bottom:235.350000px;}
.y16d{bottom:237.570000px;}
.y148{bottom:238.005000px;}
.yd1{bottom:238.245000px;}
.yfe{bottom:238.575000px;}
.y96{bottom:239.820000px;}
.ybc{bottom:242.070000px;}
.y14c{bottom:243.495000px;}
.y49{bottom:245.475000px;}
.y146{bottom:248.925000px;}
.y107{bottom:250.320000px;}
.y32{bottom:251.130000px;}
.yfc{bottom:251.580000px;}
.y1a5{bottom:252.225000px;}
.y13f{bottom:254.400000px;}
.y16c{bottom:254.475000px;}
.y95{bottom:256.725000px;}
.y1a3{bottom:257.580000px;}
.ybb{bottom:257.850000px;}
.yd3{bottom:258.630000px;}
.y13d{bottom:259.830000px;}
.yc4{bottom:260.100000px;}
.yed{bottom:260.745000px;}
.y48{bottom:262.395000px;}
.yd9{bottom:262.725000px;}
.yf8{bottom:264.570000px;}
.y129{bottom:264.600000px;}
.y31{bottom:269.145000px;}
.y1b0{bottom:270.120000px;}
.ye1{bottom:270.900000px;}
.yba{bottom:271.350000px;}
.y15a{bottom:272.880000px;}
.y94{bottom:273.600000px;}
.y1ab{bottom:273.645000px;}
.yd5{bottom:274.995000px;}
.y16b{bottom:275.850000px;}
.y145{bottom:276.225000px;}
.yc3{bottom:278.100000px;}
.y18a{bottom:279.000000px;}
.ycf{bottom:279.075000px;}
.y47{bottom:280.395000px;}
.y128{bottom:282.600000px;}
.ye7{bottom:283.170000px;}
.y30{bottom:286.020000px;}
.y16a{bottom:289.380000px;}
.y100{bottom:290.580000px;}
.y93{bottom:291.645000px;}
.yc2{bottom:295.020000px;}
.y1a8{bottom:295.080000px;}
.y46{bottom:297.300000px;}
.y142{bottom:298.050000px;}
.y127{bottom:299.505000px;}
.y19f{bottom:300.420000px;}
.yee{bottom:301.575000px;}
.y139{bottom:303.480000px;}
.y10f{bottom:304.005000px;}
.y2f{bottom:304.050000px;}
.y169{bottom:306.255000px;}
.y92{bottom:308.520000px;}
.y1a2{bottom:311.130000px;}
.ydf{bottom:311.745000px;}
.yc1{bottom:311.895000px;}
.y45{bottom:314.175000px;}
.y13c{bottom:314.445000px;}
.y108{bottom:315.300000px;}
.y126{bottom:316.380000px;}
.y2e{bottom:320.925000px;}
.y168{bottom:323.130000px;}
.y1b1{bottom:323.670000px;}
.y18b{bottom:324.075000px;}
.y91{bottom:325.395000px;}
.y1a7{bottom:327.195000px;}
.y15b{bottom:327.450000px;}
.yc0{bottom:329.925000px;}
.y141{bottom:330.780000px;}
.y44{bottom:332.175000px;}
.y12a{bottom:334.125000px;}
.y1a9{bottom:337.905000px;}
.y2d{bottom:338.970000px;}
.ydc{bottom:340.350000px;}
.y167{bottom:341.175000px;}
.y143{bottom:341.700000px;}
.yef{bottom:342.420000px;}
.y1a6{bottom:343.275000px;}
.y90{bottom:343.425000px;}
.yf4{bottom:344.250000px;}
.y140{bottom:347.175000px;}
.y1a1{bottom:348.630000px;}
.y43{bottom:349.095000px;}
.y13b{bottom:352.605000px;}
.y1aa{bottom:353.955000px;}
.yff{bottom:355.575000px;}
.y2c{bottom:355.845000px;}
.y17a{bottom:356.370000px;}
.y166{bottom:358.050000px;}
.y144{bottom:358.080000px;}
.y8f{bottom:360.300000px;}
.y1a0{bottom:364.695000px;}
.y42{bottom:365.970000px;}
.yfa{bottom:368.550000px;}
.y13a{bottom:369.000000px;}
.y18c{bottom:369.150000px;}
.y1a4{bottom:370.050000px;}
.y2b{bottom:373.845000px;}
.y13e{bottom:374.445000px;}
.y165{bottom:374.955000px;}
.yda{bottom:377.100000px;}
.y8e{bottom:377.205000px;}
.y1b2{bottom:377.220000px;}
.y109{bottom:380.295000px;}
.y15c{bottom:382.020000px;}
.yf0{bottom:383.295000px;}
.y41{bottom:384.000000px;}
.y164{bottom:388.455000px;}
.y191{bottom:390.375000px;}
.y2a{bottom:390.750000px;}
.y8d{bottom:395.205000px;}
.y40{bottom:400.875000px;}
.y29{bottom:408.750000px;}
.y8c{bottom:412.125000px;}
.y3f{bottom:417.750000px;}
.y28{bottom:425.670000px;}
.y8b{bottom:429.000000px;}
.y3e{bottom:435.795000px;}
.y27{bottom:442.545000px;}
.y8a{bottom:447.000000px;}
.y3d{bottom:452.670000px;}
.y26{bottom:460.575000px;}
.y89{bottom:463.920000px;}
.y3c{bottom:469.575000px;}
.y25{bottom:477.450000px;}
.y88{bottom:480.795000px;}
.y3b{bottom:487.575000px;}
.y24{bottom:495.450000px;}
.y87{bottom:498.825000px;}
.y3a{bottom:504.480000px;}
.y23{bottom:512.370000px;}
.y86{bottom:515.700000px;}
.y39{bottom:521.355000px;}
.y22{bottom:530.355000px;}
.y85{bottom:532.575000px;}
.y38{bottom:539.370000px;}
.y21{bottom:547.275000px;}
.y84{bottom:550.620000px;}
.y37{bottom:556.275000px;}
.y20{bottom:565.275000px;}
.y83{bottom:567.495000px;}
.y36{bottom:573.150000px;}
.y82{bottom:584.400000px;}
.y35{bottom:591.180000px;}
.y1f{bottom:592.305000px;}
.y81{bottom:602.400000px;}
.y34{bottom:608.055000px;}
.y1e{bottom:610.305000px;}
.y80{bottom:619.320000px;}
.y7f{bottom:636.195000px;}
.y7e{bottom:654.195000px;}
.y7d{bottom:671.100000px;}
.yb9{bottom:685.725000px;}
.y7c{bottom:687.975000px;}
.yb7{bottom:703.755000px;}
.y7b{bottom:706.020000px;}
.y7a{bottom:722.895000px;}
.y125{bottom:735.255000px;}
.yb6{bottom:738.630000px;}
.y79{bottom:739.770000px;}
.ybf{bottom:740.880000px;}
.y124{bottom:748.800000px;}
.yb5{bottom:756.675000px;}
.y78{bottom:757.800000px;}
.y10d{bottom:765.675000px;}
.y123{bottom:770.175000px;}
.y77{bottom:774.675000px;}
.ybe{bottom:775.800000px;}
.y163{bottom:788.205000px;}
.y76{bottom:791.580000px;}
.yb4{bottom:792.705000px;}
.y162{bottom:805.080000px;}
.ybd{bottom:806.205000px;}
.yce{bottom:806.625000px;}
.y75{bottom:809.580000px;}
.yb3{bottom:810.705000px;}
.y121{bottom:815.220000px;}
.y161{bottom:818.580000px;}
.y176{bottom:819.000000px;}
.y1b{bottom:821.955000px;}
.y74{bottom:826.455000px;}
.yb2{bottom:828.750000px;}
.y120{bottom:837.750000px;}
.y73{bottom:843.375000px;}
.yb1{bottom:846.750000px;}
.yf{bottom:851.250000px;}
.y11f{bottom:860.250000px;}
.y72{bottom:861.375000px;}
.yb0{bottom:864.750000px;}
.y71{bottom:878.295000px;}
.y11d{bottom:882.780000px;}
.yaf{bottom:882.795000px;}
.y70{bottom:895.170000px;}
.yad{bottom:900.780000px;}
.y6f{bottom:913.200000px;}
.y11c{bottom:917.700000px;}
.y6e{bottom:930.075000px;}
.yab{bottom:935.700000px;}
.y11b{bottom:940.200000px;}
.y6d{bottom:946.950000px;}
.y11a{bottom:962.745000px;}
.y6c{bottom:964.995000px;}
.yaa{bottom:971.745000px;}
.y6b{bottom:981.870000px;}
.y118{bottom:985.230000px;}
.ya8{bottom:989.730000px;}
.y6a{bottom:998.775000px;}
.ya7{bottom:1007.775000px;}
.y69{bottom:1016.775000px;}
.ya6{bottom:1025.775000px;}
.y117{bottom:1029.150000px;}
.y68{bottom:1033.650000px;}
.ya5{bottom:1043.820000px;}
.y67{bottom:1050.570000px;}
.yd{bottom:1055.070000px;}
.ya4{bottom:1061.820000px;}
.y115{bottom:1065.195000px;}
.y66{bottom:1068.570000px;}
.ya3{bottom:1079.850000px;}
.y6{bottom:1080.975000px;}
.y65{bottom:1085.475000px;}
.y114{bottom:1100.100000px;}
.y64{bottom:1102.350000px;}
.ya2{bottom:1114.725000px;}
.y63{bottom:1120.380000px;}
.y113{bottom:1122.630000px;}
.y9f{bottom:1132.755000px;}
.y62{bottom:1137.255000px;}
.y61{bottom:1154.130000px;}
.y111{bottom:1157.505000px;}
.y60{bottom:1172.175000px;}
.y110{bottom:1180.050000px;}
.y5f{bottom:1189.050000px;}
.h22{height:16.860000px;}
.h21{height:16.875000px;}
.h1f{height:16.912500px;}
.h24{height:21.375000px;}
.h35{height:21.397500px;}
.h25{height:21.412500px;}
.h26{height:22.500000px;}
.h36{height:22.537500px;}
.hb{height:25.912500px;}
.h45{height:28.278809px;}
.h1d{height:29.250000px;}
.h13{height:29.287500px;}
.h11{height:29.953125px;}
.h31{height:30.412500px;}
.h30{height:31.537500px;}
.h2{height:32.662500px;}
.h20{height:33.750000px;}
.h33{height:33.772500px;}
.h34{height:33.787500px;}
.h32{height:34.875000px;}
.h1e{height:34.912500px;}
.h8{height:37.125000px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.h1c{height:42.589600px;}
.hd{height:43.075195px;}
.h12{height:43.453125px;}
.ha{height:43.875000px;}
.h44{height:46.278809px;}
.h4f{height:46.575439px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h4{height:53.709961px;}
.h28{height:53.859155px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h2c{height:58.334985px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h23{height:68.700000px;}
.h5{height:69.114990px;}
.h2b{height:70.089961px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h4a{height:75.189961px;}
.h3c{height:75.429961px;}
.h41{height:75.609961px;}
.h40{height:75.699155px;}
.h38{height:75.759155px;}
.h3f{height:75.819155px;}
.h47{height:89.709961px;}
.h49{height:89.979155px;}
.h48{height:90.039155px;}
.h4c{height:96.429961px;}
.h4e{height:96.549961px;}
.h3d{height:97.329961px;}
.h3e{height:97.389961px;}
.h3a{height:97.539155px;}
.h43{height:97.599155px;}
.h29{height:102.729961px;}
.h2e{height:105.729961px;}
.h2f{height:105.789961px;}
.h3b{height:106.689961px;}
.h4d{height:111.129961px;}
.h2a{height:119.109961px;}
.h42{height:119.229961px;}
.h7{height:121.612500px;}
.h4b{height:139.389961px;}
.h39{height:141.009961px;}
.hc{height:203.805000px;}
.h46{height:383.625000px;}
.h2d{height:393.750000px;}
.h27{height:396.000000px;}
.h37{height:397.125000px;}
.h15{height:621.570000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w9{width:32.662500px;}
.w14{width:43.912500px;}
.w1b{width:45.037500px;}
.wc{width:48.450000px;}
.w15{width:51.825000px;}
.w1c{width:52.950000px;}
.w11{width:54.037500px;}
.w1a{width:55.162500px;}
.w13{width:56.325000px;}
.w16{width:57.450000px;}
.wd{width:58.575000px;}
.we{width:63.075000px;}
.w2{width:74.362500px;}
.wb{width:97.987500px;}
.wf{width:113.775000px;}
.w4{width:152.055000px;}
.w10{width:154.320000px;}
.w19{width:217.380000px;}
.w7{width:223.020000px;}
.wa{width:331.155000px;}
.w12{width:422.445000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w17{width:626.625000px;}
.w18{width:636.750000px;}
.w1f{width:653.625000px;}
.w1e{width:658.125000px;}
.w1d{width:662.625000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x69{left:10.125000px;}
.x23{left:11.250000px;}
.x16{left:12.420000px;}
.x13{left:14.625000px;}
.x11{left:16.875000px;}
.x65{left:18.037500px;}
.x4c{left:19.680000px;}
.x63{left:21.000000px;}
.xe{left:22.500000px;}
.x4b{left:26.550000px;}
.x62{left:27.825000px;}
.x17{left:34.905000px;}
.x6d{left:36.112500px;}
.x7a{left:40.650000px;}
.x66{left:42.825000px;}
.x86{left:45.180000px;}
.x67{left:46.200000px;}
.xf{left:48.412500px;}
.xc6{left:49.905000px;}
.xac{left:51.150000px;}
.x4f{left:52.980000px;}
.x3b{left:55.875000px;}
.x64{left:57.600000px;}
.x5a{left:60.930000px;}
.x18{left:61.950000px;}
.x6e{left:65.520000px;}
.x7b{left:70.050000px;}
.xb8{left:71.055000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x2e{left:75.225000px;}
.xc0{left:79.245000px;}
.x4{left:81.112487px;}
.x3c{left:83.025000px;}
.x9a{left:86.970000px;}
.x6f{left:94.905000px;}
.x6{left:97.987500px;}
.xb9{left:99.720000px;}
.x2f{left:102.375000px;}
.x50{left:104.820000px;}
.x1b{left:105.900000px;}
.x19{left:108.149987px;}
.x3d{left:110.175000px;}
.x6c{left:113.625000px;}
.x5b{left:116.130000px;}
.xb7{left:119.250000px;}
.x70{left:124.275000px;}
.x4e{left:127.125000px;}
.x26{left:128.400000px;}
.x30{left:129.525000px;}
.x2d{left:132.750000px;}
.x1a{left:135.187487px;}
.x71{left:153.675000px;}
.x31{left:156.675000px;}
.x7c{left:158.175000px;}
.xa4{left:159.570000px;}
.x3e{left:164.475000px;}
.xad{left:167.895000px;}
.x8f{left:170.625000px;}
.xa1{left:172.800000px;}
.x32{left:183.825000px;}
.xba{left:185.700000px;}
.x51{left:187.575000px;}
.xa5{left:188.745000px;}
.x87{left:192.120000px;}
.xc1{left:193.875000px;}
.x5c{left:198.900000px;}
.x90{left:199.995000px;}
.x33{left:210.975000px;}
.x14{left:214.012500px;}
.x3f{left:218.820000px;}
.xb6{left:222.405000px;}
.x7{left:225.300000px;}
.xc8{left:231.150000px;}
.x52{left:242.775000px;}
.x40{left:245.970000px;}
.x88{left:250.875000px;}
.xae{left:252.075000px;}
.x4d{left:253.575000px;}
.x91{left:255.375000px;}
.x9b{left:259.920000px;}
.x34{left:265.275000px;}
.x72{left:271.200000px;}
.x41{left:273.120000px;}
.x7d{left:275.745000px;}
.x10{left:277.087500px;}
.xc2{left:279.870000px;}
.x5d{left:281.655000px;}
.x92{left:284.775000px;}
.xb{left:290.625000px;}
.x35{left:292.470000px;}
.x15{left:296.250000px;}
.x53{left:297.945000px;}
.x73{left:300.600000px;}
.x7e{left:305.130000px;}
.xc7{left:307.950000px;}
.x5e{left:309.270000px;}
.xb5{left:311.250000px;}
.xaf{left:313.800000px;}
.x93{left:317.550000px;}
.x36{left:319.620000px;}
.x42{left:327.420000px;}
.xbb{left:328.995000px;}
.x74{left:330.000000px;}
.xa6{left:331.275000px;}
.x7f{left:334.500000px;}
.x5f{left:336.870000px;}
.x68{left:339.075000px;}
.x94{left:343.530000px;}
.x9{left:345.780000px;}
.x9c{left:351.450000px;}
.x54{left:353.145000px;}
.x43{left:354.570000px;}
.x12{left:358.207500px;}
.x75{left:359.355000px;}
.xa7{left:360.450000px;}
.x80{left:363.900000px;}
.xa{left:364.950000px;}
.x89{left:368.400000px;}
.x22{left:370.620000px;}
.xd{left:373.957500px;}
.xbc{left:386.295000px;}
.x76{left:388.770000px;}
.x60{left:392.070000px;}
.x81{left:393.255000px;}
.xc3{left:394.500000px;}
.xb0{left:401.355000px;}
.x95{left:405.720000px;}
.x44{left:408.870000px;}
.x9d{left:410.205000px;}
.x61{left:419.655000px;}
.x82{left:422.655000px;}
.x8a{left:427.200000px;}
.xb1{left:430.575000px;}
.x45{left:436.050000px;}
.x1c{left:437.070000px;}
.x9e{left:439.620000px;}
.xa8{left:448.020000px;}
.x83{left:452.070000px;}
.xc{left:453.945000px;}
.x37{left:455.370000px;}
.x96{left:461.100000px;}
.x46{left:463.200000px;}
.x55{left:466.905000px;}
.xbd{left:472.275000px;}
.x77{left:476.925000px;}
.x84{left:481.425000px;}
.x8b{left:485.955000px;}
.xb2{left:488.925000px;}
.x47{left:490.350000px;}
.x97{left:493.845000px;}
.x9f{left:498.375000px;}
.x38{left:509.700000px;}
.x56{left:518.700000px;}
.x48{left:520.875000px;}
.x1d{left:536.175000px;}
.xa9{left:538.950000px;}
.x8c{left:544.725000px;}
.x57{left:546.300000px;}
.x6a{left:550.845000px;}
.x27{left:551.970000px;}
.xbe{left:558.255000px;}
.x39{left:564.000000px;}
.x78{left:565.050000px;}
.xc4{left:566.445000px;}
.xaa{left:568.155000px;}
.x85{left:569.595000px;}
.x49{left:571.800000px;}
.x58{left:573.900000px;}
.x1e{left:584.625000px;}
.x3a{left:591.150000px;}
.xc5{left:595.080000px;}
.xab{left:597.330000px;}
.x4a{left:598.950000px;}
.x59{left:601.500000px;}
.x8d{left:603.495000px;}
.xb3{left:605.655000px;}
.x29{left:608.280000px;}
.x98{left:611.400000px;}
.xbf{left:615.570000px;}
.x79{left:623.850000px;}
.x8e{left:632.880000px;}
.xb4{left:634.875000px;}
.x99{left:637.380000px;}
.x1f{left:643.200000px;}
.xa0{left:645.300000px;}
.x2a{left:653.325000px;}
.x2b{left:706.275000px;}
.x20{left:707.400000px;}
.x3{left:746.820000px;}
.x21{left:753.599987px;}
.x24{left:760.349987px;}
.x2c{left:763.725000px;}
.x25{left:765.974987px;}
.xa3{left:773.849987px;}
.xa2{left:776.099987px;}
.x6b{left:779.504987px;}
@media print{
.v9{vertical-align:-46.186667pt;}
.vd{vertical-align:-38.826667pt;}
.v11{vertical-align:-32.160000pt;}
.v7{vertical-align:-29.066667pt;}
.vb{vertical-align:-19.306667pt;}
.v10{vertical-align:-16.000000pt;}
.v4{vertical-align:-14.506667pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.560000pt;}
.v1{vertical-align:16.000000pt;}
.vc{vertical-align:19.466667pt;}
.v5{vertical-align:29.066667pt;}
.v12{vertical-align:32.000000pt;}
.ve{vertical-align:38.826667pt;}
.v3{vertical-align:43.573333pt;}
.va{vertical-align:46.240000pt;}
.v14{vertical-align:51.040000pt;}
.v6{vertical-align:58.133333pt;}
.v13{vertical-align:76.160000pt;}
.vf{vertical-align:77.600000pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls15{letter-spacing:-2.000000pt;}
.lse{letter-spacing:-1.317333pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.403733pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.270400pt;}
.ls1d{letter-spacing:-0.202667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.012000pt;}
.ls4{letter-spacing:0.088000pt;}
.ls9{letter-spacing:0.248000pt;}
.ls12{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls5{letter-spacing:1.637333pt;}
.ls2{letter-spacing:1.648000pt;}
.lsf{letter-spacing:1.728000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls10{letter-spacing:1.882667pt;}
.ls2d{letter-spacing:1.924000pt;}
.ls2e{letter-spacing:1.946667pt;}
.ls2b{letter-spacing:1.980000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls14{letter-spacing:2.053333pt;}
.ls16{letter-spacing:2.106667pt;}
.ls26{letter-spacing:2.133333pt;}
.ls13{letter-spacing:2.160000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls2f{letter-spacing:13.677333pt;}
.ls7{letter-spacing:41.544000pt;}
.ls11{letter-spacing:41.677333pt;}
.ls18{letter-spacing:60.037333pt;}
.ls1c{letter-spacing:61.623067pt;}
.ls17{letter-spacing:72.197333pt;}
.ls1a{letter-spacing:73.690667pt;}
.ls1b{letter-spacing:73.797333pt;}
.ls19{letter-spacing:73.850667pt;}
.ls29{letter-spacing:79.329733pt;}
.ls2a{letter-spacing:79.344000pt;}
.ls28{letter-spacing:79.397333pt;}
.ls27{letter-spacing:79.489733pt;}
.ls24{letter-spacing:79.969733pt;}
.ls25{letter-spacing:80.037333pt;}
.ls22{letter-spacing:80.076400pt;}
.ls21{letter-spacing:80.090667pt;}
.ls23{letter-spacing:80.144000pt;}
.ls20{letter-spacing:80.197333pt;}
.ws37{word-spacing:-90.207867pt;}
.ws1d{word-spacing:-84.645333pt;}
.ws16{word-spacing:-83.045333pt;}
.wsd{word-spacing:-52.000000pt;}
.ws5{word-spacing:-23.200000pt;}
.ws4{word-spacing:-23.045333pt;}
.ws9{word-spacing:-15.000000pt;}
.ws44{word-spacing:-14.924000pt;}
.ws24{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.352000pt;}
.wse{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws7{word-spacing:-13.389333pt;}
.ws8{word-spacing:-13.000000pt;}
.ws18{word-spacing:-11.782133pt;}
.wsa{word-spacing:-11.752000pt;}
.wsc{word-spacing:-11.682667pt;}
.ws1{word-spacing:-11.138667pt;}
.wsf{word-spacing:-11.000000pt;}
.ws43{word-spacing:-10.980000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws35{word-spacing:-9.000000pt;}
.ws6{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
.ws3a{word-spacing:21.433733pt;}
.ws34{word-spacing:22.233733pt;}
.ws3b{word-spacing:32.552933pt;}
.ws14{word-spacing:37.621333pt;}
.ws15{word-spacing:37.659200pt;}
.ws13{word-spacing:37.968000pt;}
.ws11{word-spacing:38.005867pt;}
.ws10{word-spacing:38.021333pt;}
.ws12{word-spacing:38.074667pt;}
.ws17{word-spacing:38.298667pt;}
.ws1a{word-spacing:39.205867pt;}
.ws22{word-spacing:39.259200pt;}
.ws19{word-spacing:39.461333pt;}
.ws1f{word-spacing:39.540267pt;}
.ws21{word-spacing:39.552533pt;}
.ws1b{word-spacing:39.621333pt;}
.ws23{word-spacing:39.659200pt;}
.ws3e{word-spacing:43.061333pt;}
.ws3f{word-spacing:43.114667pt;}
.ws41{word-spacing:43.301333pt;}
.ws3d{word-spacing:43.354667pt;}
.ws40{word-spacing:43.445867pt;}
.ws39{word-spacing:45.019200pt;}
.ws3c{word-spacing:45.205867pt;}
.ws38{word-spacing:45.259200pt;}
.ws33{word-spacing:45.605867pt;}
.ws2e{word-spacing:45.621333pt;}
.ws27{word-spacing:45.659200pt;}
.ws29{word-spacing:45.712533pt;}
.ws26{word-spacing:45.861333pt;}
.ws28{word-spacing:45.899200pt;}
.ws25{word-spacing:45.914667pt;}
.ws2d{word-spacing:45.952533pt;}
.ws2c{word-spacing:46.021333pt;}
.ws2b{word-spacing:46.059200pt;}
.ws2a{word-spacing:46.074667pt;}
.ws20{word-spacing:51.326133pt;}
.ws1e{word-spacing:62.851600pt;}
.ws1c{word-spacing:62.949333pt;}
.ws42{word-spacing:66.682667pt;}
.ws36{word-spacing:68.549333pt;}
.ws30{word-spacing:69.144933pt;}
.ws2f{word-spacing:69.242667pt;}
.ws32{word-spacing:69.251600pt;}
.ws31{word-spacing:69.349333pt;}
._16{margin-left:-73.904000pt;}
._13{margin-left:-11.466667pt;}
._a{margin-left:-6.316000pt;}
._e{margin-left:-4.920000pt;}
._6{margin-left:-3.888000pt;}
._12{margin-left:-2.908000pt;}
._2{margin-left:-1.968000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.640000pt;}
._3{width:4.192000pt;}
._10{width:5.940000pt;}
._8{width:6.912000pt;}
._7{width:8.358667pt;}
._5{width:9.733333pt;}
._d{width:11.044000pt;}
._9{width:12.936000pt;}
._c{width:14.680000pt;}
._b{width:16.037333pt;}
._f{width:18.764000pt;}
._11{width:19.692000pt;}
._27{width:23.048000pt;}
._1a{width:26.292000pt;}
._19{width:27.396000pt;}
._25{width:30.144000pt;}
._24{width:42.400000pt;}
._20{width:43.946933pt;}
._1d{width:44.906933pt;}
._21{width:55.573600pt;}
._1c{width:56.586933pt;}
._14{width:60.362667pt;}
._17{width:61.996400pt;}
._23{width:65.690667pt;}
._1b{width:67.596400pt;}
._15{width:85.528000pt;}
._18{width:94.927867pt;}
._1e{width:105.048000pt;}
._1f{width:107.446667pt;}
._26{width:138.374667pt;}
._22{width:408.732000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs4{font-size:52.000000pt;}
.fs9{font-size:52.133333pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y10e{bottom:-10.000000pt;}
.y1b6{bottom:-1.240000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:2.000000pt;}
.ya9{bottom:2.013333pt;}
.y3{bottom:3.000000pt;}
.y57{bottom:3.040000pt;}
.y122{bottom:3.986667pt;}
.y1a{bottom:4.000000pt;}
.y119{bottom:4.013333pt;}
.ycb{bottom:5.000000pt;}
.y112{bottom:5.040000pt;}
.ye{bottom:10.000000pt;}
.y11e{bottom:10.013333pt;}
.yae{bottom:10.040000pt;}
.y1c{bottom:11.040000pt;}
.y18f{bottom:11.466667pt;}
.yc{bottom:12.000000pt;}
.y15f{bottom:12.226667pt;}
.y5a{bottom:13.000000pt;}
.y1b5{bottom:13.400000pt;}
.y190{bottom:14.840000pt;}
.y4{bottom:15.000000pt;}
.y10c{bottom:15.200000pt;}
.yf3{bottom:15.866667pt;}
.y59{bottom:16.000000pt;}
.y160{bottom:16.640000pt;}
.y2{bottom:17.000000pt;}
.yb8{bottom:17.013333pt;}
.y116{bottom:17.026667pt;}
.ya0{bottom:18.000000pt;}
.yac{bottom:18.040000pt;}
.y56{bottom:19.040000pt;}
.y19{bottom:23.040000pt;}
.yc8{bottom:25.040000pt;}
.yb{bottom:27.000000pt;}
.y5{bottom:28.000000pt;}
.y18d{bottom:32.133333pt;}
.y15d{bottom:32.893333pt;}
.yc7{bottom:33.040000pt;}
.y10a{bottom:33.600000pt;}
.y55{bottom:34.040000pt;}
.y1b3{bottom:34.066667pt;}
.yf1{bottom:34.600000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.yc9{bottom:41.040000pt;}
.y186{bottom:47.733333pt;}
.yc6{bottom:48.040000pt;}
.y156{bottom:48.506667pt;}
.y1{bottom:49.033333pt;}
.y54{bottom:49.066667pt;}
.y104{bottom:49.200000pt;}
.y1ac{bottom:49.693333pt;}
.ye8{bottom:50.200000pt;}
.y17{bottom:52.040000pt;}
.y17c{bottom:60.400000pt;}
.y150{bottom:61.173333pt;}
.yf6{bottom:61.866667pt;}
.y9{bottom:65.026667pt;}
.y53{bottom:65.066667pt;}
.y14d{bottom:66.040000pt;}
.y177{bottom:68.440000pt;}
.y16{bottom:70.066667pt;}
.y151{bottom:70.893333pt;}
.y101{bottom:73.440000pt;}
.ye5{bottom:73.773333pt;}
.y155{bottom:75.733333pt;}
.y17f{bottom:76.440000pt;}
.y52{bottom:80.093333pt;}
.y152{bottom:80.600000pt;}
.y15{bottom:81.066667pt;}
.y8{bottom:83.066667pt;}
.y185{bottom:84.440000pt;}
.yfb{bottom:85.000000pt;}
.y14e{bottom:85.440000pt;}
.ye9{bottom:86.533333pt;}
.ycd{bottom:87.066667pt;}
.y187{bottom:87.800000pt;}
.y175{bottom:88.066667pt;}
.y9e{bottom:90.066667pt;}
.y181{bottom:92.466667pt;}
.y14{bottom:93.106667pt;}
.y5e{bottom:94.066667pt;}
.y51{bottom:95.093333pt;}
.yf5{bottom:96.533333pt;}
.y157{bottom:97.040000pt;}
.y1ad{bottom:97.293333pt;}
.y7{bottom:98.066667pt;}
.ye6{bottom:99.200000pt;}
.y131{bottom:100.000000pt;}
.y198{bottom:100.440000pt;}
.y178{bottom:100.466667pt;}
.y174{bottom:103.066667pt;}
.y153{bottom:104.840000pt;}
.y9d{bottom:105.100000pt;}
.ycc{bottom:106.100000pt;}
.y13{bottom:106.106667pt;}
.y105{bottom:106.960000pt;}
.y103{bottom:108.106667pt;}
.y5d{bottom:109.100000pt;}
.y154{bottom:109.706667pt;}
.y50{bottom:111.106667pt;}
.y14f{bottom:114.533333pt;}
.yd4{bottom:117.333333pt;}
.y173{bottom:119.100000pt;}
.y133{bottom:119.400000pt;}
.y19a{bottom:119.506667pt;}
.y9c{bottom:121.100000pt;}
.yea{bottom:122.840000pt;}
.y12{bottom:123.106667pt;}
.y138{bottom:124.226667pt;}
.y179{bottom:124.506667pt;}
.ye4{bottom:124.600000pt;}
.y5c{bottom:125.100000pt;}
.yca{bottom:126.100000pt;}
.y4f{bottom:126.133333pt;}
.y188{bottom:127.840000pt;}
.y192{bottom:129.000000pt;}
.y12b{bottom:129.106667pt;}
.y102{bottom:131.200000pt;}
.y182{bottom:132.506667pt;}
.y19b{bottom:133.773333pt;}
.y134{bottom:133.933333pt;}
.y172{bottom:134.106667pt;}
.yd8{bottom:135.506667pt;}
.y9b{bottom:136.093333pt;}
.y194{bottom:138.533333pt;}
.y12d{bottom:138.800000pt;}
.y5b{bottom:140.106667pt;}
.y184{bottom:140.533333pt;}
.y4e{bottom:141.133333pt;}
.ydb{bottom:142.773333pt;}
.y19e{bottom:143.306667pt;}
.y137{bottom:143.666667pt;}
.y1ae{bottom:144.893333pt;}
.y158{bottom:145.533333pt;}
.y11{bottom:146.133333pt;}
.ydd{bottom:146.400000pt;}
.y19c{bottom:148.026667pt;}
.y135{bottom:148.506667pt;}
.y17b{bottom:148.533333pt;}
.y171{bottom:149.133333pt;}
.y9a{bottom:151.133333pt;}
.y58{bottom:152.133333pt;}
.y193{bottom:152.800000pt;}
.y12c{bottom:153.373333pt;}
.yd7{bottom:153.666667pt;}
.y4d{bottom:157.160000pt;}
.ye2{bottom:157.293333pt;}
.y197{bottom:157.573333pt;}
.y130{bottom:158.200000pt;}
.yeb{bottom:159.133333pt;}
.yd0{bottom:160.933333pt;}
.y19d{bottom:162.333333pt;}
.y18e{bottom:162.533333pt;}
.y136{bottom:163.066667pt;}
.y106{bottom:164.733333pt;}
.y170{bottom:165.133333pt;}
.yc5{bottom:166.133333pt;}
.y1b4{bottom:167.106667pt;}
.y99{bottom:167.133333pt;}
.y149{bottom:167.893333pt;}
.y10{bottom:168.173333pt;}
.yd6{bottom:168.200000pt;}
.y15e{bottom:168.440000pt;}
.y10b{bottom:168.600000pt;}
.yf2{bottom:170.626667pt;}
.y196{bottom:171.840000pt;}
.y4c{bottom:172.160000pt;}
.y180{bottom:172.560000pt;}
.y12f{bottom:172.773333pt;}
.yfd{bottom:177.400000pt;}
.y1d{bottom:178.133333pt;}
.y16f{bottom:180.173333pt;}
.y98{bottom:182.173333pt;}
.y147{bottom:182.466667pt;}
.yd2{bottom:182.706667pt;}
.y195{bottom:186.133333pt;}
.y4b{bottom:187.200000pt;}
.y12e{bottom:187.306667pt;}
.y17e{bottom:188.560000pt;}
.yf7{bottom:188.960000pt;}
.y199{bottom:190.893333pt;}
.y132{bottom:192.173333pt;}
.y1af{bottom:192.506667pt;}
.ye0{bottom:193.600000pt;}
.y159{bottom:194.040000pt;}
.y16e{bottom:195.173333pt;}
.yec{bottom:195.466667pt;}
.y183{bottom:196.600000pt;}
.y14b{bottom:197.000000pt;}
.y97{bottom:197.173333pt;}
.yf9{bottom:200.533333pt;}
.y14a{bottom:201.866667pt;}
.y4a{bottom:203.200000pt;}
.ye3{bottom:204.506667pt;}
.y17d{bottom:204.600000pt;}
.y189{bottom:207.960000pt;}
.yde{bottom:208.133333pt;}
.y33{bottom:209.200000pt;}
.y16d{bottom:211.173333pt;}
.y148{bottom:211.560000pt;}
.yd1{bottom:211.773333pt;}
.yfe{bottom:212.066667pt;}
.y96{bottom:213.173333pt;}
.ybc{bottom:215.173333pt;}
.y14c{bottom:216.440000pt;}
.y49{bottom:218.200000pt;}
.y146{bottom:221.266667pt;}
.y107{bottom:222.506667pt;}
.y32{bottom:223.226667pt;}
.yfc{bottom:223.626667pt;}
.y1a5{bottom:224.200000pt;}
.y13f{bottom:226.133333pt;}
.y16c{bottom:226.200000pt;}
.y95{bottom:228.200000pt;}
.y1a3{bottom:228.960000pt;}
.ybb{bottom:229.200000pt;}
.yd3{bottom:229.893333pt;}
.y13d{bottom:230.960000pt;}
.yc4{bottom:231.200000pt;}
.yed{bottom:231.773333pt;}
.y48{bottom:233.240000pt;}
.yd9{bottom:233.533333pt;}
.yf8{bottom:235.173333pt;}
.y129{bottom:235.200000pt;}
.y31{bottom:239.240000pt;}
.y1b0{bottom:240.106667pt;}
.ye1{bottom:240.800000pt;}
.yba{bottom:241.200000pt;}
.y15a{bottom:242.560000pt;}
.y94{bottom:243.200000pt;}
.y1ab{bottom:243.240000pt;}
.yd5{bottom:244.440000pt;}
.y16b{bottom:245.200000pt;}
.y145{bottom:245.533333pt;}
.yc3{bottom:247.200000pt;}
.y18a{bottom:248.000000pt;}
.ycf{bottom:248.066667pt;}
.y47{bottom:249.240000pt;}
.y128{bottom:251.200000pt;}
.ye7{bottom:251.706667pt;}
.y30{bottom:254.240000pt;}
.y16a{bottom:257.226667pt;}
.y100{bottom:258.293333pt;}
.y93{bottom:259.240000pt;}
.yc2{bottom:262.240000pt;}
.y1a8{bottom:262.293333pt;}
.y46{bottom:264.266667pt;}
.y142{bottom:264.933333pt;}
.y127{bottom:266.226667pt;}
.y19f{bottom:267.040000pt;}
.yee{bottom:268.066667pt;}
.y139{bottom:269.760000pt;}
.y10f{bottom:270.226667pt;}
.y2f{bottom:270.266667pt;}
.y169{bottom:272.226667pt;}
.y92{bottom:274.240000pt;}
.y1a2{bottom:276.560000pt;}
.ydf{bottom:277.106667pt;}
.yc1{bottom:277.240000pt;}
.y45{bottom:279.266667pt;}
.y13c{bottom:279.506667pt;}
.y108{bottom:280.266667pt;}
.y126{bottom:281.226667pt;}
.y2e{bottom:285.266667pt;}
.y168{bottom:287.226667pt;}
.y1b1{bottom:287.706667pt;}
.y18b{bottom:288.066667pt;}
.y91{bottom:289.240000pt;}
.y1a7{bottom:290.840000pt;}
.y15b{bottom:291.066667pt;}
.yc0{bottom:293.266667pt;}
.y141{bottom:294.026667pt;}
.y44{bottom:295.266667pt;}
.y12a{bottom:297.000000pt;}
.y1a9{bottom:300.360000pt;}
.y2d{bottom:301.306667pt;}
.ydc{bottom:302.533333pt;}
.y167{bottom:303.266667pt;}
.y143{bottom:303.733333pt;}
.yef{bottom:304.373333pt;}
.y1a6{bottom:305.133333pt;}
.y90{bottom:305.266667pt;}
.yf4{bottom:306.000000pt;}
.y140{bottom:308.600000pt;}
.y1a1{bottom:309.893333pt;}
.y43{bottom:310.306667pt;}
.y13b{bottom:313.426667pt;}
.y1aa{bottom:314.626667pt;}
.yff{bottom:316.066667pt;}
.y2c{bottom:316.306667pt;}
.y17a{bottom:316.773333pt;}
.y166{bottom:318.266667pt;}
.y144{bottom:318.293333pt;}
.y8f{bottom:320.266667pt;}
.y1a0{bottom:324.173333pt;}
.y42{bottom:325.306667pt;}
.yfa{bottom:327.600000pt;}
.y13a{bottom:328.000000pt;}
.y18c{bottom:328.133333pt;}
.y1a4{bottom:328.933333pt;}
.y2b{bottom:332.306667pt;}
.y13e{bottom:332.840000pt;}
.y165{bottom:333.293333pt;}
.yda{bottom:335.200000pt;}
.y8e{bottom:335.293333pt;}
.y1b2{bottom:335.306667pt;}
.y109{bottom:338.040000pt;}
.y15c{bottom:339.573333pt;}
.yf0{bottom:340.706667pt;}
.y41{bottom:341.333333pt;}
.y164{bottom:345.293333pt;}
.y191{bottom:347.000000pt;}
.y2a{bottom:347.333333pt;}
.y8d{bottom:351.293333pt;}
.y40{bottom:356.333333pt;}
.y29{bottom:363.333333pt;}
.y8c{bottom:366.333333pt;}
.y3f{bottom:371.333333pt;}
.y28{bottom:378.373333pt;}
.y8b{bottom:381.333333pt;}
.y3e{bottom:387.373333pt;}
.y27{bottom:393.373333pt;}
.y8a{bottom:397.333333pt;}
.y3d{bottom:402.373333pt;}
.y26{bottom:409.400000pt;}
.y89{bottom:412.373333pt;}
.y3c{bottom:417.400000pt;}
.y25{bottom:424.400000pt;}
.y88{bottom:427.373333pt;}
.y3b{bottom:433.400000pt;}
.y24{bottom:440.400000pt;}
.y87{bottom:443.400000pt;}
.y3a{bottom:448.426667pt;}
.y23{bottom:455.440000pt;}
.y86{bottom:458.400000pt;}
.y39{bottom:463.426667pt;}
.y22{bottom:471.426667pt;}
.y85{bottom:473.400000pt;}
.y38{bottom:479.440000pt;}
.y21{bottom:486.466667pt;}
.y84{bottom:489.440000pt;}
.y37{bottom:494.466667pt;}
.y20{bottom:502.466667pt;}
.y83{bottom:504.440000pt;}
.y36{bottom:509.466667pt;}
.y82{bottom:519.466667pt;}
.y35{bottom:525.493333pt;}
.y1f{bottom:526.493333pt;}
.y81{bottom:535.466667pt;}
.y34{bottom:540.493333pt;}
.y1e{bottom:542.493333pt;}
.y80{bottom:550.506667pt;}
.y7f{bottom:565.506667pt;}
.y7e{bottom:581.506667pt;}
.y7d{bottom:596.533333pt;}
.yb9{bottom:609.533333pt;}
.y7c{bottom:611.533333pt;}
.yb7{bottom:625.560000pt;}
.y7b{bottom:627.573333pt;}
.y7a{bottom:642.573333pt;}
.y125{bottom:653.560000pt;}
.yb6{bottom:656.560000pt;}
.y79{bottom:657.573333pt;}
.ybf{bottom:658.560000pt;}
.y124{bottom:665.600000pt;}
.yb5{bottom:672.600000pt;}
.y78{bottom:673.600000pt;}
.y10d{bottom:680.600000pt;}
.y123{bottom:684.600000pt;}
.y77{bottom:688.600000pt;}
.ybe{bottom:689.600000pt;}
.y163{bottom:700.626667pt;}
.y76{bottom:703.626667pt;}
.yb4{bottom:704.626667pt;}
.y162{bottom:715.626667pt;}
.ybd{bottom:716.626667pt;}
.yce{bottom:717.000000pt;}
.y75{bottom:719.626667pt;}
.yb3{bottom:720.626667pt;}
.y121{bottom:724.640000pt;}
.y161{bottom:727.626667pt;}
.y176{bottom:728.000000pt;}
.y1b{bottom:730.626667pt;}
.y74{bottom:734.626667pt;}
.yb2{bottom:736.666667pt;}
.y120{bottom:744.666667pt;}
.y73{bottom:749.666667pt;}
.yb1{bottom:752.666667pt;}
.yf{bottom:756.666667pt;}
.y11f{bottom:764.666667pt;}
.y72{bottom:765.666667pt;}
.yb0{bottom:768.666667pt;}
.y71{bottom:780.706667pt;}
.y11d{bottom:784.693333pt;}
.yaf{bottom:784.706667pt;}
.y70{bottom:795.706667pt;}
.yad{bottom:800.693333pt;}
.y6f{bottom:811.733333pt;}
.y11c{bottom:815.733333pt;}
.y6e{bottom:826.733333pt;}
.yab{bottom:831.733333pt;}
.y11b{bottom:835.733333pt;}
.y6d{bottom:841.733333pt;}
.y11a{bottom:855.773333pt;}
.y6c{bottom:857.773333pt;}
.yaa{bottom:863.773333pt;}
.y6b{bottom:872.773333pt;}
.y118{bottom:875.760000pt;}
.ya8{bottom:879.760000pt;}
.y6a{bottom:887.800000pt;}
.ya7{bottom:895.800000pt;}
.y69{bottom:903.800000pt;}
.ya6{bottom:911.800000pt;}
.y117{bottom:914.800000pt;}
.y68{bottom:918.800000pt;}
.ya5{bottom:927.840000pt;}
.y67{bottom:933.840000pt;}
.yd{bottom:937.840000pt;}
.ya4{bottom:943.840000pt;}
.y115{bottom:946.840000pt;}
.y66{bottom:949.840000pt;}
.ya3{bottom:959.866667pt;}
.y6{bottom:960.866667pt;}
.y65{bottom:964.866667pt;}
.y114{bottom:977.866667pt;}
.y64{bottom:979.866667pt;}
.ya2{bottom:990.866667pt;}
.y63{bottom:995.893333pt;}
.y113{bottom:997.893333pt;}
.y9f{bottom:1006.893333pt;}
.y62{bottom:1010.893333pt;}
.y61{bottom:1025.893333pt;}
.y111{bottom:1028.893333pt;}
.y60{bottom:1041.933333pt;}
.y110{bottom:1048.933333pt;}
.y5f{bottom:1056.933333pt;}
.h22{height:14.986667pt;}
.h21{height:15.000000pt;}
.h1f{height:15.033333pt;}
.h24{height:19.000000pt;}
.h35{height:19.020000pt;}
.h25{height:19.033333pt;}
.h26{height:20.000000pt;}
.h36{height:20.033333pt;}
.hb{height:23.033333pt;}
.h45{height:25.136719pt;}
.h1d{height:26.000000pt;}
.h13{height:26.033333pt;}
.h11{height:26.625000pt;}
.h31{height:27.033333pt;}
.h30{height:28.033333pt;}
.h2{height:29.033333pt;}
.h20{height:30.000000pt;}
.h33{height:30.020000pt;}
.h34{height:30.033333pt;}
.h32{height:31.000000pt;}
.h1e{height:31.033333pt;}
.h8{height:33.000000pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.h1c{height:37.857422pt;}
.hd{height:38.289062pt;}
.h12{height:38.625000pt;}
.ha{height:39.000000pt;}
.h44{height:41.136719pt;}
.h4f{height:41.400391pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h4{height:47.742188pt;}
.h28{height:47.874805pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h2c{height:51.853320pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h23{height:61.066667pt;}
.h5{height:61.435547pt;}
.h2b{height:62.302188pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h4a{height:66.835521pt;}
.h3c{height:67.048854pt;}
.h41{height:67.208854pt;}
.h40{height:67.288138pt;}
.h38{height:67.341471pt;}
.h3f{height:67.394805pt;}
.h47{height:79.742188pt;}
.h49{height:79.981471pt;}
.h48{height:80.034805pt;}
.h4c{height:85.715521pt;}
.h4e{height:85.822188pt;}
.h3d{height:86.515521pt;}
.h3e{height:86.568854pt;}
.h3a{height:86.701471pt;}
.h43{height:86.754805pt;}
.h29{height:91.315521pt;}
.h2e{height:93.982187pt;}
.h2f{height:94.035521pt;}
.h3b{height:94.835521pt;}
.h4d{height:98.782188pt;}
.h2a{height:105.875521pt;}
.h42{height:105.982188pt;}
.h7{height:108.100000pt;}
.h4b{height:123.902187pt;}
.h39{height:125.342188pt;}
.hc{height:181.160000pt;}
.h46{height:341.000000pt;}
.h2d{height:350.000000pt;}
.h27{height:352.000000pt;}
.h37{height:353.000000pt;}
.h15{height:552.506667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w9{width:29.033333pt;}
.w14{width:39.033333pt;}
.w1b{width:40.033333pt;}
.wc{width:43.066667pt;}
.w15{width:46.066667pt;}
.w1c{width:47.066667pt;}
.w11{width:48.033333pt;}
.w1a{width:49.033333pt;}
.w13{width:50.066667pt;}
.w16{width:51.066667pt;}
.wd{width:52.066667pt;}
.we{width:56.066667pt;}
.w2{width:66.100000pt;}
.wb{width:87.100000pt;}
.wf{width:101.133333pt;}
.w4{width:135.160000pt;}
.w10{width:137.173333pt;}
.w19{width:193.226667pt;}
.w7{width:198.240000pt;}
.wa{width:294.360000pt;}
.w12{width:375.506667pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w17{width:557.000000pt;}
.w18{width:566.000000pt;}
.w1f{width:581.000000pt;}
.w1e{width:585.000000pt;}
.w1d{width:589.000000pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x69{left:9.000000pt;}
.x23{left:10.000000pt;}
.x16{left:11.040000pt;}
.x13{left:13.000000pt;}
.x11{left:15.000000pt;}
.x65{left:16.033333pt;}
.x4c{left:17.493333pt;}
.x63{left:18.666667pt;}
.xe{left:20.000000pt;}
.x4b{left:23.600000pt;}
.x62{left:24.733333pt;}
.x17{left:31.026667pt;}
.x6d{left:32.100000pt;}
.x7a{left:36.133333pt;}
.x66{left:38.066667pt;}
.x86{left:40.160000pt;}
.x67{left:41.066667pt;}
.xf{left:43.033333pt;}
.xc6{left:44.360000pt;}
.xac{left:45.466667pt;}
.x4f{left:47.093333pt;}
.x3b{left:49.666667pt;}
.x64{left:51.200000pt;}
.x5a{left:54.160000pt;}
.x18{left:55.066667pt;}
.x6e{left:58.240000pt;}
.x7b{left:62.266667pt;}
.xb8{left:63.160000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x2e{left:66.866667pt;}
.xc0{left:70.440000pt;}
.x4{left:72.099988pt;}
.x3c{left:73.800000pt;}
.x9a{left:77.306667pt;}
.x6f{left:84.360000pt;}
.x6{left:87.100000pt;}
.xb9{left:88.640000pt;}
.x2f{left:91.000000pt;}
.x50{left:93.173333pt;}
.x1b{left:94.133333pt;}
.x19{left:96.133322pt;}
.x3d{left:97.933333pt;}
.x6c{left:101.000000pt;}
.x5b{left:103.226667pt;}
.xb7{left:106.000000pt;}
.x70{left:110.466667pt;}
.x4e{left:113.000000pt;}
.x26{left:114.133333pt;}
.x30{left:115.133333pt;}
.x2d{left:118.000000pt;}
.x1a{left:120.166655pt;}
.x71{left:136.600000pt;}
.x31{left:139.266667pt;}
.x7c{left:140.600000pt;}
.xa4{left:141.840000pt;}
.x3e{left:146.200000pt;}
.xad{left:149.240000pt;}
.x8f{left:151.666667pt;}
.xa1{left:153.600000pt;}
.x32{left:163.400000pt;}
.xba{left:165.066667pt;}
.x51{left:166.733333pt;}
.xa5{left:167.773333pt;}
.x87{left:170.773333pt;}
.xc1{left:172.333333pt;}
.x5c{left:176.800000pt;}
.x90{left:177.773333pt;}
.x33{left:187.533333pt;}
.x14{left:190.233333pt;}
.x3f{left:194.506667pt;}
.xb6{left:197.693333pt;}
.x7{left:200.266667pt;}
.xc8{left:205.466667pt;}
.x52{left:215.800000pt;}
.x40{left:218.640000pt;}
.x88{left:223.000000pt;}
.xae{left:224.066667pt;}
.x4d{left:225.400000pt;}
.x91{left:227.000000pt;}
.x9b{left:231.040000pt;}
.x34{left:235.800000pt;}
.x72{left:241.066667pt;}
.x41{left:242.773333pt;}
.x7d{left:245.106667pt;}
.x10{left:246.300000pt;}
.xc2{left:248.773333pt;}
.x5d{left:250.360000pt;}
.x92{left:253.133333pt;}
.xb{left:258.333333pt;}
.x35{left:259.973333pt;}
.x15{left:263.333333pt;}
.x53{left:264.840000pt;}
.x73{left:267.200000pt;}
.x7e{left:271.226667pt;}
.xc7{left:273.733333pt;}
.x5e{left:274.906667pt;}
.xb5{left:276.666667pt;}
.xaf{left:278.933333pt;}
.x93{left:282.266667pt;}
.x36{left:284.106667pt;}
.x42{left:291.040000pt;}
.xbb{left:292.440000pt;}
.x74{left:293.333333pt;}
.xa6{left:294.466667pt;}
.x7f{left:297.333333pt;}
.x5f{left:299.440000pt;}
.x68{left:301.400000pt;}
.x94{left:305.360000pt;}
.x9{left:307.360000pt;}
.x9c{left:312.400000pt;}
.x54{left:313.906667pt;}
.x43{left:315.173333pt;}
.x12{left:318.406667pt;}
.x75{left:319.426667pt;}
.xa7{left:320.400000pt;}
.x80{left:323.466667pt;}
.xa{left:324.400000pt;}
.x89{left:327.466667pt;}
.x22{left:329.440000pt;}
.xd{left:332.406667pt;}
.xbc{left:343.373333pt;}
.x76{left:345.573333pt;}
.x60{left:348.506667pt;}
.x81{left:349.560000pt;}
.xc3{left:350.666667pt;}
.xb0{left:356.760000pt;}
.x95{left:360.640000pt;}
.x44{left:363.440000pt;}
.x9d{left:364.626667pt;}
.x61{left:373.026667pt;}
.x82{left:375.693333pt;}
.x8a{left:379.733333pt;}
.xb1{left:382.733333pt;}
.x45{left:387.600000pt;}
.x1c{left:388.506667pt;}
.x9e{left:390.773333pt;}
.xa8{left:398.240000pt;}
.x83{left:401.840000pt;}
.xc{left:403.506667pt;}
.x37{left:404.773333pt;}
.x96{left:409.866667pt;}
.x46{left:411.733333pt;}
.x55{left:415.026667pt;}
.xbd{left:419.800000pt;}
.x77{left:423.933333pt;}
.x84{left:427.933333pt;}
.x8b{left:431.960000pt;}
.xb2{left:434.600000pt;}
.x47{left:435.866667pt;}
.x97{left:438.973333pt;}
.x9f{left:443.000000pt;}
.x38{left:453.066667pt;}
.x56{left:461.066667pt;}
.x48{left:463.000000pt;}
.x1d{left:476.600000pt;}
.xa9{left:479.066667pt;}
.x8c{left:484.200000pt;}
.x57{left:485.600000pt;}
.x6a{left:489.640000pt;}
.x27{left:490.640000pt;}
.xbe{left:496.226667pt;}
.x39{left:501.333333pt;}
.x78{left:502.266667pt;}
.xc4{left:503.506667pt;}
.xaa{left:505.026667pt;}
.x85{left:506.306667pt;}
.x49{left:508.266667pt;}
.x58{left:510.133333pt;}
.x1e{left:519.666667pt;}
.x3a{left:525.466667pt;}
.xc5{left:528.960000pt;}
.xab{left:530.960000pt;}
.x4a{left:532.400000pt;}
.x59{left:534.666667pt;}
.x8d{left:536.440000pt;}
.xb3{left:538.360000pt;}
.x29{left:540.693333pt;}
.x98{left:543.466667pt;}
.xbf{left:547.173333pt;}
.x79{left:554.533333pt;}
.x8e{left:562.560000pt;}
.xb4{left:564.333333pt;}
.x99{left:566.560000pt;}
.x1f{left:571.733333pt;}
.xa0{left:573.600000pt;}
.x2a{left:580.733333pt;}
.x2b{left:627.800000pt;}
.x20{left:628.800000pt;}
.x3{left:663.840000pt;}
.x21{left:669.866655pt;}
.x24{left:675.866655pt;}
.x2c{left:678.866667pt;}
.x25{left:680.866655pt;}
.xa3{left:687.866655pt;}
.xa2{left:689.866655pt;}
.x6b{left:692.893322pt;}
}




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