
    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_209524e7a3de316b8681edc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_1ee9ede1c782763ca8fc6625.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_c3b1f01a32b3a45235a655d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_bb129fc2b266f5759c882354.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_35610918e41a2a24c0d49fbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_6bdba5a34d85dcb194cd73c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_b15dea8def9b8188e1c9d002.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_3b576c7544f5a83fa31daa9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_bdcfe9ec206b45f7600e7142.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_339a899f5347c35cf16de446.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_094e7e3b99afaf07729b8dea.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.999000;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_70f139ee11fe6cbc04e6bdb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_fea4865907fd86ce25fd922c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.383000;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_36b6a893fbbb9445943065ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728000;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_855db679b5b5416d49c17d48.woff2')format("woff");}.fff{font-family:fff;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-122.664000px;}
.v16{vertical-align:-55.788000px;}
.vd{vertical-align:-21.522000px;}
.v14{vertical-align:-16.062000px;}
.v6{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:6.978000px;}
.v5{vertical-align:17.730000px;}
.v2{vertical-align:20.718000px;}
.v1{vertical-align:26.028000px;}
.v8{vertical-align:29.616000px;}
.vb{vertical-align:47.352000px;}
.v3{vertical-align:49.200000px;}
.v18{vertical-align:50.202000px;}
.v9{vertical-align:58.104000px;}
.v15{vertical-align:74.556000px;}
.v4{vertical-align:78.816000px;}
.v19{vertical-align:85.878000px;}
.ve{vertical-align:97.728000px;}
.v13{vertical-align:101.142000px;}
.v7{vertical-align:107.304000px;}
.v10{vertical-align:134.280000px;}
.v11{vertical-align:140.394000px;}
.v17{vertical-align:146.838000px;}
.vf{vertical-align:150.342000px;}
.vc{vertical-align:171.864000px;}
.ls1{letter-spacing:0.000000px;}
.ls99{letter-spacing:0.000035px;}
.ls7b{letter-spacing:0.000472px;}
.ls1f{letter-spacing:0.000643px;}
.ls98{letter-spacing:0.001356px;}
.lsaf{letter-spacing:0.002294px;}
.ls4b{letter-spacing:0.003191px;}
.ls2c{letter-spacing:0.003523px;}
.lsa6{letter-spacing:0.004391px;}
.ls4e{letter-spacing:0.004664px;}
.ls1d{letter-spacing:0.008698px;}
.ls8a{letter-spacing:0.009116px;}
.ls87{letter-spacing:0.010314px;}
.ls72{letter-spacing:0.011664px;}
.lsa9{letter-spacing:0.012033px;}
.ls3b{letter-spacing:0.013619px;}
.ls22{letter-spacing:0.014874px;}
.lsa5{letter-spacing:0.019619px;}
.ls49{letter-spacing:0.021596px;}
.ls9c{letter-spacing:0.022961px;}
.ls7f{letter-spacing:0.023476px;}
.ls96{letter-spacing:0.024044px;}
.lsa7{letter-spacing:0.024862px;}
.ls81{letter-spacing:0.025511px;}
.ls23{letter-spacing:0.026884px;}
.ls89{letter-spacing:0.027024px;}
.ls5d{letter-spacing:0.027560px;}
.lsb2{letter-spacing:0.030783px;}
.ls7{letter-spacing:0.071731px;}
.ls1a{letter-spacing:1.936742px;}
.ls90{letter-spacing:1.951021px;}
.ls78{letter-spacing:1.966735px;}
.ls28{letter-spacing:1.977057px;}
.ls8{letter-spacing:2.008474px;}
.ls45{letter-spacing:2.543422px;}
.ls86{letter-spacing:2.575240px;}
.ls95{letter-spacing:2.582323px;}
.ls12{letter-spacing:2.584679px;}
.ls50{letter-spacing:2.586634px;}
.ls3d{letter-spacing:2.588001px;}
.ls74{letter-spacing:2.590679px;}
.lsae{letter-spacing:2.594001px;}
.ls18{letter-spacing:2.984915px;}
.ls9b{letter-spacing:2.986059px;}
.ls9e{letter-spacing:2.987236px;}
.lsd{letter-spacing:2.990915px;}
.ls2e{letter-spacing:2.991072px;}
.ls9a{letter-spacing:2.992059px;}
.lsb0{letter-spacing:2.993860px;}
.lse{letter-spacing:3.873485px;}
.lsc{letter-spacing:3.896143px;}
.ls39{letter-spacing:3.902143px;}
.ls3{letter-spacing:4.160410px;}
.lsaa{letter-spacing:4.185523px;}
.ls33{letter-spacing:4.191523px;}
.lsf{letter-spacing:4.214181px;}
.ls5{letter-spacing:4.232141px;}
.ls4{letter-spacing:5.092915px;}
.ls51{letter-spacing:5.150294px;}
.ls27{letter-spacing:5.156294px;}
.lsa{letter-spacing:5.164646px;}
.ls5e{letter-spacing:5.544130px;}
.ls4a{letter-spacing:5.550130px;}
.ls13{letter-spacing:5.558915px;}
.ls3e{letter-spacing:5.564915px;}
.ls2f{letter-spacing:6.115301px;}
.ls25{letter-spacing:6.384077px;}
.ls8c{letter-spacing:7.133889px;}
.ls5f{letter-spacing:7.158407px;}
.ls8f{letter-spacing:7.164864px;}
.ls4c{letter-spacing:7.168664px;}
.ls71{letter-spacing:7.174664px;}
.ls62{letter-spacing:7.188215px;}
.ls8b{letter-spacing:7.531776px;}
.ls32{letter-spacing:7.603507px;}
.ls2d{letter-spacing:7.675238px;}
.ls6{letter-spacing:11.907379px;}
.ls29{letter-spacing:11.947609px;}
.ls52{letter-spacing:11.955191px;}
.ls75{letter-spacing:11.961191px;}
.ls9{letter-spacing:11.979110px;}
.ls7e{letter-spacing:12.624691px;}
.ls1e{letter-spacing:14.936915px;}
.ls17{letter-spacing:14.942915px;}
.ls11{letter-spacing:15.924326px;}
.ls79{letter-spacing:15.937609px;}
.ls60{letter-spacing:15.940664px;}
.ls20{letter-spacing:15.996058px;}
.ls57{letter-spacing:16.139520px;}
.ls44{letter-spacing:17.861069px;}
.ls4d{letter-spacing:18.110181px;}
.ls6b{letter-spacing:18.116181px;}
.ls73{letter-spacing:18.920915px;}
.ls4f{letter-spacing:18.926915px;}
.ls7c{letter-spacing:18.928404px;}
.ls26{letter-spacing:19.126404px;}
.ls48{letter-spacing:19.869542px;}
.ls55{letter-spacing:19.923306px;}
.lsac{letter-spacing:19.925518px;}
.ls16{letter-spacing:19.941274px;}
.ls6e{letter-spacing:20.586854px;}
.ls3c{letter-spacing:21.088973px;}
.lsb9{letter-spacing:21.160704px;}
.ls46{letter-spacing:21.878016px;}
.ls9f{letter-spacing:22.523597px;}
.lsa2{letter-spacing:22.810522px;}
.ls7a{letter-spacing:23.111518px;}
.ls5b{letter-spacing:23.342181px;}
.ls24{letter-spacing:23.384371px;}
.ls54{letter-spacing:24.101683px;}
.ls40{letter-spacing:24.245146px;}
.ls94{letter-spacing:24.316877px;}
.ls8e{letter-spacing:25.034189px;}
.ls14{letter-spacing:25.105920px;}
.lsa1{letter-spacing:26.038426px;}
.ls63{letter-spacing:26.077473px;}
.ls65{letter-spacing:26.293460px;}
.ls9d{letter-spacing:26.398059px;}
.lsb4{letter-spacing:26.404059px;}
.ls2b{letter-spacing:26.540544px;}
.lsb{letter-spacing:26.970931px;}
.ls67{letter-spacing:27.084407px;}
.ls6c{letter-spacing:27.093045px;}
.ls68{letter-spacing:27.095518px;}
.ls70{letter-spacing:27.096382px;}
.ls77{letter-spacing:27.123665px;}
.ls41{letter-spacing:27.230915px;}
.ls42{letter-spacing:27.544781px;}
.ls59{letter-spacing:27.616512px;}
.lsb8{letter-spacing:28.333824px;}
.ls5a{letter-spacing:28.549018px;}
.ls38{letter-spacing:28.620749px;}
.ls31{letter-spacing:28.863072px;}
.lsb3{letter-spacing:28.930059px;}
.lsb1{letter-spacing:28.931860px;}
.ls80{letter-spacing:29.409792px;}
.ls83{letter-spacing:31.131341px;}
.ls2{letter-spacing:31.274803px;}
.lsab{letter-spacing:31.561728px;}
.ls35{letter-spacing:31.992115px;}
.ls3a{letter-spacing:32.822915px;}
.ls10{letter-spacing:32.828915px;}
.ls43{letter-spacing:32.936915px;}
.ls6f{letter-spacing:34.052181px;}
.lsa4{letter-spacing:34.202915px;}
.lsb7{letter-spacing:34.861363px;}
.ls36{letter-spacing:35.148288px;}
.lsa8{letter-spacing:35.506944px;}
.ls0{letter-spacing:35.865600px;}
.ls93{letter-spacing:36.869837px;}
.lsb5{letter-spacing:38.036181px;}
.lsb6{letter-spacing:38.089267px;}
.lsa0{letter-spacing:38.107839px;}
.ls91{letter-spacing:43.502915px;}
.ls56{letter-spacing:43.828145px;}
.ls6a{letter-spacing:45.597045px;}
.ls8d{letter-spacing:57.739021px;}
.ls61{letter-spacing:67.336664px;}
.ls5c{letter-spacing:72.214664px;}
.ls66{letter-spacing:92.135518px;}
.ls1b{letter-spacing:103.430181px;}
.ls76{letter-spacing:477.658061px;}
.ls53{letter-spacing:498.531840px;}
.ls2a{letter-spacing:785.456640px;}
.ls21{letter-spacing:787.895501px;}
.ls19{letter-spacing:788.612813px;}
.ls7d{letter-spacing:824.908800px;}
.lsa3{letter-spacing:828.136704px;}
.ls47{letter-spacing:881.432986px;}
.ls64{letter-spacing:881.791642px;}
.ls3f{letter-spacing:916.939930px;}
.ls97{letter-spacing:919.091866px;}
.ls92{letter-spacing:952.805530px;}
.ls1c{letter-spacing:954.240154px;}
.ls69{letter-spacing:954.455347px;}
.ls88{letter-spacing:959.189606px;}
.lsad{letter-spacing:1019.013427px;}
.ls58{letter-spacing:1026.975590px;}
.ls85{letter-spacing:1030.633882px;}
.ls84{letter-spacing:1039.743744px;}
.ls30{letter-spacing:1053.085747px;}
.ls15{letter-spacing:1061.836954px;}
.ls34{letter-spacing:1065.782170px;}
.ls82{letter-spacing:1087.731917px;}
.ls6d{letter-spacing:1139.521843px;}
.ls37{letter-spacing:1148.416512px;}
.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;}
}
.ws67{word-spacing:-71.731200px;}
.ws60{word-spacing:-56.789591px;}
.ws9e{word-spacing:-55.806874px;}
.ws71{word-spacing:-51.861658px;}
.ws73{word-spacing:-51.789926px;}
.ws54{word-spacing:-45.664082px;}
.ws8{word-spacing:-42.637126px;}
.wsc2{word-spacing:-36.224256px;}
.wsa2{word-spacing:-33.756703px;}
.ws5f{word-spacing:-33.684972px;}
.ws6d{word-spacing:-33.254584px;}
.ws6a{word-spacing:-33.211407px;}
.ws13{word-spacing:-32.278875px;}
.wsab{word-spacing:-25.292421px;}
.wsc9{word-spacing:-24.765034px;}
.ws58{word-spacing:-19.510886px;}
.wsc7{word-spacing:-19.191034px;}
.ws33{word-spacing:-17.932800px;}
.ws74{word-spacing:-14.111859px;}
.ws98{word-spacing:-13.389130px;}
.wsae{word-spacing:-11.157034px;}
.wsbe{word-spacing:-7.531776px;}
.ws64{word-spacing:-7.173034px;}
.wsaf{word-spacing:-5.037034px;}
.wsc6{word-spacing:-4.839034px;}
.wsf4{word-spacing:-3.945216px;}
.wsb4{word-spacing:-3.873485px;}
.wsa0{word-spacing:-3.801754px;}
.ws68{word-spacing:-3.699034px;}
.wsb5{word-spacing:-3.658291px;}
.ws3{word-spacing:-3.652367px;}
.ws55{word-spacing:-3.586560px;}
.ws96{word-spacing:-3.514829px;}
.wsda{word-spacing:-3.299635px;}
.wse5{word-spacing:-3.227904px;}
.wsde{word-spacing:-3.084442px;}
.ws8b{word-spacing:-3.012710px;}
.ws92{word-spacing:-2.940979px;}
.ws4b{word-spacing:-2.869248px;}
.ws5b{word-spacing:-2.654054px;}
.wse0{word-spacing:-2.582323px;}
.ws93{word-spacing:-2.367130px;}
.ws7f{word-spacing:-2.295398px;}
.ws5c{word-spacing:-2.223667px;}
.ws77{word-spacing:-2.080205px;}
.wsf1{word-spacing:-1.936742px;}
.ws9d{word-spacing:-1.865011px;}
.ws10{word-spacing:-1.819638px;}
.wsd8{word-spacing:-1.649818px;}
.ws27{word-spacing:-1.506355px;}
.ws61{word-spacing:-1.434624px;}
.ws24{word-spacing:-1.291162px;}
.ws9a{word-spacing:-0.573850px;}
.ws3b{word-spacing:-0.430387px;}
.wsef{word-spacing:-0.358656px;}
.wse1{word-spacing:-0.286925px;}
.ws49{word-spacing:-0.143462px;}
.wsdc{word-spacing:-0.071731px;}
.wse{word-spacing:-0.052364px;}
.ws1c{word-spacing:0.000000px;}
.ws47{word-spacing:0.071731px;}
.wsa3{word-spacing:0.143462px;}
.ws51{word-spacing:0.215194px;}
.ws53{word-spacing:0.358656px;}
.ws30{word-spacing:0.430387px;}
.wseb{word-spacing:0.573850px;}
.ws5e{word-spacing:0.645581px;}
.ws8f{word-spacing:0.717312px;}
.ws45{word-spacing:0.860774px;}
.wsec{word-spacing:0.932506px;}
.wsb9{word-spacing:1.004237px;}
.wsa4{word-spacing:1.075968px;}
.wscc{word-spacing:1.147699px;}
.ws7c{word-spacing:1.178966px;}
.wsb2{word-spacing:1.219430px;}
.ws3a{word-spacing:1.291162px;}
.ws4c{word-spacing:1.362893px;}
.ws5a{word-spacing:1.434624px;}
.ws3c{word-spacing:1.578086px;}
.ws85{word-spacing:1.649818px;}
.ws4a{word-spacing:1.793280px;}
.ws9c{word-spacing:1.865011px;}
.ws94{word-spacing:2.008474px;}
.ws99{word-spacing:2.080205px;}
.wsdb{word-spacing:2.151936px;}
.wsba{word-spacing:2.223667px;}
.wse8{word-spacing:2.295398px;}
.ws59{word-spacing:2.438861px;}
.ws2b{word-spacing:2.510592px;}
.wsb0{word-spacing:2.582323px;}
.ws4f{word-spacing:2.654054px;}
.ws9{word-spacing:2.696730px;}
.ws90{word-spacing:2.725786px;}
.ws5{word-spacing:2.762184px;}
.wsb7{word-spacing:2.797517px;}
.wsdf{word-spacing:2.869248px;}
.wsac{word-spacing:2.940979px;}
.ws97{word-spacing:3.012710px;}
.wscf{word-spacing:3.084442px;}
.ws3e{word-spacing:3.156173px;}
.ws4{word-spacing:3.220366px;}
.ws66{word-spacing:3.227904px;}
.wsa7{word-spacing:3.242966px;}
.ws52{word-spacing:3.299635px;}
.ws22{word-spacing:3.514829px;}
.wse4{word-spacing:3.586560px;}
.wsb{word-spacing:3.613094px;}
.wse3{word-spacing:3.658291px;}
.ws2e{word-spacing:3.730022px;}
.ws5d{word-spacing:3.801754px;}
.ws1a{word-spacing:3.873485px;}
.ws19{word-spacing:3.945216px;}
.ws62{word-spacing:4.016947px;}
.wsd{word-spacing:4.071276px;}
.ws25{word-spacing:4.088678px;}
.ws23{word-spacing:4.160410px;}
.ws6{word-spacing:4.267640px;}
.ws50{word-spacing:4.303872px;}
.ws81{word-spacing:4.375603px;}
.ws56{word-spacing:4.447334px;}
.ws15{word-spacing:4.483200px;}
.wsbd{word-spacing:4.590797px;}
.wsc0{word-spacing:4.662528px;}
.wsea{word-spacing:4.698394px;}
.ws2{word-spacing:4.734246px;}
.ws43{word-spacing:4.734259px;}
.wsb1{word-spacing:4.805990px;}
.ws12{word-spacing:4.856731px;}
.ws82{word-spacing:4.877722px;}
.ws83{word-spacing:4.949453px;}
.ws91{word-spacing:5.021184px;}
.ws63{word-spacing:5.092915px;}
.wse9{word-spacing:5.164646px;}
.ws41{word-spacing:5.236378px;}
.ws48{word-spacing:5.379825px;}
.wsf0{word-spacing:5.379840px;}
.ws6b{word-spacing:5.451571px;}
.wsce{word-spacing:5.523302px;}
.wsd9{word-spacing:5.595034px;}
.ws21{word-spacing:5.738496px;}
.wsee{word-spacing:5.810227px;}
.ws26{word-spacing:5.881958px;}
.ws11{word-spacing:6.034914px;}
.ws2f{word-spacing:6.097152px;}
.wsc{word-spacing:6.100369px;}
.wsb6{word-spacing:6.240614px;}
.ws44{word-spacing:6.312346px;}
.wsc3{word-spacing:6.352483px;}
.ws65{word-spacing:6.384077px;}
.ws31{word-spacing:6.455775px;}
.ws1d{word-spacing:6.455808px;}
.wsf8{word-spacing:6.599270px;}
.wsbb{word-spacing:6.742733px;}
.ws29{word-spacing:6.814464px;}
.wsf2{word-spacing:6.886195px;}
.ws39{word-spacing:6.957926px;}
.ws9b{word-spacing:7.029658px;}
.ws1f{word-spacing:7.173120px;}
.ws34{word-spacing:7.244851px;}
.ws35{word-spacing:7.316582px;}
.ws2a{word-spacing:7.460045px;}
.ws2c{word-spacing:7.531776px;}
.ws79{word-spacing:7.603507px;}
.ws7{word-spacing:7.671279px;}
.ws42{word-spacing:7.675238px;}
.ws0{word-spacing:7.748438px;}
.wsa5{word-spacing:7.818701px;}
.ws8a{word-spacing:8.033894px;}
.ws8e{word-spacing:8.105626px;}
.ws86{word-spacing:8.177357px;}
.wsf{word-spacing:8.391280px;}
.ws2d{word-spacing:8.464282px;}
.ws4d{word-spacing:8.536013px;}
.ws8d{word-spacing:8.607744px;}
.ws7b{word-spacing:8.751206px;}
.ws36{word-spacing:8.822938px;}
.ws7d{word-spacing:8.966400px;}
.ws6f{word-spacing:9.038131px;}
.ws4e{word-spacing:9.109862px;}
.ws88{word-spacing:9.181594px;}
.wse6{word-spacing:9.253325px;}
.wsaa{word-spacing:9.468518px;}
.wse2{word-spacing:9.540250px;}
.wsb8{word-spacing:9.611981px;}
.ws80{word-spacing:9.683712px;}
.wsbf{word-spacing:9.755443px;}
.ws32{word-spacing:10.185830px;}
.wsa8{word-spacing:10.257562px;}
.ws8c{word-spacing:10.759680px;}
.wsa6{word-spacing:10.831411px;}
.ws78{word-spacing:10.974874px;}
.ws89{word-spacing:11.190067px;}
.ws84{word-spacing:11.333530px;}
.wsc4{word-spacing:11.476992px;}
.ws76{word-spacing:11.548723px;}
.wsa9{word-spacing:11.620454px;}
.wsb3{word-spacing:11.692186px;}
.wsfa{word-spacing:11.763917px;}
.wscd{word-spacing:11.907379px;}
.ws6e{word-spacing:11.979110px;}
.wsa{word-spacing:11.991283px;}
.wsdd{word-spacing:12.122573px;}
.ws3d{word-spacing:12.266035px;}
.wsd6{word-spacing:12.337766px;}
.ws9f{word-spacing:12.409498px;}
.wse7{word-spacing:12.624691px;}
.ws28{word-spacing:12.696422px;}
.ws46{word-spacing:12.839885px;}
.wsf3{word-spacing:12.983347px;}
.wsc1{word-spacing:13.055078px;}
.ws3f{word-spacing:13.126810px;}
.wsa1{word-spacing:13.198541px;}
.wsd5{word-spacing:13.342003px;}
.ws40{word-spacing:13.413734px;}
.ws37{word-spacing:13.485466px;}
.ws7a{word-spacing:13.628928px;}
.ws87{word-spacing:13.915853px;}
.ws95{word-spacing:14.274509px;}
.wsbc{word-spacing:15.063552px;}
.wsc5{word-spacing:15.135283px;}
.wsd7{word-spacing:15.350477px;}
.wsf9{word-spacing:15.565670px;}
.wsf5{word-spacing:15.637402px;}
.wsf7{word-spacing:15.852595px;}
.wsed{word-spacing:16.713370px;}
.ws69{word-spacing:16.856832px;}
.wsf6{word-spacing:18.076262px;}
.ws7e{word-spacing:18.650112px;}
.wsad{word-spacing:28.472966px;}
.ws1{word-spacing:37.316475px;}
.ws16{word-spacing:38.591386px;}
.ws1b{word-spacing:41.532365px;}
.ws17{word-spacing:41.604096px;}
.ws70{word-spacing:42.620966px;}
.ws18{word-spacing:46.051430px;}
.wsd2{word-spacing:71.060966px;}
.wsc8{word-spacing:82.304966px;}
.wscb{word-spacing:84.908966px;}
.ws14{word-spacing:85.180800px;}
.ws72{word-spacing:85.682966px;}
.ws38{word-spacing:102.216675px;}
.ws57{word-spacing:106.764718px;}
.ws75{word-spacing:108.956966px;}
.ws6c{word-spacing:116.504966px;}
.wsca{word-spacing:116.732966px;}
.wsd4{word-spacing:120.194966px;}
.wsd3{word-spacing:122.504966px;}
.ws20{word-spacing:122.659725px;}
.wsd1{word-spacing:136.274966px;}
.wsd0{word-spacing:168.674966px;}
.ws1e{word-spacing:2327.282918px;}
._3c{margin-left:-48.526382px;}
._12{margin-left:-35.937331px;}
._24{margin-left:-34.409824px;}
._2{margin-left:-9.794025px;}
._37{margin-left:-8.091257px;}
._3{margin-left:-6.951094px;}
._1a{margin-left:-5.738496px;}
._0{margin-left:-3.843225px;}
._1{margin-left:-2.603475px;}
._5{margin-left:-1.287764px;}
._6{width:1.832729px;}
._8{width:3.061657px;}
._38{width:4.184596px;}
._36{width:5.976474px;}
._3d{width:9.740020px;}
._3b{width:17.193794px;}
._c{width:18.247124px;}
._30{width:19.261493px;}
._35{width:21.106727px;}
._28{width:22.308403px;}
._3e{width:23.478629px;}
._4{width:25.236058px;}
._25{width:26.988686px;}
._7{width:28.800024px;}
._31{width:30.180538px;}
._16{width:32.104775px;}
._a{width:33.105319px;}
._2b{width:34.481013px;}
._d{width:36.327303px;}
._29{width:37.393107px;}
._27{width:39.556174px;}
._9{width:41.105489px;}
._b{width:43.265491px;}
._20{width:45.140077px;}
._39{width:46.861625px;}
._32{width:48.715506px;}
._2e{width:51.592487px;}
._21{width:52.887046px;}
._2c{width:54.425684px;}
._17{width:56.413006px;}
._1d{width:58.891315px;}
._18{width:60.630619px;}
._1b{width:62.406144px;}
._23{width:64.005382px;}
._1e{width:66.372512px;}
._15{width:67.499059px;}
._2f{width:70.601255px;}
._13{width:72.035879px;}
._11{width:93.609216px;}
._f{width:107.596800px;}
._34{width:129.115800px;}
._33{width:154.938600px;}
._3a{width:259.404871px;}
._22{width:1331.014720px;}
._26{width:1368.888793px;}
._1f{width:1401.648800px;}
._1c{width:1424.366438px;}
._2a{width:1524.646656px;}
._10{width:1765.298000px;}
._19{width:1775.146326px;}
._14{width:1852.881795px;}
._2d{width:2170.944768px;}
._e{width:2176.378042px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.168000px;}
.yd1{bottom:108.000000px;}
.y19e{bottom:109.714500px;}
.y21{bottom:110.556000px;}
.y4a{bottom:111.633000px;}
.y71{bottom:114.658500px;}
.y90{bottom:121.954500px;}
.y1fb{bottom:126.438000px;}
.yd0{bottom:129.669000px;}
.y1fa{bottom:130.872000px;}
.y20{bottom:132.225000px;}
.y28a{bottom:132.864000px;}
.y49{bottom:133.302000px;}
.y26c{bottom:134.608500px;}
.y70{bottom:136.326000px;}
.y1dd{bottom:143.115000px;}
.y8f{bottom:143.623500px;}
.y24a{bottom:147.544500px;}
.y19d{bottom:149.316000px;}
.ycf{bottom:151.338000px;}
.y1f{bottom:153.894000px;}
.y289{bottom:154.533000px;}
.y48{bottom:154.969500px;}
.y26b{bottom:156.276000px;}
.y6f{bottom:157.995000px;}
.y1bc{bottom:160.648500px;}
.y1dc{bottom:164.784000px;}
.y216{bottom:165.526500px;}
.y16a{bottom:166.719000px;}
.y249{bottom:169.213500px;}
.y131{bottom:169.536000px;}
.y22f{bottom:169.564500px;}
.y19c{bottom:170.985000px;}
.y189{bottom:173.005500px;}
.yf1{bottom:173.007000px;}
.y1f9{bottom:174.210000px;}
.y113{bottom:174.343500px;}
.y1e{bottom:175.561500px;}
.y288{bottom:176.202000px;}
.y47{bottom:176.638500px;}
.y8e{bottom:176.874000px;}
.y26a{bottom:177.945000px;}
.y6e{bottom:179.664000px;}
.yce{bottom:184.815000px;}
.y1bb{bottom:185.082000px;}
.ycd{bottom:189.249000px;}
.y248{bottom:190.882500px;}
.y130{bottom:191.205000px;}
.y19b{bottom:192.654000px;}
.yf0{bottom:194.674500px;}
.y112{bottom:196.011000px;}
.y188{bottom:196.858500px;}
.y1d{bottom:197.230500px;}
.y287{bottom:197.871000px;}
.y1db{bottom:198.033000px;}
.y46{bottom:198.307500px;}
.y269{bottom:199.614000px;}
.y6d{bottom:201.333000px;}
.y215{bottom:201.384000px;}
.y14f{bottom:202.053000px;}
.y169{bottom:202.320000px;}
.yaf{bottom:203.424000px;}
.y22e{bottom:206.178000px;}
.y1f8{bottom:207.459000px;}
.y187{bottom:209.160000px;}
.yef{bottom:216.343500px;}
.y111{bottom:217.680000px;}
.y286{bottom:219.540000px;}
.y45{bottom:219.976500px;}
.y1ba{bottom:221.308500px;}
.y6c{bottom:223.002000px;}
.y14e{bottom:223.720500px;}
.y12e{bottom:224.082000px;}
.y247{bottom:224.133000px;}
.yae{bottom:225.093000px;}
.y19a{bottom:225.903000px;}
.ycc{bottom:227.160000px;}
.y8d{bottom:228.867000px;}
.y12f{bottom:231.949500px;}
.y214{bottom:234.634500px;}
.y1c{bottom:236.458500px;}
.y168{bottom:237.921000px;}
.y268{bottom:239.215500px;}
.y110{bottom:239.349000px;}
.y285{bottom:241.207500px;}
.y22d{bottom:242.790000px;}
.y14d{bottom:245.389500px;}
.yad{bottom:246.762000px;}
.y186{bottom:248.433000px;}
.y12d{bottom:248.514000px;}
.ycb{bottom:248.829000px;}
.y1da{bottom:249.768000px;}
.y8c{bottom:250.536000px;}
.y1b8{bottom:252.288000px;}
.yee{bottom:255.771000px;}
.y6b{bottom:256.252500px;}
.y1b{bottom:258.127500px;}
.y44{bottom:259.204500px;}
.y1f7{bottom:259.452000px;}
.y1b9{bottom:260.155500px;}
.y10f{bottom:261.018000px;}
.y284{bottom:262.876500px;}
.y1d9{bottom:271.437000px;}
.y14c{bottom:272.193000px;}
.y8b{bottom:272.203500px;}
.y185{bottom:272.286000px;}
.y167{bottom:274.971000px;}
.y246{bottom:275.925000px;}
.y1b7{bottom:276.721500px;}
.y199{bottom:277.896000px;}
.y267{bottom:278.817000px;}
.y22c{bottom:279.403500px;}
.y1a{bottom:279.796500px;}
.y43{bottom:280.872000px;}
.y1f6{bottom:281.121000px;}
.yab{bottom:281.332500px;}
.yca{bottom:282.079500px;}
.y10e{bottom:282.687000px;}
.y283{bottom:284.545500px;}
.y184{bottom:284.586000px;}
.y213{bottom:286.074000px;}
.y12c{bottom:286.636500px;}
.yaa{bottom:293.632500px;}
.y8a{bottom:293.872500px;}
.y166{bottom:296.640000px;}
.y245{bottom:297.594000px;}
.y198{bottom:299.565000px;}
.y266{bottom:300.486000px;}
.y19{bottom:301.465500px;}
.y42{bottom:302.541000px;}
.y1d8{bottom:304.857000px;}
.y1d7{bottom:304.858500px;}
.yac{bottom:305.764500px;}
.y282{bottom:306.214500px;}
.y6a{bottom:308.244000px;}
.y1d6{bottom:309.291000px;}
.y14b{bottom:310.572000px;}
.y1b6{bottom:312.948000px;}
.y22a{bottom:313.974000px;}
.yed{bottom:314.511000px;}
.y165{bottom:318.309000px;}
.y244{bottom:319.263000px;}
.y212{bottom:319.477500px;}
.y1f5{bottom:320.722500px;}
.y197{bottom:321.234000px;}
.y265{bottom:322.155000px;}
.y10d{bottom:322.288500px;}
.y183{bottom:323.859000px;}
.y41{bottom:324.210000px;}
.y12b{bottom:324.249000px;}
.y229{bottom:326.274000px;}
.y281{bottom:327.883500px;}
.y69{bottom:329.913000px;}
.y14a{bottom:332.241000px;}
.y89{bottom:333.300000px;}
.yc9{bottom:333.822000px;}
.yec{bottom:336.180000px;}
.y22b{bottom:338.406000px;}
.ya9{bottom:338.641500px;}
.y164{bottom:339.976500px;}
.y18{bottom:340.692000px;}
.y243{bottom:340.930500px;}
.y196{bottom:342.903000px;}
.y182{bottom:345.528000px;}
.y40{bottom:345.879000px;}
.y1b5{bottom:346.197000px;}
.y1d5{bottom:347.145000px;}
.y12a{bottom:348.681000px;}
.y280{bottom:349.551000px;}
.y68{bottom:351.582000px;}
.y211{bottom:355.021500px;}
.y264{bottom:355.405500px;}
.yc8{bottom:355.491000px;}
.yeb{bottom:357.849000px;}
.ya8{bottom:360.310500px;}
.y1f4{bottom:360.324000px;}
.y10c{bottom:361.890000px;}
.y242{bottom:362.599500px;}
.y149{bottom:365.491500px;}
.y3f{bottom:367.548000px;}
.y27f{bottom:371.220000px;}
.y67{bottom:373.251000px;}
.y228{bottom:373.773000px;}
.y163{bottom:376.038000px;}
.yc7{bottom:377.160000px;}
.y181{bottom:378.777000px;}
.y1d4{bottom:379.071000px;}
.yea{bottom:379.518000px;}
.y17{bottom:380.119500px;}
.y195{bottom:382.504500px;}
.y241{bottom:384.268500px;}
.y129{bottom:385.465500px;}
.y210{bottom:390.564000px;}
.y27e{bottom:392.889000px;}
.y88{bottom:393.201000px;}
.ya7{bottom:393.561000px;}
.y66{bottom:394.920000px;}
.y10b{bottom:395.140500px;}
.y1d3{bottom:395.394000px;}
.y227{bottom:395.442000px;}
.y1f3{bottom:396.936000px;}
.y1b4{bottom:398.058000px;}
.yc6{bottom:398.829000px;}
.y1d2{bottom:399.826500px;}
.ye9{bottom:401.187000px;}
.y3e{bottom:406.776000px;}
.y263{bottom:407.397000px;}
.y162{bottom:412.099500px;}
.y27d{bottom:414.558000px;}
.y87{bottom:414.870000px;}
.y226{bottom:417.111000px;}
.y148{bottom:417.484500px;}
.y1b3{bottom:419.725500px;}
.yc5{bottom:420.498000px;}
.y194{bottom:422.106000px;}
.ye8{bottom:422.854500px;}
.y240{bottom:423.696000px;}
.y128{bottom:424.569000px;}
.y29f{bottom:424.881000px;}
.y20f{bottom:426.106500px;}
.y3d{bottom:428.443500px;}
.y262{bottom:429.066000px;}
.y180{bottom:429.585000px;}
.y1f2{bottom:433.549500px;}
.y161{bottom:433.768500px;}
.y65{bottom:434.346000px;}
.y27c{bottom:436.227000px;}
.y86{bottom:436.537500px;}
.y225{bottom:438.780000px;}
.y147{bottom:439.153500px;}
.y1d1{bottom:439.822500px;}
.y16{bottom:440.020500px;}
.yc4{bottom:442.165500px;}
.ya6{bottom:445.552500px;}
.y29e{bottom:446.550000px;}
.y10a{bottom:447.132000px;}
.y192{bottom:448.456500px;}
.y3c{bottom:450.112500px;}
.y1b2{bottom:450.723000px;}
.y261{bottom:450.735000px;}
.ye7{bottom:450.870000px;}
.y127{bottom:453.960000px;}
.y85{bottom:458.206500px;}
.y20e{bottom:459.510000px;}
.y15{bottom:460.344000px;}
.y224{bottom:460.449000px;}
.y191{bottom:460.758000px;}
.y17f{bottom:461.160000px;}
.y1d0{bottom:461.491500px;}
.yc3{bottom:463.834500px;}
.y160{bottom:467.019000px;}
.ya5{bottom:467.221500px;}
.y29d{bottom:468.219000px;}
.y109{bottom:468.801000px;}
.y1f1{bottom:470.161500px;}
.y3b{bottom:471.781500px;}
.y146{bottom:472.029000px;}
.y1b1{bottom:472.392000px;}
.y260{bottom:472.404000px;}
.ye6{bottom:472.539000px;}
.y193{bottom:472.888500px;}
.y126{bottom:475.629000px;}
.y27b{bottom:477.322500px;}
.y84{bottom:479.875500px;}
.y14{bottom:480.667500px;}
.y20d{bottom:481.179000px;}
.y223{bottom:482.116500px;}
.y23f{bottom:483.396000px;}
.y145{bottom:484.330500px;}
.y190{bottom:487.833000px;}
.ya4{bottom:488.890500px;}
.y29c{bottom:489.888000px;}
.y108{bottom:490.470000px;}
.y17e{bottom:492.733500px;}
.y3a{bottom:493.450500px;}
.y1b0{bottom:494.059500px;}
.y25f{bottom:494.073000px;}
.ye5{bottom:494.206500px;}
.y64{bottom:494.247000px;}
.y1cf{bottom:494.913000px;}
.y125{bottom:497.296500px;}
.y27a{bottom:498.991500px;}
.y1ce{bottom:499.345500px;}
.y13{bottom:500.991000px;}
.y83{bottom:501.544500px;}
.yc2{bottom:501.747000px;}
.y20c{bottom:502.848000px;}
.y23e{bottom:505.065000px;}
.y1f0{bottom:506.775000px;}
.y18f{bottom:509.502000px;}
.ya3{bottom:510.559500px;}
.y29b{bottom:511.557000px;}
.y107{bottom:512.139000px;}
.y39{bottom:515.119500px;}
.y222{bottom:515.367000px;}
.y1af{bottom:515.728500px;}
.y25e{bottom:515.740500px;}
.ye4{bottom:515.875500px;}
.y63{bottom:515.916000px;}
.y15f{bottom:518.488500px;}
.y12{bottom:521.314500px;}
.y82{bottom:523.213500px;}
.y17d{bottom:524.307000px;}
.y20b{bottom:532.626000px;}
.y29a{bottom:533.226000px;}
.y106{bottom:533.808000px;}
.y144{bottom:534.585000px;}
.y279{bottom:535.603500px;}
.y1cd{bottom:537.199500px;}
.y62{bottom:537.585000px;}
.y123{bottom:539.293500px;}
.yc1{bottom:539.658000px;}
.y15e{bottom:540.157500px;}
.y23d{bottom:540.514500px;}
.y18e{bottom:540.883500px;}
.y11{bottom:541.639500px;}
.y1ef{bottom:543.387000px;}
.y81{bottom:544.881000px;}
.y25d{bottom:547.123500px;}
.y124{bottom:547.161000px;}
.ye3{bottom:549.126000px;}
.ya2{bottom:550.161000px;}
.y122{bottom:551.593500px;}
.y20a{bottom:554.295000px;}
.y38{bottom:554.347500px;}
.y1ae{bottom:554.430000px;}
.y299{bottom:554.893500px;}
.y17c{bottom:555.882000px;}
.y61{bottom:559.252500px;}
.y15d{bottom:561.826500px;}
.y10{bottom:561.963000px;}
.y18d{bottom:562.552500px;}
.y104{bottom:565.687500px;}
.y80{bottom:566.550000px;}
.y221{bottom:567.360000px;}
.y25c{bottom:568.792500px;}
.y1cc{bottom:570.450000px;}
.y278{bottom:572.217000px;}
.yc0{bottom:572.908500px;}
.y105{bottom:573.555000px;}
.y209{bottom:575.964000px;}
.y37{bottom:576.015000px;}
.y298{bottom:576.562500px;}
.y1ee{bottom:576.637500px;}
.y23c{bottom:576.739500px;}
.y142{bottom:577.576500px;}
.y60{bottom:580.921500px;}
.yf{bottom:582.286500px;}
.y15c{bottom:583.495500px;}
.y17b{bottom:583.824000px;}
.y18c{bottom:584.221500px;}
.y143{bottom:585.444000px;}
.y7f{bottom:588.219000px;}
.y220{bottom:589.029000px;}
.ya1{bottom:589.762500px;}
.y140{bottom:589.878000px;}
.y103{bottom:590.121000px;}
.y25b{bottom:590.461500px;}
.y1ad{bottom:593.131500px;}
.y36{bottom:597.684000px;}
.ye2{bottom:599.959500px;}
.y141{bottom:602.010000px;}
.y5f{bottom:602.590500px;}
.ye{bottom:602.610000px;}
.y207{bottom:604.099500px;}
.y15b{bottom:605.163000px;}
.y17a{bottom:605.491500px;}
.y121{bottom:605.890500px;}
.y277{bottom:608.829000px;}
.y7e{bottom:609.888000px;}
.y208{bottom:611.967000px;}
.y23b{bottom:612.964500px;}
.y297{bottom:613.176000px;}
.y18b{bottom:617.472000px;}
.y35{bottom:619.353000px;}
.ye1{bottom:621.627000px;}
.y1cb{bottom:622.185000px;}
.yd{bottom:622.933500px;}
.y25a{bottom:623.710500px;}
.y1ab{bottom:624.112500px;}
.y5e{bottom:624.259500px;}
.ybf{bottom:624.651000px;}
.y21f{bottom:625.641000px;}
.y15a{bottom:626.832000px;}
.y179{bottom:627.160500px;}
.y102{bottom:628.243500px;}
.y206{bottom:628.533000px;}
.y1ed{bottom:628.630500px;}
.ya0{bottom:629.364000px;}
.y7d{bottom:631.557000px;}
.y1ac{bottom:631.980000px;}
.y120{bottom:639.141000px;}
.y34{bottom:641.022000px;}
.yc{bottom:643.258500px;}
.ye0{bottom:643.296000px;}
.y1ca{bottom:643.854000px;}
.y13f{bottom:644.175000px;}
.y276{bottom:645.442500px;}
.y5d{bottom:645.928500px;}
.ybe{bottom:646.320000px;}
.y159{bottom:648.501000px;}
.y1aa{bottom:648.544500px;}
.y178{bottom:648.829500px;}
.y23a{bottom:649.188000px;}
.y296{bottom:649.788000px;}
.y1ec{bottom:650.299500px;}
.y205{bottom:661.914000px;}
.y21e{bottom:662.254500px;}
.y33{bottom:662.691000px;}
.yb{bottom:663.582000px;}
.y100{bottom:663.810000px;}
.y7c{bottom:664.807500px;}
.ydf{bottom:664.965000px;}
.y1c9{bottom:665.521500px;}
.y5c{bottom:667.597500px;}
.ybd{bottom:667.989000px;}
.y9f{bottom:668.965500px;}
.y18a{bottom:669.465000px;}
.y158{bottom:670.170000px;}
.y1eb{bottom:671.967000px;}
.y259{bottom:675.703500px;}
.y177{bottom:675.970500px;}
.yff{bottom:676.110000px;}
.y13e{bottom:677.424000px;}
.y176{bottom:680.403000px;}
.y204{bottom:683.583000px;}
.ya{bottom:683.905500px;}
.y1a9{bottom:684.771000px;}
.y239{bottom:685.413000px;}
.y295{bottom:686.401500px;}
.y275{bottom:686.538000px;}
.yde{bottom:686.634000px;}
.y1c8{bottom:687.190500px;}
.y101{bottom:688.242000px;}
.y5b{bottom:689.265000px;}
.ybc{bottom:689.658000px;}
.y11f{bottom:691.134000px;}
.y1ea{bottom:693.636000px;}
.y258{bottom:697.372500px;}
.y21d{bottom:698.866500px;}
.y32{bottom:701.917500px;}
.y9{bottom:704.229000px;}
.y9d{bottom:704.532000px;}
.y1a8{bottom:706.440000px;}
.y294{bottom:708.069000px;}
.y274{bottom:708.207000px;}
.ydd{bottom:708.303000px;}
.y1c7{bottom:708.859500px;}
.y157{bottom:709.597500px;}
.y5a{bottom:710.934000px;}
.ybb{bottom:711.327000px;}
.y175{bottom:711.978000px;}
.y11e{bottom:712.801500px;}
.y1e9{bottom:715.305000px;}
.y7b{bottom:716.799000px;}
.y9c{bottom:716.832000px;}
.y203{bottom:716.833500px;}
.y257{bottom:719.041500px;}
.y238{bottom:720.862500px;}
.y31{bottom:723.586500px;}
.y8{bottom:724.552500px;}
.yfe{bottom:724.605000px;}
.y1a7{bottom:728.109000px;}
.y9e{bottom:728.964000px;}
.y13d{bottom:729.417000px;}
.y1c6{bottom:730.528500px;}
.y59{bottom:732.603000px;}
.yba{bottom:732.994500px;}
.y174{bottom:733.647000px;}
.y11d{bottom:734.470500px;}
.y21c{bottom:735.480000px;}
.y1e8{bottom:736.974000px;}
.ydc{bottom:738.180000px;}
.y7a{bottom:738.468000px;}
.y256{bottom:740.710500px;}
.y273{bottom:741.457500px;}
.y237{bottom:742.531500px;}
.y293{bottom:744.682500px;}
.y7{bottom:744.877500px;}
.y30{bottom:745.255500px;}
.y13c{bottom:751.086000px;}
.y58{bottom:754.272000px;}
.yb9{bottom:754.663500px;}
.y11c{bottom:756.139500px;}
.yfd{bottom:757.855500px;}
.y1e7{bottom:758.643000px;}
.y1a6{bottom:759.105000px;}
.y79{bottom:760.137000px;}
.y255{bottom:762.378000px;}
.y6{bottom:765.201000px;}
.y9b{bottom:765.328500px;}
.y292{bottom:766.351500px;}
.y173{bottom:766.896000px;}
.y2f{bottom:766.924500px;}
.y202{bottom:768.273000px;}
.y156{bottom:768.975000px;}
.y1c5{bottom:769.956000px;}
.y21b{bottom:772.092000px;}
.ydb{bottom:772.548000px;}
.y13b{bottom:772.755000px;}
.y236{bottom:775.782000px;}
.y57{bottom:775.941000px;}
.y11b{bottom:777.808500px;}
.y1e6{bottom:780.312000px;}
.y1a5{bottom:780.774000px;}
.y78{bottom:781.806000px;}
.y254{bottom:784.047000px;}
.y2e{bottom:788.593500px;}
.y201{bottom:789.942000px;}
.y155{bottom:790.644000px;}
.y272{bottom:793.449000px;}
.yb8{bottom:794.091000px;}
.y5{bottom:795.543000px;}
.y56{bottom:797.610000px;}
.y9a{bottom:798.577500px;}
.y13a{bottom:799.105500px;}
.y1e5{bottom:801.979500px;}
.y291{bottom:802.963500px;}
.y77{bottom:803.475000px;}
.y253{bottom:805.716000px;}
.yda{bottom:806.914500px;}
.y21a{bottom:808.705500px;}
.yfc{bottom:809.848500px;}
.y2d{bottom:810.262500px;}
.y139{bottom:811.407000px;}
.y200{bottom:811.611000px;}
.y1a4{bottom:814.024500px;}
.y271{bottom:815.118000px;}
.y11a{bottom:817.236000px;}
.y172{bottom:817.704000px;}
.y55{bottom:819.277500px;}
.y76{bottom:825.142500px;}
.y252{bottom:827.385000px;}
.y235{bottom:827.574000px;}
.y154{bottom:827.694000px;}
.y1c4{bottom:829.597500px;}
.y219{bottom:830.373000px;}
.yfb{bottom:831.517500px;}
.y1ff{bottom:833.280000px;}
.y1e4{bottom:835.230000px;}
.y171{bottom:839.373000px;}
.y290{bottom:839.577000px;}
.y138{bottom:840.774000px;}
.y54{bottom:840.946500px;}
.yd9{bottom:841.282500px;}
.y75{bottom:846.811500px;}
.y251{bottom:849.054000px;}
.y234{bottom:849.243000px;}
.y2c{bottom:849.489000px;}
.y99{bottom:850.570500px;}
.y1c3{bottom:851.266500px;}
.yfa{bottom:853.186500px;}
.y4f{bottom:853.599000px;}
.yb7{bottom:853.741500px;}
.y1fe{bottom:854.949000px;}
.y270{bottom:856.213500px;}
.y4{bottom:861.631500px;}
.y53{bottom:862.615500px;}
.y153{bottom:863.295000px;}
.y218{bottom:863.623500px;}
.y1a3{bottom:865.884000px;}
.y74{bottom:868.480500px;}
.y170{bottom:870.946500px;}
.y2b{bottom:871.158000px;}
.yd8{bottom:871.159500px;}
.y98{bottom:872.239500px;}
.y1c2{bottom:872.935500px;}
.yf9{bottom:874.855500px;}
.y136{bottom:875.344500px;}
.yb6{bottom:875.410500px;}
.y28f{bottom:876.189000px;}
.y119{bottom:877.135500px;}
.y250{bottom:882.304500px;}
.y52{bottom:884.284500px;}
.y233{bottom:884.692500px;}
.y1e3{bottom:887.223000px;}
.y1a2{bottom:887.553000px;}
.y135{bottom:887.644500px;}
.y73{bottom:890.149500px;}
.y2a{bottom:892.827000px;}
.yd7{bottom:892.828500px;}
.y97{bottom:893.908500px;}
.y1fd{bottom:894.376500px;}
.y1c1{bottom:894.604500px;}
.yf8{bottom:896.523000px;}
.yb5{bottom:897.079500px;}
.y118{bottom:898.804500px;}
.y152{bottom:898.896000px;}
.y137{bottom:899.776500px;}
.y16f{bottom:902.521500px;}
.y51{bottom:905.953500px;}
.y1e2{bottom:908.892000px;}
.y28e{bottom:912.802500px;}
.y29{bottom:914.496000px;}
.y3{bottom:914.869500px;}
.y96{bottom:915.577500px;}
.y217{bottom:915.616500px;}
.y1c0{bottom:916.273500px;}
.yf7{bottom:918.192000px;}
.yb4{bottom:918.748500px;}
.y117{bottom:920.473500px;}
.y232{bottom:920.917500px;}
.y72{bottom:923.400000px;}
.yd6{bottom:926.079000px;}
.y1a1{bottom:927.619500px;}
.y26f{bottom:929.439000px;}
.y16e{bottom:929.661000px;}
.y1e1{bottom:930.561000px;}
.y16d{bottom:934.095000px;}
.y24f{bottom:934.296000px;}
.y151{bottom:934.497000px;}
.y134{bottom:936.141000px;}
.y28{bottom:936.165000px;}
.yf6{bottom:939.861000px;}
.yb3{bottom:940.417500px;}
.y116{bottom:942.142500px;}
.y50{bottom:945.379500px;}
.y95{bottom:946.959000px;}
.y1be{bottom:949.095000px;}
.y28d{bottom:949.414500px;}
.y1e0{bottom:952.228500px;}
.y2{bottom:952.230000px;}
.y1fc{bottom:953.724000px;}
.y24e{bottom:955.965000px;}
.y231{bottom:957.142500px;}
.y4e{bottom:957.834000px;}
.y1bd{bottom:961.396500px;}
.yf4{bottom:963.522000px;}
.y115{bottom:963.810000px;}
.y1a0{bottom:963.975000px;}
.y133{bottom:965.281500px;}
.y16c{bottom:965.668500px;}
.y26e{bottom:966.052500px;}
.y94{bottom:968.628000px;}
.y150{bottom:970.098000px;}
.yb2{bottom:970.608000px;}
.yf5{bottom:971.389500px;}
.y1bf{bottom:973.528500px;}
.y27{bottom:975.393000px;}
.yd5{bottom:976.911000px;}
.y132{bottom:977.581500px;}
.y24d{bottom:977.634000px;}
.y4d{bottom:979.501500px;}
.yb1{bottom:982.908000px;}
.y114{bottom:985.479000px;}
.y28c{bottom:986.028000px;}
.y26d{bottom:987.721500px;}
.yf3{bottom:987.955500px;}
.y1df{bottom:988.842000px;}
.y1{bottom:989.589000px;}
.y230{bottom:993.367500px;}
.y26{bottom:997.060500px;}
.y16b{bottom:997.243500px;}
.yd4{bottom:998.580000px;}
.y24c{bottom:999.303000px;}
.y19f{bottom:1000.330500px;}
.y92{bottom:1000.509000px;}
.y4c{bottom:1001.170500px;}
.yf2{bottom:1007.148000px;}
.y93{bottom:1008.376500px;}
.y25{bottom:1018.729500px;}
.y24b{bottom:1020.972000px;}
.y28b{bottom:1022.640000px;}
.y4b{bottom:1022.839500px;}
.y91{bottom:1024.941000px;}
.y1de{bottom:1025.454000px;}
.yd3{bottom:1025.890500px;}
.yb0{bottom:1028.817000px;}
.yd2{bottom:1030.323000px;}
.y24{bottom:1040.398500px;}
.y23{bottom:1062.067500px;}
.h28{height:33.665702px;}
.h4{height:45.687311px;}
.h5{height:46.145493px;}
.h6{height:49.090950px;}
.h8{height:50.211840px;}
.ha{height:51.287808px;}
.h9{height:53.798400px;}
.hb{height:60.254040px;}
.hc{height:61.893450px;}
.h25{height:61.899450px;}
.h21{height:63.287702px;}
.h3{height:64.557900px;}
.h11{height:65.481450px;}
.h13{height:65.487450px;}
.he{height:71.528400px;}
.h12{height:71.534400px;}
.h24{height:71.930400px;}
.h7{height:72.304680px;}
.h26{height:83.211450px;}
.h14{height:83.217450px;}
.h1{height:86.782500px;}
.h2{height:87.650325px;}
.h27{height:88.747248px;}
.h19{height:100.507248px;}
.h22{height:102.320400px;}
.hf{height:102.326400px;}
.h10{height:102.998400px;}
.h23{height:103.004400px;}
.h20{height:104.000400px;}
.hd{height:114.681450px;}
.h15{height:114.687450px;}
.h18{height:143.263248px;}
.h1f{height:149.707248px;}
.h1b{height:151.526400px;}
.h1c{height:151.532400px;}
.h1a{height:153.211248px;}
.h1e{height:159.627450px;}
.h17{height:170.145450px;}
.h1d{height:170.151450px;}
.h16{height:174.733248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x5c{left:120.681000px;}
.x2{left:123.183000px;}
.x5b{left:129.460500px;}
.x9{left:134.338500px;}
.x7{left:151.897500px;}
.x1{left:169.003500px;}
.x6{left:176.443500px;}
.xb{left:190.399500px;}
.x4e{left:241.923000px;}
.x4f{left:256.347000px;}
.x36{left:258.630000px;}
.x53{left:262.287000px;}
.x24{left:263.853000px;}
.x54{left:271.729500px;}
.x15{left:286.065000px;}
.x23{left:289.909500px;}
.x4{left:293.313000px;}
.x2b{left:298.026000px;}
.x2a{left:303.270000px;}
.xc{left:306.295500px;}
.x46{left:308.424000px;}
.x3{left:312.589500px;}
.x37{left:323.167500px;}
.x38{left:324.849000px;}
.x10{left:327.579000px;}
.x18{left:336.618000px;}
.x2c{left:338.535000px;}
.x3c{left:345.444000px;}
.x19{left:351.042000px;}
.x57{left:355.356000px;}
.x47{left:359.338500px;}
.x1d{left:361.455000px;}
.x1e{left:363.136500px;}
.x48{left:364.752000px;}
.x49{left:366.777000px;}
.x11{left:368.994000px;}
.x1f{left:370.489500px;}
.x2f{left:377.836500px;}
.x3f{left:379.017000px;}
.x3d{left:386.173500px;}
.x40{left:387.426000px;}
.x5a{left:391.345500px;}
.x17{left:393.715500px;}
.x29{left:395.955000px;}
.xd{left:397.689000px;}
.xe{left:399.369000px;}
.x43{left:401.674500px;}
.x25{left:402.951000px;}
.x16{left:405.934500px;}
.x42{left:407.035500px;}
.x39{left:408.756000px;}
.x32{left:411.654000px;}
.x4a{left:413.148000px;}
.x1c{left:417.546000px;}
.x41{left:420.481500px;}
.x5{left:422.998500px;}
.x34{left:424.101000px;}
.x30{left:427.057500px;}
.x1a{left:431.185500px;}
.x50{left:435.163500px;}
.x26{left:443.647500px;}
.x3a{left:449.452500px;}
.x12{left:450.973500px;}
.x20{left:452.467500px;}
.xa{left:454.611000px;}
.x58{left:459.381000px;}
.x59{left:461.062500px;}
.xf{left:463.236000px;}
.x2d{left:467.202000px;}
.x21{left:474.087000px;}
.x13{left:475.581000px;}
.x33{left:477.261000px;}
.x4b{left:484.677000px;}
.x35{left:489.022500px;}
.x27{left:492.139500px;}
.x4c{left:493.710000px;}
.x22{left:497.097000px;}
.x14{left:498.591000px;}
.x44{left:501.559500px;}
.x4d{left:503.152500px;}
.x3e{left:504.618000px;}
.x31{left:511.078500px;}
.x55{left:517.411500px;}
.x1b{left:522.096000px;}
.x51{left:526.074000px;}
.x45{left:527.458500px;}
.x2e{left:558.603000px;}
.x56{left:598.597500px;}
.x28{left:607.128000px;}
.x3b{left:612.352500px;}
.x52{left:616.791000px;}
@media print{
.v12{vertical-align:-109.034667pt;}
.v16{vertical-align:-49.589333pt;}
.vd{vertical-align:-19.130667pt;}
.v14{vertical-align:-14.277333pt;}
.v6{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:6.202667pt;}
.v5{vertical-align:15.760000pt;}
.v2{vertical-align:18.416000pt;}
.v1{vertical-align:23.136000pt;}
.v8{vertical-align:26.325333pt;}
.vb{vertical-align:42.090667pt;}
.v3{vertical-align:43.733333pt;}
.v18{vertical-align:44.624000pt;}
.v9{vertical-align:51.648000pt;}
.v15{vertical-align:66.272000pt;}
.v4{vertical-align:70.058667pt;}
.v19{vertical-align:76.336000pt;}
.ve{vertical-align:86.869333pt;}
.v13{vertical-align:89.904000pt;}
.v7{vertical-align:95.381333pt;}
.v10{vertical-align:119.360000pt;}
.v11{vertical-align:124.794667pt;}
.v17{vertical-align:130.522667pt;}
.vf{vertical-align:133.637333pt;}
.vc{vertical-align:152.768000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls99{letter-spacing:0.000031pt;}
.ls7b{letter-spacing:0.000420pt;}
.ls1f{letter-spacing:0.000572pt;}
.ls98{letter-spacing:0.001205pt;}
.lsaf{letter-spacing:0.002039pt;}
.ls4b{letter-spacing:0.002836pt;}
.ls2c{letter-spacing:0.003132pt;}
.lsa6{letter-spacing:0.003903pt;}
.ls4e{letter-spacing:0.004145pt;}
.ls1d{letter-spacing:0.007731pt;}
.ls8a{letter-spacing:0.008103pt;}
.ls87{letter-spacing:0.009168pt;}
.ls72{letter-spacing:0.010368pt;}
.lsa9{letter-spacing:0.010696pt;}
.ls3b{letter-spacing:0.012105pt;}
.ls22{letter-spacing:0.013222pt;}
.lsa5{letter-spacing:0.017439pt;}
.ls49{letter-spacing:0.019197pt;}
.ls9c{letter-spacing:0.020410pt;}
.ls7f{letter-spacing:0.020867pt;}
.ls96{letter-spacing:0.021373pt;}
.lsa7{letter-spacing:0.022100pt;}
.ls81{letter-spacing:0.022676pt;}
.ls23{letter-spacing:0.023897pt;}
.ls89{letter-spacing:0.024021pt;}
.ls5d{letter-spacing:0.024497pt;}
.lsb2{letter-spacing:0.027363pt;}
.ls7{letter-spacing:0.063761pt;}
.ls1a{letter-spacing:1.721549pt;}
.ls90{letter-spacing:1.734241pt;}
.ls78{letter-spacing:1.748209pt;}
.ls28{letter-spacing:1.757384pt;}
.ls8{letter-spacing:1.785310pt;}
.ls45{letter-spacing:2.260820pt;}
.ls86{letter-spacing:2.289103pt;}
.ls95{letter-spacing:2.295398pt;}
.ls12{letter-spacing:2.297492pt;}
.ls50{letter-spacing:2.299230pt;}
.ls3d{letter-spacing:2.300445pt;}
.ls74{letter-spacing:2.302826pt;}
.lsae{letter-spacing:2.305778pt;}
.ls18{letter-spacing:2.653258pt;}
.ls9b{letter-spacing:2.654275pt;}
.ls9e{letter-spacing:2.655321pt;}
.lsd{letter-spacing:2.658591pt;}
.ls2e{letter-spacing:2.658731pt;}
.ls9a{letter-spacing:2.659608pt;}
.lsb0{letter-spacing:2.661209pt;}
.lse{letter-spacing:3.443098pt;}
.lsc{letter-spacing:3.463238pt;}
.ls39{letter-spacing:3.468571pt;}
.ls3{letter-spacing:3.698142pt;}
.lsaa{letter-spacing:3.720465pt;}
.ls33{letter-spacing:3.725798pt;}
.lsf{letter-spacing:3.745939pt;}
.ls5{letter-spacing:3.761903pt;}
.ls4{letter-spacing:4.527036pt;}
.ls51{letter-spacing:4.578039pt;}
.ls27{letter-spacing:4.583373pt;}
.lsa{letter-spacing:4.590797pt;}
.ls5e{letter-spacing:4.928116pt;}
.ls4a{letter-spacing:4.933449pt;}
.ls13{letter-spacing:4.941258pt;}
.ls3e{letter-spacing:4.946591pt;}
.ls2f{letter-spacing:5.435823pt;}
.ls25{letter-spacing:5.674735pt;}
.ls8c{letter-spacing:6.341234pt;}
.ls5f{letter-spacing:6.363028pt;}
.ls8f{letter-spacing:6.368768pt;}
.ls4c{letter-spacing:6.372145pt;}
.ls71{letter-spacing:6.377479pt;}
.ls62{letter-spacing:6.389524pt;}
.ls8b{letter-spacing:6.694912pt;}
.ls32{letter-spacing:6.758673pt;}
.ls2d{letter-spacing:6.822434pt;}
.ls6{letter-spacing:10.584337pt;}
.ls29{letter-spacing:10.620097pt;}
.ls52{letter-spacing:10.626836pt;}
.ls75{letter-spacing:10.632170pt;}
.ls9{letter-spacing:10.648098pt;}
.ls7e{letter-spacing:11.221948pt;}
.ls1e{letter-spacing:13.277258pt;}
.ls17{letter-spacing:13.282591pt;}
.ls11{letter-spacing:14.154957pt;}
.ls79{letter-spacing:14.166764pt;}
.ls60{letter-spacing:14.169479pt;}
.ls20{letter-spacing:14.218718pt;}
.ls57{letter-spacing:14.346240pt;}
.ls44{letter-spacing:15.876506pt;}
.ls4d{letter-spacing:16.097939pt;}
.ls6b{letter-spacing:16.103272pt;}
.ls73{letter-spacing:16.818591pt;}
.ls4f{letter-spacing:16.823925pt;}
.ls7c{letter-spacing:16.825248pt;}
.ls26{letter-spacing:17.001248pt;}
.ls48{letter-spacing:17.661815pt;}
.ls55{letter-spacing:17.709606pt;}
.lsac{letter-spacing:17.711572pt;}
.ls16{letter-spacing:17.725577pt;}
.ls6e{letter-spacing:18.299426pt;}
.ls3c{letter-spacing:18.745754pt;}
.lsb9{letter-spacing:18.809515pt;}
.ls46{letter-spacing:19.447125pt;}
.ls9f{letter-spacing:20.020975pt;}
.lsa2{letter-spacing:20.276019pt;}
.ls7a{letter-spacing:20.543572pt;}
.ls5b{letter-spacing:20.748605pt;}
.ls24{letter-spacing:20.786108pt;}
.ls54{letter-spacing:21.423718pt;}
.ls40{letter-spacing:21.551241pt;}
.ls94{letter-spacing:21.615002pt;}
.ls8e{letter-spacing:22.252612pt;}
.ls14{letter-spacing:22.316373pt;}
.lsa1{letter-spacing:23.145267pt;}
.ls63{letter-spacing:23.179976pt;}
.ls65{letter-spacing:23.371964pt;}
.ls9d{letter-spacing:23.464941pt;}
.lsb4{letter-spacing:23.470275pt;}
.ls2b{letter-spacing:23.591595pt;}
.lsb{letter-spacing:23.974161pt;}
.ls67{letter-spacing:24.075028pt;}
.ls6c{letter-spacing:24.082707pt;}
.ls68{letter-spacing:24.084905pt;}
.ls70{letter-spacing:24.085673pt;}
.ls77{letter-spacing:24.109925pt;}
.ls41{letter-spacing:24.205258pt;}
.ls42{letter-spacing:24.484250pt;}
.ls59{letter-spacing:24.548011pt;}
.lsb8{letter-spacing:25.185621pt;}
.ls5a{letter-spacing:25.376905pt;}
.ls38{letter-spacing:25.440666pt;}
.ls31{letter-spacing:25.656064pt;}
.lsb3{letter-spacing:25.715608pt;}
.lsb1{letter-spacing:25.717209pt;}
.ls80{letter-spacing:26.142037pt;}
.ls83{letter-spacing:27.672303pt;}
.ls2{letter-spacing:27.799825pt;}
.lsab{letter-spacing:28.054869pt;}
.ls35{letter-spacing:28.437436pt;}
.ls3a{letter-spacing:29.175925pt;}
.ls10{letter-spacing:29.181258pt;}
.ls43{letter-spacing:29.277258pt;}
.ls6f{letter-spacing:30.268605pt;}
.lsa4{letter-spacing:30.402591pt;}
.lsb7{letter-spacing:30.987878pt;}
.ls36{letter-spacing:31.242923pt;}
.lsa8{letter-spacing:31.561728pt;}
.ls0{letter-spacing:31.880533pt;}
.ls93{letter-spacing:32.773188pt;}
.lsb5{letter-spacing:33.809939pt;}
.lsb6{letter-spacing:33.857126pt;}
.lsa0{letter-spacing:33.873635pt;}
.ls91{letter-spacing:38.669258pt;}
.ls56{letter-spacing:38.958351pt;}
.ls6a{letter-spacing:40.530707pt;}
.ls8d{letter-spacing:51.323575pt;}
.ls61{letter-spacing:59.854812pt;}
.ls5c{letter-spacing:64.190812pt;}
.ls66{letter-spacing:81.898238pt;}
.ls1b{letter-spacing:91.937939pt;}
.ls76{letter-spacing:424.584943pt;}
.ls53{letter-spacing:443.139413pt;}
.ls2a{letter-spacing:698.183680pt;}
.ls21{letter-spacing:700.351556pt;}
.ls19{letter-spacing:700.989167pt;}
.ls7d{letter-spacing:733.252267pt;}
.lsa3{letter-spacing:736.121515pt;}
.ls47{letter-spacing:783.495987pt;}
.ls64{letter-spacing:783.814793pt;}
.ls3f{letter-spacing:815.057715pt;}
.ls97{letter-spacing:816.970547pt;}
.ls92{letter-spacing:846.938249pt;}
.ls1c{letter-spacing:848.213470pt;}
.ls69{letter-spacing:848.404753pt;}
.ls88{letter-spacing:852.612983pt;}
.lsad{letter-spacing:905.789713pt;}
.ls58{letter-spacing:912.867191pt;}
.ls85{letter-spacing:916.119006pt;}
.ls84{letter-spacing:924.216661pt;}
.ls30{letter-spacing:936.076220pt;}
.ls15{letter-spacing:943.855070pt;}
.ls34{letter-spacing:947.361929pt;}
.ls82{letter-spacing:966.872815pt;}
.ls6d{letter-spacing:1012.908305pt;}
.ls37{letter-spacing:1020.814677pt;}
.ws67{word-spacing:-63.761067pt;}
.ws60{word-spacing:-50.479636pt;}
.ws9e{word-spacing:-49.606110pt;}
.ws71{word-spacing:-46.099251pt;}
.ws73{word-spacing:-46.035490pt;}
.ws54{word-spacing:-40.590295pt;}
.ws8{word-spacing:-37.899668pt;}
.wsc2{word-spacing:-32.199339pt;}
.wsa2{word-spacing:-30.005958pt;}
.ws5f{word-spacing:-29.942197pt;}
.ws6d{word-spacing:-29.559631pt;}
.ws6a{word-spacing:-29.521250pt;}
.ws13{word-spacing:-28.692333pt;}
.wsab{word-spacing:-22.482152pt;}
.wsc9{word-spacing:-22.013363pt;}
.ws58{word-spacing:-17.343010pt;}
.wsc7{word-spacing:-17.058697pt;}
.ws33{word-spacing:-15.940267pt;}
.ws74{word-spacing:-12.543875pt;}
.ws98{word-spacing:-11.901449pt;}
.wsae{word-spacing:-9.917363pt;}
.wsbe{word-spacing:-6.694912pt;}
.ws64{word-spacing:-6.376030pt;}
.wsaf{word-spacing:-4.477363pt;}
.wsc6{word-spacing:-4.301363pt;}
.wsf4{word-spacing:-3.506859pt;}
.wsb4{word-spacing:-3.443098pt;}
.wsa0{word-spacing:-3.379337pt;}
.ws68{word-spacing:-3.288030pt;}
.wsb5{word-spacing:-3.251814pt;}
.ws3{word-spacing:-3.246548pt;}
.ws55{word-spacing:-3.188053pt;}
.ws96{word-spacing:-3.124292pt;}
.wsda{word-spacing:-2.933009pt;}
.wse5{word-spacing:-2.869248pt;}
.wsde{word-spacing:-2.741726pt;}
.ws8b{word-spacing:-2.677965pt;}
.ws92{word-spacing:-2.614204pt;}
.ws4b{word-spacing:-2.550443pt;}
.ws5b{word-spacing:-2.359159pt;}
.wse0{word-spacing:-2.295398pt;}
.ws93{word-spacing:-2.104115pt;}
.ws7f{word-spacing:-2.040354pt;}
.ws5c{word-spacing:-1.976593pt;}
.ws77{word-spacing:-1.849071pt;}
.wsf1{word-spacing:-1.721549pt;}
.ws9d{word-spacing:-1.657788pt;}
.ws10{word-spacing:-1.617456pt;}
.wsd8{word-spacing:-1.466505pt;}
.ws27{word-spacing:-1.338982pt;}
.ws61{word-spacing:-1.275221pt;}
.ws24{word-spacing:-1.147699pt;}
.ws9a{word-spacing:-0.510089pt;}
.ws3b{word-spacing:-0.382566pt;}
.wsef{word-spacing:-0.318805pt;}
.wse1{word-spacing:-0.255044pt;}
.ws49{word-spacing:-0.127522pt;}
.wsdc{word-spacing:-0.063761pt;}
.wse{word-spacing:-0.046545pt;}
.ws1c{word-spacing:0.000000pt;}
.ws47{word-spacing:0.063761pt;}
.wsa3{word-spacing:0.127522pt;}
.ws51{word-spacing:0.191283pt;}
.ws53{word-spacing:0.318805pt;}
.ws30{word-spacing:0.382566pt;}
.wseb{word-spacing:0.510089pt;}
.ws5e{word-spacing:0.573850pt;}
.ws8f{word-spacing:0.637611pt;}
.ws45{word-spacing:0.765133pt;}
.wsec{word-spacing:0.828894pt;}
.wsb9{word-spacing:0.892655pt;}
.wsa4{word-spacing:0.956416pt;}
.wscc{word-spacing:1.020177pt;}
.ws7c{word-spacing:1.047970pt;}
.wsb2{word-spacing:1.083938pt;}
.ws3a{word-spacing:1.147699pt;}
.ws4c{word-spacing:1.211460pt;}
.ws5a{word-spacing:1.275221pt;}
.ws3c{word-spacing:1.402743pt;}
.ws85{word-spacing:1.466505pt;}
.ws4a{word-spacing:1.594027pt;}
.ws9c{word-spacing:1.657788pt;}
.ws94{word-spacing:1.785310pt;}
.ws99{word-spacing:1.849071pt;}
.wsdb{word-spacing:1.912832pt;}
.wsba{word-spacing:1.976593pt;}
.wse8{word-spacing:2.040354pt;}
.ws59{word-spacing:2.167876pt;}
.ws2b{word-spacing:2.231637pt;}
.wsb0{word-spacing:2.295398pt;}
.ws4f{word-spacing:2.359159pt;}
.ws9{word-spacing:2.397093pt;}
.ws90{word-spacing:2.422921pt;}
.ws5{word-spacing:2.455275pt;}
.wsb7{word-spacing:2.486682pt;}
.wsdf{word-spacing:2.550443pt;}
.wsac{word-spacing:2.614204pt;}
.ws97{word-spacing:2.677965pt;}
.wscf{word-spacing:2.741726pt;}
.ws3e{word-spacing:2.805487pt;}
.ws4{word-spacing:2.862548pt;}
.ws66{word-spacing:2.869248pt;}
.wsa7{word-spacing:2.882637pt;}
.ws52{word-spacing:2.933009pt;}
.ws22{word-spacing:3.124292pt;}
.wse4{word-spacing:3.188053pt;}
.wsb{word-spacing:3.211639pt;}
.wse3{word-spacing:3.251814pt;}
.ws2e{word-spacing:3.315575pt;}
.ws5d{word-spacing:3.379337pt;}
.ws1a{word-spacing:3.443098pt;}
.ws19{word-spacing:3.506859pt;}
.ws62{word-spacing:3.570620pt;}
.wsd{word-spacing:3.618912pt;}
.ws25{word-spacing:3.634381pt;}
.ws23{word-spacing:3.698142pt;}
.ws6{word-spacing:3.793458pt;}
.ws50{word-spacing:3.825664pt;}
.ws81{word-spacing:3.889425pt;}
.ws56{word-spacing:3.953186pt;}
.ws15{word-spacing:3.985067pt;}
.wsbd{word-spacing:4.080708pt;}
.wsc0{word-spacing:4.144469pt;}
.wsea{word-spacing:4.176350pt;}
.ws2{word-spacing:4.208219pt;}
.ws43{word-spacing:4.208230pt;}
.wsb1{word-spacing:4.271991pt;}
.ws12{word-spacing:4.317095pt;}
.ws82{word-spacing:4.335753pt;}
.ws83{word-spacing:4.399514pt;}
.ws91{word-spacing:4.463275pt;}
.ws63{word-spacing:4.527036pt;}
.wse9{word-spacing:4.590797pt;}
.ws41{word-spacing:4.654558pt;}
.ws48{word-spacing:4.782067pt;}
.wsf0{word-spacing:4.782080pt;}
.ws6b{word-spacing:4.845841pt;}
.wsce{word-spacing:4.909602pt;}
.wsd9{word-spacing:4.973363pt;}
.ws21{word-spacing:5.100885pt;}
.wsee{word-spacing:5.164646pt;}
.ws26{word-spacing:5.228407pt;}
.ws11{word-spacing:5.364368pt;}
.ws2f{word-spacing:5.419691pt;}
.wsc{word-spacing:5.422550pt;}
.wsb6{word-spacing:5.547213pt;}
.ws44{word-spacing:5.610974pt;}
.wsc3{word-spacing:5.646651pt;}
.ws65{word-spacing:5.674735pt;}
.ws31{word-spacing:5.738467pt;}
.ws1d{word-spacing:5.738496pt;}
.wsf8{word-spacing:5.866018pt;}
.wsbb{word-spacing:5.993540pt;}
.ws29{word-spacing:6.057301pt;}
.wsf2{word-spacing:6.121062pt;}
.ws39{word-spacing:6.184823pt;}
.ws9b{word-spacing:6.248585pt;}
.ws1f{word-spacing:6.376107pt;}
.ws34{word-spacing:6.439868pt;}
.ws35{word-spacing:6.503629pt;}
.ws2a{word-spacing:6.631151pt;}
.ws2c{word-spacing:6.694912pt;}
.ws79{word-spacing:6.758673pt;}
.ws7{word-spacing:6.818915pt;}
.ws42{word-spacing:6.822434pt;}
.ws0{word-spacing:6.887500pt;}
.wsa5{word-spacing:6.949956pt;}
.ws8a{word-spacing:7.141239pt;}
.ws8e{word-spacing:7.205001pt;}
.ws86{word-spacing:7.268762pt;}
.wsf{word-spacing:7.458915pt;}
.ws2d{word-spacing:7.523806pt;}
.ws4d{word-spacing:7.587567pt;}
.ws8d{word-spacing:7.651328pt;}
.ws7b{word-spacing:7.778850pt;}
.ws36{word-spacing:7.842611pt;}
.ws7d{word-spacing:7.970133pt;}
.ws6f{word-spacing:8.033894pt;}
.ws4e{word-spacing:8.097655pt;}
.ws88{word-spacing:8.161417pt;}
.wse6{word-spacing:8.225178pt;}
.wsaa{word-spacing:8.416461pt;}
.wse2{word-spacing:8.480222pt;}
.wsb8{word-spacing:8.543983pt;}
.ws80{word-spacing:8.607744pt;}
.wsbf{word-spacing:8.671505pt;}
.ws32{word-spacing:9.054071pt;}
.wsa8{word-spacing:9.117833pt;}
.ws8c{word-spacing:9.564160pt;}
.wsa6{word-spacing:9.627921pt;}
.ws78{word-spacing:9.755443pt;}
.ws89{word-spacing:9.946726pt;}
.ws84{word-spacing:10.074249pt;}
.wsc4{word-spacing:10.201771pt;}
.ws76{word-spacing:10.265532pt;}
.wsa9{word-spacing:10.329293pt;}
.wsb3{word-spacing:10.393054pt;}
.wsfa{word-spacing:10.456815pt;}
.wscd{word-spacing:10.584337pt;}
.ws6e{word-spacing:10.648098pt;}
.wsa{word-spacing:10.658918pt;}
.wsdd{word-spacing:10.775620pt;}
.ws3d{word-spacing:10.903142pt;}
.wsd6{word-spacing:10.966903pt;}
.ws9f{word-spacing:11.030665pt;}
.wse7{word-spacing:11.221948pt;}
.ws28{word-spacing:11.285709pt;}
.ws46{word-spacing:11.413231pt;}
.wsf3{word-spacing:11.540753pt;}
.wsc1{word-spacing:11.604514pt;}
.ws3f{word-spacing:11.668275pt;}
.wsa1{word-spacing:11.732036pt;}
.wsd5{word-spacing:11.859558pt;}
.ws40{word-spacing:11.923319pt;}
.ws37{word-spacing:11.987081pt;}
.ws7a{word-spacing:12.114603pt;}
.ws87{word-spacing:12.369647pt;}
.ws95{word-spacing:12.688452pt;}
.wsbc{word-spacing:13.389824pt;}
.wsc5{word-spacing:13.453585pt;}
.wsd7{word-spacing:13.644868pt;}
.wsf9{word-spacing:13.836151pt;}
.wsf5{word-spacing:13.899913pt;}
.wsf7{word-spacing:14.091196pt;}
.wsed{word-spacing:14.856329pt;}
.ws69{word-spacing:14.983851pt;}
.wsf6{word-spacing:16.067789pt;}
.ws7e{word-spacing:16.577877pt;}
.wsad{word-spacing:25.309303pt;}
.ws1{word-spacing:33.170200pt;}
.ws16{word-spacing:34.303454pt;}
.ws1b{word-spacing:36.917658pt;}
.ws17{word-spacing:36.981419pt;}
.ws70{word-spacing:37.885303pt;}
.ws18{word-spacing:40.934605pt;}
.wsd2{word-spacing:63.165303pt;}
.wsc8{word-spacing:73.159970pt;}
.wscb{word-spacing:75.474637pt;}
.ws14{word-spacing:75.716267pt;}
.ws72{word-spacing:76.162637pt;}
.ws38{word-spacing:90.859267pt;}
.ws57{word-spacing:94.901972pt;}
.ws75{word-spacing:96.850637pt;}
.ws6c{word-spacing:103.559970pt;}
.wsca{word-spacing:103.762637pt;}
.wsd4{word-spacing:106.839970pt;}
.wsd3{word-spacing:108.893303pt;}
.ws20{word-spacing:109.030867pt;}
.wsd1{word-spacing:121.133303pt;}
.wsd0{word-spacing:149.933303pt;}
.ws1e{word-spacing:2068.695927pt;}
._3c{margin-left:-43.134562pt;}
._12{margin-left:-31.944294pt;}
._24{margin-left:-30.586510pt;}
._2{margin-left:-8.705800pt;}
._37{margin-left:-7.192228pt;}
._3{margin-left:-6.178750pt;}
._1a{margin-left:-5.100885pt;}
._0{margin-left:-3.416200pt;}
._1{margin-left:-2.314200pt;}
._5{margin-left:-1.144679pt;}
._6{width:1.629092pt;}
._8{width:2.721473pt;}
._38{width:3.719641pt;}
._36{width:5.312421pt;}
._3d{width:8.657795pt;}
._3b{width:15.283372pt;}
._c{width:16.219666pt;}
._30{width:17.121327pt;}
._35{width:18.761535pt;}
._28{width:19.829692pt;}
._3e{width:20.869892pt;}
._4{width:22.432051pt;}
._25{width:23.989943pt;}
._7{width:25.600021pt;}
._31{width:26.827145pt;}
._16{width:28.537578pt;}
._a{width:29.426950pt;}
._2b{width:30.649789pt;}
._d{width:32.290936pt;}
._29{width:33.238317pt;}
._27{width:35.161043pt;}
._9{width:36.538212pt;}
._b{width:38.458214pt;}
._20{width:40.124513pt;}
._39{width:41.654778pt;}
._32{width:43.302672pt;}
._2e{width:45.859989pt;}
._21{width:47.010708pt;}
._2c{width:48.378386pt;}
._17{width:50.144894pt;}
._1d{width:52.347836pt;}
._18{width:53.893883pt;}
._1b{width:55.472128pt;}
._23{width:56.893673pt;}
._1e{width:58.997788pt;}
._15{width:59.999164pt;}
._2f{width:62.756671pt;}
._13{width:64.031893pt;}
._11{width:83.208192pt;}
._f{width:95.641600pt;}
._34{width:114.769600pt;}
._33{width:137.723200pt;}
._3a{width:230.582107pt;}
._22{width:1183.124195pt;}
._26{width:1216.790038pt;}
._1f{width:1245.910044pt;}
._1c{width:1266.103501pt;}
._2a{width:1355.241472pt;}
._10{width:1569.153778pt;}
._19{width:1577.907845pt;}
._14{width:1647.006040pt;}
._2d{width:1929.728683pt;}
._e{width:1934.558260pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.149333pt;}
.yd1{bottom:96.000000pt;}
.y19e{bottom:97.524000pt;}
.y21{bottom:98.272000pt;}
.y4a{bottom:99.229333pt;}
.y71{bottom:101.918667pt;}
.y90{bottom:108.404000pt;}
.y1fb{bottom:112.389333pt;}
.yd0{bottom:115.261333pt;}
.y1fa{bottom:116.330667pt;}
.y20{bottom:117.533333pt;}
.y28a{bottom:118.101333pt;}
.y49{bottom:118.490667pt;}
.y26c{bottom:119.652000pt;}
.y70{bottom:121.178667pt;}
.y1dd{bottom:127.213333pt;}
.y8f{bottom:127.665333pt;}
.y24a{bottom:131.150667pt;}
.y19d{bottom:132.725333pt;}
.ycf{bottom:134.522667pt;}
.y1f{bottom:136.794667pt;}
.y289{bottom:137.362667pt;}
.y48{bottom:137.750667pt;}
.y26b{bottom:138.912000pt;}
.y6f{bottom:140.440000pt;}
.y1bc{bottom:142.798667pt;}
.y1dc{bottom:146.474667pt;}
.y216{bottom:147.134667pt;}
.y16a{bottom:148.194667pt;}
.y249{bottom:150.412000pt;}
.y131{bottom:150.698667pt;}
.y22f{bottom:150.724000pt;}
.y19c{bottom:151.986667pt;}
.y189{bottom:153.782667pt;}
.yf1{bottom:153.784000pt;}
.y1f9{bottom:154.853333pt;}
.y113{bottom:154.972000pt;}
.y1e{bottom:156.054667pt;}
.y288{bottom:156.624000pt;}
.y47{bottom:157.012000pt;}
.y8e{bottom:157.221333pt;}
.y26a{bottom:158.173333pt;}
.y6e{bottom:159.701333pt;}
.yce{bottom:164.280000pt;}
.y1bb{bottom:164.517333pt;}
.ycd{bottom:168.221333pt;}
.y248{bottom:169.673333pt;}
.y130{bottom:169.960000pt;}
.y19b{bottom:171.248000pt;}
.yf0{bottom:173.044000pt;}
.y112{bottom:174.232000pt;}
.y188{bottom:174.985333pt;}
.y1d{bottom:175.316000pt;}
.y287{bottom:175.885333pt;}
.y1db{bottom:176.029333pt;}
.y46{bottom:176.273333pt;}
.y269{bottom:177.434667pt;}
.y6d{bottom:178.962667pt;}
.y215{bottom:179.008000pt;}
.y14f{bottom:179.602667pt;}
.y169{bottom:179.840000pt;}
.yaf{bottom:180.821333pt;}
.y22e{bottom:183.269333pt;}
.y1f8{bottom:184.408000pt;}
.y187{bottom:185.920000pt;}
.yef{bottom:192.305333pt;}
.y111{bottom:193.493333pt;}
.y286{bottom:195.146667pt;}
.y45{bottom:195.534667pt;}
.y1ba{bottom:196.718667pt;}
.y6c{bottom:198.224000pt;}
.y14e{bottom:198.862667pt;}
.y12e{bottom:199.184000pt;}
.y247{bottom:199.229333pt;}
.yae{bottom:200.082667pt;}
.y19a{bottom:200.802667pt;}
.ycc{bottom:201.920000pt;}
.y8d{bottom:203.437333pt;}
.y12f{bottom:206.177333pt;}
.y214{bottom:208.564000pt;}
.y1c{bottom:210.185333pt;}
.y168{bottom:211.485333pt;}
.y268{bottom:212.636000pt;}
.y110{bottom:212.754667pt;}
.y285{bottom:214.406667pt;}
.y22d{bottom:215.813333pt;}
.y14d{bottom:218.124000pt;}
.yad{bottom:219.344000pt;}
.y186{bottom:220.829333pt;}
.y12d{bottom:220.901333pt;}
.ycb{bottom:221.181333pt;}
.y1da{bottom:222.016000pt;}
.y8c{bottom:222.698667pt;}
.y1b8{bottom:224.256000pt;}
.yee{bottom:227.352000pt;}
.y6b{bottom:227.780000pt;}
.y1b{bottom:229.446667pt;}
.y44{bottom:230.404000pt;}
.y1f7{bottom:230.624000pt;}
.y1b9{bottom:231.249333pt;}
.y10f{bottom:232.016000pt;}
.y284{bottom:233.668000pt;}
.y1d9{bottom:241.277333pt;}
.y14c{bottom:241.949333pt;}
.y8b{bottom:241.958667pt;}
.y185{bottom:242.032000pt;}
.y167{bottom:244.418667pt;}
.y246{bottom:245.266667pt;}
.y1b7{bottom:245.974667pt;}
.y199{bottom:247.018667pt;}
.y267{bottom:247.837333pt;}
.y22c{bottom:248.358667pt;}
.y1a{bottom:248.708000pt;}
.y43{bottom:249.664000pt;}
.y1f6{bottom:249.885333pt;}
.yab{bottom:250.073333pt;}
.yca{bottom:250.737333pt;}
.y10e{bottom:251.277333pt;}
.y283{bottom:252.929333pt;}
.y184{bottom:252.965333pt;}
.y213{bottom:254.288000pt;}
.y12c{bottom:254.788000pt;}
.yaa{bottom:261.006667pt;}
.y8a{bottom:261.220000pt;}
.y166{bottom:263.680000pt;}
.y245{bottom:264.528000pt;}
.y198{bottom:266.280000pt;}
.y266{bottom:267.098667pt;}
.y19{bottom:267.969333pt;}
.y42{bottom:268.925333pt;}
.y1d8{bottom:270.984000pt;}
.y1d7{bottom:270.985333pt;}
.yac{bottom:271.790667pt;}
.y282{bottom:272.190667pt;}
.y6a{bottom:273.994667pt;}
.y1d6{bottom:274.925333pt;}
.y14b{bottom:276.064000pt;}
.y1b6{bottom:278.176000pt;}
.y22a{bottom:279.088000pt;}
.yed{bottom:279.565333pt;}
.y165{bottom:282.941333pt;}
.y244{bottom:283.789333pt;}
.y212{bottom:283.980000pt;}
.y1f5{bottom:285.086667pt;}
.y197{bottom:285.541333pt;}
.y265{bottom:286.360000pt;}
.y10d{bottom:286.478667pt;}
.y183{bottom:287.874667pt;}
.y41{bottom:288.186667pt;}
.y12b{bottom:288.221333pt;}
.y229{bottom:290.021333pt;}
.y281{bottom:291.452000pt;}
.y69{bottom:293.256000pt;}
.y14a{bottom:295.325333pt;}
.y89{bottom:296.266667pt;}
.yc9{bottom:296.730667pt;}
.yec{bottom:298.826667pt;}
.y22b{bottom:300.805333pt;}
.ya9{bottom:301.014667pt;}
.y164{bottom:302.201333pt;}
.y18{bottom:302.837333pt;}
.y243{bottom:303.049333pt;}
.y196{bottom:304.802667pt;}
.y182{bottom:307.136000pt;}
.y40{bottom:307.448000pt;}
.y1b5{bottom:307.730667pt;}
.y1d5{bottom:308.573333pt;}
.y12a{bottom:309.938667pt;}
.y280{bottom:310.712000pt;}
.y68{bottom:312.517333pt;}
.y211{bottom:315.574667pt;}
.y264{bottom:315.916000pt;}
.yc8{bottom:315.992000pt;}
.yeb{bottom:318.088000pt;}
.ya8{bottom:320.276000pt;}
.y1f4{bottom:320.288000pt;}
.y10c{bottom:321.680000pt;}
.y242{bottom:322.310667pt;}
.y149{bottom:324.881333pt;}
.y3f{bottom:326.709333pt;}
.y27f{bottom:329.973333pt;}
.y67{bottom:331.778667pt;}
.y228{bottom:332.242667pt;}
.y163{bottom:334.256000pt;}
.yc7{bottom:335.253333pt;}
.y181{bottom:336.690667pt;}
.y1d4{bottom:336.952000pt;}
.yea{bottom:337.349333pt;}
.y17{bottom:337.884000pt;}
.y195{bottom:340.004000pt;}
.y241{bottom:341.572000pt;}
.y129{bottom:342.636000pt;}
.y210{bottom:347.168000pt;}
.y27e{bottom:349.234667pt;}
.y88{bottom:349.512000pt;}
.ya7{bottom:349.832000pt;}
.y66{bottom:351.040000pt;}
.y10b{bottom:351.236000pt;}
.y1d3{bottom:351.461333pt;}
.y227{bottom:351.504000pt;}
.y1f3{bottom:352.832000pt;}
.y1b4{bottom:353.829333pt;}
.yc6{bottom:354.514667pt;}
.y1d2{bottom:355.401333pt;}
.ye9{bottom:356.610667pt;}
.y3e{bottom:361.578667pt;}
.y263{bottom:362.130667pt;}
.y162{bottom:366.310667pt;}
.y27d{bottom:368.496000pt;}
.y87{bottom:368.773333pt;}
.y226{bottom:370.765333pt;}
.y148{bottom:371.097333pt;}
.y1b3{bottom:373.089333pt;}
.yc5{bottom:373.776000pt;}
.y194{bottom:375.205333pt;}
.ye8{bottom:375.870667pt;}
.y240{bottom:376.618667pt;}
.y128{bottom:377.394667pt;}
.y29f{bottom:377.672000pt;}
.y20f{bottom:378.761333pt;}
.y3d{bottom:380.838667pt;}
.y262{bottom:381.392000pt;}
.y180{bottom:381.853333pt;}
.y1f2{bottom:385.377333pt;}
.y161{bottom:385.572000pt;}
.y65{bottom:386.085333pt;}
.y27c{bottom:387.757333pt;}
.y86{bottom:388.033333pt;}
.y225{bottom:390.026667pt;}
.y147{bottom:390.358667pt;}
.y1d1{bottom:390.953333pt;}
.y16{bottom:391.129333pt;}
.yc4{bottom:393.036000pt;}
.ya6{bottom:396.046667pt;}
.y29e{bottom:396.933333pt;}
.y10a{bottom:397.450667pt;}
.y192{bottom:398.628000pt;}
.y3c{bottom:400.100000pt;}
.y1b2{bottom:400.642667pt;}
.y261{bottom:400.653333pt;}
.ye7{bottom:400.773333pt;}
.y127{bottom:403.520000pt;}
.y85{bottom:407.294667pt;}
.y20e{bottom:408.453333pt;}
.y15{bottom:409.194667pt;}
.y224{bottom:409.288000pt;}
.y191{bottom:409.562667pt;}
.y17f{bottom:409.920000pt;}
.y1d0{bottom:410.214667pt;}
.yc3{bottom:412.297333pt;}
.y160{bottom:415.128000pt;}
.ya5{bottom:415.308000pt;}
.y29d{bottom:416.194667pt;}
.y109{bottom:416.712000pt;}
.y1f1{bottom:417.921333pt;}
.y3b{bottom:419.361333pt;}
.y146{bottom:419.581333pt;}
.y1b1{bottom:419.904000pt;}
.y260{bottom:419.914667pt;}
.ye6{bottom:420.034667pt;}
.y193{bottom:420.345333pt;}
.y126{bottom:422.781333pt;}
.y27b{bottom:424.286667pt;}
.y84{bottom:426.556000pt;}
.y14{bottom:427.260000pt;}
.y20d{bottom:427.714667pt;}
.y223{bottom:428.548000pt;}
.y23f{bottom:429.685333pt;}
.y145{bottom:430.516000pt;}
.y190{bottom:433.629333pt;}
.ya4{bottom:434.569333pt;}
.y29c{bottom:435.456000pt;}
.y108{bottom:435.973333pt;}
.y17e{bottom:437.985333pt;}
.y3a{bottom:438.622667pt;}
.y1b0{bottom:439.164000pt;}
.y25f{bottom:439.176000pt;}
.ye5{bottom:439.294667pt;}
.y64{bottom:439.330667pt;}
.y1cf{bottom:439.922667pt;}
.y125{bottom:442.041333pt;}
.y27a{bottom:443.548000pt;}
.y1ce{bottom:443.862667pt;}
.y13{bottom:445.325333pt;}
.y83{bottom:445.817333pt;}
.yc2{bottom:445.997333pt;}
.y20c{bottom:446.976000pt;}
.y23e{bottom:448.946667pt;}
.y1f0{bottom:450.466667pt;}
.y18f{bottom:452.890667pt;}
.ya3{bottom:453.830667pt;}
.y29b{bottom:454.717333pt;}
.y107{bottom:455.234667pt;}
.y39{bottom:457.884000pt;}
.y222{bottom:458.104000pt;}
.y1af{bottom:458.425333pt;}
.y25e{bottom:458.436000pt;}
.ye4{bottom:458.556000pt;}
.y63{bottom:458.592000pt;}
.y15f{bottom:460.878667pt;}
.y12{bottom:463.390667pt;}
.y82{bottom:465.078667pt;}
.y17d{bottom:466.050667pt;}
.y20b{bottom:473.445333pt;}
.y29a{bottom:473.978667pt;}
.y106{bottom:474.496000pt;}
.y144{bottom:475.186667pt;}
.y279{bottom:476.092000pt;}
.y1cd{bottom:477.510667pt;}
.y62{bottom:477.853333pt;}
.y123{bottom:479.372000pt;}
.yc1{bottom:479.696000pt;}
.y15e{bottom:480.140000pt;}
.y23d{bottom:480.457333pt;}
.y18e{bottom:480.785333pt;}
.y11{bottom:481.457333pt;}
.y1ef{bottom:483.010667pt;}
.y81{bottom:484.338667pt;}
.y25d{bottom:486.332000pt;}
.y124{bottom:486.365333pt;}
.ye3{bottom:488.112000pt;}
.ya2{bottom:489.032000pt;}
.y122{bottom:490.305333pt;}
.y20a{bottom:492.706667pt;}
.y38{bottom:492.753333pt;}
.y1ae{bottom:492.826667pt;}
.y299{bottom:493.238667pt;}
.y17c{bottom:494.117333pt;}
.y61{bottom:497.113333pt;}
.y15d{bottom:499.401333pt;}
.y10{bottom:499.522667pt;}
.y18d{bottom:500.046667pt;}
.y104{bottom:502.833333pt;}
.y80{bottom:503.600000pt;}
.y221{bottom:504.320000pt;}
.y25c{bottom:505.593333pt;}
.y1cc{bottom:507.066667pt;}
.y278{bottom:508.637333pt;}
.yc0{bottom:509.252000pt;}
.y105{bottom:509.826667pt;}
.y209{bottom:511.968000pt;}
.y37{bottom:512.013333pt;}
.y298{bottom:512.500000pt;}
.y1ee{bottom:512.566667pt;}
.y23c{bottom:512.657333pt;}
.y142{bottom:513.401333pt;}
.y60{bottom:516.374667pt;}
.yf{bottom:517.588000pt;}
.y15c{bottom:518.662667pt;}
.y17b{bottom:518.954667pt;}
.y18c{bottom:519.308000pt;}
.y143{bottom:520.394667pt;}
.y7f{bottom:522.861333pt;}
.y220{bottom:523.581333pt;}
.ya1{bottom:524.233333pt;}
.y140{bottom:524.336000pt;}
.y103{bottom:524.552000pt;}
.y25b{bottom:524.854667pt;}
.y1ad{bottom:527.228000pt;}
.y36{bottom:531.274667pt;}
.ye2{bottom:533.297333pt;}
.y141{bottom:535.120000pt;}
.y5f{bottom:535.636000pt;}
.ye{bottom:535.653333pt;}
.y207{bottom:536.977333pt;}
.y15b{bottom:537.922667pt;}
.y17a{bottom:538.214667pt;}
.y121{bottom:538.569333pt;}
.y277{bottom:541.181333pt;}
.y7e{bottom:542.122667pt;}
.y208{bottom:543.970667pt;}
.y23b{bottom:544.857333pt;}
.y297{bottom:545.045333pt;}
.y18b{bottom:548.864000pt;}
.y35{bottom:550.536000pt;}
.ye1{bottom:552.557333pt;}
.y1cb{bottom:553.053333pt;}
.yd{bottom:553.718667pt;}
.y25a{bottom:554.409333pt;}
.y1ab{bottom:554.766667pt;}
.y5e{bottom:554.897333pt;}
.ybf{bottom:555.245333pt;}
.y21f{bottom:556.125333pt;}
.y15a{bottom:557.184000pt;}
.y179{bottom:557.476000pt;}
.y102{bottom:558.438667pt;}
.y206{bottom:558.696000pt;}
.y1ed{bottom:558.782667pt;}
.ya0{bottom:559.434667pt;}
.y7d{bottom:561.384000pt;}
.y1ac{bottom:561.760000pt;}
.y120{bottom:568.125333pt;}
.y34{bottom:569.797333pt;}
.yc{bottom:571.785333pt;}
.ye0{bottom:571.818667pt;}
.y1ca{bottom:572.314667pt;}
.y13f{bottom:572.600000pt;}
.y276{bottom:573.726667pt;}
.y5d{bottom:574.158667pt;}
.ybe{bottom:574.506667pt;}
.y159{bottom:576.445333pt;}
.y1aa{bottom:576.484000pt;}
.y178{bottom:576.737333pt;}
.y23a{bottom:577.056000pt;}
.y296{bottom:577.589333pt;}
.y1ec{bottom:578.044000pt;}
.y205{bottom:588.368000pt;}
.y21e{bottom:588.670667pt;}
.y33{bottom:589.058667pt;}
.yb{bottom:589.850667pt;}
.y100{bottom:590.053333pt;}
.y7c{bottom:590.940000pt;}
.ydf{bottom:591.080000pt;}
.y1c9{bottom:591.574667pt;}
.y5c{bottom:593.420000pt;}
.ybd{bottom:593.768000pt;}
.y9f{bottom:594.636000pt;}
.y18a{bottom:595.080000pt;}
.y158{bottom:595.706667pt;}
.y1eb{bottom:597.304000pt;}
.y259{bottom:600.625333pt;}
.y177{bottom:600.862667pt;}
.yff{bottom:600.986667pt;}
.y13e{bottom:602.154667pt;}
.y176{bottom:604.802667pt;}
.y204{bottom:607.629333pt;}
.ya{bottom:607.916000pt;}
.y1a9{bottom:608.685333pt;}
.y239{bottom:609.256000pt;}
.y295{bottom:610.134667pt;}
.y275{bottom:610.256000pt;}
.yde{bottom:610.341333pt;}
.y1c8{bottom:610.836000pt;}
.y101{bottom:611.770667pt;}
.y5b{bottom:612.680000pt;}
.ybc{bottom:613.029333pt;}
.y11f{bottom:614.341333pt;}
.y1ea{bottom:616.565333pt;}
.y258{bottom:619.886667pt;}
.y21d{bottom:621.214667pt;}
.y32{bottom:623.926667pt;}
.y9{bottom:625.981333pt;}
.y9d{bottom:626.250667pt;}
.y1a8{bottom:627.946667pt;}
.y294{bottom:629.394667pt;}
.y274{bottom:629.517333pt;}
.ydd{bottom:629.602667pt;}
.y1c7{bottom:630.097333pt;}
.y157{bottom:630.753333pt;}
.y5a{bottom:631.941333pt;}
.ybb{bottom:632.290667pt;}
.y175{bottom:632.869333pt;}
.y11e{bottom:633.601333pt;}
.y1e9{bottom:635.826667pt;}
.y7b{bottom:637.154667pt;}
.y9c{bottom:637.184000pt;}
.y203{bottom:637.185333pt;}
.y257{bottom:639.148000pt;}
.y238{bottom:640.766667pt;}
.y31{bottom:643.188000pt;}
.y8{bottom:644.046667pt;}
.yfe{bottom:644.093333pt;}
.y1a7{bottom:647.208000pt;}
.y9e{bottom:647.968000pt;}
.y13d{bottom:648.370667pt;}
.y1c6{bottom:649.358667pt;}
.y59{bottom:651.202667pt;}
.yba{bottom:651.550667pt;}
.y174{bottom:652.130667pt;}
.y11d{bottom:652.862667pt;}
.y21c{bottom:653.760000pt;}
.y1e8{bottom:655.088000pt;}
.ydc{bottom:656.160000pt;}
.y7a{bottom:656.416000pt;}
.y256{bottom:658.409333pt;}
.y273{bottom:659.073333pt;}
.y237{bottom:660.028000pt;}
.y293{bottom:661.940000pt;}
.y7{bottom:662.113333pt;}
.y30{bottom:662.449333pt;}
.y13c{bottom:667.632000pt;}
.y58{bottom:670.464000pt;}
.yb9{bottom:670.812000pt;}
.y11c{bottom:672.124000pt;}
.yfd{bottom:673.649333pt;}
.y1e7{bottom:674.349333pt;}
.y1a6{bottom:674.760000pt;}
.y79{bottom:675.677333pt;}
.y255{bottom:677.669333pt;}
.y6{bottom:680.178667pt;}
.y9b{bottom:680.292000pt;}
.y292{bottom:681.201333pt;}
.y173{bottom:681.685333pt;}
.y2f{bottom:681.710667pt;}
.y202{bottom:682.909333pt;}
.y156{bottom:683.533333pt;}
.y1c5{bottom:684.405333pt;}
.y21b{bottom:686.304000pt;}
.ydb{bottom:686.709333pt;}
.y13b{bottom:686.893333pt;}
.y236{bottom:689.584000pt;}
.y57{bottom:689.725333pt;}
.y11b{bottom:691.385333pt;}
.y1e6{bottom:693.610667pt;}
.y1a5{bottom:694.021333pt;}
.y78{bottom:694.938667pt;}
.y254{bottom:696.930667pt;}
.y2e{bottom:700.972000pt;}
.y201{bottom:702.170667pt;}
.y155{bottom:702.794667pt;}
.y272{bottom:705.288000pt;}
.yb8{bottom:705.858667pt;}
.y5{bottom:707.149333pt;}
.y56{bottom:708.986667pt;}
.y9a{bottom:709.846667pt;}
.y13a{bottom:710.316000pt;}
.y1e5{bottom:712.870667pt;}
.y291{bottom:713.745333pt;}
.y77{bottom:714.200000pt;}
.y253{bottom:716.192000pt;}
.yda{bottom:717.257333pt;}
.y21a{bottom:718.849333pt;}
.yfc{bottom:719.865333pt;}
.y2d{bottom:720.233333pt;}
.y139{bottom:721.250667pt;}
.y200{bottom:721.432000pt;}
.y1a4{bottom:723.577333pt;}
.y271{bottom:724.549333pt;}
.y11a{bottom:726.432000pt;}
.y172{bottom:726.848000pt;}
.y55{bottom:728.246667pt;}
.y76{bottom:733.460000pt;}
.y252{bottom:735.453333pt;}
.y235{bottom:735.621333pt;}
.y154{bottom:735.728000pt;}
.y1c4{bottom:737.420000pt;}
.y219{bottom:738.109333pt;}
.yfb{bottom:739.126667pt;}
.y1ff{bottom:740.693333pt;}
.y1e4{bottom:742.426667pt;}
.y171{bottom:746.109333pt;}
.y290{bottom:746.290667pt;}
.y138{bottom:747.354667pt;}
.y54{bottom:747.508000pt;}
.yd9{bottom:747.806667pt;}
.y75{bottom:752.721333pt;}
.y251{bottom:754.714667pt;}
.y234{bottom:754.882667pt;}
.y2c{bottom:755.101333pt;}
.y99{bottom:756.062667pt;}
.y1c3{bottom:756.681333pt;}
.yfa{bottom:758.388000pt;}
.y4f{bottom:758.754667pt;}
.yb7{bottom:758.881333pt;}
.y1fe{bottom:759.954667pt;}
.y270{bottom:761.078667pt;}
.y4{bottom:765.894667pt;}
.y53{bottom:766.769333pt;}
.y153{bottom:767.373333pt;}
.y218{bottom:767.665333pt;}
.y1a3{bottom:769.674667pt;}
.y74{bottom:771.982667pt;}
.y170{bottom:774.174667pt;}
.y2b{bottom:774.362667pt;}
.yd8{bottom:774.364000pt;}
.y98{bottom:775.324000pt;}
.y1c2{bottom:775.942667pt;}
.yf9{bottom:777.649333pt;}
.y136{bottom:778.084000pt;}
.yb6{bottom:778.142667pt;}
.y28f{bottom:778.834667pt;}
.y119{bottom:779.676000pt;}
.y250{bottom:784.270667pt;}
.y52{bottom:786.030667pt;}
.y233{bottom:786.393333pt;}
.y1e3{bottom:788.642667pt;}
.y1a2{bottom:788.936000pt;}
.y135{bottom:789.017333pt;}
.y73{bottom:791.244000pt;}
.y2a{bottom:793.624000pt;}
.yd7{bottom:793.625333pt;}
.y97{bottom:794.585333pt;}
.y1fd{bottom:795.001333pt;}
.y1c1{bottom:795.204000pt;}
.yf8{bottom:796.909333pt;}
.yb5{bottom:797.404000pt;}
.y118{bottom:798.937333pt;}
.y152{bottom:799.018667pt;}
.y137{bottom:799.801333pt;}
.y16f{bottom:802.241333pt;}
.y51{bottom:805.292000pt;}
.y1e2{bottom:807.904000pt;}
.y28e{bottom:811.380000pt;}
.y29{bottom:812.885333pt;}
.y3{bottom:813.217333pt;}
.y96{bottom:813.846667pt;}
.y217{bottom:813.881333pt;}
.y1c0{bottom:814.465333pt;}
.yf7{bottom:816.170667pt;}
.yb4{bottom:816.665333pt;}
.y117{bottom:818.198667pt;}
.y232{bottom:818.593333pt;}
.y72{bottom:820.800000pt;}
.yd6{bottom:823.181333pt;}
.y1a1{bottom:824.550667pt;}
.y26f{bottom:826.168000pt;}
.y16e{bottom:826.365333pt;}
.y1e1{bottom:827.165333pt;}
.y16d{bottom:830.306667pt;}
.y24f{bottom:830.485333pt;}
.y151{bottom:830.664000pt;}
.y134{bottom:832.125333pt;}
.y28{bottom:832.146667pt;}
.yf6{bottom:835.432000pt;}
.yb3{bottom:835.926667pt;}
.y116{bottom:837.460000pt;}
.y50{bottom:840.337333pt;}
.y95{bottom:841.741333pt;}
.y1be{bottom:843.640000pt;}
.y28d{bottom:843.924000pt;}
.y1e0{bottom:846.425333pt;}
.y2{bottom:846.426667pt;}
.y1fc{bottom:847.754667pt;}
.y24e{bottom:849.746667pt;}
.y231{bottom:850.793333pt;}
.y4e{bottom:851.408000pt;}
.y1bd{bottom:854.574667pt;}
.yf4{bottom:856.464000pt;}
.y115{bottom:856.720000pt;}
.y1a0{bottom:856.866667pt;}
.y133{bottom:858.028000pt;}
.y16c{bottom:858.372000pt;}
.y26e{bottom:858.713333pt;}
.y94{bottom:861.002667pt;}
.y150{bottom:862.309333pt;}
.yb2{bottom:862.762667pt;}
.yf5{bottom:863.457333pt;}
.y1bf{bottom:865.358667pt;}
.y27{bottom:867.016000pt;}
.yd5{bottom:868.365333pt;}
.y132{bottom:868.961333pt;}
.y24d{bottom:869.008000pt;}
.y4d{bottom:870.668000pt;}
.yb1{bottom:873.696000pt;}
.y114{bottom:875.981333pt;}
.y28c{bottom:876.469333pt;}
.y26d{bottom:877.974667pt;}
.yf3{bottom:878.182667pt;}
.y1df{bottom:878.970667pt;}
.y1{bottom:879.634667pt;}
.y230{bottom:882.993333pt;}
.y26{bottom:886.276000pt;}
.y16b{bottom:886.438667pt;}
.yd4{bottom:887.626667pt;}
.y24c{bottom:888.269333pt;}
.y19f{bottom:889.182667pt;}
.y92{bottom:889.341333pt;}
.y4c{bottom:889.929333pt;}
.yf2{bottom:895.242667pt;}
.y93{bottom:896.334667pt;}
.y25{bottom:905.537333pt;}
.y24b{bottom:907.530667pt;}
.y28b{bottom:909.013333pt;}
.y4b{bottom:909.190667pt;}
.y91{bottom:911.058667pt;}
.y1de{bottom:911.514667pt;}
.yd3{bottom:911.902667pt;}
.yb0{bottom:914.504000pt;}
.yd2{bottom:915.842667pt;}
.y24{bottom:924.798667pt;}
.y23{bottom:944.060000pt;}
.h28{height:29.925069pt;}
.h4{height:40.610943pt;}
.h5{height:41.018216pt;}
.h6{height:43.636400pt;}
.h8{height:44.632747pt;}
.ha{height:45.589163pt;}
.h9{height:47.820800pt;}
.hb{height:53.559147pt;}
.hc{height:55.016400pt;}
.h25{height:55.021733pt;}
.h21{height:56.255735pt;}
.h3{height:57.384800pt;}
.h11{height:58.205733pt;}
.h13{height:58.211067pt;}
.he{height:63.580800pt;}
.h12{height:63.586133pt;}
.h24{height:63.938133pt;}
.h7{height:64.270827pt;}
.h26{height:73.965733pt;}
.h14{height:73.971067pt;}
.h1{height:77.140000pt;}
.h2{height:77.911400pt;}
.h27{height:78.886443pt;}
.h19{height:89.339776pt;}
.h22{height:90.951467pt;}
.hf{height:90.956800pt;}
.h10{height:91.554133pt;}
.h23{height:91.559467pt;}
.h20{height:92.444800pt;}
.hd{height:101.939067pt;}
.h15{height:101.944400pt;}
.h18{height:127.345109pt;}
.h1f{height:133.073109pt;}
.h1b{height:134.690133pt;}
.h1c{height:134.695467pt;}
.h1a{height:136.187776pt;}
.h1e{height:141.891067pt;}
.h17{height:151.240400pt;}
.h1d{height:151.245733pt;}
.h16{height:155.318443pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x5c{left:107.272000pt;}
.x2{left:109.496000pt;}
.x5b{left:115.076000pt;}
.x9{left:119.412000pt;}
.x7{left:135.020000pt;}
.x1{left:150.225333pt;}
.x6{left:156.838667pt;}
.xb{left:169.244000pt;}
.x4e{left:215.042667pt;}
.x4f{left:227.864000pt;}
.x36{left:229.893333pt;}
.x53{left:233.144000pt;}
.x24{left:234.536000pt;}
.x54{left:241.537333pt;}
.x15{left:254.280000pt;}
.x23{left:257.697333pt;}
.x4{left:260.722667pt;}
.x2b{left:264.912000pt;}
.x2a{left:269.573333pt;}
.xc{left:272.262667pt;}
.x46{left:274.154667pt;}
.x3{left:277.857333pt;}
.x37{left:287.260000pt;}
.x38{left:288.754667pt;}
.x10{left:291.181333pt;}
.x18{left:299.216000pt;}
.x2c{left:300.920000pt;}
.x3c{left:307.061333pt;}
.x19{left:312.037333pt;}
.x57{left:315.872000pt;}
.x47{left:319.412000pt;}
.x1d{left:321.293333pt;}
.x1e{left:322.788000pt;}
.x48{left:324.224000pt;}
.x49{left:326.024000pt;}
.x11{left:327.994667pt;}
.x1f{left:329.324000pt;}
.x2f{left:335.854667pt;}
.x3f{left:336.904000pt;}
.x3d{left:343.265333pt;}
.x40{left:344.378667pt;}
.x5a{left:347.862667pt;}
.x17{left:349.969333pt;}
.x29{left:351.960000pt;}
.xd{left:353.501333pt;}
.xe{left:354.994667pt;}
.x43{left:357.044000pt;}
.x25{left:358.178667pt;}
.x16{left:360.830667pt;}
.x42{left:361.809333pt;}
.x39{left:363.338667pt;}
.x32{left:365.914667pt;}
.x4a{left:367.242667pt;}
.x1c{left:371.152000pt;}
.x41{left:373.761333pt;}
.x5{left:375.998667pt;}
.x34{left:376.978667pt;}
.x30{left:379.606667pt;}
.x1a{left:383.276000pt;}
.x50{left:386.812000pt;}
.x26{left:394.353333pt;}
.x3a{left:399.513333pt;}
.x12{left:400.865333pt;}
.x20{left:402.193333pt;}
.xa{left:404.098667pt;}
.x58{left:408.338667pt;}
.x59{left:409.833333pt;}
.xf{left:411.765333pt;}
.x2d{left:415.290667pt;}
.x21{left:421.410667pt;}
.x13{left:422.738667pt;}
.x33{left:424.232000pt;}
.x4b{left:430.824000pt;}
.x35{left:434.686667pt;}
.x27{left:437.457333pt;}
.x4c{left:438.853333pt;}
.x22{left:441.864000pt;}
.x14{left:443.192000pt;}
.x44{left:445.830667pt;}
.x4d{left:447.246667pt;}
.x3e{left:448.549333pt;}
.x31{left:454.292000pt;}
.x55{left:459.921333pt;}
.x1b{left:464.085333pt;}
.x51{left:467.621333pt;}
.x45{left:468.852000pt;}
.x2e{left:496.536000pt;}
.x56{left:532.086667pt;}
.x28{left:539.669333pt;}
.x3b{left:544.313333pt;}
.x52{left:548.258667pt;}
}




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