
    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_c67c6b203c07cd53eba53c07.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_de100d86f81e9d1eeaa61cba.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_dc852b97fee52d5a4b55cf8c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_5f717dd917dcfb0cef95f125.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_b5df382e99b0578b7c55370a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_51f735e757e6af44ccd31935.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4d32daa350c7ccc4b44f6b9b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.724609;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_d4e14cae63385edd35034559.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_64cb3f677560adad6b14cadc.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a2a6db7f98c9616760aa54fe.woff')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_077db2340204922edb719e2b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.979980;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_4808924b278f6dd267745a1c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.941406;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_ab2cc3a3892eac325e169bb6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.976074;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_6ad9e7c79b32a7f6467c79d9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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_25cb86aed1fd699c13a0282a.woff')format("woff");}.fff{font-family:fff;line-height:0.941406;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_ca90d9b1821a177bfc396908.woff')format("woff");}.ff10{font-family:ff10;line-height:0.830566;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_ca7af7a24c2d894ecd171346.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_95c72f67d49f250f265ef02e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.772949;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;}
.m3{transform:matrix(0.000000,-0.250006,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250006,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250006,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249775,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249775,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249775,0.250000,0.000000,0,0);}
.m5{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);}
.m4{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,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(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.v10{vertical-align:-42.768000px;}
.v6{vertical-align:-41.040000px;}
.v8{vertical-align:-39.600000px;}
.v3{vertical-align:-35.280000px;}
.v2{vertical-align:-32.400000px;}
.v5{vertical-align:-29.520000px;}
.v9{vertical-align:-26.640000px;}
.vb{vertical-align:-20.448000px;}
.vd{vertical-align:-19.440000px;}
.v15{vertical-align:-18.302324px;}
.vc{vertical-align:-17.074402px;}
.ve{vertical-align:-16.013886px;}
.v13{vertical-align:-14.400005px;}
.v16{vertical-align:-5.580000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:2.580000px;}
.va{vertical-align:6.192000px;}
.v11{vertical-align:10.368000px;}
.v12{vertical-align:15.839994px;}
.v17{vertical-align:19.440000px;}
.v14{vertical-align:27.608590px;}
.v1{vertical-align:32.400000px;}
.v4{vertical-align:35.280000px;}
.vf{vertical-align:37.416652px;}
.v7{vertical-align:39.600000px;}
.ls16{letter-spacing:-11.940000px;}
.ls2{letter-spacing:-10.680000px;}
.ls32{letter-spacing:-0.526800px;}
.ls21{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.252000px;}
.ls29{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.212914px;}
.ls7{letter-spacing:-0.208200px;}
.ls37{letter-spacing:-0.195600px;}
.ls8{letter-spacing:-0.189600px;}
.ls1c{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.174000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.109200px;}
.ls2a{letter-spacing:-0.106800px;}
.ls2e{letter-spacing:-0.100200px;}
.ls3c{letter-spacing:-0.092546px;}
.ls12{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.055440px;}
.ls24{letter-spacing:-0.050700px;}
.ls4b{letter-spacing:-0.036000px;}
.ls1d{letter-spacing:-0.029520px;}
.ls33{letter-spacing:-0.028080px;}
.lsf{letter-spacing:-0.019440px;}
.ls45{letter-spacing:-0.002160px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.027478px;}
.ls5{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.039000px;}
.ls4{letter-spacing:0.041880px;}
.lsb{letter-spacing:0.050688px;}
.ls20{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.099521px;}
.ls9{letter-spacing:0.122400px;}
.ls15{letter-spacing:0.123728px;}
.ls1f{letter-spacing:0.127568px;}
.ls27{letter-spacing:0.136200px;}
.ls4c{letter-spacing:0.141000px;}
.ls18{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.145798px;}
.ls43{letter-spacing:0.150600px;}
.ls36{letter-spacing:0.180000px;}
.ls42{letter-spacing:0.183600px;}
.ls23{letter-spacing:0.194400px;}
.ls2f{letter-spacing:0.208080px;}
.ls40{letter-spacing:0.208800px;}
.ls22{letter-spacing:0.211968px;}
.ls41{letter-spacing:0.214800px;}
.ls10{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.247455px;}
.lsc{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.347040px;}
.ls3f{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.408000px;}
.ls48{letter-spacing:0.432000px;}
.ls49{letter-spacing:0.444000px;}
.ls2b{letter-spacing:15.022081px;}
.ls25{letter-spacing:17.746560px;}
.ls26{letter-spacing:17.818561px;}
.ls30{letter-spacing:22.775041px;}
.ls44{letter-spacing:29.376000px;}
.lsa{letter-spacing:36.540288px;}
.lsd{letter-spacing:36.668160px;}
.ls3b{letter-spacing:39.600000px;}
.ls3a{letter-spacing:39.924000px;}
.ls39{letter-spacing:71.326080px;}
.ls35{letter-spacing:111.480768px;}
.ls34{letter-spacing:111.546720px;}
.ls3e{letter-spacing:155.246880px;}
.ls3d{letter-spacing:155.546880px;}
.ls2d{letter-spacing:308.256000px;}
.ls2c{letter-spacing:308.376000px;}
.ls47{letter-spacing:410.520000px;}
.lse{letter-spacing:1277.100000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-120.240000px;}
.ws7{word-spacing:-108.000000px;}
.ws43{word-spacing:-84.240000px;}
.ws1b{word-spacing:-80.352000px;}
.ws1a{word-spacing:-80.208000px;}
.ws1c{word-spacing:-80.064000px;}
.ws30{word-spacing:-72.000000px;}
.ws4f{word-spacing:-63.156096px;}
.ws1{word-spacing:-63.072000px;}
.ws3d{word-spacing:-60.048000px;}
.ws32{word-spacing:-59.760000px;}
.ws4{word-spacing:-53.442720px;}
.ws1d{word-spacing:-46.759680px;}
.wse{word-spacing:-46.677312px;}
.ws19{word-spacing:-46.637280px;}
.ws12{word-spacing:-46.617840px;}
.ws5{word-spacing:-40.072032px;}
.ws3{word-spacing:-40.032000px;}
.ws14{word-spacing:-36.885312px;}
.ws16{word-spacing:-36.669312px;}
.ws15{word-spacing:-36.495312px;}
.ws3e{word-spacing:-33.606720px;}
.ws3f{word-spacing:-33.271152px;}
.ws1f{word-spacing:-32.400000px;}
.ws17{word-spacing:-30.064032px;}
.ws10{word-spacing:-30.024000px;}
.ws6{word-spacing:-26.661312px;}
.ws13{word-spacing:-24.459552px;}
.ws8{word-spacing:-24.408000px;}
.wsd{word-spacing:-23.940000px;}
.ws18{word-spacing:-23.418720px;}
.ws3a{word-spacing:-23.390640px;}
.ws42{word-spacing:-21.856560px;}
.ws11{word-spacing:-21.674304px;}
.ws0{word-spacing:-20.016000px;}
.wsf{word-spacing:-19.038240px;}
.ws2c{word-spacing:-18.414720px;}
.ws49{word-spacing:-18.174240px;}
.ws1e{word-spacing:-18.032400px;}
.ws48{word-spacing:-17.812080px;}
.ws25{word-spacing:-16.847712px;}
.ws26{word-spacing:-16.613280px;}
.ws2d{word-spacing:-16.353480px;}
.ws2b{word-spacing:-15.012000px;}
.ws33{word-spacing:-13.410720px;}
.ws41{word-spacing:-12.766827px;}
.ws21{word-spacing:-12.481502px;}
.ws23{word-spacing:-5.109745px;}
.ws22{word-spacing:-2.494066px;}
.ws24{word-spacing:-2.444244px;}
.ws44{word-spacing:-0.808560px;}
.wsa{word-spacing:-0.756000px;}
.ws50{word-spacing:-0.744000px;}
.ws28{word-spacing:-0.576000px;}
.ws52{word-spacing:-0.356616px;}
.ws51{word-spacing:-0.252000px;}
.ws3c{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.120240px;}
.ws9{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws3b{word-spacing:0.612000px;}
.ws20{word-spacing:149.640457px;}
.ws39{word-spacing:154.317168px;}
.ws29{word-spacing:158.460000px;}
.ws2a{word-spacing:160.200000px;}
.ws40{word-spacing:175.197090px;}
.ws38{word-spacing:202.032000px;}
.ws37{word-spacing:217.764000px;}
.ws35{word-spacing:248.460000px;}
.ws4a{word-spacing:248.580000px;}
.ws34{word-spacing:262.692000px;}
.ws47{word-spacing:276.768000px;}
.ws4b{word-spacing:277.632000px;}
.ws36{word-spacing:277.692000px;}
.ws31{word-spacing:352.490400px;}
.ws4e{word-spacing:355.062000px;}
.ws4c{word-spacing:359.472000px;}
.ws4d{word-spacing:367.488000px;}
.ws2f{word-spacing:457.392000px;}
.ws2e{word-spacing:465.306000px;}
.ws45{word-spacing:475.776432px;}
.ws46{word-spacing:503.136432px;}
.ws27{word-spacing:1651.314720px;}
._18{margin-left:-2977.847808px;}
._15{margin-left:-202.885720px;}
._17{margin-left:-43.164000px;}
._27{margin-left:-34.267536px;}
._13{margin-left:-25.796160px;}
._1{margin-left:-24.276000px;}
._3{margin-left:-23.127408px;}
._5{margin-left:-21.600000px;}
._28{margin-left:-20.569680px;}
._12{margin-left:-19.258128px;}
._0{margin-left:-17.496000px;}
._b{margin-left:-15.680880px;}
._26{margin-left:-14.612640px;}
._a{margin-left:-13.414752px;}
._6{margin-left:-12.312000px;}
._7{margin-left:-10.344000px;}
._16{margin-left:-9.138240px;}
._4{margin-left:-7.781184px;}
._9{margin-left:-5.872848px;}
._e{margin-left:-4.663296px;}
._d{margin-left:-3.568176px;}
._11{margin-left:-2.306016px;}
._2{margin-left:-1.296864px;}
._8{width:1.080000px;}
._19{width:2.181352px;}
._c{width:3.204480px;}
._14{width:4.463472px;}
._1b{width:5.611607px;}
._2c{width:22.275216px;}
._10{width:25.908048px;}
._f{width:28.332864px;}
._24{width:31.516176px;}
._29{width:39.024000px;}
._1e{width:151.200000px;}
._1d{width:163.074000px;}
._1a{width:172.324930px;}
._2a{width:218.449440px;}
._23{width:247.716000px;}
._22{width:277.860000px;}
._21{width:382.375776px;}
._2e{width:389.820000px;}
._20{width:397.315776px;}
._1c{width:471.387216px;}
._1f{width:488.238000px;}
._2d{width:506.088000px;}
._25{width:687.474000px;}
._2b{width:2491.687920px;}
.fce{color:rgb(46,129,81);}
.fcb{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(61,61,61);}
.fc0{color:rgb(54,102,88);}
.fc4{color:rgb(0,0,0);}
.fc7{color:rgb(140,182,74);}
.fcd{color:rgb(89,89,89);}
.fc8{color:rgb(31,31,31);}
.fc5{color:rgb(40,77,66);}
.fc6{color:rgb(0,32,96);}
.fc9{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fca{color:rgb(192,0,0);}
.fcc{color:rgb(0,112,192);}
.fs30{font-size:30.240000px;}
.fs27{font-size:40.181736px;}
.fs32{font-size:40.320000px;}
.fs2f{font-size:43.920000px;}
.fs29{font-size:44.897491px;}
.fs39{font-size:45.923839px;}
.fs31{font-size:48.240000px;}
.fs1e{font-size:50.728297px;}
.fs22{font-size:53.280000px;}
.fs2c{font-size:54.000000px;}
.fs2d{font-size:54.144000px;}
.fs1a{font-size:56.160000px;}
.fs23{font-size:58.912102px;}
.fs2b{font-size:59.760000px;}
.fs2a{font-size:59.904000px;}
.fs1d{font-size:61.863777px;}
.fs1c{font-size:61.987504px;}
.fs24{font-size:63.254851px;}
.fs3d{font-size:64.080000px;}
.fs2e{font-size:66.240000px;}
.fs33{font-size:66.384000px;}
.fs38{font-size:67.330836px;}
.fs3{font-size:72.000000px;}
.fs28{font-size:72.144000px;}
.fs37{font-size:72.294178px;}
.fsd{font-size:79.920000px;}
.fs21{font-size:80.064000px;}
.fs25{font-size:81.433526px;}
.fs26{font-size:81.435588px;}
.fs10{font-size:84.240000px;}
.fs1b{font-size:84.384000px;}
.fs17{font-size:87.984000px;}
.fs3b{font-size:93.073003px;}
.fs3a{font-size:93.156838px;}
.fse{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs35{font-size:110.160000px;}
.fs36{font-size:110.304000px;}
.fs14{font-size:112.320000px;}
.fsc{font-size:120.240000px;}
.fs13{font-size:120.384000px;}
.fs19{font-size:121.680000px;}
.fs15{font-size:121.824000px;}
.fs18{font-size:131.760000px;}
.fs16{font-size:131.904000px;}
.fs3c{font-size:132.480000px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fsf{font-size:149.904000px;}
.fs12{font-size:156.240000px;}
.fs11{font-size:156.384000px;}
.fs5{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fs7{font-size:192.240000px;}
.fsa{font-size:192.384000px;}
.fs34{font-size:210.240000px;}
.fs0{font-size:216.000000px;}
.fs1{font-size:216.144000px;}
.fs1f{font-size:288.000000px;}
.fs20{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.yea{bottom:3.600000px;}
.yde{bottom:3.960000px;}
.y136{bottom:5.325000px;}
.ybb{bottom:8.310000px;}
.y19f{bottom:9.255000px;}
.ycb{bottom:10.155000px;}
.ya7{bottom:10.171859px;}
.ya9{bottom:10.171871px;}
.y6e{bottom:11.863793px;}
.y129{bottom:12.960000px;}
.y97{bottom:15.084000px;}
.y56{bottom:16.920000px;}
.y5a{bottom:17.100000px;}
.y58{bottom:17.964000px;}
.yf7{bottom:19.044000px;}
.ydd{bottom:19.908000px;}
.y120{bottom:21.210000px;}
.ya5{bottom:21.396221px;}
.y1ac{bottom:22.065000px;}
.y194{bottom:22.356000px;}
.y188{bottom:22.428000px;}
.y10a{bottom:22.470000px;}
.y4a{bottom:22.572000px;}
.ya4{bottom:23.266420px;}
.ya6{bottom:23.266443px;}
.ya8{bottom:23.266453px;}
.y15a{bottom:24.114862px;}
.y77{bottom:24.300000px;}
.y93{bottom:24.563699px;}
.y134{bottom:24.765000px;}
.y19{bottom:28.512000px;}
.y50{bottom:29.484000px;}
.y128{bottom:31.965000px;}
.ye6{bottom:32.076000px;}
.yb9{bottom:32.295000px;}
.y6d{bottom:34.320470px;}
.y59{bottom:36.036000px;}
.yc9{bottom:36.210000px;}
.y17c{bottom:36.900000px;}
.y189{bottom:39.240000px;}
.y12d{bottom:40.860000px;}
.y19d{bottom:40.890000px;}
.yf5{bottom:41.508000px;}
.ydb{bottom:43.164000px;}
.y1aa{bottom:43.485000px;}
.y15{bottom:46.656000px;}
.y3a{bottom:47.016000px;}
.y192{bottom:47.880000px;}
.y186{bottom:47.952000px;}
.y108{bottom:47.985000px;}
.yb0{bottom:48.390000px;}
.y122{bottom:51.630000px;}
.yc0{bottom:52.305000px;}
.y86{bottom:53.541374px;}
.y11e{bottom:53.970000px;}
.y196{bottom:56.985000px;}
.yeb{bottom:57.564000px;}
.ye4{bottom:57.600000px;}
.y150{bottom:57.701436px;}
.yda{bottom:58.680000px;}
.y11{bottom:58.932000px;}
.ybe{bottom:59.010000px;}
.yad{bottom:59.400000px;}
.y1a2{bottom:60.225000px;}
.y76{bottom:60.480000px;}
.y9{bottom:62.892000px;}
.y18b{bottom:63.972000px;}
.y17d{bottom:64.044000px;}
.yff{bottom:64.080000px;}
.y4f{bottom:65.484000px;}
.y87{bottom:68.200416px;}
.y49{bottom:69.408000px;}
.y118{bottom:70.050000px;}
.y18{bottom:71.748000px;}
.ydf{bottom:73.692000px;}
.ycf{bottom:74.772000px;}
.y151{bottom:75.463479px;}
.y39{bottom:75.816000px;}
.yac{bottom:77.436000px;}
.y69{bottom:79.140780px;}
.y67{bottom:79.140789px;}
.y65{bottom:79.140792px;}
.y81{bottom:79.236000px;}
.ybd{bottom:79.845000px;}
.y5b{bottom:79.848000px;}
.y173{bottom:83.085000px;}
.y171{bottom:83.190000px;}
.yec{bottom:84.492000px;}
.yb1{bottom:84.675000px;}
.y12e{bottom:85.680000px;}
.y149{bottom:86.220000px;}
.yc1{bottom:88.305000px;}
.y14{bottom:89.856000px;}
.y6f{bottom:90.399988px;}
.y63{bottom:93.456000px;}
.y1a3{bottom:93.570000px;}
.y17e{bottom:93.924000px;}
.y100{bottom:93.960000px;}
.y123{bottom:94.500000px;}
.y12a{bottom:94.890000px;}
.y135{bottom:96.450000px;}
.y75{bottom:96.516000px;}
.y175{bottom:97.380000px;}
.y1b6{bottom:98.712000px;}
.yd0{bottom:100.116000px;}
.y88{bottom:100.165988px;}
.ybc{bottom:100.695000px;}
.y4e{bottom:101.484000px;}
.y10{bottom:102.168000px;}
.y7e{bottom:103.104000px;}
.y8{bottom:103.392000px;}
.y18c{bottom:103.788000px;}
.y110{bottom:104.370000px;}
.y38{bottom:104.616000px;}
.y197{bottom:108.795000px;}
.yed{bottom:111.420000px;}
.y17{bottom:114.948000px;}
.y48{bottom:116.208000px;}
.yb2{bottom:120.960000px;}
.y148{bottom:122.256000px;}
.y17f{bottom:123.810000px;}
.y101{bottom:123.840000px;}
.y193{bottom:123.870000px;}
.y187{bottom:123.945000px;}
.y109{bottom:123.990000px;}
.y6c{bottom:124.053881px;}
.yc2{bottom:124.275000px;}
.y119{bottom:124.350000px;}
.y116{bottom:125.355000px;}
.yd1{bottom:125.496000px;}
.y1a4{bottom:126.870000px;}
.y92{bottom:127.788813px;}
.y12f{bottom:130.500000px;}
.y1ab{bottom:130.530000px;}
.y89{bottom:132.131561px;}
.y74{bottom:132.336000px;}
.y10f{bottom:134.925000px;}
.y7d{bottom:135.504000px;}
.ye0{bottom:136.980000px;}
.y124{bottom:137.415000px;}
.y4d{bottom:137.484000px;}
.yee{bottom:138.348000px;}
.ye5{bottom:140.652000px;}
.y36{bottom:140.868000px;}
.y26{bottom:141.840000px;}
.y7{bottom:142.092000px;}
.y16a{bottom:142.344000px;}
.ydc{bottom:143.136000px;}
.y18d{bottom:143.640000px;}
.yba{bottom:144.435000px;}
.y111{bottom:144.645000px;}
.y159{bottom:144.727951px;}
.y6b{bottom:146.287462px;}
.yca{bottom:147.165000px;}
.yf6{bottom:149.760000px;}
.y11f{bottom:150.300000px;}
.y10e{bottom:150.585000px;}
.yd2{bottom:150.870000px;}
.y19e{bottom:152.850000px;}
.y180{bottom:153.690000px;}
.y102{bottom:153.720000px;}
.y57{bottom:153.930000px;}
.y168{bottom:157.035000px;}
.yb3{bottom:157.245000px;}
.y147{bottom:158.250000px;}
.y1a5{bottom:160.200000px;}
.yc3{bottom:160.275000px;}
.y198{bottom:160.635000px;}
.y140{bottom:162.720000px;}
.y47{bottom:163.005000px;}
.y8a{bottom:164.164988px;}
.yef{bottom:165.270000px;}
.y13{bottom:165.570000px;}
.y152{bottom:166.832918px;}
.y169{bottom:167.370000px;}
.y73{bottom:167.790000px;}
.y68{bottom:168.468206px;}
.y6a{bottom:168.468213px;}
.y66{bottom:168.468216px;}
.y14f{bottom:170.007709px;}
.y17a{bottom:173.445000px;}
.y4c{bottom:173.490000px;}
.y9f{bottom:174.222838px;}
.ya3{bottom:174.870521px;}
.y130{bottom:175.290000px;}
.ya1{bottom:176.091158px;}
.yd3{bottom:176.220000px;}
.y1b5{bottom:177.330000px;}
.y11a{bottom:178.635000px;}
.yae{bottom:180.210000px;}
.y125{bottom:180.285000px;}
.y176{bottom:180.465000px;}
.y35{bottom:182.265000px;}
.y6{bottom:182.625000px;}
.y18e{bottom:183.495000px;}
.y181{bottom:183.570000px;}
.y103{bottom:183.600000px;}
.y112{bottom:184.935000px;}
.y9e{bottom:187.332367px;}
.ya2{bottom:187.980050px;}
.yf{bottom:188.280000px;}
.ya0{bottom:189.200687px;}
.yf0{bottom:192.210000px;}
.y1a6{bottom:193.500000px;}
.yb4{bottom:193.530000px;}
.y13f{bottom:195.120000px;}
.y8b{bottom:196.130559px;}
.yc4{bottom:196.275000px;}
.ye1{bottom:200.265000px;}
.y170{bottom:201.060000px;}
.yd4{bottom:201.600000px;}
.y179{bottom:209.445000px;}
.y4b{bottom:209.520000px;}
.y1b4{bottom:209.730000px;}
.y46{bottom:209.850000px;}
.y146{bottom:210.450000px;}
.y34{bottom:211.065000px;}
.y199{bottom:212.475000px;}
.y182{bottom:213.450000px;}
.y104{bottom:213.480000px;}
.y117{bottom:215.460000px;}
.y16{bottom:216.795000px;}
.y5{bottom:217.950000px;}
.yf1{bottom:219.135000px;}
.y131{bottom:220.110000px;}
.y12{bottom:223.200000px;}
.y18f{bottom:223.305000px;}
.y14b{bottom:224.460000px;}
.y113{bottom:225.255000px;}
.y1a7{bottom:226.830000px;}
.yd5{bottom:226.950000px;}
.y13e{bottom:227.520000px;}
.y8c{bottom:228.096131px;}
.yb5{bottom:229.830000px;}
.y178{bottom:231.045000px;}
.yc5{bottom:232.230000px;}
.yfc{bottom:232.350000px;}
.y64{bottom:232.499017px;}
.y174{bottom:232.845000px;}
.y11b{bottom:232.920000px;}
.y121{bottom:239.580000px;}
.y1b3{bottom:242.130000px;}
.y183{bottom:243.330000px;}
.y105{bottom:243.360000px;}
.yf2{bottom:246.060000px;}
.y145{bottom:246.450000px;}
.y1a1{bottom:247.890000px;}
.y23{bottom:251.745000px;}
.yd6{bottom:252.330000px;}
.yfb{bottom:252.690000px;}
.y4{bottom:256.830000px;}
.y153{bottom:258.206235px;}
.y8d{bottom:260.061703px;}
.y1a8{bottom:260.130000px;}
.y33{bottom:262.185000px;}
.y190{bottom:263.160000px;}
.ye2{bottom:263.550000px;}
.y19a{bottom:264.270000px;}
.y132{bottom:264.930000px;}
.y114{bottom:265.530000px;}
.y138{bottom:265.860000px;}
.y126{bottom:266.070000px;}
.yb6{bottom:266.115000px;}
.ye9{bottom:266.505000px;}
.y18a{bottom:266.835000px;}
.y177{bottom:267.045000px;}
.yc6{bottom:268.230000px;}
.y10d{bottom:270.720000px;}
.yf3{bottom:272.985000px;}
.yfa{bottom:273.030000px;}
.y184{bottom:273.210000px;}
.y106{bottom:273.240000px;}
.y1b2{bottom:274.530000px;}
.yce{bottom:276.480000px;}
.yd7{bottom:277.710000px;}
.y14a{bottom:282.090000px;}
.y144{bottom:282.495000px;}
.y7b{bottom:284.115000px;}
.y22{bottom:284.190000px;}
.y172{bottom:284.250000px;}
.y10c{bottom:286.380000px;}
.y11c{bottom:287.175000px;}
.ye8{bottom:288.435000px;}
.y137{bottom:289.770000px;}
.y8e{bottom:292.027274px;}
.yf9{bottom:293.370000px;}
.y1a9{bottom:293.475000px;}
.y13b{bottom:293.790000px;}
.ycd{bottom:298.905000px;}
.yf4{bottom:299.910000px;}
.y7a{bottom:300.630000px;}
.yb7{bottom:302.400000px;}
.y191{bottom:302.970000px;}
.yd8{bottom:303.045000px;}
.y185{bottom:303.090000px;}
.y107{bottom:303.120000px;}
.yc7{bottom:304.230000px;}
.y115{bottom:305.820000px;}
.y43{bottom:305.970000px;}
.y1b1{bottom:306.930000px;}
.y72{bottom:307.650000px;}
.y127{bottom:308.955000px;}
.y133{bottom:309.750000px;}
.ye7{bottom:310.395000px;}
.y32{bottom:310.710000px;}
.yf8{bottom:313.665000px;}
.ye{bottom:314.565000px;}
.y19b{bottom:316.110000px;}
.y21{bottom:316.230000px;}
.y96{bottom:320.125079px;}
.y91{bottom:320.600052px;}
.ycc{bottom:321.300000px;}
.y1ad{bottom:321.375000px;}
.y62{bottom:323.280000px;}
.y12c{bottom:325.260000px;}
.y2c{bottom:325.470000px;}
.y164{bottom:325.695000px;}
.y165{bottom:325.800000px;}
.ye3{bottom:326.850000px;}
.yd9{bottom:328.425000px;}
.y3{bottom:331.230000px;}
.y163{bottom:331.710000px;}
.y16d{bottom:332.640000px;}
.y143{bottom:334.695000px;}
.y95{bottom:338.178022px;}
.y42{bottom:338.370000px;}
.y90{bottom:338.652995px;}
.yb8{bottom:338.685000px;}
.y1b0{bottom:339.375000px;}
.yc8{bottom:340.200000px;}
.y11d{bottom:341.460000px;}
.y71{bottom:343.650000px;}
.y9b{bottom:343.830000px;}
.y82{bottom:344.730000px;}
.y16f{bottom:345.420000px;}
.y162{bottom:349.230000px;}
.y154{bottom:349.578259px;}
.y10b{bottom:350.820000px;}
.yfe{bottom:353.520000px;}
.y8f{bottom:356.704807px;}
.y2b{bottom:357.915000px;}
.y16c{bottom:358.200000px;}
.y94{bottom:359.622606px;}
.y15e{bottom:362.994792px;}
.y85{bottom:363.344003px;}
.y1a0{bottom:363.420000px;}
.y158{bottom:363.692762px;}
.y1b8{bottom:365.040000px;}
.yaf{bottom:367.380000px;}
.y19c{bottom:367.920000px;}
.y2f{bottom:368.025000px;}
.y13d{bottom:368.820000px;}
.y14e{bottom:369.105000px;}
.ybf{bottom:369.360000px;}
.y142{bottom:370.695000px;}
.y41{bottom:370.770000px;}
.y16e{bottom:370.980000px;}
.y70{bottom:379.695000px;}
.y195{bottom:382.500000px;}
.y16b{bottom:383.790000px;}
.yd{bottom:384.090000px;}
.y15d{bottom:385.879160px;}
.y157{bottom:386.577130px;}
.y79{bottom:387.075000px;}
.y2a{bottom:390.315000px;}
.y2{bottom:396.255000px;}
.y31{bottom:397.830000px;}
.y161{bottom:401.070000px;}
.y14d{bottom:401.505000px;}
.y40{bottom:403.200000px;}
.y25{bottom:407.370000px;}
.y15c{bottom:408.760942px;}
.y156{bottom:409.458912px;}
.y55{bottom:418.860000px;}
.y9d{bottom:419.085000px;}
.y29{bottom:422.715000px;}
.y9a{bottom:430.275000px;}
.y155{bottom:432.339401px;}
.y14c{bottom:433.905000px;}
.yc{bottom:434.490000px;}
.y167{bottom:434.910000px;}
.y15b{bottom:435.441490px;}
.y24{bottom:439.950000px;}
.y80{bottom:446.115000px;}
.y7f{bottom:446.145000px;}
.y160{bottom:452.955000px;}
.y17b{bottom:453.060000px;}
.y83{bottom:454.290000px;}
.y28{bottom:455.115000px;}
.y54{bottom:458.460000px;}
.y166{bottom:460.110000px;}
.y1{bottom:461.055000px;}
.y45{bottom:464.865000px;}
.y2d{bottom:469.950000px;}
.y2e{bottom:470.490000px;}
.y3f{bottom:471.315000px;}
.y78{bottom:473.475000px;}
.yb{bottom:484.890000px;}
.y27{bottom:487.515000px;}
.y37{bottom:489.165000px;}
.y30{bottom:491.295000px;}
.y44{bottom:493.665000px;}
.y15f{bottom:495.975000px;}
.y3e{bottom:496.515000px;}
.y53{bottom:505.980000px;}
.y99{bottom:510.195000px;}
.y5e{bottom:521.535000px;}
.y141{bottom:533.550000px;}
.yab{bottom:535.935000px;}
.y61{bottom:539.460000px;}
.y98{bottom:542.595000px;}
.y52{bottom:545.610000px;}
.y1b7{bottom:553.470000px;}
.y3d{bottom:568.650000px;}
.y5d{bottom:571.965000px;}
.y60{bottom:575.460000px;}
.y20{bottom:582.945000px;}
.y1c{bottom:598.935000px;}
.y13a{bottom:609.735000px;}
.y5f{bottom:611.460000px;}
.y3c{bottom:619.050000px;}
.ya{bottom:622.770000px;}
.y12b{bottom:625.860000px;}
.y1f{bottom:626.145000px;}
.y1b{bottom:642.135000px;}
.y51{bottom:651.960000px;}
.y7c{bottom:655.170000px;}
.y1af{bottom:667.290000px;}
.yaa{bottom:679.965000px;}
.y13c{bottom:683.355000px;}
.y1a{bottom:685.365000px;}
.y1e{bottom:690.195000px;}
.y9c{bottom:691.740000px;}
.yfd{bottom:697.890000px;}
.y139{bottom:699.120000px;}
.y3b{bottom:711.645000px;}
.y5c{bottom:723.315000px;}
.y1d{bottom:747.795000px;}
.y84{bottom:770.970000px;}
.y1ae{bottom:779.910000px;}
.h33{height:32.818137px;}
.h44{height:35.261367px;}
.h3a{height:39.471680px;}
.h3c{height:39.576937px;}
.h5f{height:40.500000px;}
.h60{height:40.608000px;}
.h2c{height:43.062215px;}
.h3b{height:43.681992px;}
.h42{height:43.787250px;}
.h61{height:44.820000px;}
.h36{height:44.936719px;}
.h35{height:45.045000px;}
.h23{height:45.219763px;}
.h22{height:45.310202px;}
.h2d{height:46.236578px;}
.h5b{height:48.060000px;}
.h3f{height:48.418594px;}
.h49{height:48.523852px;}
.h37{height:48.600000px;}
.h54{height:49.215948px;}
.h41{height:52.628906px;}
.h5d{height:52.734164px;}
.h4f{height:52.843938px;}
.h4{height:54.000000px;}
.h38{height:54.140625px;}
.h2e{height:59.524409px;}
.h2f{height:59.525915px;}
.h50{height:61.176943px;}
.h51{height:61.192453px;}
.h4a{height:61.575820px;}
.h1f{height:63.180000px;}
.h20{height:63.288000px;}
.h58{height:65.884219px;}
.h57{height:66.027445px;}
.h53{height:68.032366px;}
.h52{height:68.093645px;}
.h34{height:70.234788px;}
.h11{height:70.510781px;}
.h1e{height:71.820000px;}
.h4d{height:78.943359px;}
.h28{height:79.490742px;}
.hc{height:79.523438px;}
.hd{height:79.629469px;}
.h27{height:79.633969px;}
.h5{height:81.000000px;}
.h14{height:81.108000px;}
.h13{height:83.787539px;}
.h3{height:86.400000px;}
.h1d{height:87.192000px;}
.h55{height:90.087539px;}
.h1a{height:90.180000px;}
.h19{height:90.288000px;}
.h29{height:95.245664px;}
.h15{height:98.051133px;}
.h16{height:98.198578px;}
.h1c{height:98.820000px;}
.h56{height:100.631133px;}
.h1b{height:105.588000px;}
.h30{height:107.419922px;}
.h31{height:107.563148px;}
.ha{height:108.000000px;}
.h9{height:108.108000px;}
.h12{height:110.378531px;}
.he{height:110.583984px;}
.hf{height:110.731430px;}
.h2a{height:115.734375px;}
.h18{height:117.180000px;}
.h17{height:117.288000px;}
.h10{height:119.594180px;}
.h24{height:119.737406px;}
.h6{height:125.820000px;}
.h7{height:125.928000px;}
.h8{height:144.180000px;}
.hb{height:144.288000px;}
.h4c{height:157.680000px;}
.h1{height:162.000000px;}
.h2{height:162.108000px;}
.h5a{height:179.280000px;}
.h59{height:179.460000px;}
.h21{height:187.447264px;}
.h25{height:216.000000px;}
.h26{height:216.108000px;}
.h32{height:276.178235px;}
.h45{height:324.000000px;}
.h46{height:326.700000px;}
.h4b{height:330.660000px;}
.h48{height:331.020000px;}
.h3e{height:349.380000px;}
.h5e{height:352.080000px;}
.h40{height:365.400000px;}
.h39{height:371.520000px;}
.h43{height:372.960000px;}
.h47{height:379.260000px;}
.h5c{height:399.060000px;}
.h3d{height:399.420000px;}
.h2b{height:410.100997px;}
.h4e{height:489.489139px;}
.h0{height:810.000000px;}
.w2{width:244.892242px;}
.we{width:250.200000px;}
.w3{width:411.871071px;}
.wd{width:459.441171px;}
.w4{width:528.720000px;}
.wa{width:540.000000px;}
.wc{width:572.760000px;}
.wb{width:591.480000px;}
.w5{width:610.920000px;}
.w6{width:614.700000px;}
.w9{width:621.720000px;}
.w8{width:624.060000px;}
.w7{width:629.460000px;}
.wf{width:630.000000px;}
.w10{width:656.640000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5f{left:6.191979px;}
.xaf{left:8.172000px;}
.xb7{left:19.230000px;}
.x44{left:21.548566px;}
.x79{left:24.480000px;}
.x71{left:28.980000px;}
.x2e{left:31.427979px;}
.x83{left:33.195000px;}
.x2f{left:35.027979px;}
.x70{left:36.684000px;}
.x68{left:37.839971px;}
.x5d{left:40.107229px;}
.x37{left:42.659979px;}
.x6f{left:44.208000px;}
.x3c{left:46.187979px;}
.x8f{left:47.490000px;}
.x62{left:49.861328px;}
.x23{left:51.623979px;}
.x7c{left:53.025000px;}
.x14{left:54.395979px;}
.x5b{left:55.513418px;}
.x76{left:57.276000px;}
.x45{left:60.347640px;}
.x81{left:62.355000px;}
.x5a{left:64.336678px;}
.x87{left:66.855000px;}
.x18{left:68.759979px;}
.x5{left:71.603979px;}
.x30{left:73.367979px;}
.xa1{left:74.840616px;}
.x53{left:78.263979px;}
.x4{left:79.451979px;}
.xa0{left:83.656550px;}
.x6e{left:88.200000px;}
.xbc{left:91.799979px;}
.x77{left:95.070000px;}
.x47{left:99.084852px;}
.x59{left:101.865449px;}
.x2{left:106.271979px;}
.x7f{left:110.415000px;}
.x9b{left:111.743979px;}
.x90{left:115.950000px;}
.x25{left:117.719979px;}
.x16{left:121.355979px;}
.x75{left:123.810000px;}
.x57{left:127.475979px;}
.x7d{left:129.420000px;}
.xb1{left:131.115000px;}
.x15{left:132.155979px;}
.x3e{left:135.575979px;}
.xa3{left:137.261700px;}
.x1{left:142.991979px;}
.x9c{left:145.943979px;}
.x82{left:149.940000px;}
.x42{left:150.944979px;}
.x5e{left:152.424402px;}
.x49{left:157.531031px;}
.x9d{left:159.089979px;}
.x64{left:165.961811px;}
.x17{left:167.789979px;}
.x24{left:169.379979px;}
.x3d{left:173.189979px;}
.x46{left:176.559277px;}
.x86{left:180.000000px;}
.x91{left:184.470000px;}
.x8{left:185.789979px;}
.x39{left:190.904979px;}
.x67{left:193.821349px;}
.x7{left:197.489979px;}
.x48{left:215.363531px;}
.x6{left:224.819979px;}
.x78{left:226.620000px;}
.x7a{left:227.985000px;}
.x3{left:243.254979px;}
.x96{left:252.510000px;}
.x84{left:254.445000px;}
.xb3{left:255.674979px;}
.xb0{left:257.294979px;}
.x19{left:259.889979px;}
.x89{left:263.670000px;}
.x72{left:269.535000px;}
.x5c{left:271.256579px;}
.x7e{left:273.750000px;}
.x8e{left:278.430000px;}
.x6c{left:283.139979px;}
.xb5{left:291.420000px;}
.x8a{left:295.350000px;}
.x6b{left:300.959979px;}
.xa6{left:308.309979px;}
.x63{left:328.618631px;}
.x66{left:331.755673px;}
.x92{left:337.140000px;}
.x38{left:342.869979px;}
.xa2{left:345.789518px;}
.x52{left:366.584979px;}
.xb9{left:368.430000px;}
.x8b{left:373.680000px;}
.x80{left:376.200000px;}
.x54{left:379.004979px;}
.xba{left:392.730000px;}
.xb6{left:400.500000px;}
.x8c{left:401.580000px;}
.xac{left:412.229979px;}
.x93{left:421.305000px;}
.x73{left:432.075000px;}
.xab{left:437.114979px;}
.xad{left:438.194979px;}
.x43{left:439.234603px;}
.xb2{left:444.854979px;}
.x65{left:470.150591px;}
.x94{left:489.810000px;}
.xa7{left:525.884979px;}
.x4f{left:536.429979px;}
.x1d{left:541.154979px;}
.x9{left:542.234979px;}
.xa9{left:551.519979px;}
.x95{left:561.674979px;}
.xa4{left:575.174979px;}
.x21{left:577.334979px;}
.xbb{left:580.679979px;}
.xa5{left:607.034979px;}
.xae{left:610.769979px;}
.xb{left:613.259979px;}
.xa{left:620.024979px;}
.x55{left:622.874979px;}
.xb8{left:646.560000px;}
.x11{left:648.464979px;}
.x1e{left:655.529979px;}
.xc{left:670.859979px;}
.x85{left:682.019979px;}
.x56{left:689.549979px;}
.x1c{left:703.694979px;}
.x7b{left:704.880000px;}
.x74{left:709.560000px;}
.xb4{left:715.500000px;}
.x3a{left:716.729979px;}
.x8d{left:720.000000px;}
.x1a{left:736.949979px;}
.x4a{left:742.649979px;}
.x12{left:760.424979px;}
.x41{left:762.269979px;}
.x40{left:764.789979px;}
.x88{left:766.980000px;}
.x4e{left:768.314979px;}
.x50{left:771.479979px;}
.x4c{left:776.054979px;}
.x28{left:792.074979px;}
.x4d{left:793.514979px;}
.x13{left:795.164979px;}
.x3f{left:803.159979px;}
.x2a{left:814.934979px;}
.x9a{left:825.554979px;}
.x20{left:837.794979px;}
.x1f{left:839.414979px;}
.x2b{left:843.374979px;}
.x9e{left:849.749979px;}
.x4b{left:852.809979px;}
.x69{left:854.024979px;}
.x51{left:864.434979px;}
.x61{left:866.385000px;}
.x29{left:879.734979px;}
.x60{left:882.929979px;}
.x9f{left:901.439979px;}
.x34{left:945.104979px;}
.x33{left:954.284979px;}
.xd{left:961.919979px;}
.x35{left:971.024979px;}
.x32{left:974.624979px;}
.x31{left:986.504979px;}
.x97{left:998.609979px;}
.x58{left:1015.770000px;}
.xf{left:1031.939979px;}
.x1b{left:1033.994979px;}
.xe{left:1034.999979px;}
.x26{left:1037.009979px;}
.x10{left:1049.219979px;}
.x36{left:1050.944979px;}
.x27{left:1081.154979px;}
.x6a{left:1119.929979px;}
.x98{left:1190.804979px;}
.x22{left:1211.294979px;}
.x99{left:1212.509979px;}
.xaa{left:1239.119979px;}
.x2c{left:1264.754979px;}
.xa8{left:1273.709979px;}
.x2d{left:1294.274979px;}
.x3b{left:1361.084979px;}
.x6d{left:1384.739979px;}
@media print{
.v10{vertical-align:-38.016000pt;}
.v6{vertical-align:-36.480000pt;}
.v8{vertical-align:-35.200000pt;}
.v3{vertical-align:-31.360000pt;}
.v2{vertical-align:-28.800000pt;}
.v5{vertical-align:-26.240000pt;}
.v9{vertical-align:-23.680000pt;}
.vb{vertical-align:-18.176000pt;}
.vd{vertical-align:-17.280000pt;}
.v15{vertical-align:-16.268732pt;}
.vc{vertical-align:-15.177247pt;}
.ve{vertical-align:-14.234566pt;}
.v13{vertical-align:-12.800005pt;}
.v16{vertical-align:-4.960000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:2.293333pt;}
.va{vertical-align:5.504000pt;}
.v11{vertical-align:9.216000pt;}
.v12{vertical-align:14.079995pt;}
.v17{vertical-align:17.280000pt;}
.v14{vertical-align:24.540969pt;}
.v1{vertical-align:28.800000pt;}
.v4{vertical-align:31.360000pt;}
.vf{vertical-align:33.259246pt;}
.v7{vertical-align:35.200000pt;}
.ls16{letter-spacing:-10.613333pt;}
.ls2{letter-spacing:-9.493333pt;}
.ls32{letter-spacing:-0.468267pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.224000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.189257pt;}
.ls7{letter-spacing:-0.185067pt;}
.ls37{letter-spacing:-0.173867pt;}
.ls8{letter-spacing:-0.168533pt;}
.ls1c{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.154667pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.097067pt;}
.ls2a{letter-spacing:-0.094933pt;}
.ls2e{letter-spacing:-0.089067pt;}
.ls3c{letter-spacing:-0.082263pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.049280pt;}
.ls24{letter-spacing:-0.045067pt;}
.ls4b{letter-spacing:-0.032000pt;}
.ls1d{letter-spacing:-0.026240pt;}
.ls33{letter-spacing:-0.024960pt;}
.lsf{letter-spacing:-0.017280pt;}
.ls45{letter-spacing:-0.001920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.024425pt;}
.ls5{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.034667pt;}
.ls4{letter-spacing:0.037227pt;}
.lsb{letter-spacing:0.045056pt;}
.ls20{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.088463pt;}
.ls9{letter-spacing:0.108800pt;}
.ls15{letter-spacing:0.109980pt;}
.ls1f{letter-spacing:0.113394pt;}
.ls27{letter-spacing:0.121067pt;}
.ls4c{letter-spacing:0.125333pt;}
.ls18{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.129598pt;}
.ls43{letter-spacing:0.133867pt;}
.ls36{letter-spacing:0.160000pt;}
.ls42{letter-spacing:0.163200pt;}
.ls23{letter-spacing:0.172800pt;}
.ls2f{letter-spacing:0.184960pt;}
.ls40{letter-spacing:0.185600pt;}
.ls22{letter-spacing:0.188416pt;}
.ls41{letter-spacing:0.190933pt;}
.ls10{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.219960pt;}
.lsc{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.308480pt;}
.ls3f{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.362667pt;}
.ls48{letter-spacing:0.384000pt;}
.ls49{letter-spacing:0.394667pt;}
.ls2b{letter-spacing:13.352961pt;}
.ls25{letter-spacing:15.774720pt;}
.ls26{letter-spacing:15.838721pt;}
.ls30{letter-spacing:20.244481pt;}
.ls44{letter-spacing:26.112000pt;}
.lsa{letter-spacing:32.480256pt;}
.lsd{letter-spacing:32.593920pt;}
.ls3b{letter-spacing:35.200000pt;}
.ls3a{letter-spacing:35.488000pt;}
.ls39{letter-spacing:63.400960pt;}
.ls35{letter-spacing:99.094016pt;}
.ls34{letter-spacing:99.152640pt;}
.ls3e{letter-spacing:137.997227pt;}
.ls3d{letter-spacing:138.263893pt;}
.ls2d{letter-spacing:274.005333pt;}
.ls2c{letter-spacing:274.112000pt;}
.ls47{letter-spacing:364.906667pt;}
.lse{letter-spacing:1135.200000pt;}
.wsc{word-spacing:-106.880000pt;}
.ws7{word-spacing:-96.000000pt;}
.ws43{word-spacing:-74.880000pt;}
.ws1b{word-spacing:-71.424000pt;}
.ws1a{word-spacing:-71.296000pt;}
.ws1c{word-spacing:-71.168000pt;}
.ws30{word-spacing:-64.000000pt;}
.ws4f{word-spacing:-56.138752pt;}
.ws1{word-spacing:-56.064000pt;}
.ws3d{word-spacing:-53.376000pt;}
.ws32{word-spacing:-53.120000pt;}
.ws4{word-spacing:-47.504640pt;}
.ws1d{word-spacing:-41.564160pt;}
.wse{word-spacing:-41.490944pt;}
.ws19{word-spacing:-41.455360pt;}
.ws12{word-spacing:-41.438080pt;}
.ws5{word-spacing:-35.619584pt;}
.ws3{word-spacing:-35.584000pt;}
.ws14{word-spacing:-32.786944pt;}
.ws16{word-spacing:-32.594944pt;}
.ws15{word-spacing:-32.440277pt;}
.ws3e{word-spacing:-29.872640pt;}
.ws3f{word-spacing:-29.574357pt;}
.ws1f{word-spacing:-28.800000pt;}
.ws17{word-spacing:-26.723584pt;}
.ws10{word-spacing:-26.688000pt;}
.ws6{word-spacing:-23.698944pt;}
.ws13{word-spacing:-21.741824pt;}
.ws8{word-spacing:-21.696000pt;}
.wsd{word-spacing:-21.280000pt;}
.ws18{word-spacing:-20.816640pt;}
.ws3a{word-spacing:-20.791680pt;}
.ws42{word-spacing:-19.428053pt;}
.ws11{word-spacing:-19.266048pt;}
.ws0{word-spacing:-17.792000pt;}
.wsf{word-spacing:-16.922880pt;}
.ws2c{word-spacing:-16.368640pt;}
.ws49{word-spacing:-16.154880pt;}
.ws1e{word-spacing:-16.028800pt;}
.ws48{word-spacing:-15.832960pt;}
.ws25{word-spacing:-14.975744pt;}
.ws26{word-spacing:-14.767360pt;}
.ws2d{word-spacing:-14.536427pt;}
.ws2b{word-spacing:-13.344000pt;}
.ws33{word-spacing:-11.920640pt;}
.ws41{word-spacing:-11.348291pt;}
.ws21{word-spacing:-11.094669pt;}
.ws23{word-spacing:-4.541995pt;}
.ws22{word-spacing:-2.216948pt;}
.ws24{word-spacing:-2.172661pt;}
.ws44{word-spacing:-0.718720pt;}
.wsa{word-spacing:-0.672000pt;}
.ws50{word-spacing:-0.661333pt;}
.ws28{word-spacing:-0.512000pt;}
.ws52{word-spacing:-0.316992pt;}
.ws51{word-spacing:-0.224000pt;}
.ws3c{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.106880pt;}
.ws9{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.544000pt;}
.ws20{word-spacing:133.013740pt;}
.ws39{word-spacing:137.170816pt;}
.ws29{word-spacing:140.853333pt;}
.ws2a{word-spacing:142.400000pt;}
.ws40{word-spacing:155.730747pt;}
.ws38{word-spacing:179.584000pt;}
.ws37{word-spacing:193.568000pt;}
.ws35{word-spacing:220.853333pt;}
.ws4a{word-spacing:220.960000pt;}
.ws34{word-spacing:233.504000pt;}
.ws47{word-spacing:246.016000pt;}
.ws4b{word-spacing:246.784000pt;}
.ws36{word-spacing:246.837333pt;}
.ws31{word-spacing:313.324800pt;}
.ws4e{word-spacing:315.610667pt;}
.ws4c{word-spacing:319.530667pt;}
.ws4d{word-spacing:326.656000pt;}
.ws2f{word-spacing:406.570667pt;}
.ws2e{word-spacing:413.605333pt;}
.ws45{word-spacing:422.912384pt;}
.ws46{word-spacing:447.232384pt;}
.ws27{word-spacing:1467.835307pt;}
._18{margin-left:-2646.975829pt;}
._15{margin-left:-180.342862pt;}
._17{margin-left:-38.368000pt;}
._27{margin-left:-30.460032pt;}
._13{margin-left:-22.929920pt;}
._1{margin-left:-21.578667pt;}
._3{margin-left:-20.557696pt;}
._5{margin-left:-19.200000pt;}
._28{margin-left:-18.284160pt;}
._12{margin-left:-17.118336pt;}
._0{margin-left:-15.552000pt;}
._b{margin-left:-13.938560pt;}
._26{margin-left:-12.989013pt;}
._a{margin-left:-11.924224pt;}
._6{margin-left:-10.944000pt;}
._7{margin-left:-9.194667pt;}
._16{margin-left:-8.122880pt;}
._4{margin-left:-6.916608pt;}
._9{margin-left:-5.220309pt;}
._e{margin-left:-4.145152pt;}
._d{margin-left:-3.171712pt;}
._11{margin-left:-2.049792pt;}
._2{margin-left:-1.152768pt;}
._8{width:0.960000pt;}
._19{width:1.938980pt;}
._c{width:2.848427pt;}
._14{width:3.967531pt;}
._1b{width:4.988095pt;}
._2c{width:19.800192pt;}
._10{width:23.029376pt;}
._f{width:25.184768pt;}
._24{width:28.014379pt;}
._29{width:34.688000pt;}
._1e{width:134.400000pt;}
._1d{width:144.954667pt;}
._1a{width:153.177716pt;}
._2a{width:194.177280pt;}
._23{width:220.192000pt;}
._22{width:246.986667pt;}
._21{width:339.889579pt;}
._2e{width:346.506667pt;}
._20{width:353.169579pt;}
._1c{width:419.010859pt;}
._1f{width:433.989333pt;}
._2d{width:449.856000pt;}
._25{width:611.088000pt;}
._2b{width:2214.833707pt;}
.fs30{font-size:26.880000pt;}
.fs27{font-size:35.717098pt;}
.fs32{font-size:35.840000pt;}
.fs2f{font-size:39.040000pt;}
.fs29{font-size:39.908881pt;}
.fs39{font-size:40.821190pt;}
.fs31{font-size:42.880000pt;}
.fs1e{font-size:45.091819pt;}
.fs22{font-size:47.360000pt;}
.fs2c{font-size:48.000000pt;}
.fs2d{font-size:48.128000pt;}
.fs1a{font-size:49.920000pt;}
.fs23{font-size:52.366313pt;}
.fs2b{font-size:53.120000pt;}
.fs2a{font-size:53.248000pt;}
.fs1d{font-size:54.990024pt;}
.fs1c{font-size:55.100004pt;}
.fs24{font-size:56.226534pt;}
.fs3d{font-size:56.960000pt;}
.fs2e{font-size:58.880000pt;}
.fs33{font-size:59.008000pt;}
.fs38{font-size:59.849632pt;}
.fs3{font-size:64.000000pt;}
.fs28{font-size:64.128000pt;}
.fs37{font-size:64.261492pt;}
.fsd{font-size:71.040000pt;}
.fs21{font-size:71.168000pt;}
.fs25{font-size:72.385357pt;}
.fs26{font-size:72.387189pt;}
.fs10{font-size:74.880000pt;}
.fs1b{font-size:75.008000pt;}
.fs17{font-size:78.208000pt;}
.fs3b{font-size:82.731558pt;}
.fs3a{font-size:82.806078pt;}
.fse{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs35{font-size:97.920000pt;}
.fs36{font-size:98.048000pt;}
.fs14{font-size:99.840000pt;}
.fsc{font-size:106.880000pt;}
.fs13{font-size:107.008000pt;}
.fs19{font-size:108.160000pt;}
.fs15{font-size:108.288000pt;}
.fs18{font-size:117.120000pt;}
.fs16{font-size:117.248000pt;}
.fs3c{font-size:117.760000pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fsf{font-size:133.248000pt;}
.fs12{font-size:138.880000pt;}
.fs11{font-size:139.008000pt;}
.fs5{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fs7{font-size:170.880000pt;}
.fsa{font-size:171.008000pt;}
.fs34{font-size:186.880000pt;}
.fs0{font-size:192.000000pt;}
.fs1{font-size:192.128000pt;}
.fs1f{font-size:256.000000pt;}
.fs20{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:3.200000pt;}
.yde{bottom:3.520000pt;}
.y136{bottom:4.733333pt;}
.ybb{bottom:7.386667pt;}
.y19f{bottom:8.226667pt;}
.ycb{bottom:9.026667pt;}
.ya7{bottom:9.041652pt;}
.ya9{bottom:9.041663pt;}
.y6e{bottom:10.545594pt;}
.y129{bottom:11.520000pt;}
.y97{bottom:13.408000pt;}
.y56{bottom:15.040000pt;}
.y5a{bottom:15.200000pt;}
.y58{bottom:15.968000pt;}
.yf7{bottom:16.928000pt;}
.ydd{bottom:17.696000pt;}
.y120{bottom:18.853333pt;}
.ya5{bottom:19.018863pt;}
.y1ac{bottom:19.613333pt;}
.y194{bottom:19.872000pt;}
.y188{bottom:19.936000pt;}
.y10a{bottom:19.973333pt;}
.y4a{bottom:20.064000pt;}
.ya4{bottom:20.681262pt;}
.ya6{bottom:20.681282pt;}
.ya8{bottom:20.681292pt;}
.y15a{bottom:21.435433pt;}
.y77{bottom:21.600000pt;}
.y93{bottom:21.834399pt;}
.y134{bottom:22.013333pt;}
.y19{bottom:25.344000pt;}
.y50{bottom:26.208000pt;}
.y128{bottom:28.413333pt;}
.ye6{bottom:28.512000pt;}
.yb9{bottom:28.706667pt;}
.y6d{bottom:30.507085pt;}
.y59{bottom:32.032000pt;}
.yc9{bottom:32.186667pt;}
.y17c{bottom:32.800000pt;}
.y189{bottom:34.880000pt;}
.y12d{bottom:36.320000pt;}
.y19d{bottom:36.346667pt;}
.yf5{bottom:36.896000pt;}
.ydb{bottom:38.368000pt;}
.y1aa{bottom:38.653333pt;}
.y15{bottom:41.472000pt;}
.y3a{bottom:41.792000pt;}
.y192{bottom:42.560000pt;}
.y186{bottom:42.624000pt;}
.y108{bottom:42.653333pt;}
.yb0{bottom:43.013333pt;}
.y122{bottom:45.893333pt;}
.yc0{bottom:46.493333pt;}
.y86{bottom:47.592332pt;}
.y11e{bottom:47.973333pt;}
.y196{bottom:50.653333pt;}
.yeb{bottom:51.168000pt;}
.ye4{bottom:51.200000pt;}
.y150{bottom:51.290165pt;}
.yda{bottom:52.160000pt;}
.y11{bottom:52.384000pt;}
.ybe{bottom:52.453333pt;}
.yad{bottom:52.800000pt;}
.y1a2{bottom:53.533333pt;}
.y76{bottom:53.760000pt;}
.y9{bottom:55.904000pt;}
.y18b{bottom:56.864000pt;}
.y17d{bottom:56.928000pt;}
.yff{bottom:56.960000pt;}
.y4f{bottom:58.208000pt;}
.y87{bottom:60.622592pt;}
.y49{bottom:61.696000pt;}
.y118{bottom:62.266667pt;}
.y18{bottom:63.776000pt;}
.ydf{bottom:65.504000pt;}
.ycf{bottom:66.464000pt;}
.y151{bottom:67.078648pt;}
.y39{bottom:67.392000pt;}
.yac{bottom:68.832000pt;}
.y69{bottom:70.347360pt;}
.y67{bottom:70.347368pt;}
.y65{bottom:70.347371pt;}
.y81{bottom:70.432000pt;}
.ybd{bottom:70.973333pt;}
.y5b{bottom:70.976000pt;}
.y173{bottom:73.853333pt;}
.y171{bottom:73.946667pt;}
.yec{bottom:75.104000pt;}
.yb1{bottom:75.266667pt;}
.y12e{bottom:76.160000pt;}
.y149{bottom:76.640000pt;}
.yc1{bottom:78.493333pt;}
.y14{bottom:79.872000pt;}
.y6f{bottom:80.355545pt;}
.y63{bottom:83.072000pt;}
.y1a3{bottom:83.173333pt;}
.y17e{bottom:83.488000pt;}
.y100{bottom:83.520000pt;}
.y123{bottom:84.000000pt;}
.y12a{bottom:84.346667pt;}
.y135{bottom:85.733333pt;}
.y75{bottom:85.792000pt;}
.y175{bottom:86.560000pt;}
.y1b6{bottom:87.744000pt;}
.yd0{bottom:88.992000pt;}
.y88{bottom:89.036434pt;}
.ybc{bottom:89.506667pt;}
.y4e{bottom:90.208000pt;}
.y10{bottom:90.816000pt;}
.y7e{bottom:91.648000pt;}
.y8{bottom:91.904000pt;}
.y18c{bottom:92.256000pt;}
.y110{bottom:92.773333pt;}
.y38{bottom:92.992000pt;}
.y197{bottom:96.706667pt;}
.yed{bottom:99.040000pt;}
.y17{bottom:102.176000pt;}
.y48{bottom:103.296000pt;}
.yb2{bottom:107.520000pt;}
.y148{bottom:108.672000pt;}
.y17f{bottom:110.053333pt;}
.y101{bottom:110.080000pt;}
.y193{bottom:110.106667pt;}
.y187{bottom:110.173333pt;}
.y109{bottom:110.213333pt;}
.y6c{bottom:110.270117pt;}
.yc2{bottom:110.466667pt;}
.y119{bottom:110.533333pt;}
.y116{bottom:111.426667pt;}
.yd1{bottom:111.552000pt;}
.y1a4{bottom:112.773333pt;}
.y92{bottom:113.590056pt;}
.y12f{bottom:116.000000pt;}
.y1ab{bottom:116.026667pt;}
.y89{bottom:117.450276pt;}
.y74{bottom:117.632000pt;}
.y10f{bottom:119.933333pt;}
.y7d{bottom:120.448000pt;}
.ye0{bottom:121.760000pt;}
.y124{bottom:122.146667pt;}
.y4d{bottom:122.208000pt;}
.yee{bottom:122.976000pt;}
.ye5{bottom:125.024000pt;}
.y36{bottom:125.216000pt;}
.y26{bottom:126.080000pt;}
.y7{bottom:126.304000pt;}
.y16a{bottom:126.528000pt;}
.ydc{bottom:127.232000pt;}
.y18d{bottom:127.680000pt;}
.yba{bottom:128.386667pt;}
.y111{bottom:128.573333pt;}
.y159{bottom:128.647067pt;}
.y6b{bottom:130.033299pt;}
.yca{bottom:130.813333pt;}
.yf6{bottom:133.120000pt;}
.y11f{bottom:133.600000pt;}
.y10e{bottom:133.853333pt;}
.yd2{bottom:134.106667pt;}
.y19e{bottom:135.866667pt;}
.y180{bottom:136.613333pt;}
.y102{bottom:136.640000pt;}
.y57{bottom:136.826667pt;}
.y168{bottom:139.586667pt;}
.yb3{bottom:139.773333pt;}
.y147{bottom:140.666667pt;}
.y1a5{bottom:142.400000pt;}
.yc3{bottom:142.466667pt;}
.y198{bottom:142.786667pt;}
.y140{bottom:144.640000pt;}
.y47{bottom:144.893333pt;}
.y8a{bottom:145.924434pt;}
.yef{bottom:146.906667pt;}
.y13{bottom:147.173333pt;}
.y152{bottom:148.295927pt;}
.y169{bottom:148.773333pt;}
.y73{bottom:149.146667pt;}
.y68{bottom:149.749517pt;}
.y6a{bottom:149.749523pt;}
.y66{bottom:149.749525pt;}
.y14f{bottom:151.117964pt;}
.y17a{bottom:154.173333pt;}
.y4c{bottom:154.213333pt;}
.y9f{bottom:154.864745pt;}
.ya3{bottom:155.440463pt;}
.y130{bottom:155.813333pt;}
.ya1{bottom:156.525473pt;}
.yd3{bottom:156.640000pt;}
.y1b5{bottom:157.626667pt;}
.y11a{bottom:158.786667pt;}
.yae{bottom:160.186667pt;}
.y125{bottom:160.253333pt;}
.y176{bottom:160.413333pt;}
.y35{bottom:162.013333pt;}
.y6{bottom:162.333333pt;}
.y18e{bottom:163.106667pt;}
.y181{bottom:163.173333pt;}
.y103{bottom:163.200000pt;}
.y112{bottom:164.386667pt;}
.y9e{bottom:166.517660pt;}
.ya2{bottom:167.093378pt;}
.yf{bottom:167.360000pt;}
.ya0{bottom:168.178388pt;}
.yf0{bottom:170.853333pt;}
.y1a6{bottom:172.000000pt;}
.yb4{bottom:172.026667pt;}
.y13f{bottom:173.440000pt;}
.y8b{bottom:174.338275pt;}
.yc4{bottom:174.466667pt;}
.ye1{bottom:178.013333pt;}
.y170{bottom:178.720000pt;}
.yd4{bottom:179.200000pt;}
.y179{bottom:186.173333pt;}
.y4b{bottom:186.240000pt;}
.y1b4{bottom:186.426667pt;}
.y46{bottom:186.533333pt;}
.y146{bottom:187.066667pt;}
.y34{bottom:187.613333pt;}
.y199{bottom:188.866667pt;}
.y182{bottom:189.733333pt;}
.y104{bottom:189.760000pt;}
.y117{bottom:191.520000pt;}
.y16{bottom:192.706667pt;}
.y5{bottom:193.733333pt;}
.yf1{bottom:194.786667pt;}
.y131{bottom:195.653333pt;}
.y12{bottom:198.400000pt;}
.y18f{bottom:198.493333pt;}
.y14b{bottom:199.520000pt;}
.y113{bottom:200.226667pt;}
.y1a7{bottom:201.626667pt;}
.yd5{bottom:201.733333pt;}
.y13e{bottom:202.240000pt;}
.y8c{bottom:202.752117pt;}
.yb5{bottom:204.293333pt;}
.y178{bottom:205.373333pt;}
.yc5{bottom:206.426667pt;}
.yfc{bottom:206.533333pt;}
.y64{bottom:206.665793pt;}
.y174{bottom:206.973333pt;}
.y11b{bottom:207.040000pt;}
.y121{bottom:212.960000pt;}
.y1b3{bottom:215.226667pt;}
.y183{bottom:216.293333pt;}
.y105{bottom:216.320000pt;}
.yf2{bottom:218.720000pt;}
.y145{bottom:219.066667pt;}
.y1a1{bottom:220.346667pt;}
.y23{bottom:223.773333pt;}
.yd6{bottom:224.293333pt;}
.yfb{bottom:224.613333pt;}
.y4{bottom:228.293333pt;}
.y153{bottom:229.516653pt;}
.y8d{bottom:231.165958pt;}
.y1a8{bottom:231.226667pt;}
.y33{bottom:233.053333pt;}
.y190{bottom:233.920000pt;}
.ye2{bottom:234.266667pt;}
.y19a{bottom:234.906667pt;}
.y132{bottom:235.493333pt;}
.y114{bottom:236.026667pt;}
.y138{bottom:236.320000pt;}
.y126{bottom:236.506667pt;}
.yb6{bottom:236.546667pt;}
.ye9{bottom:236.893333pt;}
.y18a{bottom:237.186667pt;}
.y177{bottom:237.373333pt;}
.yc6{bottom:238.426667pt;}
.y10d{bottom:240.640000pt;}
.yf3{bottom:242.653333pt;}
.yfa{bottom:242.693333pt;}
.y184{bottom:242.853333pt;}
.y106{bottom:242.880000pt;}
.y1b2{bottom:244.026667pt;}
.yce{bottom:245.760000pt;}
.yd7{bottom:246.853333pt;}
.y14a{bottom:250.746667pt;}
.y144{bottom:251.106667pt;}
.y7b{bottom:252.546667pt;}
.y22{bottom:252.613333pt;}
.y172{bottom:252.666667pt;}
.y10c{bottom:254.560000pt;}
.y11c{bottom:255.266667pt;}
.ye8{bottom:256.386667pt;}
.y137{bottom:257.573333pt;}
.y8e{bottom:259.579800pt;}
.yf9{bottom:260.773333pt;}
.y1a9{bottom:260.866667pt;}
.y13b{bottom:261.146667pt;}
.ycd{bottom:265.693333pt;}
.yf4{bottom:266.586667pt;}
.y7a{bottom:267.226667pt;}
.yb7{bottom:268.800000pt;}
.y191{bottom:269.306667pt;}
.yd8{bottom:269.373333pt;}
.y185{bottom:269.413333pt;}
.y107{bottom:269.440000pt;}
.yc7{bottom:270.426667pt;}
.y115{bottom:271.840000pt;}
.y43{bottom:271.973333pt;}
.y1b1{bottom:272.826667pt;}
.y72{bottom:273.466667pt;}
.y127{bottom:274.626667pt;}
.y133{bottom:275.333333pt;}
.ye7{bottom:275.906667pt;}
.y32{bottom:276.186667pt;}
.yf8{bottom:278.813333pt;}
.ye{bottom:279.613333pt;}
.y19b{bottom:280.986667pt;}
.y21{bottom:281.093333pt;}
.y96{bottom:284.555626pt;}
.y91{bottom:284.977824pt;}
.ycc{bottom:285.600000pt;}
.y1ad{bottom:285.666667pt;}
.y62{bottom:287.360000pt;}
.y12c{bottom:289.120000pt;}
.y2c{bottom:289.306667pt;}
.y164{bottom:289.506667pt;}
.y165{bottom:289.600000pt;}
.ye3{bottom:290.533333pt;}
.yd9{bottom:291.933333pt;}
.y3{bottom:294.426667pt;}
.y163{bottom:294.853333pt;}
.y16d{bottom:295.680000pt;}
.y143{bottom:297.506667pt;}
.y95{bottom:300.602686pt;}
.y42{bottom:300.773333pt;}
.y90{bottom:301.024884pt;}
.yb8{bottom:301.053333pt;}
.y1b0{bottom:301.666667pt;}
.yc8{bottom:302.400000pt;}
.y11d{bottom:303.520000pt;}
.y71{bottom:305.466667pt;}
.y9b{bottom:305.626667pt;}
.y82{bottom:306.426667pt;}
.y16f{bottom:307.040000pt;}
.y162{bottom:310.426667pt;}
.y154{bottom:310.736230pt;}
.y10b{bottom:311.840000pt;}
.yfe{bottom:314.240000pt;}
.y8f{bottom:317.070939pt;}
.y2b{bottom:318.146667pt;}
.y16c{bottom:318.400000pt;}
.y94{bottom:319.664539pt;}
.y15e{bottom:322.662038pt;}
.y85{bottom:322.972447pt;}
.y1a0{bottom:323.040000pt;}
.y158{bottom:323.282455pt;}
.y1b8{bottom:324.480000pt;}
.yaf{bottom:326.560000pt;}
.y19c{bottom:327.040000pt;}
.y2f{bottom:327.133333pt;}
.y13d{bottom:327.840000pt;}
.y14e{bottom:328.093333pt;}
.ybf{bottom:328.320000pt;}
.y142{bottom:329.506667pt;}
.y41{bottom:329.573333pt;}
.y16e{bottom:329.760000pt;}
.y70{bottom:337.506667pt;}
.y195{bottom:340.000000pt;}
.y16b{bottom:341.146667pt;}
.yd{bottom:341.413333pt;}
.y15d{bottom:343.003697pt;}
.y157{bottom:343.624115pt;}
.y79{bottom:344.066667pt;}
.y2a{bottom:346.946667pt;}
.y2{bottom:352.226667pt;}
.y31{bottom:353.626667pt;}
.y161{bottom:356.506667pt;}
.y14d{bottom:356.893333pt;}
.y40{bottom:358.400000pt;}
.y25{bottom:362.106667pt;}
.y15c{bottom:363.343059pt;}
.y156{bottom:363.963477pt;}
.y55{bottom:372.320000pt;}
.y9d{bottom:372.520000pt;}
.y29{bottom:375.746667pt;}
.y9a{bottom:382.466667pt;}
.y155{bottom:384.301690pt;}
.y14c{bottom:385.693333pt;}
.yc{bottom:386.213333pt;}
.y167{bottom:386.586667pt;}
.y15b{bottom:387.059102pt;}
.y24{bottom:391.066667pt;}
.y80{bottom:396.546667pt;}
.y7f{bottom:396.573333pt;}
.y160{bottom:402.626667pt;}
.y17b{bottom:402.720000pt;}
.y83{bottom:403.813333pt;}
.y28{bottom:404.546667pt;}
.y54{bottom:407.520000pt;}
.y166{bottom:408.986667pt;}
.y1{bottom:409.826667pt;}
.y45{bottom:413.213333pt;}
.y2d{bottom:417.733333pt;}
.y2e{bottom:418.213333pt;}
.y3f{bottom:418.946667pt;}
.y78{bottom:420.866667pt;}
.yb{bottom:431.013333pt;}
.y27{bottom:433.346667pt;}
.y37{bottom:434.813333pt;}
.y30{bottom:436.706667pt;}
.y44{bottom:438.813333pt;}
.y15f{bottom:440.866667pt;}
.y3e{bottom:441.346667pt;}
.y53{bottom:449.760000pt;}
.y99{bottom:453.506667pt;}
.y5e{bottom:463.586667pt;}
.y141{bottom:474.266667pt;}
.yab{bottom:476.386667pt;}
.y61{bottom:479.520000pt;}
.y98{bottom:482.306667pt;}
.y52{bottom:484.986667pt;}
.y1b7{bottom:491.973333pt;}
.y3d{bottom:505.466667pt;}
.y5d{bottom:508.413333pt;}
.y60{bottom:511.520000pt;}
.y20{bottom:518.173333pt;}
.y1c{bottom:532.386667pt;}
.y13a{bottom:541.986667pt;}
.y5f{bottom:543.520000pt;}
.y3c{bottom:550.266667pt;}
.ya{bottom:553.573333pt;}
.y12b{bottom:556.320000pt;}
.y1f{bottom:556.573333pt;}
.y1b{bottom:570.786667pt;}
.y51{bottom:579.520000pt;}
.y7c{bottom:582.373333pt;}
.y1af{bottom:593.146667pt;}
.yaa{bottom:604.413333pt;}
.y13c{bottom:607.426667pt;}
.y1a{bottom:609.213333pt;}
.y1e{bottom:613.506667pt;}
.y9c{bottom:614.880000pt;}
.yfd{bottom:620.346667pt;}
.y139{bottom:621.440000pt;}
.y3b{bottom:632.573333pt;}
.y5c{bottom:642.946667pt;}
.y1d{bottom:664.706667pt;}
.y84{bottom:685.306667pt;}
.y1ae{bottom:693.253333pt;}
.h33{height:29.171677pt;}
.h44{height:31.343437pt;}
.h3a{height:35.085938pt;}
.h3c{height:35.179500pt;}
.h5f{height:36.000000pt;}
.h60{height:36.096000pt;}
.h2c{height:38.277525pt;}
.h3b{height:38.828438pt;}
.h42{height:38.922000pt;}
.h61{height:39.840000pt;}
.h36{height:39.943750pt;}
.h35{height:40.040000pt;}
.h23{height:40.195344pt;}
.h22{height:40.275735pt;}
.h2d{height:41.099180pt;}
.h5b{height:42.720000pt;}
.h3f{height:43.038750pt;}
.h49{height:43.132312pt;}
.h37{height:43.200000pt;}
.h54{height:43.747509pt;}
.h41{height:46.781250pt;}
.h5d{height:46.874812pt;}
.h4f{height:46.972389pt;}
.h4{height:48.000000pt;}
.h38{height:48.125000pt;}
.h2e{height:52.910586pt;}
.h2f{height:52.911925pt;}
.h50{height:54.379505pt;}
.h51{height:54.393292pt;}
.h4a{height:54.734063pt;}
.h1f{height:56.160000pt;}
.h20{height:56.256000pt;}
.h58{height:58.563750pt;}
.h57{height:58.691063pt;}
.h53{height:60.473214pt;}
.h52{height:60.527685pt;}
.h34{height:62.430923pt;}
.h11{height:62.676250pt;}
.h1e{height:63.840000pt;}
.h4d{height:70.171875pt;}
.h28{height:70.658438pt;}
.hc{height:70.687500pt;}
.hd{height:70.781750pt;}
.h27{height:70.785750pt;}
.h5{height:72.000000pt;}
.h14{height:72.096000pt;}
.h13{height:74.477812pt;}
.h3{height:76.800000pt;}
.h1d{height:77.504000pt;}
.h55{height:80.077812pt;}
.h1a{height:80.160000pt;}
.h19{height:80.256000pt;}
.h29{height:84.662813pt;}
.h15{height:87.156562pt;}
.h16{height:87.287625pt;}
.h1c{height:87.840000pt;}
.h56{height:89.449896pt;}
.h1b{height:93.856000pt;}
.h30{height:95.484375pt;}
.h31{height:95.611688pt;}
.ha{height:96.000000pt;}
.h9{height:96.096000pt;}
.h12{height:98.114250pt;}
.he{height:98.296875pt;}
.hf{height:98.427937pt;}
.h2a{height:102.875000pt;}
.h18{height:104.160000pt;}
.h17{height:104.256000pt;}
.h10{height:106.305937pt;}
.h24{height:106.433250pt;}
.h6{height:111.840000pt;}
.h7{height:111.936000pt;}
.h8{height:128.160000pt;}
.hb{height:128.256000pt;}
.h4c{height:140.160000pt;}
.h1{height:144.000000pt;}
.h2{height:144.096000pt;}
.h5a{height:159.360000pt;}
.h59{height:159.520000pt;}
.h21{height:166.619790pt;}
.h25{height:192.000000pt;}
.h26{height:192.096000pt;}
.h32{height:245.491765pt;}
.h45{height:288.000000pt;}
.h46{height:290.400000pt;}
.h4b{height:293.920000pt;}
.h48{height:294.240000pt;}
.h3e{height:310.560000pt;}
.h5e{height:312.960000pt;}
.h40{height:324.800000pt;}
.h39{height:330.240000pt;}
.h43{height:331.520000pt;}
.h47{height:337.120000pt;}
.h5c{height:354.720000pt;}
.h3d{height:355.040000pt;}
.h2b{height:364.534220pt;}
.h4e{height:435.101457pt;}
.h0{height:720.000000pt;}
.w2{width:217.681993pt;}
.we{width:222.400000pt;}
.w3{width:366.107618pt;}
.wd{width:408.392152pt;}
.w4{width:469.973333pt;}
.wa{width:480.000000pt;}
.wc{width:509.120000pt;}
.wb{width:525.760000pt;}
.w5{width:543.040000pt;}
.w6{width:546.400000pt;}
.w9{width:552.640000pt;}
.w8{width:554.720000pt;}
.w7{width:559.520000pt;}
.wf{width:560.000000pt;}
.w10{width:583.680000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:5.503981pt;}
.xaf{left:7.264000pt;}
.xb7{left:17.093333pt;}
.x44{left:19.154281pt;}
.x79{left:21.760000pt;}
.x71{left:25.760000pt;}
.x2e{left:27.935981pt;}
.x83{left:29.506667pt;}
.x2f{left:31.135981pt;}
.x70{left:32.608000pt;}
.x68{left:33.635530pt;}
.x5d{left:35.650870pt;}
.x37{left:37.919981pt;}
.x6f{left:39.296000pt;}
.x3c{left:41.055981pt;}
.x8f{left:42.213333pt;}
.x62{left:44.321180pt;}
.x23{left:45.887981pt;}
.x7c{left:47.133333pt;}
.x14{left:48.351981pt;}
.x5b{left:49.345260pt;}
.x76{left:50.912000pt;}
.x45{left:53.642346pt;}
.x81{left:55.426667pt;}
.x5a{left:57.188158pt;}
.x87{left:59.426667pt;}
.x18{left:61.119981pt;}
.x5{left:63.647981pt;}
.x30{left:65.215981pt;}
.xa1{left:66.524992pt;}
.x53{left:69.567981pt;}
.x4{left:70.623981pt;}
.xa0{left:74.361378pt;}
.x6e{left:78.400000pt;}
.xbc{left:81.599981pt;}
.x77{left:84.506667pt;}
.x47{left:88.075424pt;}
.x59{left:90.547066pt;}
.x2{left:94.463981pt;}
.x7f{left:98.146667pt;}
.x9b{left:99.327981pt;}
.x90{left:103.066667pt;}
.x25{left:104.639981pt;}
.x16{left:107.871981pt;}
.x75{left:110.053333pt;}
.x57{left:113.311981pt;}
.x7d{left:115.040000pt;}
.xb1{left:116.546667pt;}
.x15{left:117.471981pt;}
.x3e{left:120.511981pt;}
.xa3{left:122.010400pt;}
.x1{left:127.103981pt;}
.x9c{left:129.727981pt;}
.x82{left:133.280000pt;}
.x42{left:134.173314pt;}
.x5e{left:135.488358pt;}
.x49{left:140.027583pt;}
.x9d{left:141.413314pt;}
.x64{left:147.521610pt;}
.x17{left:149.146648pt;}
.x24{left:150.559981pt;}
.x3d{left:153.946648pt;}
.x46{left:156.941580pt;}
.x86{left:160.000000pt;}
.x91{left:163.973333pt;}
.x8{left:165.146648pt;}
.x39{left:169.693314pt;}
.x67{left:172.285643pt;}
.x7{left:175.546648pt;}
.x48{left:191.434250pt;}
.x6{left:199.839981pt;}
.x78{left:201.440000pt;}
.x7a{left:202.653333pt;}
.x3{left:216.226648pt;}
.x96{left:224.453333pt;}
.x84{left:226.173333pt;}
.xb3{left:227.266648pt;}
.xb0{left:228.706648pt;}
.x19{left:231.013314pt;}
.x89{left:234.373333pt;}
.x72{left:239.586667pt;}
.x5c{left:241.116959pt;}
.x7e{left:243.333333pt;}
.x8e{left:247.493333pt;}
.x6c{left:251.679981pt;}
.xb5{left:259.040000pt;}
.x8a{left:262.533333pt;}
.x6b{left:267.519981pt;}
.xa6{left:274.053314pt;}
.x63{left:292.105449pt;}
.x66{left:294.893932pt;}
.x92{left:299.680000pt;}
.x38{left:304.773314pt;}
.xa2{left:307.368461pt;}
.x52{left:325.853314pt;}
.xb9{left:327.493333pt;}
.x8b{left:332.160000pt;}
.x80{left:334.400000pt;}
.x54{left:336.893314pt;}
.xba{left:349.093333pt;}
.xb6{left:356.000000pt;}
.x8c{left:356.960000pt;}
.xac{left:366.426648pt;}
.x93{left:374.493333pt;}
.x73{left:384.066667pt;}
.xab{left:388.546648pt;}
.xad{left:389.506648pt;}
.x43{left:390.430758pt;}
.xb2{left:395.426648pt;}
.x65{left:417.911636pt;}
.x94{left:435.386667pt;}
.xa7{left:467.453314pt;}
.x4f{left:476.826648pt;}
.x1d{left:481.026648pt;}
.x9{left:481.986648pt;}
.xa9{left:490.239981pt;}
.x95{left:499.266648pt;}
.xa4{left:511.266648pt;}
.x21{left:513.186648pt;}
.xbb{left:516.159981pt;}
.xa5{left:539.586648pt;}
.xae{left:542.906648pt;}
.xb{left:545.119981pt;}
.xa{left:551.133314pt;}
.x55{left:553.666648pt;}
.xb8{left:574.720000pt;}
.x11{left:576.413314pt;}
.x1e{left:582.693314pt;}
.xc{left:596.319981pt;}
.x85{left:606.239981pt;}
.x56{left:612.933314pt;}
.x1c{left:625.506648pt;}
.x7b{left:626.560000pt;}
.x74{left:630.720000pt;}
.xb4{left:636.000000pt;}
.x3a{left:637.093314pt;}
.x8d{left:640.000000pt;}
.x1a{left:655.066648pt;}
.x4a{left:660.133314pt;}
.x12{left:675.933314pt;}
.x41{left:677.573314pt;}
.x40{left:679.813314pt;}
.x88{left:681.760000pt;}
.x4e{left:682.946648pt;}
.x50{left:685.759981pt;}
.x4c{left:689.826648pt;}
.x28{left:704.066648pt;}
.x4d{left:705.346648pt;}
.x13{left:706.813314pt;}
.x3f{left:713.919981pt;}
.x2a{left:724.386648pt;}
.x9a{left:733.826648pt;}
.x20{left:744.706648pt;}
.x1f{left:746.146648pt;}
.x2b{left:749.666648pt;}
.x9e{left:755.333314pt;}
.x4b{left:758.053314pt;}
.x69{left:759.133314pt;}
.x51{left:768.386648pt;}
.x61{left:770.120000pt;}
.x29{left:781.986648pt;}
.x60{left:784.826648pt;}
.x9f{left:801.279981pt;}
.x34{left:840.093314pt;}
.x33{left:848.253314pt;}
.xd{left:855.039981pt;}
.x35{left:863.133314pt;}
.x32{left:866.333314pt;}
.x31{left:876.893314pt;}
.x97{left:887.653314pt;}
.x58{left:902.906667pt;}
.xf{left:917.279981pt;}
.x1b{left:919.106648pt;}
.xe{left:919.999981pt;}
.x26{left:921.786648pt;}
.x10{left:932.639981pt;}
.x36{left:934.173314pt;}
.x27{left:961.026648pt;}
.x6a{left:995.493314pt;}
.x98{left:1058.493314pt;}
.x22{left:1076.706648pt;}
.x99{left:1077.786648pt;}
.xaa{left:1101.439981pt;}
.x2c{left:1124.226648pt;}
.xa8{left:1132.186648pt;}
.x2d{left:1150.466648pt;}
.x3b{left:1209.853314pt;}
.x6d{left:1230.879981pt;}
}




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