
    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_105a9037b6ba1f0a56ea23c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937000;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_414fd5d28988bc12150d10e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.886000;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_45ba9c4f2f44f575b57c68ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_d286964fa21d748166ce55bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.755000;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_87b37e905a2614c9e952fbb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977000;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_66a41ee8814bce9e296c093b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dcc8dc46ac54b159841301ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_03f1bef4b6b14317f68b47d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_65c26ffeaddb26a86edbc2a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_68310f09e1ac6bcc1f13f232.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937000;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_8076f67b3b7dfef5daf92f54.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_795f7f5d2eaa9d74740dbbb9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5ad0aafcfffb724e69ed0c91.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.890000;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_ab67c74ddf18d22338cd73a9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.749000;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_f8f6315eec5d9688e5dcbeab.woff2')format("woff");}.fff{font-family:fff;line-height:0.718000;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_e93f4cfde3ed8bdb385c075c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893066;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_ee948f8a01cac4e8b16dc303.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893066;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_41a206ef7380921b919919dd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.689941;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.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);}
.m1{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v7{vertical-align:-34.680000px;}
.v4{vertical-align:-18.981000px;}
.v8{vertical-align:-16.983000px;}
.v1{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.600000px;}
.v5{vertical-align:16.995000px;}
.v3{vertical-align:24.975000px;}
.v6{vertical-align:29.988000px;}
.ls8{letter-spacing:-3.120000px;}
.ls65{letter-spacing:-2.805000px;}
.ls5f{letter-spacing:-0.765000px;}
.ls66{letter-spacing:-0.306000px;}
.ls44{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.171000px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000300px;}
.ls63{letter-spacing:0.003600px;}
.ls5e{letter-spacing:0.005100px;}
.ls61{letter-spacing:0.007800px;}
.ls60{letter-spacing:0.008400px;}
.ls5{letter-spacing:0.009000px;}
.ls2{letter-spacing:0.009600px;}
.ls0{letter-spacing:0.010200px;}
.ls5d{letter-spacing:0.010800px;}
.ls1{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.120000px;}
.ls4c{letter-spacing:0.153000px;}
.ls4b{letter-spacing:0.204000px;}
.ls4a{letter-spacing:0.244800px;}
.ls4f{letter-spacing:0.255000px;}
.ls4e{letter-spacing:0.290700px;}
.ls4d{letter-spacing:0.295800px;}
.ls48{letter-spacing:0.306000px;}
.ls49{letter-spacing:0.357000px;}
.lsd{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.840000px;}
.ls52{letter-spacing:0.870000px;}
.ls62{letter-spacing:0.918000px;}
.ls64{letter-spacing:1.020000px;}
.ls46{letter-spacing:1.122000px;}
.lsb{letter-spacing:1.320000px;}
.ls11{letter-spacing:1.860000px;}
.ls51{letter-spacing:2.700000px;}
.ls50{letter-spacing:2.754000px;}
.ls10{letter-spacing:3.240000px;}
.ls3{letter-spacing:3.960000px;}
.ls47{letter-spacing:4.233000px;}
.lsf{letter-spacing:4.327800px;}
.lse{letter-spacing:4.328400px;}
.ls58{letter-spacing:4.417800px;}
.ls5c{letter-spacing:4.423800px;}
.ls56{letter-spacing:5.040000px;}
.ls57{letter-spacing:5.100000px;}
.ls53{letter-spacing:5.214000px;}
.ls34{letter-spacing:5.640000px;}
.ls5b{letter-spacing:5.730000px;}
.ls55{letter-spacing:6.150000px;}
.ls4{letter-spacing:6.180000px;}
.lsc{letter-spacing:7.080000px;}
.ls59{letter-spacing:7.242000px;}
.ls45{letter-spacing:7.860000px;}
.ls54{letter-spacing:13.308000px;}
.ls5a{letter-spacing:18.000000px;}
.ls1e{letter-spacing:137.618700px;}
.ls42{letter-spacing:155.244000px;}
.ls43{letter-spacing:167.994000px;}
.ls23{letter-spacing:183.899700px;}
.ls18{letter-spacing:187.119000px;}
.ls15{letter-spacing:213.408900px;}
.ls29{letter-spacing:214.293300px;}
.ls1d{letter-spacing:233.219100px;}
.ls1a{letter-spacing:243.565500px;}
.ls1b{letter-spacing:254.012100px;}
.ls1c{letter-spacing:261.084300px;}
.ls14{letter-spacing:263.935500px;}
.ls3b{letter-spacing:286.572300px;}
.ls41{letter-spacing:288.639300px;}
.ls31{letter-spacing:305.647500px;}
.ls26{letter-spacing:329.055300px;}
.ls27{letter-spacing:336.887100px;}
.ls2e{letter-spacing:338.954100px;}
.ls20{letter-spacing:368.214300px;}
.ls21{letter-spacing:374.838300px;}
.ls37{letter-spacing:382.869300px;}
.ls16{letter-spacing:382.881900px;}
.ls3f{letter-spacing:387.090300px;}
.ls19{letter-spacing:393.017100px;}
.ls33{letter-spacing:399.840300px;}
.ls13{letter-spacing:401.309700px;}
.ls17{letter-spacing:402.006900px;}
.ls3a{letter-spacing:412.615500px;}
.ls39{letter-spacing:413.984700px;}
.ls3c{letter-spacing:414.034500px;}
.ls28{letter-spacing:429.471000px;}
.ls30{letter-spacing:435.264300px;}
.ls32{letter-spacing:438.875100px;}
.ls2f{letter-spacing:444.502500px;}
.ls3e{letter-spacing:452.259900px;}
.ls25{letter-spacing:463.590300px;}
.ls36{letter-spacing:474.908100px;}
.ls2b{letter-spacing:474.908700px;}
.ls2d{letter-spacing:581.043000px;}
.ls40{letter-spacing:690.795000px;}
.ls22{letter-spacing:700.842000px;}
.ls2c{letter-spacing:734.415300px;}
.ls35{letter-spacing:748.068000px;}
.ls38{letter-spacing:802.454400px;}
.ls1f{letter-spacing:863.379000px;}
.ls2a{letter-spacing:888.369000px;}
.ls3d{letter-spacing:935.187000px;}
.ls24{letter-spacing:1064.013000px;}
.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;}
}
.ws7b{word-spacing:-199.869000px;}
.ws7f{word-spacing:-60.000000px;}
.ws7e{word-spacing:-59.820000px;}
.wsc8{word-spacing:-51.600000px;}
.wsd7{word-spacing:-48.780000px;}
.wseb{word-spacing:-48.240000px;}
.wsd6{word-spacing:-43.260000px;}
.ws4{word-spacing:-22.620000px;}
.ws1{word-spacing:-17.400000px;}
.ws6{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.280000px;}
.ws79{word-spacing:-12.750000px;}
.ws75{word-spacing:-12.426000px;}
.ws5{word-spacing:-10.500000px;}
.ws14a{word-spacing:-9.945000px;}
.ws8{word-spacing:-9.900000px;}
.ws128{word-spacing:-8.925000px;}
.ws9f{word-spacing:-7.500000px;}
.ws3{word-spacing:-7.244358px;}
.wse{word-spacing:-6.375000px;}
.ws9b{word-spacing:-5.559000px;}
.ws9a{word-spacing:-5.202000px;}
.wsb1{word-spacing:-4.620000px;}
.wsef{word-spacing:-4.560000px;}
.ws6b{word-spacing:-4.080000px;}
.wsba{word-spacing:-4.020000px;}
.ws13b{word-spacing:-3.570000px;}
.ws118{word-spacing:-3.540000px;}
.wsd1{word-spacing:-3.366000px;}
.ws10a{word-spacing:-3.360000px;}
.wsa8{word-spacing:-3.240000px;}
.ws169{word-spacing:-3.111000px;}
.ws103{word-spacing:-3.060000px;}
.ws44{word-spacing:-3.000000px;}
.ws119{word-spacing:-2.940000px;}
.wsa0{word-spacing:-2.880000px;}
.ws85{word-spacing:-2.820000px;}
.ws2f{word-spacing:-2.640000px;}
.wsb7{word-spacing:-2.580000px;}
.ws108{word-spacing:-2.520000px;}
.ws52{word-spacing:-2.460000px;}
.ws6e{word-spacing:-2.400000px;}
.ws150{word-spacing:-2.397000px;}
.ws9e{word-spacing:-2.340000px;}
.ws168{word-spacing:-2.193000px;}
.ws92{word-spacing:-2.160000px;}
.wsc4{word-spacing:-2.142000px;}
.ws88{word-spacing:-2.040000px;}
.ws141{word-spacing:-1.989000px;}
.wsed{word-spacing:-1.980000px;}
.wsc6{word-spacing:-1.938000px;}
.wsfd{word-spacing:-1.920000px;}
.ws156{word-spacing:-1.887000px;}
.ws101{word-spacing:-1.860000px;}
.wsb3{word-spacing:-1.836000px;}
.ws11b{word-spacing:-1.800000px;}
.wsf6{word-spacing:-1.785000px;}
.ws23{word-spacing:-1.740000px;}
.ws162{word-spacing:-1.734000px;}
.ws165{word-spacing:-1.632000px;}
.ws25{word-spacing:-1.620000px;}
.ws149{word-spacing:-1.581000px;}
.ws12{word-spacing:-1.560000px;}
.wsfa{word-spacing:-1.500000px;}
.ws124{word-spacing:-1.479000px;}
.ws16b{word-spacing:-1.428000px;}
.ws66{word-spacing:-1.380000px;}
.ws125{word-spacing:-1.275000px;}
.wsda{word-spacing:-1.260000px;}
.ws69{word-spacing:-1.200000px;}
.ws98{word-spacing:-1.140000px;}
.ws15{word-spacing:-1.080000px;}
.ws91{word-spacing:-1.020000px;}
.ws89{word-spacing:-0.960000px;}
.ws7d{word-spacing:-0.918000px;}
.ws0{word-spacing:-0.900000px;}
.ws144{word-spacing:-0.867000px;}
.wsd0{word-spacing:-0.840000px;}
.ws143{word-spacing:-0.816000px;}
.ws137{word-spacing:-0.780000px;}
.wsd{word-spacing:-0.765000px;}
.ws47{word-spacing:-0.720000px;}
.wse7{word-spacing:-0.663000px;}
.wsa4{word-spacing:-0.660000px;}
.ws11a{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.561000px;}
.wsb4{word-spacing:-0.510000px;}
.ws12a{word-spacing:-0.480000px;}
.wsf0{word-spacing:-0.420000px;}
.ws2c{word-spacing:-0.360000px;}
.wse8{word-spacing:-0.357000px;}
.wse4{word-spacing:-0.306000px;}
.ws13d{word-spacing:-0.255000px;}
.ws41{word-spacing:-0.240000px;}
.ws15f{word-spacing:-0.204000px;}
.ws8c{word-spacing:-0.180000px;}
.ws45{word-spacing:-0.120000px;}
.ws147{word-spacing:-0.102000px;}
.ws7{word-spacing:0.000000px;}
.ws90{word-spacing:0.060000px;}
.ws148{word-spacing:0.102000px;}
.ws29{word-spacing:0.120000px;}
.ws87{word-spacing:0.180000px;}
.ws14{word-spacing:0.240000px;}
.wsbe{word-spacing:0.300000px;}
.ws126{word-spacing:0.306000px;}
.wsd4{word-spacing:0.357000px;}
.wscf{word-spacing:0.360000px;}
.ws22{word-spacing:0.420000px;}
.wsf{word-spacing:0.459000px;}
.ws3f{word-spacing:0.480000px;}
.ws154{word-spacing:0.510000px;}
.ws5f{word-spacing:0.540000px;}
.ws2a{word-spacing:0.660000px;}
.ws7c{word-spacing:0.663000px;}
.ws86{word-spacing:0.720000px;}
.wsdb{word-spacing:0.780000px;}
.ws4f{word-spacing:0.840000px;}
.wsc5{word-spacing:0.867000px;}
.wsa1{word-spacing:0.900000px;}
.ws136{word-spacing:0.960000px;}
.wsee{word-spacing:1.020000px;}
.ws11{word-spacing:1.071000px;}
.wsab{word-spacing:1.080000px;}
.wsb2{word-spacing:1.122000px;}
.ws106{word-spacing:1.140000px;}
.ws123{word-spacing:1.173000px;}
.wsf3{word-spacing:1.200000px;}
.ws64{word-spacing:1.260000px;}
.ws2d{word-spacing:1.320000px;}
.ws10{word-spacing:1.377000px;}
.ws53{word-spacing:1.380000px;}
.ws9{word-spacing:1.425000px;}
.wsc3{word-spacing:1.428000px;}
.wsa3{word-spacing:1.440000px;}
.ws72{word-spacing:1.500000px;}
.ws113{word-spacing:1.530000px;}
.ws63{word-spacing:1.560000px;}
.ws14f{word-spacing:1.581000px;}
.ws62{word-spacing:1.620000px;}
.wsb{word-spacing:1.683000px;}
.wsa6{word-spacing:1.740000px;}
.ws14e{word-spacing:1.785000px;}
.ws13{word-spacing:1.800000px;}
.wse9{word-spacing:1.836000px;}
.ws73{word-spacing:1.860000px;}
.wsd3{word-spacing:1.887000px;}
.wsb0{word-spacing:1.920000px;}
.wsc7{word-spacing:1.938000px;}
.ws8b{word-spacing:1.980000px;}
.ws2e{word-spacing:2.040000px;}
.wse5{word-spacing:2.091000px;}
.ws35{word-spacing:2.100000px;}
.wsea{word-spacing:2.142000px;}
.ws5d{word-spacing:2.160000px;}
.ws170{word-spacing:2.193000px;}
.wsce{word-spacing:2.220000px;}
.ws9d{word-spacing:2.280000px;}
.ws13f{word-spacing:2.295000px;}
.wsc0{word-spacing:2.346000px;}
.wse6{word-spacing:2.397000px;}
.ws8f{word-spacing:2.400000px;}
.wse3{word-spacing:2.448000px;}
.wsf8{word-spacing:2.460000px;}
.ws132{word-spacing:2.520000px;}
.ws151{word-spacing:2.550000px;}
.wsa2{word-spacing:2.580000px;}
.ws175{word-spacing:2.601000px;}
.ws42{word-spacing:2.640000px;}
.wscb{word-spacing:2.700000px;}
.ws140{word-spacing:2.754000px;}
.wsf1{word-spacing:2.760000px;}
.ws171{word-spacing:2.805000px;}
.ws134{word-spacing:2.820000px;}
.ws142{word-spacing:2.856000px;}
.ws67{word-spacing:2.940000px;}
.ws10b{word-spacing:3.000000px;}
.ws24{word-spacing:3.180000px;}
.ws153{word-spacing:3.213000px;}
.ws6f{word-spacing:3.240000px;}
.ws145{word-spacing:3.264000px;}
.wsfe{word-spacing:3.300000px;}
.ws70{word-spacing:3.360000px;}
.ws15c{word-spacing:3.417000px;}
.wsdc{word-spacing:3.420000px;}
.ws13e{word-spacing:3.468000px;}
.ws39{word-spacing:3.480000px;}
.ws3a{word-spacing:3.540000px;}
.ws97{word-spacing:3.600000px;}
.ws11c{word-spacing:3.660000px;}
.ws74{word-spacing:3.720000px;}
.ws51{word-spacing:3.780000px;}
.wsb5{word-spacing:3.840000px;}
.ws117{word-spacing:3.900000px;}
.ws15d{word-spacing:3.927000px;}
.ws1b{word-spacing:3.960000px;}
.ws16e{word-spacing:3.978000px;}
.ws57{word-spacing:4.020000px;}
.ws112{word-spacing:4.029000px;}
.wsaf{word-spacing:4.080000px;}
.ws166{word-spacing:4.182000px;}
.ws65{word-spacing:4.200000px;}
.wsd2{word-spacing:4.233000px;}
.ws6d{word-spacing:4.260000px;}
.wsc{word-spacing:4.284000px;}
.ws5a{word-spacing:4.320000px;}
.ws16d{word-spacing:4.335000px;}
.ws61{word-spacing:4.380000px;}
.ws176{word-spacing:4.386000px;}
.ws111{word-spacing:4.437000px;}
.ws71{word-spacing:4.440000px;}
.ws10e{word-spacing:4.488000px;}
.wsb8{word-spacing:4.500000px;}
.ws68{word-spacing:4.560000px;}
.ws155{word-spacing:4.590000px;}
.wsdd{word-spacing:4.620000px;}
.ws6a{word-spacing:4.680000px;}
.wsa9{word-spacing:4.740000px;}
.ws6c{word-spacing:4.800000px;}
.ws16a{word-spacing:4.845000px;}
.ws14c{word-spacing:4.896000px;}
.ws104{word-spacing:4.920000px;}
.ws163{word-spacing:4.947000px;}
.wsbc{word-spacing:4.980000px;}
.ws5b{word-spacing:5.040000px;}
.ws27{word-spacing:5.100000px;}
.ws95{word-spacing:5.160000px;}
.wsfc{word-spacing:5.220000px;}
.ws152{word-spacing:5.253000px;}
.ws43{word-spacing:5.280000px;}
.ws33{word-spacing:5.340000px;}
.ws18{word-spacing:5.400000px;}
.wsf4{word-spacing:5.460000px;}
.ws19{word-spacing:5.520000px;}
.ws31{word-spacing:5.580000px;}
.ws161{word-spacing:5.610000px;}
.ws55{word-spacing:5.640000px;}
.ws54{word-spacing:5.700000px;}
.ws20{word-spacing:5.760000px;}
.ws32{word-spacing:5.880000px;}
.ws48{word-spacing:5.940000px;}
.wsde{word-spacing:6.000000px;}
.ws100{word-spacing:6.060000px;}
.ws21{word-spacing:6.180000px;}
.ws14d{word-spacing:6.222000px;}
.wse1{word-spacing:6.240000px;}
.ws5e{word-spacing:6.300000px;}
.ws16{word-spacing:6.360000px;}
.wsec{word-spacing:6.420000px;}
.wsa5{word-spacing:6.540000px;}
.ws8a{word-spacing:6.600000px;}
.ws172{word-spacing:6.681000px;}
.ws59{word-spacing:6.720000px;}
.wsb6{word-spacing:6.780000px;}
.ws2b{word-spacing:6.840000px;}
.ws15e{word-spacing:6.987000px;}
.wsf2{word-spacing:7.020000px;}
.ws14b{word-spacing:7.038000px;}
.ws30{word-spacing:7.080000px;}
.ws11e{word-spacing:7.140000px;}
.ws10f{word-spacing:7.191000px;}
.ws9c{word-spacing:7.200000px;}
.ws110{word-spacing:7.242000px;}
.ws99{word-spacing:7.260000px;}
.wsfb{word-spacing:7.320000px;}
.ws46{word-spacing:7.380000px;}
.ws12f{word-spacing:7.440000px;}
.ws122{word-spacing:7.497000px;}
.ws38{word-spacing:7.500000px;}
.ws17{word-spacing:7.560000px;}
.wsdf{word-spacing:7.620000px;}
.ws16c{word-spacing:7.650000px;}
.ws28{word-spacing:7.680000px;}
.ws11f{word-spacing:7.701000px;}
.ws8e{word-spacing:7.860000px;}
.wsbd{word-spacing:7.920000px;}
.ws94{word-spacing:7.980000px;}
.ws4c{word-spacing:8.040000px;}
.ws173{word-spacing:8.058000px;}
.wsca{word-spacing:8.100000px;}
.ws167{word-spacing:8.160000px;}
.ws37{word-spacing:8.220000px;}
.ws114{word-spacing:8.262000px;}
.ws1e{word-spacing:8.340000px;}
.wsc9{word-spacing:8.460000px;}
.ws1d{word-spacing:8.520000px;}
.wsbf{word-spacing:8.580000px;}
.ws1a{word-spacing:8.640000px;}
.ws4e{word-spacing:8.700000px;}
.wsf7{word-spacing:8.760000px;}
.ws12e{word-spacing:8.820000px;}
.ws50{word-spacing:8.940000px;}
.ws1f{word-spacing:9.060000px;}
.ws15b{word-spacing:9.129000px;}
.ws60{word-spacing:9.180000px;}
.ws40{word-spacing:9.300000px;}
.ws133{word-spacing:9.420000px;}
.ws116{word-spacing:9.540000px;}
.ws36{word-spacing:9.600000px;}
.ws146{word-spacing:9.639000px;}
.ws26{word-spacing:9.720000px;}
.ws135{word-spacing:9.840000px;}
.ws10d{word-spacing:9.900000px;}
.ws15a{word-spacing:9.945000px;}
.ws12d{word-spacing:9.960000px;}
.wsbb{word-spacing:10.080000px;}
.wsd5{word-spacing:10.149000px;}
.ws3e{word-spacing:10.200000px;}
.ws3c{word-spacing:10.380000px;}
.ws93{word-spacing:10.680000px;}
.wsa7{word-spacing:10.800000px;}
.ws58{word-spacing:10.860000px;}
.ws160{word-spacing:10.914000px;}
.ws96{word-spacing:11.040000px;}
.wsf9{word-spacing:11.100000px;}
.ws3b{word-spacing:11.160000px;}
.wscc{word-spacing:11.220000px;}
.ws157{word-spacing:11.271000px;}
.ws5c{word-spacing:11.280000px;}
.ws13c{word-spacing:11.628000px;}
.ws107{word-spacing:11.820000px;}
.ws4b{word-spacing:11.940000px;}
.wsff{word-spacing:12.060000px;}
.wsd8{word-spacing:12.180000px;}
.wsb9{word-spacing:12.240000px;}
.ws3d{word-spacing:12.360000px;}
.ws84{word-spacing:12.480000px;}
.ws164{word-spacing:12.597000px;}
.wsd9{word-spacing:12.660000px;}
.ws105{word-spacing:12.720000px;}
.ws129{word-spacing:12.780000px;}
.ws16f{word-spacing:12.903000px;}
.ws130{word-spacing:13.020000px;}
.ws102{word-spacing:13.320000px;}
.wsaa{word-spacing:13.440000px;}
.ws56{word-spacing:13.740000px;}
.ws109{word-spacing:13.980000px;}
.ws49{word-spacing:14.040000px;}
.ws4a{word-spacing:14.280000px;}
.ws13a{word-spacing:14.340000px;}
.ws139{word-spacing:14.400000px;}
.ws138{word-spacing:14.700000px;}
.wsad{word-spacing:14.820000px;}
.ws131{word-spacing:14.880000px;}
.ws159{word-spacing:15.351000px;}
.ws127{word-spacing:15.861000px;}
.ws34{word-spacing:16.260000px;}
.wsf5{word-spacing:16.320000px;}
.wse0{word-spacing:16.740000px;}
.wsae{word-spacing:16.800000px;}
.ws10c{word-spacing:17.100000px;}
.ws158{word-spacing:17.136000px;}
.ws115{word-spacing:18.000000px;}
.wsac{word-spacing:18.060000px;}
.ws12b{word-spacing:18.420000px;}
.ws12c{word-spacing:19.500000px;}
.ws174{word-spacing:20.043000px;}
.ws8d{word-spacing:20.400000px;}
.ws11d{word-spacing:21.420000px;}
.wse2{word-spacing:23.160000px;}
.wscd{word-spacing:23.220000px;}
.ws4d{word-spacing:25.380000px;}
.ws121{word-spacing:25.806000px;}
.ws120{word-spacing:28.662000px;}
.ws1c{word-spacing:32.220000px;}
.ws82{word-spacing:110.619000px;}
.ws7a{word-spacing:123.369000px;}
.ws81{word-spacing:129.744000px;}
.ws76{word-spacing:131.835000px;}
.ws78{word-spacing:136.119000px;}
.ws83{word-spacing:149.583000px;}
.ws80{word-spacing:174.369000px;}
.ws77{word-spacing:699.822000px;}
.wsc1{word-spacing:721.656000px;}
.wsc2{word-spacing:806.598000px;}
._21{margin-left:-186.669975px;}
._4f{margin-left:-23.220000px;}
._56{margin-left:-20.036700px;}
._46{margin-left:-18.070050px;}
._48{margin-left:-16.860000px;}
._45{margin-left:-14.830575px;}
._4b{margin-left:-13.597425px;}
._4d{margin-left:-11.999025px;}
._37{margin-left:-10.500975px;}
._8{margin-left:-8.201025px;}
._7{margin-left:-6.925425px;}
._a{margin-left:-5.248275px;}
._2{margin-left:-4.128000px;}
._0{margin-left:-2.160000px;}
._6{margin-left:-1.080000px;}
._3{width:1.026000px;}
._4{width:2.832000px;}
._5{width:4.014000px;}
._9{width:5.294700px;}
._d{width:6.528000px;}
._c{width:7.993800px;}
._4c{width:9.290400px;}
._1{width:10.500000px;}
._38{width:11.632050px;}
._b{width:12.792000px;}
._4a{width:14.946000px;}
._10{width:16.212000px;}
._51{width:18.005400px;}
._39{width:20.310000px;}
._4e{width:23.160000px;}
._49{width:24.222000px;}
._47{width:26.422050px;}
._54{width:28.611000px;}
._e{width:37.800000px;}
._53{width:48.600000px;}
._50{width:61.260000px;}
._55{width:62.580000px;}
._11{width:67.380000px;}
._f{width:70.020000px;}
._12{width:71.760000px;}
._52{width:73.560000px;}
._16{width:119.136000px;}
._1d{width:124.022625px;}
._44{width:125.052000px;}
._15{width:147.441000px;}
._1b{width:148.869000px;}
._1f{width:150.185025px;}
._26{width:167.212350px;}
._25{width:168.384825px;}
._40{width:177.019425px;}
._3c{width:178.608600px;}
._2b{width:187.211400px;}
._3d{width:195.629400px;}
._18{width:269.655000px;}
._29{width:409.428000px;}
._1e{width:444.177000px;}
._20{width:465.444000px;}
._28{width:506.430000px;}
._27{width:525.759000px;}
._14{width:558.552000px;}
._1c{width:589.968000px;}
._36{width:596.496000px;}
._2c{width:644.589000px;}
._23{width:662.592000px;}
._2a{width:664.581000px;}
._24{width:673.047000px;}
._2f{width:695.046000px;}
._41{width:721.140000px;}
._30{width:747.543000px;}
._3a{width:760.224000px;}
._3e{width:769.437000px;}
._3b{width:771.648000px;}
._32{width:777.903000px;}
._35{width:780.759000px;}
._13{width:804.423000px;}
._34{width:814.113000px;}
._33{width:819.009000px;}
._22{width:841.857000px;}
._2d{width:878.067000px;}
._2e{width:889.662000px;}
._3f{width:964.920000px;}
._31{width:1069.011000px;}
._19{width:1449.522000px;}
._17{width:1557.132000px;}
._1a{width:1667.004000px;}
._43{width:1728.747000px;}
._42{width:1778.319000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.733000px;}
.fs5{font-size:33.231000px;}
.fsd{font-size:35.700000px;}
.fsa{font-size:42.000000px;}
.fs4{font-size:43.725000px;}
.fs9{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.400000px;}
.fs6{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs3{font-size:75.000000px;}
.fs8{font-size:78.000000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:36.398550px;}
.y2{bottom:37.953300px;}
.y63{bottom:85.039350px;}
.y133{bottom:85.795350px;}
.yfe{bottom:86.025450px;}
.y20d{bottom:86.025600px;}
.y1e9{bottom:86.028600px;}
.y5d{bottom:86.031450px;}
.y1b6{bottom:86.031600px;}
.y162{bottom:86.063550px;}
.y10b{bottom:86.138550px;}
.yf3{bottom:86.168550px;}
.yc5{bottom:86.173200px;}
.yaa{bottom:86.173350px;}
.y17f{bottom:86.190450px;}
.ydb{bottom:86.263200px;}
.y6b{bottom:89.457450px;}
.y71{bottom:89.484300px;}
.y6c{bottom:89.497050px;}
.y6f{bottom:89.509800px;}
.y70{bottom:89.522550px;}
.yab{bottom:91.204200px;}
.y73{bottom:91.218300px;}
.y77{bottom:91.227000px;}
.y75{bottom:91.231200px;}
.y72{bottom:91.243800px;}
.y74{bottom:91.243950px;}
.yac{bottom:91.256700px;}
.yad{bottom:91.269450px;}
.y132{bottom:103.795350px;}
.yfd{bottom:104.028450px;}
.y20c{bottom:104.028600px;}
.y5c{bottom:104.031450px;}
.y1b5{bottom:104.031600px;}
.yf2{bottom:104.168550px;}
.yc4{bottom:104.173200px;}
.ya9{bottom:104.173350px;}
.y161{bottom:104.318550px;}
.y17e{bottom:104.700450px;}
.y10a{bottom:105.143550px;}
.yda{bottom:113.923200px;}
.y131{bottom:121.795350px;}
.y1e8{bottom:122.019600px;}
.y2d{bottom:122.031450px;}
.y1b4{bottom:122.031600px;}
.yf1{bottom:122.168550px;}
.ya8{bottom:122.173350px;}
.y160{bottom:122.573550px;}
.y17d{bottom:123.210450px;}
.y109{bottom:124.148550px;}
.y13c{bottom:130.795350px;}
.yc3{bottom:131.173200px;}
.yd9{bottom:132.253200px;}
.y130{bottom:139.795350px;}
.y1e7{bottom:140.022600px;}
.y20b{bottom:140.025600px;}
.y2c{bottom:140.031450px;}
.y1b3{bottom:140.031600px;}
.yfc{bottom:140.034450px;}
.yf0{bottom:140.168550px;}
.ya7{bottom:140.173350px;}
.y15f{bottom:140.828550px;}
.y17c{bottom:141.720450px;}
.y108{bottom:143.153550px;}
.y13b{bottom:148.795350px;}
.yc2{bottom:149.173200px;}
.yd8{bottom:150.583200px;}
.y12f{bottom:157.795350px;}
.y1e6{bottom:158.025600px;}
.y20a{bottom:158.028600px;}
.y2b{bottom:158.031450px;}
.y1b2{bottom:158.031600px;}
.yef{bottom:158.168550px;}
.y17b{bottom:160.230450px;}
.y1b7{bottom:162.531600px;}
.y13a{bottom:166.795350px;}
.yc1{bottom:167.173200px;}
.ya6{bottom:167.173350px;}
.y15e{bottom:168.323550px;}
.yd7{bottom:168.913200px;}
.y107{bottom:172.148550px;}
.y12e{bottom:175.795350px;}
.y1e5{bottom:176.028600px;}
.y2a{bottom:176.031450px;}
.y1b1{bottom:176.031600px;}
.y5b{bottom:176.032950px;}
.yee{bottom:176.168550px;}
.yc0{bottom:185.173200px;}
.ya5{bottom:185.173350px;}
.y15d{bottom:186.578550px;}
.yd6{bottom:187.243200px;}
.y64{bottom:189.060450px;}
.y106{bottom:191.153550px;}
.y12d{bottom:193.795350px;}
.y209{bottom:194.022600px;}
.y1e4{bottom:194.028600px;}
.y29{bottom:194.031450px;}
.y1b0{bottom:194.031600px;}
.yf8{bottom:194.168550px;}
.y17a{bottom:197.259000px;}
.yed{bottom:203.168550px;}
.ybf{bottom:203.173200px;}
.ya4{bottom:203.173350px;}
.y15c{bottom:204.833550px;}
.y105{bottom:210.158550px;}
.y12c{bottom:211.795350px;}
.y208{bottom:212.025600px;}
.y28{bottom:212.031450px;}
.y1af{bottom:212.031600px;}
.yf7{bottom:212.168550px;}
.yd5{bottom:214.903200px;}
.yec{bottom:221.168550px;}
.ybe{bottom:221.173200px;}
.ya3{bottom:221.173350px;}
.y15b{bottom:223.088550px;}
.y104{bottom:229.163550px;}
.y12b{bottom:229.795350px;}
.y1e3{bottom:230.025600px;}
.y207{bottom:230.028600px;}
.y27{bottom:230.031450px;}
.y1ae{bottom:230.031600px;}
.y103{bottom:230.168550px;}
.yd4{bottom:233.233200px;}
.yeb{bottom:239.168550px;}
.ybd{bottom:239.173200px;}
.ya2{bottom:239.173350px;}
.y15a{bottom:241.343550px;}
.y1e2{bottom:248.028600px;}
.y26{bottom:248.031450px;}
.y1ad{bottom:248.031600px;}
.y102{bottom:248.168550px;}
.yd3{bottom:251.563200px;}
.y179{bottom:252.743550px;}
.y12a{bottom:256.795350px;}
.yea{bottom:257.168550px;}
.ya1{bottom:257.173350px;}
.y224{bottom:266.022600px;}
.y1e1{bottom:266.028600px;}
.y25{bottom:266.031450px;}
.y1ac{bottom:266.031600px;}
.ybc{bottom:266.173200px;}
.y159{bottom:268.838550px;}
.yd2{bottom:269.893200px;}
.y178{bottom:271.253550px;}
.y129{bottom:274.795350px;}
.ye9{bottom:275.168550px;}
.ya0{bottom:275.173350px;}
.y223{bottom:284.025600px;}
.y24{bottom:284.031450px;}
.y1ab{bottom:284.031600px;}
.ybb{bottom:284.173200px;}
.y158{bottom:287.093550px;}
.yd1{bottom:288.223200px;}
.y177{bottom:289.763550px;}
.y128{bottom:292.795350px;}
.ye8{bottom:293.168550px;}
.y112{bottom:302.022450px;}
.y1e0{bottom:302.025600px;}
.y222{bottom:302.028600px;}
.y23{bottom:302.031450px;}
.y1aa{bottom:302.031600px;}
.yba{bottom:302.173200px;}
.y9f{bottom:302.173350px;}
.y157{bottom:305.348550px;}
.y176{bottom:308.273550px;}
.y127{bottom:310.795350px;}
.ye7{bottom:311.168550px;}
.yd0{bottom:315.883200px;}
.y111{bottom:320.025450px;}
.y1df{bottom:320.028600px;}
.y22{bottom:320.031450px;}
.y1a9{bottom:320.031600px;}
.yf6{bottom:320.168550px;}
.yb9{bottom:320.173200px;}
.y9e{bottom:320.173350px;}
.y156{bottom:323.603550px;}
.y126{bottom:328.795350px;}
.ye6{bottom:329.168550px;}
.ycf{bottom:334.213200px;}
.y175{bottom:336.308550px;}
.y110{bottom:338.028450px;}
.y221{bottom:338.028600px;}
.y21{bottom:338.031450px;}
.y1a8{bottom:338.031600px;}
.yf5{bottom:338.168550px;}
.yb8{bottom:338.173200px;}
.y9d{bottom:338.173350px;}
.y100{bottom:341.412150px;}
.y139{bottom:346.795350px;}
.ye5{bottom:347.168550px;}
.y155{bottom:351.098550px;}
.yce{bottom:352.543200px;}
.y174{bottom:354.818550px;}
.y125{bottom:355.795350px;}
.y206{bottom:356.022600px;}
.y1de{bottom:356.028600px;}
.y5a{bottom:356.031450px;}
.y1a7{bottom:356.031600px;}
.yf4{bottom:356.168550px;}
.yb7{bottom:356.173200px;}
.y9c{bottom:356.173350px;}
.y154{bottom:369.353550px;}
.ycd{bottom:370.873200px;}
.y173{bottom:373.328550px;}
.y124{bottom:373.795350px;}
.y205{bottom:374.025600px;}
.y59{bottom:374.031450px;}
.y1a6{bottom:374.031600px;}
.ye4{bottom:374.168550px;}
.y138{bottom:378.295350px;}
.y6d{bottom:379.240800px;}
.yb6{bottom:383.173200px;}
.y9b{bottom:383.173350px;}
.y20{bottom:386.031450px;}
.y153{bottom:387.608550px;}
.ycc{bottom:389.203200px;}
.y123{bottom:391.795350px;}
.y172{bottom:391.838550px;}
.y1dd{bottom:392.025600px;}
.y204{bottom:392.028600px;}
.y58{bottom:392.031450px;}
.y1a5{bottom:392.031600px;}
.ye3{bottom:392.168550px;}
.y137{bottom:396.295350px;}
.yb5{bottom:401.173200px;}
.y9a{bottom:401.173350px;}
.y152{bottom:405.863550px;}
.y122{bottom:409.795350px;}
.y1dc{bottom:410.028600px;}
.y57{bottom:410.031450px;}
.y1a4{bottom:410.031600px;}
.ye2{bottom:410.168550px;}
.y171{bottom:410.348550px;}
.ycb{bottom:416.863200px;}
.yb4{bottom:419.173200px;}
.y99{bottom:419.173350px;}
.y151{bottom:424.118550px;}
.y121{bottom:427.795350px;}
.y203{bottom:428.022600px;}
.y220{bottom:428.025600px;}
.y56{bottom:428.031450px;}
.y1a3{bottom:428.031600px;}
.yca{bottom:435.193200px;}
.y136{bottom:436.795350px;}
.yb3{bottom:437.173200px;}
.y98{bottom:437.173350px;}
.y170{bottom:438.383550px;}
.y150{bottom:442.373550px;}
.y120{bottom:445.795350px;}
.y1db{bottom:446.022600px;}
.y202{bottom:446.025600px;}
.y21f{bottom:446.028600px;}
.y55{bottom:446.031450px;}
.y1a2{bottom:446.031600px;}
.y1f{bottom:447.780900px;}
.y114{bottom:449.403150px;}
.yc9{bottom:453.523200px;}
.y135{bottom:454.795350px;}
.yb2{bottom:455.173200px;}
.y97{bottom:455.173350px;}
.y16f{bottom:456.893550px;}
.y1da{bottom:464.025600px;}
.yf9{bottom:464.028450px;}
.y201{bottom:464.028600px;}
.y54{bottom:464.031450px;}
.y1a1{bottom:464.031600px;}
.y1e{bottom:467.032950px;}
.y14f{bottom:469.868550px;}
.y11f{bottom:472.795350px;}
.yb1{bottom:473.173200px;}
.y96{bottom:473.173350px;}
.y16e{bottom:475.403550px;}
.yc8{bottom:481.183200px;}
.y21e{bottom:482.025600px;}
.y1d9{bottom:482.028600px;}
.y53{bottom:482.031450px;}
.y1a0{bottom:482.031600px;}
.y14e{bottom:488.123550px;}
.y11e{bottom:490.795350px;}
.y95{bottom:491.173350px;}
.y16d{bottom:493.913550px;}
.yc7{bottom:499.513200px;}
.y200{bottom:500.028600px;}
.y52{bottom:500.031450px;}
.y19f{bottom:500.031600px;}
.yb0{bottom:500.173200px;}
.y14d{bottom:506.378550px;}
.y11d{bottom:508.795350px;}
.y94{bottom:509.173350px;}
.y1d{bottom:510.858900px;}
.yc6{bottom:517.843200px;}
.y1d8{bottom:518.025600px;}
.y51{bottom:518.031450px;}
.y19e{bottom:518.031600px;}
.y1ba{bottom:518.033550px;}
.yaf{bottom:518.173200px;}
.y16c{bottom:521.948550px;}
.y14c{bottom:524.633550px;}
.y1c{bottom:525.852900px;}
.y11c{bottom:526.795350px;}
.y93{bottom:527.173350px;}
.y1d7{bottom:536.028600px;}
.y50{bottom:536.031450px;}
.y19d{bottom:536.031600px;}
.yae{bottom:536.173200px;}
.y16b{bottom:540.458550px;}
.y1b{bottom:540.846900px;}
.y14b{bottom:542.888550px;}
.y11b{bottom:544.795350px;}
.y92{bottom:545.173350px;}
.y1ff{bottom:554.028600px;}
.y4f{bottom:554.031450px;}
.y19c{bottom:554.031600px;}
.y1a{bottom:555.840900px;}
.y16a{bottom:558.968550px;}
.y11a{bottom:562.795350px;}
.y14a{bottom:570.383550px;}
.y19{bottom:570.834900px;}
.y1c6{bottom:571.995450px;}
.y21d{bottom:572.022600px;}
.y1d6{bottom:572.028600px;}
.y4e{bottom:572.031450px;}
.y1ce{bottom:572.031600px;}
.y91{bottom:572.173350px;}
.y169{bottom:577.478550px;}
.y134{bottom:580.795350px;}
.y18{bottom:585.828900px;}
.y149{bottom:588.638550px;}
.y119{bottom:589.795350px;}
.y1c5{bottom:589.998450px;}
.ydf{bottom:590.019450px;}
.y1fe{bottom:590.019600px;}
.y21c{bottom:590.025600px;}
.y4d{bottom:590.031450px;}
.y1cd{bottom:590.031600px;}
.y90{bottom:590.173350px;}
.y113{bottom:593.410650px;}
.y19b{bottom:594.531600px;}
.y168{bottom:595.988550px;}
.y17{bottom:600.822900px;}
.y148{bottom:606.893550px;}
.y118{bottom:607.795350px;}
.y1c4{bottom:608.001450px;}
.y1b9{bottom:608.013450px;}
.yde{bottom:608.022450px;}
.y1fd{bottom:608.022600px;}
.y1d5{bottom:608.025600px;}
.y21b{bottom:608.028600px;}
.y4c{bottom:608.031450px;}
.y1cc{bottom:608.031600px;}
.y8f{bottom:608.173350px;}
.y16{bottom:615.816900px;}
.y6a{bottom:619.207200px;}
.y6e{bottom:622.574550px;}
.y76{bottom:622.574700px;}
.y167{bottom:624.023550px;}
.y147{bottom:625.148550px;}
.y117{bottom:625.795350px;}
.y1c3{bottom:626.004450px;}
.y1b8{bottom:626.016450px;}
.ydd{bottom:626.025450px;}
.y1fc{bottom:626.025600px;}
.y1d4{bottom:626.028600px;}
.y4b{bottom:626.031450px;}
.y1cb{bottom:626.031600px;}
.y8e{bottom:626.173350px;}
.y15{bottom:630.810900px;}
.y166{bottom:642.533550px;}
.y146{bottom:643.403550px;}
.y1c2{bottom:644.007450px;}
.y10f{bottom:644.019450px;}
.ydc{bottom:644.028450px;}
.y1fb{bottom:644.028600px;}
.y4a{bottom:644.031450px;}
.y19a{bottom:644.031600px;}
.y8d{bottom:644.173350px;}
.y14{bottom:645.804900px;}
.yff{bottom:647.406150px;}
.y13{bottom:660.798900px;}
.y165{bottom:661.043550px;}
.y145{bottom:661.658550px;}
.y1c1{bottom:662.010450px;}
.y10e{bottom:662.022450px;}
.y1d3{bottom:662.025600px;}
.y49{bottom:662.031450px;}
.y1ca{bottom:662.031600px;}
.y65{bottom:663.513450px;}
.y8c{bottom:671.173350px;}
.y12{bottom:675.792900px;}
.y164{bottom:679.553550px;}
.y144{bottom:679.913550px;}
.y1c0{bottom:680.013450px;}
.y141{bottom:680.019600px;}
.y10d{bottom:680.025450px;}
.y1d2{bottom:680.028600px;}
.y48{bottom:680.031450px;}
.y1c9{bottom:680.031600px;}
.y8b{bottom:689.173350px;}
.y11{bottom:690.786900px;}
.y1bf{bottom:698.016450px;}
.y140{bottom:698.022600px;}
.y21a{bottom:698.025600px;}
.y10c{bottom:698.028450px;}
.y47{bottom:698.031450px;}
.y1c8{bottom:698.031600px;}
.y163{bottom:698.063550px;}
.y143{bottom:698.168550px;}
.yfa{bottom:701.401650px;}
.y10{bottom:705.780900px;}
.y8a{bottom:707.173350px;}
.y1be{bottom:716.019450px;}
.y1fa{bottom:716.022600px;}
.y13f{bottom:716.025600px;}
.yfb{bottom:716.028450px;}
.y219{bottom:716.028600px;}
.y46{bottom:716.031450px;}
.y199{bottom:716.031600px;}
.yf{bottom:725.032950px;}
.y89{bottom:725.173350px;}
.y1bd{bottom:734.022450px;}
.y1f9{bottom:734.025600px;}
.y13e{bottom:734.028600px;}
.y45{bottom:734.031450px;}
.y198{bottom:734.031600px;}
.y88{bottom:743.173350px;}
.y1d1{bottom:746.031600px;}
.y1bc{bottom:752.025450px;}
.y218{bottom:752.025600px;}
.y1f8{bottom:752.028600px;}
.y44{bottom:752.031450px;}
.y13d{bottom:752.031600px;}
.y181{bottom:752.170350px;}
.y87{bottom:761.173350px;}
.y1bb{bottom:770.028450px;}
.y217{bottom:770.028600px;}
.y43{bottom:770.031450px;}
.y197{bottom:770.031600px;}
.y180{bottom:770.173350px;}
.ye{bottom:773.032950px;}
.y86{bottom:779.173350px;}
.y1f7{bottom:788.028600px;}
.y42{bottom:788.031450px;}
.y196{bottom:788.031600px;}
.y85{bottom:797.173350px;}
.y216{bottom:806.025600px;}
.y1d0{bottom:806.028600px;}
.y41{bottom:806.031450px;}
.y195{bottom:806.031600px;}
.yd{bottom:809.035200px;}
.y66{bottom:822.429450px;}
.y1f6{bottom:824.022600px;}
.y215{bottom:824.028600px;}
.y40{bottom:824.031450px;}
.y194{bottom:824.031600px;}
.y84{bottom:824.173350px;}
.yc{bottom:827.032950px;}
.y1f5{bottom:842.025600px;}
.y214{bottom:842.028600px;}
.y3f{bottom:842.031450px;}
.y193{bottom:842.031600px;}
.y83{bottom:842.173350px;}
.y67{bottom:846.871200px;}
.y1f4{bottom:860.028600px;}
.y3e{bottom:860.031450px;}
.y192{bottom:860.031600px;}
.y82{bottom:860.173350px;}
.y1c7{bottom:863.407650px;}
.yb{bottom:864.531450px;}
.y1cf{bottom:870.531600px;}
.ye1{bottom:872.397150px;}
.y213{bottom:878.025600px;}
.y3d{bottom:878.031450px;}
.y191{bottom:878.031600px;}
.y81{bottom:878.173350px;}
.ya{bottom:885.778200px;}
.y1f3{bottom:896.025600px;}
.y212{bottom:896.028600px;}
.y3c{bottom:896.031450px;}
.y190{bottom:896.031600px;}
.y80{bottom:896.173350px;}
.y115{bottom:899.404650px;}
.y1f2{bottom:914.028600px;}
.y3b{bottom:914.031450px;}
.y18f{bottom:914.031600px;}
.y142{bottom:917.403150px;}
.y9{bottom:923.032950px;}
.y7f{bottom:923.173350px;}
.y211{bottom:932.025600px;}
.y3a{bottom:932.031450px;}
.y18e{bottom:932.031600px;}
.y182{bottom:935.401650px;}
.y7e{bottom:941.173350px;}
.y1f1{bottom:950.022600px;}
.y210{bottom:950.028600px;}
.y39{bottom:950.031450px;}
.y18d{bottom:950.031600px;}
.y7d{bottom:959.173350px;}
.y101{bottom:962.409150px;}
.y1f0{bottom:968.025600px;}
.y38{bottom:968.031450px;}
.y18c{bottom:968.031600px;}
.y8{bottom:971.029200px;}
.y7c{bottom:977.173350px;}
.y20f{bottom:986.025600px;}
.y1ef{bottom:986.028600px;}
.y37{bottom:986.031450px;}
.y18b{bottom:986.031600px;}
.y68{bottom:994.630950px;}
.y7b{bottom:995.173350px;}
.y7{bottom:1001.032950px;}
.y20e{bottom:1004.028600px;}
.y36{bottom:1004.031450px;}
.y18a{bottom:1004.031600px;}
.y7a{bottom:1013.173350px;}
.y1ee{bottom:1022.022600px;}
.y35{bottom:1022.031450px;}
.y189{bottom:1022.031600px;}
.y69{bottom:1023.853950px;}
.y1ed{bottom:1040.025600px;}
.y34{bottom:1040.031450px;}
.y188{bottom:1040.031600px;}
.y116{bottom:1048.150650px;}
.y79{bottom:1055.173350px;}
.y1ec{bottom:1058.028600px;}
.y33{bottom:1058.031450px;}
.y187{bottom:1058.031600px;}
.y32{bottom:1076.031450px;}
.y186{bottom:1076.031600px;}
.y1eb{bottom:1094.025600px;}
.y60{bottom:1094.031450px;}
.y185{bottom:1094.031600px;}
.y31{bottom:1094.033550px;}
.y78{bottom:1107.673350px;}
.y1ea{bottom:1112.028600px;}
.y5f{bottom:1112.031450px;}
.y184{bottom:1112.031600px;}
.y30{bottom:1112.033550px;}
.ye0{bottom:1124.902650px;}
.y5e{bottom:1130.031450px;}
.y183{bottom:1130.031600px;}
.y2f{bottom:1130.033550px;}
.y6{bottom:1151.958750px;}
.y5{bottom:1158.343650px;}
.y3{bottom:1181.113650px;}
.y4{bottom:1182.013650px;}
.y2e{bottom:1192.057050px;}
.y61{bottom:1192.619550px;}
.y62{bottom:1193.517300px;}
.h9{height:24.491247px;}
.h12{height:34.539551px;}
.h1d{height:34.620035px;}
.h1f{height:35.411133px;}
.hd{height:35.436035px;}
.h20{height:35.448035px;}
.h1e{height:35.895035px;}
.h13{height:37.635008px;}
.h1c{height:37.641008px;}
.h1a{height:37.651808px;}
.h16{height:37.652408px;}
.h17{height:37.653008px;}
.h10{height:37.654208px;}
.h18{height:37.660208px;}
.h14{height:37.662008px;}
.h19{height:37.666808px;}
.h15{height:37.747208px;}
.h6{height:39.798000px;}
.h3{height:39.852000px;}
.hb{height:41.566800px;}
.he{height:41.689453px;}
.hf{height:41.952000px;}
.ha{height:42.009000px;}
.h2{height:44.220000px;}
.h5{height:44.280000px;}
.h4{height:44.460000px;}
.h1b{height:51.216000px;}
.h8{height:58.905600px;}
.hc{height:60.528000px;}
.h11{height:64.527551px;}
.h7{height:81.480000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.181100px;}
.x35{left:93.879600px;}
.x2{left:106.299150px;}
.xc{left:115.139550px;}
.x37{left:124.957050px;}
.xd{left:133.142550px;}
.x36{left:139.951050px;}
.x38{left:157.507800px;}
.x10{left:164.217000px;}
.xe{left:171.714000px;}
.x39{left:175.077300px;}
.xf{left:179.211000px;}
.x3a{left:192.436800px;}
.x11{left:196.767750px;}
.x3b{left:209.793600px;}
.x12{left:214.337250px;}
.x3c{left:227.150250px;}
.x13{left:231.696450px;}
.x3d{left:244.506900px;}
.x14{left:249.049200px;}
.x3e{left:261.863700px;}
.x15{left:266.416500px;}
.x3f{left:279.220350px;}
.x16{left:283.769250px;}
.x40{left:296.577150px;}
.x17{left:301.138650px;}
.x41{left:313.933800px;}
.x18{left:318.504150px;}
.x42{left:331.073850px;}
.x19{left:335.837100px;}
.x43{left:349.166100px;}
.x1a{left:353.193900px;}
.x44{left:366.939600px;}
.x1b{left:370.550550px;}
.x1c{left:387.907200px;}
.x48{left:398.974650px;}
.x1d{left:405.264000px;}
.x6{left:408.617700px;}
.x1e{left:422.620800px;}
.x1f{left:439.977450px;}
.x9{left:446.449350px;}
.x20{left:457.334250px;}
.x46{left:466.679100px;}
.x7{left:467.706150px;}
.x21{left:474.690900px;}
.x45{left:480.465150px;}
.x47{left:487.934100px;}
.x4a{left:488.971050px;}
.x22{left:492.047700px;}
.x23{left:500.723550px;}
.x24{left:509.406300px;}
.x25{left:526.764750px;}
.x26{left:544.117800px;}
.x27{left:561.474600px;}
.x28{left:578.831250px;}
.x29{left:596.188050px;}
.x2a{left:613.544700px;}
.xa{left:615.525300px;}
.x2b{left:630.901500px;}
.x49{left:645.728100px;}
.x2c{left:648.258150px;}
.x2d{left:665.614950px;}
.x2e{left:682.971600px;}
.x3{left:701.154750px;}
.x2f{left:717.685050px;}
.x5{left:720.684750px;}
.x4{left:722.079750px;}
.x30{left:735.041700px;}
.x31{left:752.398500px;}
.xb{left:766.892550px;}
.x32{left:769.755150px;}
.x33{left:787.111950px;}
.x1{left:788.254500px;}
.x34{left:804.468750px;}
@media print{
.v7{vertical-align:-30.826667pt;}
.v4{vertical-align:-16.872000pt;}
.v8{vertical-align:-15.096000pt;}
.v1{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.200000pt;}
.v5{vertical-align:15.106667pt;}
.v3{vertical-align:22.200000pt;}
.v6{vertical-align:26.656000pt;}
.ls8{letter-spacing:-2.773333pt;}
.ls65{letter-spacing:-2.493333pt;}
.ls5f{letter-spacing:-0.680000pt;}
.ls66{letter-spacing:-0.272000pt;}
.ls44{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.152000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000267pt;}
.ls63{letter-spacing:0.003200pt;}
.ls5e{letter-spacing:0.004533pt;}
.ls61{letter-spacing:0.006933pt;}
.ls60{letter-spacing:0.007467pt;}
.ls5{letter-spacing:0.008000pt;}
.ls2{letter-spacing:0.008533pt;}
.ls0{letter-spacing:0.009067pt;}
.ls5d{letter-spacing:0.009600pt;}
.ls1{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls4c{letter-spacing:0.136000pt;}
.ls4b{letter-spacing:0.181333pt;}
.ls4a{letter-spacing:0.217600pt;}
.ls4f{letter-spacing:0.226667pt;}
.ls4e{letter-spacing:0.258400pt;}
.ls4d{letter-spacing:0.262933pt;}
.ls48{letter-spacing:0.272000pt;}
.ls49{letter-spacing:0.317333pt;}
.lsd{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.746667pt;}
.ls52{letter-spacing:0.773333pt;}
.ls62{letter-spacing:0.816000pt;}
.ls64{letter-spacing:0.906667pt;}
.ls46{letter-spacing:0.997333pt;}
.lsb{letter-spacing:1.173333pt;}
.ls11{letter-spacing:1.653333pt;}
.ls51{letter-spacing:2.400000pt;}
.ls50{letter-spacing:2.448000pt;}
.ls10{letter-spacing:2.880000pt;}
.ls3{letter-spacing:3.520000pt;}
.ls47{letter-spacing:3.762667pt;}
.lsf{letter-spacing:3.846933pt;}
.lse{letter-spacing:3.847467pt;}
.ls58{letter-spacing:3.926933pt;}
.ls5c{letter-spacing:3.932267pt;}
.ls56{letter-spacing:4.480000pt;}
.ls57{letter-spacing:4.533333pt;}
.ls53{letter-spacing:4.634667pt;}
.ls34{letter-spacing:5.013333pt;}
.ls5b{letter-spacing:5.093333pt;}
.ls55{letter-spacing:5.466667pt;}
.ls4{letter-spacing:5.493333pt;}
.lsc{letter-spacing:6.293333pt;}
.ls59{letter-spacing:6.437333pt;}
.ls45{letter-spacing:6.986667pt;}
.ls54{letter-spacing:11.829333pt;}
.ls5a{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:122.327733pt;}
.ls42{letter-spacing:137.994667pt;}
.ls43{letter-spacing:149.328000pt;}
.ls23{letter-spacing:163.466400pt;}
.ls18{letter-spacing:166.328000pt;}
.ls15{letter-spacing:189.696800pt;}
.ls29{letter-spacing:190.482933pt;}
.ls1d{letter-spacing:207.305867pt;}
.ls1a{letter-spacing:216.502667pt;}
.ls1b{letter-spacing:225.788533pt;}
.ls1c{letter-spacing:232.074933pt;}
.ls14{letter-spacing:234.609333pt;}
.ls3b{letter-spacing:254.730933pt;}
.ls41{letter-spacing:256.568267pt;}
.ls31{letter-spacing:271.686667pt;}
.ls26{letter-spacing:292.493600pt;}
.ls27{letter-spacing:299.455200pt;}
.ls2e{letter-spacing:301.292533pt;}
.ls20{letter-spacing:327.301600pt;}
.ls21{letter-spacing:333.189600pt;}
.ls37{letter-spacing:340.328267pt;}
.ls16{letter-spacing:340.339467pt;}
.ls3f{letter-spacing:344.080267pt;}
.ls19{letter-spacing:349.348533pt;}
.ls33{letter-spacing:355.413600pt;}
.ls13{letter-spacing:356.719733pt;}
.ls17{letter-spacing:357.339467pt;}
.ls3a{letter-spacing:366.769333pt;}
.ls39{letter-spacing:367.986400pt;}
.ls3c{letter-spacing:368.030667pt;}
.ls28{letter-spacing:381.752000pt;}
.ls30{letter-spacing:386.901600pt;}
.ls32{letter-spacing:390.111200pt;}
.ls2f{letter-spacing:395.113333pt;}
.ls3e{letter-spacing:402.008800pt;}
.ls25{letter-spacing:412.080267pt;}
.ls36{letter-spacing:422.140533pt;}
.ls2b{letter-spacing:422.141067pt;}
.ls2d{letter-spacing:516.482667pt;}
.ls40{letter-spacing:614.040000pt;}
.ls22{letter-spacing:622.970667pt;}
.ls2c{letter-spacing:652.813600pt;}
.ls35{letter-spacing:664.949333pt;}
.ls38{letter-spacing:713.292800pt;}
.ls1f{letter-spacing:767.448000pt;}
.ls2a{letter-spacing:789.661333pt;}
.ls3d{letter-spacing:831.277333pt;}
.ls24{letter-spacing:945.789333pt;}
.ws7b{word-spacing:-177.661333pt;}
.ws7f{word-spacing:-53.333333pt;}
.ws7e{word-spacing:-53.173333pt;}
.wsc8{word-spacing:-45.866667pt;}
.wsd7{word-spacing:-43.360000pt;}
.wseb{word-spacing:-42.880000pt;}
.wsd6{word-spacing:-38.453333pt;}
.ws4{word-spacing:-20.106667pt;}
.ws1{word-spacing:-15.466667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.693333pt;}
.ws79{word-spacing:-11.333333pt;}
.ws75{word-spacing:-11.045333pt;}
.ws5{word-spacing:-9.333333pt;}
.ws14a{word-spacing:-8.840000pt;}
.ws8{word-spacing:-8.800000pt;}
.ws128{word-spacing:-7.933333pt;}
.ws9f{word-spacing:-6.666667pt;}
.ws3{word-spacing:-6.439429pt;}
.wse{word-spacing:-5.666667pt;}
.ws9b{word-spacing:-4.941333pt;}
.ws9a{word-spacing:-4.624000pt;}
.wsb1{word-spacing:-4.106667pt;}
.wsef{word-spacing:-4.053333pt;}
.ws6b{word-spacing:-3.626667pt;}
.wsba{word-spacing:-3.573333pt;}
.ws13b{word-spacing:-3.173333pt;}
.ws118{word-spacing:-3.146667pt;}
.wsd1{word-spacing:-2.992000pt;}
.ws10a{word-spacing:-2.986667pt;}
.wsa8{word-spacing:-2.880000pt;}
.ws169{word-spacing:-2.765333pt;}
.ws103{word-spacing:-2.720000pt;}
.ws44{word-spacing:-2.666667pt;}
.ws119{word-spacing:-2.613333pt;}
.wsa0{word-spacing:-2.560000pt;}
.ws85{word-spacing:-2.506667pt;}
.ws2f{word-spacing:-2.346667pt;}
.wsb7{word-spacing:-2.293333pt;}
.ws108{word-spacing:-2.240000pt;}
.ws52{word-spacing:-2.186667pt;}
.ws6e{word-spacing:-2.133333pt;}
.ws150{word-spacing:-2.130667pt;}
.ws9e{word-spacing:-2.080000pt;}
.ws168{word-spacing:-1.949333pt;}
.ws92{word-spacing:-1.920000pt;}
.wsc4{word-spacing:-1.904000pt;}
.ws88{word-spacing:-1.813333pt;}
.ws141{word-spacing:-1.768000pt;}
.wsed{word-spacing:-1.760000pt;}
.wsc6{word-spacing:-1.722667pt;}
.wsfd{word-spacing:-1.706667pt;}
.ws156{word-spacing:-1.677333pt;}
.ws101{word-spacing:-1.653333pt;}
.wsb3{word-spacing:-1.632000pt;}
.ws11b{word-spacing:-1.600000pt;}
.wsf6{word-spacing:-1.586667pt;}
.ws23{word-spacing:-1.546667pt;}
.ws162{word-spacing:-1.541333pt;}
.ws165{word-spacing:-1.450667pt;}
.ws25{word-spacing:-1.440000pt;}
.ws149{word-spacing:-1.405333pt;}
.ws12{word-spacing:-1.386667pt;}
.wsfa{word-spacing:-1.333333pt;}
.ws124{word-spacing:-1.314667pt;}
.ws16b{word-spacing:-1.269333pt;}
.ws66{word-spacing:-1.226667pt;}
.ws125{word-spacing:-1.133333pt;}
.wsda{word-spacing:-1.120000pt;}
.ws69{word-spacing:-1.066667pt;}
.ws98{word-spacing:-1.013333pt;}
.ws15{word-spacing:-0.960000pt;}
.ws91{word-spacing:-0.906667pt;}
.ws89{word-spacing:-0.853333pt;}
.ws7d{word-spacing:-0.816000pt;}
.ws0{word-spacing:-0.800000pt;}
.ws144{word-spacing:-0.770667pt;}
.wsd0{word-spacing:-0.746667pt;}
.ws143{word-spacing:-0.725333pt;}
.ws137{word-spacing:-0.693333pt;}
.wsd{word-spacing:-0.680000pt;}
.ws47{word-spacing:-0.640000pt;}
.wse7{word-spacing:-0.589333pt;}
.wsa4{word-spacing:-0.586667pt;}
.ws11a{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.498667pt;}
.wsb4{word-spacing:-0.453333pt;}
.ws12a{word-spacing:-0.426667pt;}
.wsf0{word-spacing:-0.373333pt;}
.ws2c{word-spacing:-0.320000pt;}
.wse8{word-spacing:-0.317333pt;}
.wse4{word-spacing:-0.272000pt;}
.ws13d{word-spacing:-0.226667pt;}
.ws41{word-spacing:-0.213333pt;}
.ws15f{word-spacing:-0.181333pt;}
.ws8c{word-spacing:-0.160000pt;}
.ws45{word-spacing:-0.106667pt;}
.ws147{word-spacing:-0.090667pt;}
.ws7{word-spacing:0.000000pt;}
.ws90{word-spacing:0.053333pt;}
.ws148{word-spacing:0.090667pt;}
.ws29{word-spacing:0.106667pt;}
.ws87{word-spacing:0.160000pt;}
.ws14{word-spacing:0.213333pt;}
.wsbe{word-spacing:0.266667pt;}
.ws126{word-spacing:0.272000pt;}
.wsd4{word-spacing:0.317333pt;}
.wscf{word-spacing:0.320000pt;}
.ws22{word-spacing:0.373333pt;}
.wsf{word-spacing:0.408000pt;}
.ws3f{word-spacing:0.426667pt;}
.ws154{word-spacing:0.453333pt;}
.ws5f{word-spacing:0.480000pt;}
.ws2a{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.589333pt;}
.ws86{word-spacing:0.640000pt;}
.wsdb{word-spacing:0.693333pt;}
.ws4f{word-spacing:0.746667pt;}
.wsc5{word-spacing:0.770667pt;}
.wsa1{word-spacing:0.800000pt;}
.ws136{word-spacing:0.853333pt;}
.wsee{word-spacing:0.906667pt;}
.ws11{word-spacing:0.952000pt;}
.wsab{word-spacing:0.960000pt;}
.wsb2{word-spacing:0.997333pt;}
.ws106{word-spacing:1.013333pt;}
.ws123{word-spacing:1.042667pt;}
.wsf3{word-spacing:1.066667pt;}
.ws64{word-spacing:1.120000pt;}
.ws2d{word-spacing:1.173333pt;}
.ws10{word-spacing:1.224000pt;}
.ws53{word-spacing:1.226667pt;}
.ws9{word-spacing:1.266667pt;}
.wsc3{word-spacing:1.269333pt;}
.wsa3{word-spacing:1.280000pt;}
.ws72{word-spacing:1.333333pt;}
.ws113{word-spacing:1.360000pt;}
.ws63{word-spacing:1.386667pt;}
.ws14f{word-spacing:1.405333pt;}
.ws62{word-spacing:1.440000pt;}
.wsb{word-spacing:1.496000pt;}
.wsa6{word-spacing:1.546667pt;}
.ws14e{word-spacing:1.586667pt;}
.ws13{word-spacing:1.600000pt;}
.wse9{word-spacing:1.632000pt;}
.ws73{word-spacing:1.653333pt;}
.wsd3{word-spacing:1.677333pt;}
.wsb0{word-spacing:1.706667pt;}
.wsc7{word-spacing:1.722667pt;}
.ws8b{word-spacing:1.760000pt;}
.ws2e{word-spacing:1.813333pt;}
.wse5{word-spacing:1.858667pt;}
.ws35{word-spacing:1.866667pt;}
.wsea{word-spacing:1.904000pt;}
.ws5d{word-spacing:1.920000pt;}
.ws170{word-spacing:1.949333pt;}
.wsce{word-spacing:1.973333pt;}
.ws9d{word-spacing:2.026667pt;}
.ws13f{word-spacing:2.040000pt;}
.wsc0{word-spacing:2.085333pt;}
.wse6{word-spacing:2.130667pt;}
.ws8f{word-spacing:2.133333pt;}
.wse3{word-spacing:2.176000pt;}
.wsf8{word-spacing:2.186667pt;}
.ws132{word-spacing:2.240000pt;}
.ws151{word-spacing:2.266667pt;}
.wsa2{word-spacing:2.293333pt;}
.ws175{word-spacing:2.312000pt;}
.ws42{word-spacing:2.346667pt;}
.wscb{word-spacing:2.400000pt;}
.ws140{word-spacing:2.448000pt;}
.wsf1{word-spacing:2.453333pt;}
.ws171{word-spacing:2.493333pt;}
.ws134{word-spacing:2.506667pt;}
.ws142{word-spacing:2.538667pt;}
.ws67{word-spacing:2.613333pt;}
.ws10b{word-spacing:2.666667pt;}
.ws24{word-spacing:2.826667pt;}
.ws153{word-spacing:2.856000pt;}
.ws6f{word-spacing:2.880000pt;}
.ws145{word-spacing:2.901333pt;}
.wsfe{word-spacing:2.933333pt;}
.ws70{word-spacing:2.986667pt;}
.ws15c{word-spacing:3.037333pt;}
.wsdc{word-spacing:3.040000pt;}
.ws13e{word-spacing:3.082667pt;}
.ws39{word-spacing:3.093333pt;}
.ws3a{word-spacing:3.146667pt;}
.ws97{word-spacing:3.200000pt;}
.ws11c{word-spacing:3.253333pt;}
.ws74{word-spacing:3.306667pt;}
.ws51{word-spacing:3.360000pt;}
.wsb5{word-spacing:3.413333pt;}
.ws117{word-spacing:3.466667pt;}
.ws15d{word-spacing:3.490667pt;}
.ws1b{word-spacing:3.520000pt;}
.ws16e{word-spacing:3.536000pt;}
.ws57{word-spacing:3.573333pt;}
.ws112{word-spacing:3.581333pt;}
.wsaf{word-spacing:3.626667pt;}
.ws166{word-spacing:3.717333pt;}
.ws65{word-spacing:3.733333pt;}
.wsd2{word-spacing:3.762667pt;}
.ws6d{word-spacing:3.786667pt;}
.wsc{word-spacing:3.808000pt;}
.ws5a{word-spacing:3.840000pt;}
.ws16d{word-spacing:3.853333pt;}
.ws61{word-spacing:3.893333pt;}
.ws176{word-spacing:3.898667pt;}
.ws111{word-spacing:3.944000pt;}
.ws71{word-spacing:3.946667pt;}
.ws10e{word-spacing:3.989333pt;}
.wsb8{word-spacing:4.000000pt;}
.ws68{word-spacing:4.053333pt;}
.ws155{word-spacing:4.080000pt;}
.wsdd{word-spacing:4.106667pt;}
.ws6a{word-spacing:4.160000pt;}
.wsa9{word-spacing:4.213333pt;}
.ws6c{word-spacing:4.266667pt;}
.ws16a{word-spacing:4.306667pt;}
.ws14c{word-spacing:4.352000pt;}
.ws104{word-spacing:4.373333pt;}
.ws163{word-spacing:4.397333pt;}
.wsbc{word-spacing:4.426667pt;}
.ws5b{word-spacing:4.480000pt;}
.ws27{word-spacing:4.533333pt;}
.ws95{word-spacing:4.586667pt;}
.wsfc{word-spacing:4.640000pt;}
.ws152{word-spacing:4.669333pt;}
.ws43{word-spacing:4.693333pt;}
.ws33{word-spacing:4.746667pt;}
.ws18{word-spacing:4.800000pt;}
.wsf4{word-spacing:4.853333pt;}
.ws19{word-spacing:4.906667pt;}
.ws31{word-spacing:4.960000pt;}
.ws161{word-spacing:4.986667pt;}
.ws55{word-spacing:5.013333pt;}
.ws54{word-spacing:5.066667pt;}
.ws20{word-spacing:5.120000pt;}
.ws32{word-spacing:5.226667pt;}
.ws48{word-spacing:5.280000pt;}
.wsde{word-spacing:5.333333pt;}
.ws100{word-spacing:5.386667pt;}
.ws21{word-spacing:5.493333pt;}
.ws14d{word-spacing:5.530667pt;}
.wse1{word-spacing:5.546667pt;}
.ws5e{word-spacing:5.600000pt;}
.ws16{word-spacing:5.653333pt;}
.wsec{word-spacing:5.706667pt;}
.wsa5{word-spacing:5.813333pt;}
.ws8a{word-spacing:5.866667pt;}
.ws172{word-spacing:5.938667pt;}
.ws59{word-spacing:5.973333pt;}
.wsb6{word-spacing:6.026667pt;}
.ws2b{word-spacing:6.080000pt;}
.ws15e{word-spacing:6.210667pt;}
.wsf2{word-spacing:6.240000pt;}
.ws14b{word-spacing:6.256000pt;}
.ws30{word-spacing:6.293333pt;}
.ws11e{word-spacing:6.346667pt;}
.ws10f{word-spacing:6.392000pt;}
.ws9c{word-spacing:6.400000pt;}
.ws110{word-spacing:6.437333pt;}
.ws99{word-spacing:6.453333pt;}
.wsfb{word-spacing:6.506667pt;}
.ws46{word-spacing:6.560000pt;}
.ws12f{word-spacing:6.613333pt;}
.ws122{word-spacing:6.664000pt;}
.ws38{word-spacing:6.666667pt;}
.ws17{word-spacing:6.720000pt;}
.wsdf{word-spacing:6.773333pt;}
.ws16c{word-spacing:6.800000pt;}
.ws28{word-spacing:6.826667pt;}
.ws11f{word-spacing:6.845333pt;}
.ws8e{word-spacing:6.986667pt;}
.wsbd{word-spacing:7.040000pt;}
.ws94{word-spacing:7.093333pt;}
.ws4c{word-spacing:7.146667pt;}
.ws173{word-spacing:7.162667pt;}
.wsca{word-spacing:7.200000pt;}
.ws167{word-spacing:7.253333pt;}
.ws37{word-spacing:7.306667pt;}
.ws114{word-spacing:7.344000pt;}
.ws1e{word-spacing:7.413333pt;}
.wsc9{word-spacing:7.520000pt;}
.ws1d{word-spacing:7.573333pt;}
.wsbf{word-spacing:7.626667pt;}
.ws1a{word-spacing:7.680000pt;}
.ws4e{word-spacing:7.733333pt;}
.wsf7{word-spacing:7.786667pt;}
.ws12e{word-spacing:7.840000pt;}
.ws50{word-spacing:7.946667pt;}
.ws1f{word-spacing:8.053333pt;}
.ws15b{word-spacing:8.114667pt;}
.ws60{word-spacing:8.160000pt;}
.ws40{word-spacing:8.266667pt;}
.ws133{word-spacing:8.373333pt;}
.ws116{word-spacing:8.480000pt;}
.ws36{word-spacing:8.533333pt;}
.ws146{word-spacing:8.568000pt;}
.ws26{word-spacing:8.640000pt;}
.ws135{word-spacing:8.746667pt;}
.ws10d{word-spacing:8.800000pt;}
.ws15a{word-spacing:8.840000pt;}
.ws12d{word-spacing:8.853333pt;}
.wsbb{word-spacing:8.960000pt;}
.wsd5{word-spacing:9.021333pt;}
.ws3e{word-spacing:9.066667pt;}
.ws3c{word-spacing:9.226667pt;}
.ws93{word-spacing:9.493333pt;}
.wsa7{word-spacing:9.600000pt;}
.ws58{word-spacing:9.653333pt;}
.ws160{word-spacing:9.701333pt;}
.ws96{word-spacing:9.813333pt;}
.wsf9{word-spacing:9.866667pt;}
.ws3b{word-spacing:9.920000pt;}
.wscc{word-spacing:9.973333pt;}
.ws157{word-spacing:10.018667pt;}
.ws5c{word-spacing:10.026667pt;}
.ws13c{word-spacing:10.336000pt;}
.ws107{word-spacing:10.506667pt;}
.ws4b{word-spacing:10.613333pt;}
.wsff{word-spacing:10.720000pt;}
.wsd8{word-spacing:10.826667pt;}
.wsb9{word-spacing:10.880000pt;}
.ws3d{word-spacing:10.986667pt;}
.ws84{word-spacing:11.093333pt;}
.ws164{word-spacing:11.197333pt;}
.wsd9{word-spacing:11.253333pt;}
.ws105{word-spacing:11.306667pt;}
.ws129{word-spacing:11.360000pt;}
.ws16f{word-spacing:11.469333pt;}
.ws130{word-spacing:11.573333pt;}
.ws102{word-spacing:11.840000pt;}
.wsaa{word-spacing:11.946667pt;}
.ws56{word-spacing:12.213333pt;}
.ws109{word-spacing:12.426667pt;}
.ws49{word-spacing:12.480000pt;}
.ws4a{word-spacing:12.693333pt;}
.ws13a{word-spacing:12.746667pt;}
.ws139{word-spacing:12.800000pt;}
.ws138{word-spacing:13.066667pt;}
.wsad{word-spacing:13.173333pt;}
.ws131{word-spacing:13.226667pt;}
.ws159{word-spacing:13.645333pt;}
.ws127{word-spacing:14.098667pt;}
.ws34{word-spacing:14.453333pt;}
.wsf5{word-spacing:14.506667pt;}
.wse0{word-spacing:14.880000pt;}
.wsae{word-spacing:14.933333pt;}
.ws10c{word-spacing:15.200000pt;}
.ws158{word-spacing:15.232000pt;}
.ws115{word-spacing:16.000000pt;}
.wsac{word-spacing:16.053333pt;}
.ws12b{word-spacing:16.373333pt;}
.ws12c{word-spacing:17.333333pt;}
.ws174{word-spacing:17.816000pt;}
.ws8d{word-spacing:18.133333pt;}
.ws11d{word-spacing:19.040000pt;}
.wse2{word-spacing:20.586667pt;}
.wscd{word-spacing:20.640000pt;}
.ws4d{word-spacing:22.560000pt;}
.ws121{word-spacing:22.938667pt;}
.ws120{word-spacing:25.477333pt;}
.ws1c{word-spacing:28.640000pt;}
.ws82{word-spacing:98.328000pt;}
.ws7a{word-spacing:109.661333pt;}
.ws81{word-spacing:115.328000pt;}
.ws76{word-spacing:117.186667pt;}
.ws78{word-spacing:120.994667pt;}
.ws83{word-spacing:132.962667pt;}
.ws80{word-spacing:154.994667pt;}
.ws77{word-spacing:622.064000pt;}
.wsc1{word-spacing:641.472000pt;}
.wsc2{word-spacing:716.976000pt;}
._21{margin-left:-165.928867pt;}
._4f{margin-left:-20.640000pt;}
._56{margin-left:-17.810400pt;}
._46{margin-left:-16.062267pt;}
._48{margin-left:-14.986667pt;}
._45{margin-left:-13.182733pt;}
._4b{margin-left:-12.086600pt;}
._4d{margin-left:-10.665800pt;}
._37{margin-left:-9.334200pt;}
._8{margin-left:-7.289800pt;}
._7{margin-left:-6.155933pt;}
._a{margin-left:-4.665133pt;}
._2{margin-left:-3.669333pt;}
._0{margin-left:-1.920000pt;}
._6{margin-left:-0.960000pt;}
._3{width:0.912000pt;}
._4{width:2.517333pt;}
._5{width:3.568000pt;}
._9{width:4.706400pt;}
._d{width:5.802667pt;}
._c{width:7.105600pt;}
._4c{width:8.258133pt;}
._1{width:9.333333pt;}
._38{width:10.339600pt;}
._b{width:11.370667pt;}
._4a{width:13.285333pt;}
._10{width:14.410667pt;}
._51{width:16.004800pt;}
._39{width:18.053333pt;}
._4e{width:20.586667pt;}
._49{width:21.530667pt;}
._47{width:23.486267pt;}
._54{width:25.432000pt;}
._e{width:33.600000pt;}
._53{width:43.200000pt;}
._50{width:54.453333pt;}
._55{width:55.626667pt;}
._11{width:59.893333pt;}
._f{width:62.240000pt;}
._12{width:63.786667pt;}
._52{width:65.386667pt;}
._16{width:105.898667pt;}
._1d{width:110.242333pt;}
._44{width:111.157333pt;}
._15{width:131.058667pt;}
._1b{width:132.328000pt;}
._1f{width:133.497800pt;}
._26{width:148.633200pt;}
._25{width:149.675400pt;}
._40{width:157.350600pt;}
._3c{width:158.763200pt;}
._2b{width:166.410133pt;}
._3d{width:173.892800pt;}
._18{width:239.693333pt;}
._29{width:363.936000pt;}
._1e{width:394.824000pt;}
._20{width:413.728000pt;}
._28{width:450.160000pt;}
._27{width:467.341333pt;}
._14{width:496.490667pt;}
._1c{width:524.416000pt;}
._36{width:530.218667pt;}
._2c{width:572.968000pt;}
._23{width:588.970667pt;}
._2a{width:590.738667pt;}
._24{width:598.264000pt;}
._2f{width:617.818667pt;}
._41{width:641.013333pt;}
._30{width:664.482667pt;}
._3a{width:675.754667pt;}
._3e{width:683.944000pt;}
._3b{width:685.909333pt;}
._32{width:691.469333pt;}
._35{width:694.008000pt;}
._13{width:715.042667pt;}
._34{width:723.656000pt;}
._33{width:728.008000pt;}
._22{width:748.317333pt;}
._2d{width:780.504000pt;}
._2e{width:790.810667pt;}
._3f{width:857.706667pt;}
._31{width:950.232000pt;}
._19{width:1288.464000pt;}
._17{width:1384.117333pt;}
._1a{width:1481.781333pt;}
._43{width:1536.664000pt;}
._42{width:1580.728000pt;}
.fsb{font-size:26.429333pt;}
.fs5{font-size:29.538667pt;}
.fsd{font-size:31.733333pt;}
.fsa{font-size:37.333333pt;}
.fs4{font-size:38.866667pt;}
.fs9{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.133333pt;}
.fs6{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs3{font-size:66.666667pt;}
.fs8{font-size:69.333333pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:32.354267pt;}
.y2{bottom:33.736267pt;}
.y63{bottom:75.590533pt;}
.y133{bottom:76.262533pt;}
.yfe{bottom:76.467067pt;}
.y20d{bottom:76.467200pt;}
.y1e9{bottom:76.469867pt;}
.y5d{bottom:76.472400pt;}
.y1b6{bottom:76.472533pt;}
.y162{bottom:76.500933pt;}
.y10b{bottom:76.567600pt;}
.yf3{bottom:76.594267pt;}
.yc5{bottom:76.598400pt;}
.yaa{bottom:76.598533pt;}
.y17f{bottom:76.613733pt;}
.ydb{bottom:76.678400pt;}
.y6b{bottom:79.517733pt;}
.y71{bottom:79.541600pt;}
.y6c{bottom:79.552933pt;}
.y6f{bottom:79.564267pt;}
.y70{bottom:79.575600pt;}
.yab{bottom:81.070400pt;}
.y73{bottom:81.082933pt;}
.y77{bottom:81.090667pt;}
.y75{bottom:81.094400pt;}
.y72{bottom:81.105600pt;}
.y74{bottom:81.105733pt;}
.yac{bottom:81.117067pt;}
.yad{bottom:81.128400pt;}
.y132{bottom:92.262533pt;}
.yfd{bottom:92.469733pt;}
.y20c{bottom:92.469867pt;}
.y5c{bottom:92.472400pt;}
.y1b5{bottom:92.472533pt;}
.yf2{bottom:92.594267pt;}
.yc4{bottom:92.598400pt;}
.ya9{bottom:92.598533pt;}
.y161{bottom:92.727600pt;}
.y17e{bottom:93.067067pt;}
.y10a{bottom:93.460933pt;}
.yda{bottom:101.265067pt;}
.y131{bottom:108.262533pt;}
.y1e8{bottom:108.461867pt;}
.y2d{bottom:108.472400pt;}
.y1b4{bottom:108.472533pt;}
.yf1{bottom:108.594267pt;}
.ya8{bottom:108.598533pt;}
.y160{bottom:108.954267pt;}
.y17d{bottom:109.520400pt;}
.y109{bottom:110.354267pt;}
.y13c{bottom:116.262533pt;}
.yc3{bottom:116.598400pt;}
.yd9{bottom:117.558400pt;}
.y130{bottom:124.262533pt;}
.y1e7{bottom:124.464533pt;}
.y20b{bottom:124.467200pt;}
.y2c{bottom:124.472400pt;}
.y1b3{bottom:124.472533pt;}
.yfc{bottom:124.475067pt;}
.yf0{bottom:124.594267pt;}
.ya7{bottom:124.598533pt;}
.y15f{bottom:125.180933pt;}
.y17c{bottom:125.973733pt;}
.y108{bottom:127.247600pt;}
.y13b{bottom:132.262533pt;}
.yc2{bottom:132.598400pt;}
.yd8{bottom:133.851733pt;}
.y12f{bottom:140.262533pt;}
.y1e6{bottom:140.467200pt;}
.y20a{bottom:140.469867pt;}
.y2b{bottom:140.472400pt;}
.y1b2{bottom:140.472533pt;}
.yef{bottom:140.594267pt;}
.y17b{bottom:142.427067pt;}
.y1b7{bottom:144.472533pt;}
.y13a{bottom:148.262533pt;}
.yc1{bottom:148.598400pt;}
.ya6{bottom:148.598533pt;}
.y15e{bottom:149.620933pt;}
.yd7{bottom:150.145067pt;}
.y107{bottom:153.020933pt;}
.y12e{bottom:156.262533pt;}
.y1e5{bottom:156.469867pt;}
.y2a{bottom:156.472400pt;}
.y1b1{bottom:156.472533pt;}
.y5b{bottom:156.473733pt;}
.yee{bottom:156.594267pt;}
.yc0{bottom:164.598400pt;}
.ya5{bottom:164.598533pt;}
.y15d{bottom:165.847600pt;}
.yd6{bottom:166.438400pt;}
.y64{bottom:168.053733pt;}
.y106{bottom:169.914267pt;}
.y12d{bottom:172.262533pt;}
.y209{bottom:172.464533pt;}
.y1e4{bottom:172.469867pt;}
.y29{bottom:172.472400pt;}
.y1b0{bottom:172.472533pt;}
.yf8{bottom:172.594267pt;}
.y17a{bottom:175.341333pt;}
.yed{bottom:180.594267pt;}
.ybf{bottom:180.598400pt;}
.ya4{bottom:180.598533pt;}
.y15c{bottom:182.074267pt;}
.y105{bottom:186.807600pt;}
.y12c{bottom:188.262533pt;}
.y208{bottom:188.467200pt;}
.y28{bottom:188.472400pt;}
.y1af{bottom:188.472533pt;}
.yf7{bottom:188.594267pt;}
.yd5{bottom:191.025067pt;}
.yec{bottom:196.594267pt;}
.ybe{bottom:196.598400pt;}
.ya3{bottom:196.598533pt;}
.y15b{bottom:198.300933pt;}
.y104{bottom:203.700933pt;}
.y12b{bottom:204.262533pt;}
.y1e3{bottom:204.467200pt;}
.y207{bottom:204.469867pt;}
.y27{bottom:204.472400pt;}
.y1ae{bottom:204.472533pt;}
.y103{bottom:204.594267pt;}
.yd4{bottom:207.318400pt;}
.yeb{bottom:212.594267pt;}
.ybd{bottom:212.598400pt;}
.ya2{bottom:212.598533pt;}
.y15a{bottom:214.527600pt;}
.y1e2{bottom:220.469867pt;}
.y26{bottom:220.472400pt;}
.y1ad{bottom:220.472533pt;}
.y102{bottom:220.594267pt;}
.yd3{bottom:223.611733pt;}
.y179{bottom:224.660933pt;}
.y12a{bottom:228.262533pt;}
.yea{bottom:228.594267pt;}
.ya1{bottom:228.598533pt;}
.y224{bottom:236.464533pt;}
.y1e1{bottom:236.469867pt;}
.y25{bottom:236.472400pt;}
.y1ac{bottom:236.472533pt;}
.ybc{bottom:236.598400pt;}
.y159{bottom:238.967600pt;}
.yd2{bottom:239.905067pt;}
.y178{bottom:241.114267pt;}
.y129{bottom:244.262533pt;}
.ye9{bottom:244.594267pt;}
.ya0{bottom:244.598533pt;}
.y223{bottom:252.467200pt;}
.y24{bottom:252.472400pt;}
.y1ab{bottom:252.472533pt;}
.ybb{bottom:252.598400pt;}
.y158{bottom:255.194267pt;}
.yd1{bottom:256.198400pt;}
.y177{bottom:257.567600pt;}
.y128{bottom:260.262533pt;}
.ye8{bottom:260.594267pt;}
.y112{bottom:268.464400pt;}
.y1e0{bottom:268.467200pt;}
.y222{bottom:268.469867pt;}
.y23{bottom:268.472400pt;}
.y1aa{bottom:268.472533pt;}
.yba{bottom:268.598400pt;}
.y9f{bottom:268.598533pt;}
.y157{bottom:271.420933pt;}
.y176{bottom:274.020933pt;}
.y127{bottom:276.262533pt;}
.ye7{bottom:276.594267pt;}
.yd0{bottom:280.785067pt;}
.y111{bottom:284.467067pt;}
.y1df{bottom:284.469867pt;}
.y22{bottom:284.472400pt;}
.y1a9{bottom:284.472533pt;}
.yf6{bottom:284.594267pt;}
.yb9{bottom:284.598400pt;}
.y9e{bottom:284.598533pt;}
.y156{bottom:287.647600pt;}
.y126{bottom:292.262533pt;}
.ye6{bottom:292.594267pt;}
.ycf{bottom:297.078400pt;}
.y175{bottom:298.940933pt;}
.y110{bottom:300.469733pt;}
.y221{bottom:300.469867pt;}
.y21{bottom:300.472400pt;}
.y1a8{bottom:300.472533pt;}
.yf5{bottom:300.594267pt;}
.yb8{bottom:300.598400pt;}
.y9d{bottom:300.598533pt;}
.y100{bottom:303.477467pt;}
.y139{bottom:308.262533pt;}
.ye5{bottom:308.594267pt;}
.y155{bottom:312.087600pt;}
.yce{bottom:313.371733pt;}
.y174{bottom:315.394267pt;}
.y125{bottom:316.262533pt;}
.y206{bottom:316.464533pt;}
.y1de{bottom:316.469867pt;}
.y5a{bottom:316.472400pt;}
.y1a7{bottom:316.472533pt;}
.yf4{bottom:316.594267pt;}
.yb7{bottom:316.598400pt;}
.y9c{bottom:316.598533pt;}
.y154{bottom:328.314267pt;}
.ycd{bottom:329.665067pt;}
.y173{bottom:331.847600pt;}
.y124{bottom:332.262533pt;}
.y205{bottom:332.467200pt;}
.y59{bottom:332.472400pt;}
.y1a6{bottom:332.472533pt;}
.ye4{bottom:332.594267pt;}
.y138{bottom:336.262533pt;}
.y6d{bottom:337.102933pt;}
.yb6{bottom:340.598400pt;}
.y9b{bottom:340.598533pt;}
.y20{bottom:343.139067pt;}
.y153{bottom:344.540933pt;}
.ycc{bottom:345.958400pt;}
.y123{bottom:348.262533pt;}
.y172{bottom:348.300933pt;}
.y1dd{bottom:348.467200pt;}
.y204{bottom:348.469867pt;}
.y58{bottom:348.472400pt;}
.y1a5{bottom:348.472533pt;}
.ye3{bottom:348.594267pt;}
.y137{bottom:352.262533pt;}
.yb5{bottom:356.598400pt;}
.y9a{bottom:356.598533pt;}
.y152{bottom:360.767600pt;}
.y122{bottom:364.262533pt;}
.y1dc{bottom:364.469867pt;}
.y57{bottom:364.472400pt;}
.y1a4{bottom:364.472533pt;}
.ye2{bottom:364.594267pt;}
.y171{bottom:364.754267pt;}
.ycb{bottom:370.545067pt;}
.yb4{bottom:372.598400pt;}
.y99{bottom:372.598533pt;}
.y151{bottom:376.994267pt;}
.y121{bottom:380.262533pt;}
.y203{bottom:380.464533pt;}
.y220{bottom:380.467200pt;}
.y56{bottom:380.472400pt;}
.y1a3{bottom:380.472533pt;}
.yca{bottom:386.838400pt;}
.y136{bottom:388.262533pt;}
.yb3{bottom:388.598400pt;}
.y98{bottom:388.598533pt;}
.y170{bottom:389.674267pt;}
.y150{bottom:393.220933pt;}
.y120{bottom:396.262533pt;}
.y1db{bottom:396.464533pt;}
.y202{bottom:396.467200pt;}
.y21f{bottom:396.469867pt;}
.y55{bottom:396.472400pt;}
.y1a2{bottom:396.472533pt;}
.y1f{bottom:398.027467pt;}
.y114{bottom:399.469467pt;}
.yc9{bottom:403.131733pt;}
.y135{bottom:404.262533pt;}
.yb2{bottom:404.598400pt;}
.y97{bottom:404.598533pt;}
.y16f{bottom:406.127600pt;}
.y1da{bottom:412.467200pt;}
.yf9{bottom:412.469733pt;}
.y201{bottom:412.469867pt;}
.y54{bottom:412.472400pt;}
.y1a1{bottom:412.472533pt;}
.y1e{bottom:415.140400pt;}
.y14f{bottom:417.660933pt;}
.y11f{bottom:420.262533pt;}
.yb1{bottom:420.598400pt;}
.y96{bottom:420.598533pt;}
.y16e{bottom:422.580933pt;}
.yc8{bottom:427.718400pt;}
.y21e{bottom:428.467200pt;}
.y1d9{bottom:428.469867pt;}
.y53{bottom:428.472400pt;}
.y1a0{bottom:428.472533pt;}
.y14e{bottom:433.887600pt;}
.y11e{bottom:436.262533pt;}
.y95{bottom:436.598533pt;}
.y16d{bottom:439.034267pt;}
.yc7{bottom:444.011733pt;}
.y200{bottom:444.469867pt;}
.y52{bottom:444.472400pt;}
.y19f{bottom:444.472533pt;}
.yb0{bottom:444.598400pt;}
.y14d{bottom:450.114267pt;}
.y11d{bottom:452.262533pt;}
.y94{bottom:452.598533pt;}
.y1d{bottom:454.096800pt;}
.yc6{bottom:460.305067pt;}
.y1d8{bottom:460.467200pt;}
.y51{bottom:460.472400pt;}
.y19e{bottom:460.472533pt;}
.y1ba{bottom:460.474267pt;}
.yaf{bottom:460.598400pt;}
.y16c{bottom:463.954267pt;}
.y14c{bottom:466.340933pt;}
.y1c{bottom:467.424800pt;}
.y11c{bottom:468.262533pt;}
.y93{bottom:468.598533pt;}
.y1d7{bottom:476.469867pt;}
.y50{bottom:476.472400pt;}
.y19d{bottom:476.472533pt;}
.yae{bottom:476.598400pt;}
.y16b{bottom:480.407600pt;}
.y1b{bottom:480.752800pt;}
.y14b{bottom:482.567600pt;}
.y11b{bottom:484.262533pt;}
.y92{bottom:484.598533pt;}
.y1ff{bottom:492.469867pt;}
.y4f{bottom:492.472400pt;}
.y19c{bottom:492.472533pt;}
.y1a{bottom:494.080800pt;}
.y16a{bottom:496.860933pt;}
.y11a{bottom:500.262533pt;}
.y14a{bottom:507.007600pt;}
.y19{bottom:507.408800pt;}
.y1c6{bottom:508.440400pt;}
.y21d{bottom:508.464533pt;}
.y1d6{bottom:508.469867pt;}
.y4e{bottom:508.472400pt;}
.y1ce{bottom:508.472533pt;}
.y91{bottom:508.598533pt;}
.y169{bottom:513.314267pt;}
.y134{bottom:516.262533pt;}
.y18{bottom:520.736800pt;}
.y149{bottom:523.234267pt;}
.y119{bottom:524.262533pt;}
.y1c5{bottom:524.443067pt;}
.ydf{bottom:524.461733pt;}
.y1fe{bottom:524.461867pt;}
.y21c{bottom:524.467200pt;}
.y4d{bottom:524.472400pt;}
.y1cd{bottom:524.472533pt;}
.y90{bottom:524.598533pt;}
.y113{bottom:527.476133pt;}
.y19b{bottom:528.472533pt;}
.y168{bottom:529.767600pt;}
.y17{bottom:534.064800pt;}
.y148{bottom:539.460933pt;}
.y118{bottom:540.262533pt;}
.y1c4{bottom:540.445733pt;}
.y1b9{bottom:540.456400pt;}
.yde{bottom:540.464400pt;}
.y1fd{bottom:540.464533pt;}
.y1d5{bottom:540.467200pt;}
.y21b{bottom:540.469867pt;}
.y4c{bottom:540.472400pt;}
.y1cc{bottom:540.472533pt;}
.y8f{bottom:540.598533pt;}
.y16{bottom:547.392800pt;}
.y6a{bottom:550.406400pt;}
.y6e{bottom:553.399600pt;}
.y76{bottom:553.399733pt;}
.y167{bottom:554.687600pt;}
.y147{bottom:555.687600pt;}
.y117{bottom:556.262533pt;}
.y1c3{bottom:556.448400pt;}
.y1b8{bottom:556.459067pt;}
.ydd{bottom:556.467067pt;}
.y1fc{bottom:556.467200pt;}
.y1d4{bottom:556.469867pt;}
.y4b{bottom:556.472400pt;}
.y1cb{bottom:556.472533pt;}
.y8e{bottom:556.598533pt;}
.y15{bottom:560.720800pt;}
.y166{bottom:571.140933pt;}
.y146{bottom:571.914267pt;}
.y1c2{bottom:572.451067pt;}
.y10f{bottom:572.461733pt;}
.ydc{bottom:572.469733pt;}
.y1fb{bottom:572.469867pt;}
.y4a{bottom:572.472400pt;}
.y19a{bottom:572.472533pt;}
.y8d{bottom:572.598533pt;}
.y14{bottom:574.048800pt;}
.yff{bottom:575.472133pt;}
.y13{bottom:587.376800pt;}
.y165{bottom:587.594267pt;}
.y145{bottom:588.140933pt;}
.y1c1{bottom:588.453733pt;}
.y10e{bottom:588.464400pt;}
.y1d3{bottom:588.467200pt;}
.y49{bottom:588.472400pt;}
.y1ca{bottom:588.472533pt;}
.y65{bottom:589.789733pt;}
.y8c{bottom:596.598533pt;}
.y12{bottom:600.704800pt;}
.y164{bottom:604.047600pt;}
.y144{bottom:604.367600pt;}
.y1c0{bottom:604.456400pt;}
.y141{bottom:604.461867pt;}
.y10d{bottom:604.467067pt;}
.y1d2{bottom:604.469867pt;}
.y48{bottom:604.472400pt;}
.y1c9{bottom:604.472533pt;}
.y8b{bottom:612.598533pt;}
.y11{bottom:614.032800pt;}
.y1bf{bottom:620.459067pt;}
.y140{bottom:620.464533pt;}
.y21a{bottom:620.467200pt;}
.y10c{bottom:620.469733pt;}
.y47{bottom:620.472400pt;}
.y1c8{bottom:620.472533pt;}
.y163{bottom:620.500933pt;}
.y143{bottom:620.594267pt;}
.yfa{bottom:623.468133pt;}
.y10{bottom:627.360800pt;}
.y8a{bottom:628.598533pt;}
.y1be{bottom:636.461733pt;}
.y1fa{bottom:636.464533pt;}
.y13f{bottom:636.467200pt;}
.yfb{bottom:636.469733pt;}
.y219{bottom:636.469867pt;}
.y46{bottom:636.472400pt;}
.y199{bottom:636.472533pt;}
.yf{bottom:644.473733pt;}
.y89{bottom:644.598533pt;}
.y1bd{bottom:652.464400pt;}
.y1f9{bottom:652.467200pt;}
.y13e{bottom:652.469867pt;}
.y45{bottom:652.472400pt;}
.y198{bottom:652.472533pt;}
.y88{bottom:660.598533pt;}
.y1d1{bottom:663.139200pt;}
.y1bc{bottom:668.467067pt;}
.y218{bottom:668.467200pt;}
.y1f8{bottom:668.469867pt;}
.y44{bottom:668.472400pt;}
.y13d{bottom:668.472533pt;}
.y181{bottom:668.595867pt;}
.y87{bottom:676.598533pt;}
.y1bb{bottom:684.469733pt;}
.y217{bottom:684.469867pt;}
.y43{bottom:684.472400pt;}
.y197{bottom:684.472533pt;}
.y180{bottom:684.598533pt;}
.ye{bottom:687.140400pt;}
.y86{bottom:692.598533pt;}
.y1f7{bottom:700.469867pt;}
.y42{bottom:700.472400pt;}
.y196{bottom:700.472533pt;}
.y85{bottom:708.598533pt;}
.y216{bottom:716.467200pt;}
.y1d0{bottom:716.469867pt;}
.y41{bottom:716.472400pt;}
.y195{bottom:716.472533pt;}
.yd{bottom:719.142400pt;}
.y66{bottom:731.048400pt;}
.y1f6{bottom:732.464533pt;}
.y215{bottom:732.469867pt;}
.y40{bottom:732.472400pt;}
.y194{bottom:732.472533pt;}
.y84{bottom:732.598533pt;}
.yc{bottom:735.140400pt;}
.y1f5{bottom:748.467200pt;}
.y214{bottom:748.469867pt;}
.y3f{bottom:748.472400pt;}
.y193{bottom:748.472533pt;}
.y83{bottom:748.598533pt;}
.y67{bottom:752.774400pt;}
.y1f4{bottom:764.469867pt;}
.y3e{bottom:764.472400pt;}
.y192{bottom:764.472533pt;}
.y82{bottom:764.598533pt;}
.y1c7{bottom:767.473467pt;}
.yb{bottom:768.472400pt;}
.y1cf{bottom:773.805867pt;}
.ye1{bottom:775.464133pt;}
.y213{bottom:780.467200pt;}
.y3d{bottom:780.472400pt;}
.y191{bottom:780.472533pt;}
.y81{bottom:780.598533pt;}
.ya{bottom:787.358400pt;}
.y1f3{bottom:796.467200pt;}
.y212{bottom:796.469867pt;}
.y3c{bottom:796.472400pt;}
.y190{bottom:796.472533pt;}
.y80{bottom:796.598533pt;}
.y115{bottom:799.470800pt;}
.y1f2{bottom:812.469867pt;}
.y3b{bottom:812.472400pt;}
.y18f{bottom:812.472533pt;}
.y142{bottom:815.469467pt;}
.y9{bottom:820.473733pt;}
.y7f{bottom:820.598533pt;}
.y211{bottom:828.467200pt;}
.y3a{bottom:828.472400pt;}
.y18e{bottom:828.472533pt;}
.y182{bottom:831.468133pt;}
.y7e{bottom:836.598533pt;}
.y1f1{bottom:844.464533pt;}
.y210{bottom:844.469867pt;}
.y39{bottom:844.472400pt;}
.y18d{bottom:844.472533pt;}
.y7d{bottom:852.598533pt;}
.y101{bottom:855.474800pt;}
.y1f0{bottom:860.467200pt;}
.y38{bottom:860.472400pt;}
.y18c{bottom:860.472533pt;}
.y8{bottom:863.137067pt;}
.y7c{bottom:868.598533pt;}
.y20f{bottom:876.467200pt;}
.y1ef{bottom:876.469867pt;}
.y37{bottom:876.472400pt;}
.y18b{bottom:876.472533pt;}
.y68{bottom:884.116400pt;}
.y7b{bottom:884.598533pt;}
.y7{bottom:889.807067pt;}
.y20e{bottom:892.469867pt;}
.y36{bottom:892.472400pt;}
.y18a{bottom:892.472533pt;}
.y7a{bottom:900.598533pt;}
.y1ee{bottom:908.464533pt;}
.y35{bottom:908.472400pt;}
.y189{bottom:908.472533pt;}
.y69{bottom:910.092400pt;}
.y1ed{bottom:924.467200pt;}
.y34{bottom:924.472400pt;}
.y188{bottom:924.472533pt;}
.y116{bottom:931.689467pt;}
.y79{bottom:937.931867pt;}
.y1ec{bottom:940.469867pt;}
.y33{bottom:940.472400pt;}
.y187{bottom:940.472533pt;}
.y32{bottom:956.472400pt;}
.y186{bottom:956.472533pt;}
.y1eb{bottom:972.467200pt;}
.y60{bottom:972.472400pt;}
.y185{bottom:972.472533pt;}
.y31{bottom:972.474267pt;}
.y78{bottom:984.598533pt;}
.y1ea{bottom:988.469867pt;}
.y5f{bottom:988.472400pt;}
.y184{bottom:988.472533pt;}
.y30{bottom:988.474267pt;}
.ye0{bottom:999.913467pt;}
.y5e{bottom:1004.472400pt;}
.y183{bottom:1004.472533pt;}
.y2f{bottom:1004.474267pt;}
.y6{bottom:1023.963333pt;}
.y5{bottom:1029.638800pt;}
.y3{bottom:1049.878800pt;}
.y4{bottom:1050.678800pt;}
.y2e{bottom:1059.606267pt;}
.y61{bottom:1060.106267pt;}
.y62{bottom:1060.904267pt;}
.h9{height:21.769997pt;}
.h12{height:30.701823pt;}
.h1d{height:30.773365pt;}
.h1f{height:31.476562pt;}
.hd{height:31.498698pt;}
.h20{height:31.509365pt;}
.h1e{height:31.906698pt;}
.h13{height:33.453341pt;}
.h1c{height:33.458674pt;}
.h1a{height:33.468274pt;}
.h16{height:33.468808pt;}
.h17{height:33.469341pt;}
.h10{height:33.470408pt;}
.h18{height:33.475741pt;}
.h14{height:33.477341pt;}
.h19{height:33.481608pt;}
.h15{height:33.553074pt;}
.h6{height:35.376000pt;}
.h3{height:35.424000pt;}
.hb{height:36.948267pt;}
.he{height:37.057292pt;}
.hf{height:37.290667pt;}
.ha{height:37.341333pt;}
.h2{height:39.306667pt;}
.h5{height:39.360000pt;}
.h4{height:39.520000pt;}
.h1b{height:45.525333pt;}
.h8{height:52.360533pt;}
.hc{height:53.802667pt;}
.h11{height:57.357823pt;}
.h7{height:72.426667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.716533pt;}
.x35{left:83.448533pt;}
.x2{left:94.488133pt;}
.xc{left:102.346267pt;}
.x37{left:111.072933pt;}
.xd{left:118.348933pt;}
.x36{left:124.400933pt;}
.x38{left:140.006933pt;}
.x10{left:145.970667pt;}
.xe{left:152.634667pt;}
.x39{left:155.624267pt;}
.xf{left:159.298667pt;}
.x3a{left:171.054933pt;}
.x11{left:174.904667pt;}
.x3b{left:186.483200pt;}
.x12{left:190.522000pt;}
.x3c{left:201.911333pt;}
.x13{left:205.952400pt;}
.x3d{left:217.339467pt;}
.x14{left:221.377067pt;}
.x3e{left:232.767733pt;}
.x15{left:236.814667pt;}
.x3f{left:248.195867pt;}
.x16{left:252.239333pt;}
.x40{left:263.624133pt;}
.x17{left:267.678800pt;}
.x41{left:279.052267pt;}
.x18{left:283.114800pt;}
.x42{left:294.287867pt;}
.x19{left:298.521867pt;}
.x43{left:310.369867pt;}
.x1a{left:313.950133pt;}
.x44{left:326.168533pt;}
.x1b{left:329.378267pt;}
.x1c{left:344.806400pt;}
.x48{left:354.644133pt;}
.x1d{left:360.234667pt;}
.x6{left:363.215733pt;}
.x1e{left:375.662933pt;}
.x1f{left:391.091067pt;}
.x9{left:396.843867pt;}
.x20{left:406.519333pt;}
.x46{left:414.825867pt;}
.x7{left:415.738800pt;}
.x21{left:421.947467pt;}
.x45{left:427.080133pt;}
.x47{left:433.719200pt;}
.x4a{left:434.640933pt;}
.x22{left:437.375733pt;}
.x23{left:445.087600pt;}
.x24{left:452.805600pt;}
.x25{left:468.235333pt;}
.x26{left:483.660267pt;}
.x27{left:499.088533pt;}
.x28{left:514.516667pt;}
.x29{left:529.944933pt;}
.x2a{left:545.373067pt;}
.xa{left:547.133600pt;}
.x2b{left:560.801333pt;}
.x49{left:573.980533pt;}
.x2c{left:576.229467pt;}
.x2d{left:591.657733pt;}
.x2e{left:607.085867pt;}
.x3{left:623.248667pt;}
.x2f{left:637.942267pt;}
.x5{left:640.608667pt;}
.x4{left:641.848667pt;}
.x30{left:653.370400pt;}
.x31{left:668.798667pt;}
.xb{left:681.682267pt;}
.x32{left:684.226800pt;}
.x33{left:699.655067pt;}
.x1{left:700.670667pt;}
.x34{left:715.083333pt;}
}




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