
    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_14bca81f342ba851fbbd4176.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.437000;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_9e07e403aadb8c6ae599804a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_98f5cca5f0a6611f866b93fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_7e6f20a81c3f38182b828d47.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_2c263f22f5d67097c4ad2ce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.437000;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_8e493acd83867182d9952965.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.592000;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_9422f082710c3d685c429f9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_bd301df540e4463c02ddbfb8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.437000;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_a569db6b72d929b3b98f96aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.437000;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_128bc85007365f33ca2099c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.437000;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_fbf61e0a4c356ec5913dba2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.239258;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_fc87f4285992414499a357d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_cf166bff93cb59a085bfb948.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_8752bfac5dba49b73998b526.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.239258;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_f3c66cf0a1e2ce64d57edd68.woff2')format("woff");}.fff{font-family:fff;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_40cbb32b21957bbf0cca61ed.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e629678665d7ad277732be20.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-13.497600px;}
.v7{vertical-align:-11.998800px;}
.v3{vertical-align:-10.828800px;}
.v6{vertical-align:-8.407200px;}
.v9{vertical-align:-5.870400px;}
.vd{vertical-align:-3.002880px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:13.858200px;}
.v2{vertical-align:17.806800px;}
.v4{vertical-align:23.997600px;}
.va{vertical-align:29.784000px;}
.vc{vertical-align:34.122600px;}
.v8{vertical-align:53.999400px;}
.vb{vertical-align:60.000000px;}
.vf{vertical-align:64.497120px;}
.ve{vertical-align:67.500000px;}
.v1{vertical-align:132.000000px;}
.ls1c{letter-spacing:-20.044800px;}
.ls1b{letter-spacing:-4.377600px;}
.ls1d{letter-spacing:-4.320000px;}
.ls3a{letter-spacing:-1.458000px;}
.ls3b{letter-spacing:-1.449000px;}
.ls16{letter-spacing:-1.404000px;}
.ls30{letter-spacing:-1.350000px;}
.ls31{letter-spacing:-1.242000px;}
.ls27{letter-spacing:-1.188000px;}
.lsd{letter-spacing:-1.134000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-1.026000px;}
.ls14{letter-spacing:-0.972000px;}
.ls2a{letter-spacing:-0.955800px;}
.lse{letter-spacing:-0.918000px;}
.lsb{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.810000px;}
.ls4a{letter-spacing:-0.787500px;}
.ls52{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.702000px;}
.ls51{letter-spacing:-0.672000px;}
.lsf{letter-spacing:-0.648000px;}
.ls57{letter-spacing:-0.624000px;}
.ls50{letter-spacing:-0.614400px;}
.ls17{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.486000px;}
.ls12{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.324000px;}
.ls53{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.270000px;}
.ls54{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.216000px;}
.ls56{letter-spacing:-0.192000px;}
.ls28{letter-spacing:-0.162000px;}
.ls2e{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.054000px;}
.ls8{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.016200px;}
.ls24{letter-spacing:0.023400px;}
.ls55{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.054000px;}
.ls37{letter-spacing:0.075600px;}
.ls4d{letter-spacing:0.096000px;}
.ls4{letter-spacing:0.108000px;}
.ls47{letter-spacing:0.113400px;}
.ls18{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.216000px;}
.ls3f{letter-spacing:0.252000px;}
.ls0{letter-spacing:0.270000px;}
.ls4e{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.378000px;}
.ls3e{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.486000px;}
.ls39{letter-spacing:0.496800px;}
.ls4f{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.594000px;}
.ls20{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.702000px;}
.ls4c{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.756000px;}
.ls40{letter-spacing:0.787500px;}
.ls34{letter-spacing:0.799200px;}
.ls22{letter-spacing:11.190000px;}
.ls2d{letter-spacing:11.490000px;}
.ls23{letter-spacing:11.550000px;}
.ls42{letter-spacing:11.993400px;}
.ls2b{letter-spacing:12.171600px;}
.ls45{letter-spacing:12.295800px;}
.ls38{letter-spacing:12.436200px;}
.ls7{letter-spacing:12.510000px;}
.ls32{letter-spacing:12.690000px;}
.ls2c{letter-spacing:12.990000px;}
.ls44{letter-spacing:13.975200px;}
.ls4b{letter-spacing:14.040000px;}
.ls48{letter-spacing:14.094000px;}
.ls33{letter-spacing:15.450000px;}
.ls43{letter-spacing:15.535800px;}
.ls36{letter-spacing:16.399800px;}
.ls49{letter-spacing:16.491600px;}
.ls3d{letter-spacing:16.680000px;}
.ls46{letter-spacing:17.571600px;}
.ls41{letter-spacing:18.775800px;}
.ls3c{letter-spacing:25.995600px;}
.ls1f{letter-spacing:36.001800px;}
.ls25{letter-spacing:79.488000px;}
.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;}
}
.ws1{word-spacing:-88.128000px;}
.ws0{word-spacing:-85.056000px;}
.ws6{word-spacing:-83.808000px;}
.ws3{word-spacing:-66.124800px;}
.ws48{word-spacing:-61.290000px;}
.ws5{word-spacing:-50.457600px;}
.wsb9{word-spacing:-27.540000px;}
.wsc6{word-spacing:-24.576000px;}
.wsc8{word-spacing:-18.360000px;}
.ws9a{word-spacing:-18.036000px;}
.ws44{word-spacing:-17.280000px;}
.ws67{word-spacing:-15.660000px;}
.ws9f{word-spacing:-15.345600px;}
.ws45{word-spacing:-15.120000px;}
.ws6a{word-spacing:-15.012000px;}
.ws42{word-spacing:-14.796000px;}
.wsc9{word-spacing:-13.872000px;}
.wsb7{word-spacing:-13.500000px;}
.ws8e{word-spacing:-13.344000px;}
.wsba{word-spacing:-10.080000px;}
.ws43{word-spacing:-8.631000px;}
.wsbb{word-spacing:-7.833600px;}
.ws65{word-spacing:-6.854400px;}
.ws28{word-spacing:-4.320000px;}
.ws24{word-spacing:-4.266000px;}
.ws12{word-spacing:-4.212000px;}
.wsa{word-spacing:-4.158000px;}
.ws7c{word-spacing:-4.104000px;}
.ws22{word-spacing:-4.050000px;}
.wsc{word-spacing:-3.996000px;}
.ws10{word-spacing:-3.942000px;}
.ws19{word-spacing:-3.888000px;}
.wsf{word-spacing:-3.834000px;}
.ws25{word-spacing:-3.780000px;}
.ws2d{word-spacing:-3.726000px;}
.wse{word-spacing:-3.672000px;}
.ws50{word-spacing:-3.618000px;}
.ws74{word-spacing:-3.564000px;}
.ws52{word-spacing:-3.510000px;}
.ws20{word-spacing:-3.456000px;}
.wsb5{word-spacing:-3.402000px;}
.ws4c{word-spacing:-3.348000px;}
.wse1{word-spacing:-3.312000px;}
.ws6d{word-spacing:-3.294000px;}
.wsbc{word-spacing:-3.240000px;}
.wsc0{word-spacing:-3.186000px;}
.wsdf{word-spacing:-3.168000px;}
.ws84{word-spacing:-3.132000px;}
.ws1a{word-spacing:-3.078000px;}
.wsd4{word-spacing:-3.072000px;}
.ws60{word-spacing:-3.024000px;}
.ws5a{word-spacing:-2.970000px;}
.wsdb{word-spacing:-2.880000px;}
.ws1d{word-spacing:-2.862000px;}
.wsd7{word-spacing:-2.832000px;}
.ws39{word-spacing:-2.808000px;}
.wsae{word-spacing:-2.754000px;}
.ws81{word-spacing:-2.700000px;}
.wscf{word-spacing:-2.688000px;}
.wsc2{word-spacing:-2.646000px;}
.wsd1{word-spacing:-2.640000px;}
.wsd2{word-spacing:-2.544000px;}
.ws3b{word-spacing:-2.538000px;}
.ws7d{word-spacing:-2.484000px;}
.ws6f{word-spacing:-2.430000px;}
.wsa6{word-spacing:-2.376000px;}
.wsc5{word-spacing:-2.322000px;}
.wsca{word-spacing:-2.268000px;}
.ws5e{word-spacing:-2.214000px;}
.ws6e{word-spacing:-2.160000px;}
.wscd{word-spacing:-2.106000px;}
.wsc4{word-spacing:-2.052000px;}
.ws3f{word-spacing:-2.016000px;}
.ws71{word-spacing:-1.998000px;}
.ws3e{word-spacing:-1.944000px;}
.wsce{word-spacing:-1.920000px;}
.ws7{word-spacing:-1.890000px;}
.ws18{word-spacing:-1.860000px;}
.ws86{word-spacing:-1.782000px;}
.ws17{word-spacing:-1.728000px;}
.wse2{word-spacing:-1.680000px;}
.ws61{word-spacing:-1.674000px;}
.ws66{word-spacing:-1.663200px;}
.ws4e{word-spacing:-1.620000px;}
.ws30{word-spacing:-1.566000px;}
.ws40{word-spacing:-1.512000px;}
.ws41{word-spacing:-1.463400px;}
.ws13{word-spacing:-1.458000px;}
.ws63{word-spacing:-1.428000px;}
.ws5f{word-spacing:-1.404000px;}
.ws9d{word-spacing:-1.391040px;}
.ws9e{word-spacing:-1.380000px;}
.ws85{word-spacing:-1.350000px;}
.ws3c{word-spacing:-1.344000px;}
.ws14{word-spacing:-1.296000px;}
.ws75{word-spacing:-1.188000px;}
.ws69{word-spacing:-1.139400px;}
.ws3d{word-spacing:-1.134000px;}
.ws4d{word-spacing:-1.080000px;}
.ws7b{word-spacing:-1.026000px;}
.ws7e{word-spacing:-1.008000px;}
.ws4f{word-spacing:-0.972000px;}
.ws64{word-spacing:-0.961200px;}
.wsd3{word-spacing:-0.912000px;}
.ws58{word-spacing:-0.864000px;}
.ws5d{word-spacing:-0.810000px;}
.ws57{word-spacing:-0.702000px;}
.ws7f{word-spacing:-0.648000px;}
.wsc7{word-spacing:-0.614400px;}
.ws6c{word-spacing:-0.594000px;}
.ws89{word-spacing:-0.540000px;}
.wsaf{word-spacing:-0.486000px;}
.wsbf{word-spacing:-0.432000px;}
.wsab{word-spacing:-0.378000px;}
.wsb{word-spacing:-0.324000px;}
.ws55{word-spacing:-0.270000px;}
.wsa3{word-spacing:-0.216000px;}
.ws5b{word-spacing:-0.108000px;}
.ws87{word-spacing:-0.054000px;}
.ws35{word-spacing:0.000000px;}
.wscb{word-spacing:0.054000px;}
.ws3a{word-spacing:0.108000px;}
.ws4b{word-spacing:0.162000px;}
.ws2f{word-spacing:0.216000px;}
.ws46{word-spacing:0.237600px;}
.ws72{word-spacing:0.270000px;}
.ws1e{word-spacing:0.432000px;}
.ws16{word-spacing:0.486000px;}
.ws11{word-spacing:0.540000px;}
.ws62{word-spacing:0.594000px;}
.ws77{word-spacing:0.648000px;}
.ws76{word-spacing:0.702000px;}
.ws53{word-spacing:0.756000px;}
.wse0{word-spacing:0.768000px;}
.wsb4{word-spacing:0.810000px;}
.ws78{word-spacing:0.864000px;}
.ws21{word-spacing:0.918000px;}
.ws51{word-spacing:0.972000px;}
.wsdd{word-spacing:1.008000px;}
.ws1b{word-spacing:1.026000px;}
.ws33{word-spacing:1.080000px;}
.wsde{word-spacing:1.104000px;}
.ws2a{word-spacing:1.134000px;}
.ws4a{word-spacing:1.188000px;}
.wsd9{word-spacing:1.200000px;}
.ws34{word-spacing:1.242000px;}
.wsdc{word-spacing:1.248000px;}
.wsac{word-spacing:1.296000px;}
.ws2e{word-spacing:1.350000px;}
.ws8a{word-spacing:1.404000px;}
.ws26{word-spacing:1.458000px;}
.ws15{word-spacing:1.512000px;}
.wsd{word-spacing:1.566000px;}
.ws2b{word-spacing:1.620000px;}
.ws32{word-spacing:1.674000px;}
.ws83{word-spacing:1.728000px;}
.wsbe{word-spacing:1.944000px;}
.ws37{word-spacing:2.106000px;}
.ws8{word-spacing:2.214000px;}
.wsd8{word-spacing:2.400000px;}
.wsa7{word-spacing:2.484000px;}
.wsb0{word-spacing:2.538000px;}
.ws54{word-spacing:2.592000px;}
.wsa8{word-spacing:2.970000px;}
.ws82{word-spacing:3.024000px;}
.ws70{word-spacing:3.078000px;}
.wsb2{word-spacing:3.132000px;}
.ws68{word-spacing:3.299400px;}
.wse3{word-spacing:3.348000px;}
.ws79{word-spacing:3.567000px;}
.wsb8{word-spacing:3.742500px;}
.ws49{word-spacing:3.888000px;}
.wsb1{word-spacing:4.050000px;}
.ws80{word-spacing:4.590000px;}
.wsa5{word-spacing:4.644000px;}
.ws59{word-spacing:4.860000px;}
.wsc3{word-spacing:5.292000px;}
.ws31{word-spacing:5.346000px;}
.ws73{word-spacing:5.616000px;}
.ws56{word-spacing:6.102000px;}
.ws29{word-spacing:6.534000px;}
.wsbd{word-spacing:6.750000px;}
.ws27{word-spacing:6.966000px;}
.ws92{word-spacing:7.128000px;}
.ws93{word-spacing:7.290000px;}
.ws95{word-spacing:7.398000px;}
.ws1f{word-spacing:7.830000px;}
.wsa1{word-spacing:7.884000px;}
.wsad{word-spacing:8.046000px;}
.ws5c{word-spacing:8.100000px;}
.ws99{word-spacing:8.604000px;}
.ws4{word-spacing:8.879400px;}
.ws2{word-spacing:9.109800px;}
.ws7a{word-spacing:9.234000px;}
.wsd0{word-spacing:9.312000px;}
.wscc{word-spacing:9.450000px;}
.ws2c{word-spacing:10.746000px;}
.wse8{word-spacing:10.854000px;}
.ws91{word-spacing:11.016000px;}
.ws97{word-spacing:11.448000px;}
.ws96{word-spacing:11.502000px;}
.wsb3{word-spacing:12.744000px;}
.wsaa{word-spacing:12.960000px;}
.ws9{word-spacing:13.554000px;}
.wse5{word-spacing:13.824000px;}
.wsda{word-spacing:14.112000px;}
.ws36{word-spacing:15.714000px;}
.wsc1{word-spacing:15.930000px;}
.ws90{word-spacing:16.686000px;}
.wsa9{word-spacing:16.740000px;}
.wse9{word-spacing:16.848000px;}
.wse7{word-spacing:16.956000px;}
.ws1c{word-spacing:17.064000px;}
.wsb6{word-spacing:17.712000px;}
.ws94{word-spacing:17.766000px;}
.wsd5{word-spacing:18.960000px;}
.ws88{word-spacing:19.548000px;}
.wse6{word-spacing:19.818000px;}
.ws9b{word-spacing:19.957500px;}
.wsa4{word-spacing:20.844000px;}
.ws8f{word-spacing:21.323400px;}
.wsd6{word-spacing:21.648000px;}
.ws38{word-spacing:22.518000px;}
.ws23{word-spacing:24.192000px;}
.ws8c{word-spacing:24.768000px;}
.wse4{word-spacing:25.704000px;}
.ws98{word-spacing:26.514000px;}
.ws8b{word-spacing:28.854000px;}
.ws8d{word-spacing:28.860000px;}
.wsa2{word-spacing:28.944000px;}
.ws47{word-spacing:44.172000px;}
.ws9c{word-spacing:908.426400px;}
.wsa0{word-spacing:950.016000px;}
.ws6b{word-spacing:1436.016000px;}
._12{margin-left:-1194.684000px;}
._16{margin-left:-645.738000px;}
._a{margin-left:-21.468000px;}
._22{margin-left:-17.184000px;}
._21{margin-left:-11.880000px;}
._c{margin-left:-8.796600px;}
._1c{margin-left:-5.280000px;}
._4{margin-left:-4.158000px;}
._2{margin-left:-2.376000px;}
._0{margin-left:-1.212000px;}
._1{width:1.026000px;}
._7{width:2.232000px;}
._8{width:3.384000px;}
._f{width:11.178000px;}
._10{width:12.441600px;}
._9{width:16.599600px;}
._1d{width:17.766000px;}
._b{width:19.353600px;}
._1b{width:21.459600px;}
._1a{width:30.000000px;}
._24{width:34.252200px;}
._3{width:36.018000px;}
._20{width:39.264000px;}
._13{width:41.160000px;}
._23{width:42.576000px;}
._11{width:43.692000px;}
._5{width:48.000000px;}
._e{width:61.560000px;}
._d{width:79.974000px;}
._17{width:88.704000px;}
._19{width:112.674000px;}
._1e{width:127.456800px;}
._15{width:309.355200px;}
._14{width:328.036800px;}
._26{width:332.478000px;}
._25{width:346.518000px;}
._1f{width:361.429200px;}
._18{width:430.756800px;}
._6{width:1685.568000px;}
.fc1{color:rgb(245,244,243);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:24.480000px;}
.fs3{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:47.790000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsd{font-size:52.920000px;}
.fs1{font-size:54.000000px;}
.fsf{font-size:55.200000px;}
.fs2{font-size:60.000000px;}
.fs11{font-size:61.440000px;}
.fs6{font-size:72.000000px;}
.fs10{font-size:76.800000px;}
.fs8{font-size:230.400000px;}
.fs0{font-size:265.800000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:1.500000px;}
.y210{bottom:4.592850px;}
.y101{bottom:4.999500px;}
.yb7{bottom:7.500000px;}
.y223{bottom:7.922250px;}
.y229{bottom:7.923300px;}
.y21d{bottom:9.203250px;}
.yf8{bottom:11.410200px;}
.yf7{bottom:12.081000px;}
.ybb{bottom:14.376000px;}
.yfb{bottom:14.747400px;}
.y185{bottom:19.000650px;}
.yfa{bottom:20.743800px;}
.y222{bottom:21.422100px;}
.y228{bottom:21.423150px;}
.y18b{bottom:21.959400px;}
.y21c{bottom:22.703100px;}
.yf9{bottom:24.066600px;}
.yfc{bottom:28.745400px;}
.y1d0{bottom:30.241500px;}
.y184{bottom:32.500500px;}
.y221{bottom:34.921950px;}
.y227{bottom:34.923000px;}
.y21b{bottom:36.202950px;}
.y54{bottom:46.500000px;}
.y220{bottom:48.421800px;}
.y226{bottom:48.422850px;}
.y21a{bottom:49.702800px;}
.y1b8{bottom:55.223400px;}
.y191{bottom:56.205000px;}
.y19b{bottom:58.950300px;}
.ye3{bottom:60.358500px;}
.y21f{bottom:61.921650px;}
.y225{bottom:61.922700px;}
.y17e{bottom:62.692500px;}
.y219{bottom:63.202650px;}
.y19a{bottom:66.613500px;}
.y1b7{bottom:68.723400px;}
.y190{bottom:72.279000px;}
.y21e{bottom:75.421500px;}
.y224{bottom:75.422550px;}
.y218{bottom:76.702500px;}
.y1b6{bottom:82.223400px;}
.y18f{bottom:94.455000px;}
.y1b5{bottom:95.723400px;}
.y2b2{bottom:96.000000px;}
.y187{bottom:96.000225px;}
.ye1{bottom:96.001200px;}
.yb4{bottom:96.001800px;}
.y20e{bottom:96.002400px;}
.y53{bottom:96.003300px;}
.y1ee{bottom:96.003600px;}
.ya3{bottom:96.003900px;}
.y133{bottom:96.004800px;}
.y178{bottom:96.005700px;}
.y2b{bottom:96.006000px;}
.y257{bottom:96.007200px;}
.y163{bottom:96.008700px;}
.y63{bottom:96.009000px;}
.y290{bottom:96.012300px;}
.y199{bottom:97.281900px;}
.y17a{bottom:101.638500px;}
.y22c{bottom:102.000000px;}
.y1cf{bottom:104.668500px;}
.y198{bottom:104.929500px;}
.y1b4{bottom:109.223400px;}
.yee{bottom:110.101977px;}
.y18e{bottom:111.028500px;}
.y186{bottom:112.500000px;}
.ye0{bottom:112.500900px;}
.yb3{bottom:112.501500px;}
.y20d{bottom:112.502100px;}
.y52{bottom:112.503000px;}
.y1ed{bottom:112.503300px;}
.ya2{bottom:112.503600px;}
.y132{bottom:112.504500px;}
.y177{bottom:112.505400px;}
.y2a{bottom:112.505700px;}
.y256{bottom:112.506900px;}
.y162{bottom:112.508400px;}
.y28f{bottom:112.512000px;}
.y22b{bottom:118.500000px;}
.y1c1{bottom:119.624100px;}
.y1b3{bottom:122.723400px;}
.ye9{bottom:127.261500px;}
.ye4{bottom:128.764215px;}
.y2b1{bottom:129.000000px;}
.ydf{bottom:129.000600px;}
.yb2{bottom:129.001200px;}
.y20c{bottom:129.001800px;}
.y51{bottom:129.002700px;}
.y1ec{bottom:129.003000px;}
.ya1{bottom:129.003300px;}
.y131{bottom:129.004200px;}
.y176{bottom:129.005100px;}
.y29{bottom:129.005400px;}
.y255{bottom:129.006600px;}
.y161{bottom:129.008100px;}
.y62{bottom:129.008400px;}
.y28e{bottom:129.011700px;}
.y1c0{bottom:133.124100px;}
.y193{bottom:133.206000px;}
.y22a{bottom:135.375000px;}
.y197{bottom:135.597900px;}
.y17b{bottom:138.469500px;}
.ye8{bottom:139.711500px;}
.y196{bottom:143.245500px;}
.y18a{bottom:144.619800px;}
.y2b0{bottom:145.500000px;}
.yde{bottom:145.500300px;}
.yb1{bottom:145.500900px;}
.y20b{bottom:145.501500px;}
.y50{bottom:145.502400px;}
.y1eb{bottom:145.502700px;}
.ya0{bottom:145.503000px;}
.y130{bottom:145.503900px;}
.y175{bottom:145.504800px;}
.y28{bottom:145.505100px;}
.y254{bottom:145.506300px;}
.y160{bottom:145.507800px;}
.y28d{bottom:145.511400px;}
.y179{bottom:147.000000px;}
.y212{bottom:148.167000px;}
.y192{bottom:148.779000px;}
.yef{bottom:159.845454px;}
.y2af{bottom:162.000000px;}
.yb0{bottom:162.000600px;}
.y20a{bottom:162.001200px;}
.y4f{bottom:162.002100px;}
.y1ea{bottom:162.002400px;}
.y9f{bottom:162.002700px;}
.y12f{bottom:162.003600px;}
.y174{bottom:162.004500px;}
.y27{bottom:162.004800px;}
.y253{bottom:162.006000px;}
.y15f{bottom:162.007500px;}
.y61{bottom:162.007800px;}
.y28c{bottom:162.011100px;}
.ydd{bottom:162.012900px;}
.y1b2{bottom:163.000200px;}
.y1cd{bottom:166.558500px;}
.y18d{bottom:171.955500px;}
.y195{bottom:173.913300px;}
.y1b1{bottom:176.500200px;}
.y2ae{bottom:178.500000px;}
.yaf{bottom:178.500300px;}
.y209{bottom:178.500900px;}
.y4e{bottom:178.501800px;}
.y1e9{bottom:178.502100px;}
.y9e{bottom:178.502400px;}
.y12e{bottom:178.503300px;}
.y173{bottom:178.504200px;}
.y26{bottom:178.504500px;}
.y252{bottom:178.505700px;}
.y15e{bottom:178.507200px;}
.y28b{bottom:178.510800px;}
.ydc{bottom:178.512600px;}
.yba{bottom:179.115000px;}
.y194{bottom:181.576500px;}
.y17d{bottom:182.692200px;}
.y17f{bottom:182.692500px;}
.y18c{bottom:187.528500px;}
.y1b0{bottom:190.000200px;}
.y2ad{bottom:195.000000px;}
.y208{bottom:195.000600px;}
.y4d{bottom:195.001500px;}
.y1e8{bottom:195.001800px;}
.y9d{bottom:195.002100px;}
.y12d{bottom:195.003000px;}
.y172{bottom:195.003900px;}
.y25{bottom:195.004200px;}
.y251{bottom:195.005400px;}
.y15d{bottom:195.006900px;}
.y60{bottom:195.007200px;}
.y28a{bottom:195.010500px;}
.ydb{bottom:195.012300px;}
.ye5{bottom:197.169930px;}
.y213{bottom:197.195640px;}
.y19d{bottom:206.328000px;}
.yf0{bottom:209.588931px;}
.y2ac{bottom:211.500000px;}
.y207{bottom:211.500300px;}
.y4c{bottom:211.501200px;}
.y1e7{bottom:211.501500px;}
.y9c{bottom:211.501800px;}
.y12c{bottom:211.502700px;}
.y171{bottom:211.503600px;}
.y24{bottom:211.503900px;}
.y250{bottom:211.505100px;}
.y15c{bottom:211.506600px;}
.yae{bottom:211.506900px;}
.y289{bottom:211.510200px;}
.yda{bottom:211.512000px;}
.y17c{bottom:223.101000px;}
.y19c{bottom:224.016000px;}
.y182{bottom:226.947000px;}
.y2ab{bottom:228.000000px;}
.y206{bottom:228.000600px;}
.y4b{bottom:228.000900px;}
.y1e6{bottom:228.001200px;}
.y9b{bottom:228.001500px;}
.y12b{bottom:228.002400px;}
.y170{bottom:228.003300px;}
.y23{bottom:228.003600px;}
.y24f{bottom:228.004800px;}
.y15b{bottom:228.006300px;}
.y5f{bottom:228.006600px;}
.y288{bottom:228.009900px;}
.yd9{bottom:228.011700px;}
.y1cc{bottom:234.211500px;}
.y216{bottom:236.475000px;}
.y181{bottom:240.447000px;}
.yf6{bottom:242.272500px;}
.y2aa{bottom:244.500000px;}
.y205{bottom:244.500300px;}
.y4a{bottom:244.500600px;}
.y1e5{bottom:244.500900px;}
.y9a{bottom:244.501200px;}
.y12a{bottom:244.502100px;}
.y16f{bottom:244.503000px;}
.y22{bottom:244.503300px;}
.y24e{bottom:244.504500px;}
.y15a{bottom:244.506000px;}
.yad{bottom:244.506300px;}
.y2cd{bottom:244.507650px;}
.y287{bottom:244.509600px;}
.yd8{bottom:244.511400px;}
.y214{bottom:246.224280px;}
.yed{bottom:251.803500px;}
.y1a3{bottom:253.372500px;}
.y180{bottom:254.177400px;}
.yf5{bottom:255.780000px;}
.ybc{bottom:257.562000px;}
.y183{bottom:258.469500px;}
.yf1{bottom:259.332408px;}
.y1a5{bottom:260.943000px;}
.y204{bottom:261.000000px;}
.y49{bottom:261.000300px;}
.y1e4{bottom:261.000600px;}
.y99{bottom:261.000900px;}
.y129{bottom:261.001800px;}
.y16e{bottom:261.002700px;}
.y21{bottom:261.003000px;}
.y24d{bottom:261.004200px;}
.y159{bottom:261.005700px;}
.y5e{bottom:261.006000px;}
.y2cc{bottom:261.007350px;}
.y286{bottom:261.009300px;}
.yd7{bottom:261.011100px;}
.yec{bottom:265.311000px;}
.ye6{bottom:265.575645px;}
.y1bf{bottom:267.374100px;}
.yf4{bottom:269.287500px;}
.y100{bottom:270.499950px;}
.y1af{bottom:272.723400px;}
.y2a9{bottom:277.500000px;}
.y1e3{bottom:277.500300px;}
.y98{bottom:277.500600px;}
.y48{bottom:277.501200px;}
.y128{bottom:277.501500px;}
.y16d{bottom:277.502400px;}
.y20{bottom:277.502700px;}
.y24c{bottom:277.503900px;}
.y158{bottom:277.505400px;}
.y2cb{bottom:277.507050px;}
.y285{bottom:277.509000px;}
.y203{bottom:277.509750px;}
.yd6{bottom:277.510800px;}
.yeb{bottom:278.818500px;}
.y1a4{bottom:280.750500px;}
.y1be{bottom:280.874100px;}
.yf3{bottom:282.796500px;}
.yff{bottom:283.999800px;}
.yb9{bottom:284.442000px;}
.y1ae{bottom:286.223400px;}
.yb5{bottom:286.500000px;}
.y189{bottom:292.125000px;}
.yea{bottom:292.327500px;}
.y2a8{bottom:294.000000px;}
.y97{bottom:294.000300px;}
.y47{bottom:294.000900px;}
.y127{bottom:294.001200px;}
.y16c{bottom:294.002100px;}
.y1f{bottom:294.002400px;}
.y24b{bottom:294.003600px;}
.y157{bottom:294.005100px;}
.y5d{bottom:294.005400px;}
.y2ca{bottom:294.006750px;}
.y284{bottom:294.008700px;}
.y202{bottom:294.009450px;}
.yd5{bottom:294.010500px;}
.y215{bottom:295.252920px;}
.yfe{bottom:297.499650px;}
.y1ce{bottom:307.500000px;}
.yf2{bottom:309.077208px;}
.y2a7{bottom:310.500000px;}
.y46{bottom:310.500600px;}
.y126{bottom:310.500900px;}
.y96{bottom:310.501500px;}
.y16b{bottom:310.501800px;}
.y1e{bottom:310.502100px;}
.y24a{bottom:310.503300px;}
.y156{bottom:310.504800px;}
.y283{bottom:310.508400px;}
.y201{bottom:310.509150px;}
.yd4{bottom:310.510200px;}
.yfd{bottom:310.999500px;}
.y1a2{bottom:319.066500px;}
.y2a6{bottom:327.000000px;}
.y45{bottom:327.000300px;}
.y125{bottom:327.000600px;}
.y95{bottom:327.001200px;}
.y16a{bottom:327.001500px;}
.y1d{bottom:327.001800px;}
.y249{bottom:327.003000px;}
.y155{bottom:327.004500px;}
.y5c{bottom:327.004800px;}
.y2c9{bottom:327.006150px;}
.y282{bottom:327.008100px;}
.y200{bottom:327.008850px;}
.yd3{bottom:327.009900px;}
.y1cb{bottom:329.656500px;}
.y1c6{bottom:332.560500px;}
.y1ad{bottom:333.000600px;}
.ye7{bottom:333.981360px;}
.y1ca{bottom:343.156500px;}
.y44{bottom:343.500000px;}
.y124{bottom:343.500300px;}
.y94{bottom:343.500900px;}
.y169{bottom:343.501200px;}
.y1c{bottom:343.501500px;}
.y248{bottom:343.502700px;}
.y154{bottom:343.504200px;}
.yac{bottom:343.504500px;}
.y2c8{bottom:343.505850px;}
.y281{bottom:343.507800px;}
.y1ff{bottom:343.508550px;}
.yd2{bottom:343.509600px;}
.y1bd{bottom:344.624100px;}
.y1c5{bottom:346.060500px;}
.y1ac{bottom:346.500600px;}
.y217{bottom:347.254080px;}
.y1c9{bottom:356.656500px;}
.y1a1{bottom:357.382500px;}
.y1bc{bottom:358.124100px;}
.y1c4{bottom:359.560500px;}
.y43{bottom:360.000000px;}
.y93{bottom:360.000600px;}
.y168{bottom:360.000900px;}
.y1b{bottom:360.001200px;}
.y247{bottom:360.002400px;}
.y153{bottom:360.003900px;}
.y5b{bottom:360.004200px;}
.y2c7{bottom:360.005550px;}
.y280{bottom:360.007500px;}
.y1fe{bottom:360.008250px;}
.yd1{bottom:360.009300px;}
.y2a5{bottom:376.500000px;}
.y92{bottom:376.500300px;}
.y167{bottom:376.500600px;}
.y1a{bottom:376.500900px;}
.y246{bottom:376.502100px;}
.y152{bottom:376.503600px;}
.yab{bottom:376.503900px;}
.y2c6{bottom:376.505250px;}
.y27f{bottom:376.507200px;}
.y1fd{bottom:376.507950px;}
.yd0{bottom:376.509000px;}
.y1c3{bottom:392.314500px;}
.y2a4{bottom:393.000000px;}
.y166{bottom:393.000300px;}
.y19{bottom:393.000600px;}
.y123{bottom:393.000900px;}
.y245{bottom:393.001800px;}
.y42{bottom:393.003300px;}
.y5a{bottom:393.003600px;}
.y91{bottom:393.004500px;}
.y2c5{bottom:393.004950px;}
.y27e{bottom:393.006900px;}
.y1fc{bottom:393.007650px;}
.ycf{bottom:393.008700px;}
.y1c8{bottom:398.374500px;}
.y165{bottom:409.500000px;}
.y18{bottom:409.500300px;}
.y122{bottom:409.500600px;}
.y244{bottom:409.501500px;}
.y41{bottom:409.503000px;}
.yaa{bottom:409.503300px;}
.y90{bottom:409.504200px;}
.y2c4{bottom:409.504650px;}
.y27d{bottom:409.506600px;}
.y1fb{bottom:409.507350px;}
.yce{bottom:409.508400px;}
.y1a0{bottom:416.863500px;}
.y17{bottom:426.000000px;}
.y121{bottom:426.000300px;}
.yc3{bottom:426.000900px;}
.y243{bottom:426.001200px;}
.y40{bottom:426.002700px;}
.y59{bottom:426.003000px;}
.y8f{bottom:426.003900px;}
.y2c3{bottom:426.004350px;}
.y27c{bottom:426.006300px;}
.y1fa{bottom:426.007050px;}
.ycd{bottom:426.008100px;}
.y16{bottom:442.500000px;}
.yc2{bottom:442.500600px;}
.y242{bottom:442.500900px;}
.y3f{bottom:442.502400px;}
.ya9{bottom:442.502700px;}
.y8e{bottom:442.503600px;}
.y2c2{bottom:442.504050px;}
.y27b{bottom:442.506000px;}
.y1f9{bottom:442.506750px;}
.ycc{bottom:442.507800px;}
.y1ab{bottom:448.973400px;}
.y120{bottom:459.000000px;}
.yc1{bottom:459.000300px;}
.y241{bottom:459.000600px;}
.y3e{bottom:459.002100px;}
.y58{bottom:459.002400px;}
.y8d{bottom:459.003300px;}
.y2c1{bottom:459.003750px;}
.y27a{bottom:459.005700px;}
.y1f8{bottom:459.006450px;}
.ycb{bottom:459.007500px;}
.y1c7{bottom:459.939000px;}
.y1c2{bottom:460.875000px;}
.y1aa{bottom:462.473400px;}
.y2a3{bottom:475.500000px;}
.y240{bottom:475.500300px;}
.y3d{bottom:475.501800px;}
.ya8{bottom:475.502100px;}
.y8c{bottom:475.503000px;}
.y2c0{bottom:475.503450px;}
.y279{bottom:475.505400px;}
.y15{bottom:475.506000px;}
.y1f7{bottom:475.506150px;}
.yca{bottom:475.507200px;}
.y1bb{bottom:477.124500px;}
.y1ba{bottom:490.624500px;}
.y188{bottom:492.000000px;}
.y3c{bottom:492.001500px;}
.y57{bottom:492.001800px;}
.y11f{bottom:492.002400px;}
.y8b{bottom:492.002700px;}
.y2bf{bottom:492.003150px;}
.y23f{bottom:492.004500px;}
.y278{bottom:492.005100px;}
.y14{bottom:492.005700px;}
.y1f6{bottom:492.005850px;}
.yc9{bottom:492.006900px;}
.y19f{bottom:494.253000px;}
.y1a9{bottom:495.750600px;}
.y1b9{bottom:504.124500px;}
.y3b{bottom:508.501200px;}
.ya7{bottom:508.501500px;}
.y11e{bottom:508.502100px;}
.y8a{bottom:508.502400px;}
.y2be{bottom:508.502850px;}
.y23e{bottom:508.504200px;}
.y277{bottom:508.504800px;}
.y13{bottom:508.505400px;}
.y1f5{bottom:508.505550px;}
.yc8{bottom:508.506600px;}
.y1a8{bottom:509.250600px;}
.y20f{bottom:510.000000px;}
.y1a7{bottom:522.750600px;}
.y3a{bottom:525.000900px;}
.y56{bottom:525.001200px;}
.y11d{bottom:525.001800px;}
.y89{bottom:525.002100px;}
.y2bd{bottom:525.002550px;}
.y23d{bottom:525.003900px;}
.y276{bottom:525.004500px;}
.y12{bottom:525.005100px;}
.y1f4{bottom:525.005250px;}
.yc7{bottom:525.006300px;}
.y1a6{bottom:536.250600px;}
.y19e{bottom:538.039500px;}
.y39{bottom:541.500600px;}
.ya6{bottom:541.500900px;}
.y11c{bottom:541.501500px;}
.y88{bottom:541.501800px;}
.y2bc{bottom:541.502250px;}
.y23c{bottom:541.503600px;}
.y275{bottom:541.504200px;}
.y11{bottom:541.504800px;}
.y1f3{bottom:541.504950px;}
.yc6{bottom:541.506000px;}
.y38{bottom:558.000300px;}
.y55{bottom:558.000600px;}
.y11b{bottom:558.001200px;}
.y87{bottom:558.001500px;}
.y23b{bottom:558.003300px;}
.y274{bottom:558.003900px;}
.y10{bottom:558.004500px;}
.y1f2{bottom:558.004650px;}
.yc5{bottom:558.005700px;}
.y37{bottom:574.500000px;}
.ya5{bottom:574.500300px;}
.y11a{bottom:574.500900px;}
.y2a2{bottom:574.501200px;}
.y23a{bottom:574.503000px;}
.y273{bottom:574.503600px;}
.yf{bottom:574.504200px;}
.y1f1{bottom:574.504350px;}
.yc4{bottom:574.505400px;}
.y151{bottom:574.508100px;}
.y36{bottom:591.000000px;}
.y119{bottom:591.000600px;}
.y86{bottom:591.000900px;}
.y239{bottom:591.002700px;}
.y272{bottom:591.003300px;}
.ye{bottom:591.003900px;}
.y1f0{bottom:591.004050px;}
.y1e2{bottom:591.005100px;}
.y150{bottom:591.007800px;}
.ya4{bottom:607.500000px;}
.y118{bottom:607.500300px;}
.y85{bottom:607.500600px;}
.y238{bottom:607.502400px;}
.y271{bottom:607.503000px;}
.yd{bottom:607.503600px;}
.y1ef{bottom:607.503750px;}
.y1e1{bottom:607.504800px;}
.y14f{bottom:607.507500px;}
.y117{bottom:624.000000px;}
.y84{bottom:624.000300px;}
.y103{bottom:624.000900px;}
.y237{bottom:624.002100px;}
.y270{bottom:624.002700px;}
.yc{bottom:624.003300px;}
.y1e0{bottom:624.004500px;}
.y14e{bottom:624.007200px;}
.y35{bottom:624.009900px;}
.y83{bottom:640.500000px;}
.y102{bottom:640.500675px;}
.y236{bottom:640.501800px;}
.y26f{bottom:640.502400px;}
.yb{bottom:640.503000px;}
.y1df{bottom:640.504200px;}
.y116{bottom:640.505700px;}
.y14d{bottom:640.506900px;}
.y34{bottom:640.509600px;}
.y82{bottom:657.000000px;}
.y22e{bottom:657.000225px;}
.ybf{bottom:657.000450px;}
.y235{bottom:657.001500px;}
.y26e{bottom:657.002100px;}
.ya{bottom:657.002700px;}
.y1de{bottom:657.003900px;}
.y115{bottom:657.005400px;}
.y14c{bottom:657.006600px;}
.y22d{bottom:673.500000px;}
.ybe{bottom:673.500225px;}
.y234{bottom:673.501200px;}
.y26d{bottom:673.501800px;}
.y9{bottom:673.502400px;}
.y1dd{bottom:673.503600px;}
.y114{bottom:673.505100px;}
.y14b{bottom:673.506300px;}
.y33{bottom:673.509000px;}
.ybd{bottom:690.000000px;}
.y233{bottom:690.000900px;}
.y26c{bottom:690.001500px;}
.y8{bottom:690.002100px;}
.y1dc{bottom:690.003300px;}
.y2a1{bottom:690.004500px;}
.y113{bottom:690.004800px;}
.y14a{bottom:690.006000px;}
.y81{bottom:690.006600px;}
.y32{bottom:690.008700px;}
.y211{bottom:706.500000px;}
.y232{bottom:706.500600px;}
.y26b{bottom:706.501200px;}
.y7{bottom:706.501800px;}
.y1db{bottom:706.503000px;}
.y2a0{bottom:706.504200px;}
.y112{bottom:706.504500px;}
.y149{bottom:706.505700px;}
.y80{bottom:706.506300px;}
.y31{bottom:706.508400px;}
.yb8{bottom:723.000000px;}
.y69{bottom:723.000150px;}
.y231{bottom:723.000300px;}
.y26a{bottom:723.000900px;}
.y6{bottom:723.001500px;}
.y1da{bottom:723.002700px;}
.y29f{bottom:723.003900px;}
.y111{bottom:723.004200px;}
.y148{bottom:723.005400px;}
.y7f{bottom:723.006000px;}
.y30{bottom:723.008100px;}
.y68{bottom:739.499850px;}
.y230{bottom:739.500000px;}
.y269{bottom:739.500600px;}
.y5{bottom:739.501200px;}
.y1d9{bottom:739.502400px;}
.y29e{bottom:739.503600px;}
.y110{bottom:739.503900px;}
.y147{bottom:739.505100px;}
.y7e{bottom:739.505700px;}
.y22f{bottom:756.000000px;}
.y268{bottom:756.000300px;}
.y4{bottom:756.000900px;}
.y1d8{bottom:756.002100px;}
.y29d{bottom:756.003300px;}
.y10f{bottom:756.003600px;}
.y146{bottom:756.004800px;}
.y7d{bottom:756.005400px;}
.y2f{bottom:756.007500px;}
.y1{bottom:772.500000px;}
.y3{bottom:772.500600px;}
.y1d7{bottom:772.501800px;}
.y29c{bottom:772.503000px;}
.y10e{bottom:772.503300px;}
.y145{bottom:772.504500px;}
.y7c{bottom:772.505100px;}
.y2e{bottom:772.507200px;}
.y267{bottom:789.000000px;}
.y2{bottom:789.000300px;}
.y1d6{bottom:789.001500px;}
.y29b{bottom:789.002700px;}
.y10d{bottom:789.003000px;}
.y144{bottom:789.004200px;}
.y7b{bottom:789.004800px;}
.y2d{bottom:789.006900px;}
.y67{bottom:805.500000px;}
.y1d5{bottom:805.501200px;}
.y29a{bottom:805.502400px;}
.y10c{bottom:805.502700px;}
.y143{bottom:805.503900px;}
.y7a{bottom:805.504500px;}
.y2c{bottom:805.506600px;}
.y2bb{bottom:822.000000px;}
.y1d4{bottom:822.000900px;}
.y299{bottom:822.002100px;}
.y10b{bottom:822.002400px;}
.y142{bottom:822.003600px;}
.y266{bottom:822.003900px;}
.y79{bottom:822.004200px;}
.y2ba{bottom:838.500000px;}
.y1d3{bottom:838.500600px;}
.y298{bottom:838.501800px;}
.y10a{bottom:838.502100px;}
.y141{bottom:838.503300px;}
.y265{bottom:838.503600px;}
.y78{bottom:838.503900px;}
.y2b9{bottom:855.000000px;}
.y1d2{bottom:855.000300px;}
.y297{bottom:855.001500px;}
.y109{bottom:855.001800px;}
.y140{bottom:855.003000px;}
.y264{bottom:855.003300px;}
.y77{bottom:855.003600px;}
.y66{bottom:871.500000px;}
.y296{bottom:871.501200px;}
.y108{bottom:871.501500px;}
.y13f{bottom:871.502700px;}
.y263{bottom:871.503000px;}
.y76{bottom:871.503300px;}
.y1d1{bottom:888.000000px;}
.y295{bottom:888.000900px;}
.y107{bottom:888.001200px;}
.y13e{bottom:888.002400px;}
.y262{bottom:888.002700px;}
.y75{bottom:888.003000px;}
.y2b8{bottom:904.500000px;}
.y294{bottom:904.500600px;}
.y106{bottom:904.500900px;}
.y13d{bottom:904.502100px;}
.y261{bottom:904.502400px;}
.y74{bottom:904.502700px;}
.y2b7{bottom:921.000000px;}
.y293{bottom:921.000300px;}
.y105{bottom:921.000600px;}
.y13c{bottom:921.001800px;}
.y260{bottom:921.002100px;}
.y73{bottom:921.002400px;}
.y65{bottom:937.500000px;}
.y104{bottom:937.500300px;}
.y13b{bottom:937.501500px;}
.y25f{bottom:937.501800px;}
.y72{bottom:937.502100px;}
.y292{bottom:954.000000px;}
.y13a{bottom:954.001200px;}
.y25e{bottom:954.001500px;}
.y71{bottom:954.001800px;}
.y2b6{bottom:970.500000px;}
.y139{bottom:970.500900px;}
.y25d{bottom:970.501200px;}
.y70{bottom:970.501500px;}
.y2b5{bottom:987.000000px;}
.y138{bottom:987.000600px;}
.y25c{bottom:987.000900px;}
.y6f{bottom:987.001200px;}
.y64{bottom:1003.500000px;}
.y137{bottom:1003.500300px;}
.y25b{bottom:1003.500600px;}
.y6e{bottom:1003.500900px;}
.y2b4{bottom:1020.000000px;}
.y25a{bottom:1020.000300px;}
.y6d{bottom:1020.000600px;}
.y136{bottom:1020.005550px;}
.y2b3{bottom:1036.500000px;}
.y6c{bottom:1036.500300px;}
.y259{bottom:1036.500450px;}
.y135{bottom:1036.505250px;}
.y6b{bottom:1053.000000px;}
.y258{bottom:1053.000150px;}
.y134{bottom:1053.004950px;}
.ye2{bottom:1131.000000px;}
.y6a{bottom:1171.395000px;}
.y164{bottom:1171.590000px;}
.yc0{bottom:1172.145000px;}
.y2ce{bottom:1172.895000px;}
.y291{bottom:1176.645000px;}
.h9{height:22.500000px;}
.h19{height:37.500000px;}
.h12{height:43.804688px;}
.hd{height:49.843477px;}
.hb{height:50.018555px;}
.h11{height:50.062500px;}
.h18{height:50.710500px;}
.h16{height:51.051300px;}
.h1f{height:51.216000px;}
.h4{height:52.032000px;}
.he{height:54.417000px;}
.h10{height:55.193906px;}
.h2{height:56.592000px;}
.h1c{height:57.571875px;}
.hf{height:57.618000px;}
.h7{height:58.536000px;}
.h3{height:64.020000px;}
.h8{height:75.093750px;}
.h5{height:75.456000px;}
.h17{height:79.846500px;}
.h1e{height:80.486400px;}
.ha{height:80.589600px;}
.h14{height:97.804088px;}
.h1d{height:125.071875px;}
.h1a{height:150.714600px;}
.h1{height:278.558400px;}
.h13{height:279.000000px;}
.h6{height:307.296000px;}
.hc{height:346.500000px;}
.h1b{height:363.000000px;}
.h15{height:577.500000px;}
.h0{height:1188.000000px;}
.w2{width:124.500000px;}
.w6{width:237.000000px;}
.w3{width:342.000000px;}
.w5{width:486.000000px;}
.w4{width:711.000000px;}
.w1{width:917.865000px;}
.w0{width:918.000000px;}
.x45{left:-1.198500px;}
.x0{left:0.000000px;}
.x26{left:2.671500px;}
.x6d{left:3.897000px;}
.x50{left:4.972500px;}
.x23{left:11.250000px;}
.x4a{left:13.507500px;}
.x47{left:19.357500px;}
.x6c{left:22.230600px;}
.x2c{left:26.353500px;}
.x24{left:27.609000px;}
.x6a{left:30.049500px;}
.x7e{left:31.110000px;}
.x1b{left:32.610000px;}
.x6b{left:45.177000px;}
.x4b{left:50.725500px;}
.x73{left:55.278000px;}
.x32{left:58.000500px;}
.x3f{left:59.340000px;}
.x7b{left:78.945000px;}
.x40{left:80.001900px;}
.x51{left:85.454100px;}
.x1c{left:94.365000px;}
.x33{left:101.000100px;}
.x1e{left:103.994550px;}
.x1d{left:107.865000px;}
.x70{left:109.500000px;}
.x9{left:112.365000px;}
.xc{left:113.504640px;}
.x10{left:114.763380px;}
.x69{left:116.743500px;}
.xb{left:117.959640px;}
.x46{left:118.963500px;}
.xd{left:120.164460px;}
.x19{left:121.770000px;}
.xf{left:122.908740px;}
.x12{left:126.448440px;}
.x1a{left:132.255450px;}
.xe{left:135.269340px;}
.x67{left:139.077000px;}
.xa{left:143.520000px;}
.x11{left:145.828500px;}
.x68{left:147.549000px;}
.x18{left:149.310000px;}
.x14{left:153.583440px;}
.x4e{left:154.834500px;}
.x15{left:158.655000px;}
.x13{left:169.093320px;}
.x74{left:176.544600px;}
.x4f{left:185.249850px;}
.x34{left:186.999300px;}
.x77{left:190.848750px;}
.x76{left:192.612750px;}
.x4d{left:204.169500px;}
.x79{left:212.728650px;}
.x2b{left:214.365000px;}
.x75{left:219.152550px;}
.x78{left:221.482500px;}
.x35{left:229.998900px;}
.x27{left:241.938000px;}
.x7a{left:250.403700px;}
.x48{left:257.857500px;}
.x16{left:260.820000px;}
.x72{left:265.907580px;}
.x2e{left:267.145500px;}
.x36{left:272.998500px;}
.x52{left:274.428900px;}
.x65{left:277.994400px;}
.x4c{left:280.975500px;}
.x66{left:282.318000px;}
.x63{left:286.650000px;}
.x64{left:287.666400px;}
.x1{left:295.620000px;}
.x3{left:296.864700px;}
.x17{left:307.785000px;}
.x4{left:310.365000px;}
.x7c{left:313.072500px;}
.x37{left:315.998100px;}
.x71{left:319.500000px;}
.x43{left:340.941000px;}
.x2{left:344.490000px;}
.x44{left:375.138000px;}
.x2d{left:383.340000px;}
.x49{left:384.520800px;}
.x30{left:391.535502px;}
.x2f{left:398.449500px;}
.x6f{left:419.894550px;}
.x5e{left:428.005500px;}
.x38{left:429.998100px;}
.x62{left:431.004300px;}
.x5c{left:434.126700px;}
.x5f{left:435.452700px;}
.x60{left:436.788300px;}
.x5b{left:441.120300px;}
.x61{left:444.331500px;}
.x5d{left:446.459100px;}
.x1f{left:463.365000px;}
.x80{left:470.187600px;}
.x39{left:472.997700px;}
.x20{left:476.865000px;}
.x22{left:478.500000px;}
.x82{left:479.865300px;}
.x29{left:481.362600px;}
.x7f{left:490.363200px;}
.x2a{left:494.862600px;}
.x53{left:506.554500px;}
.x3a{left:515.997300px;}
.x5a{left:525.579000px;}
.x59{left:531.420000px;}
.x57{left:532.948500px;}
.x55{left:548.227800px;}
.x3b{left:558.996900px;}
.x56{left:561.778500px;}
.x58{left:570.016500px;}
.x5{left:573.615000px;}
.x81{left:577.365000px;}
.x6{left:583.244550px;}
.x8{left:587.115000px;}
.x7{left:600.615000px;}
.x3c{left:601.996500px;}
.x54{left:603.663000px;}
.x41{left:616.365000px;}
.x42{left:629.863650px;}
.x31{left:636.426000px;}
.x25{left:640.335000px;}
.x3d{left:644.996100px;}
.x6e{left:659.340000px;}
.x3e{left:687.995700px;}
.x21{left:788.894550px;}
.x28{left:880.860000px;}
.x7d{left:882.360000px;}
@media print{
.v5{vertical-align:-11.997867pt;}
.v7{vertical-align:-10.665600pt;}
.v3{vertical-align:-9.625600pt;}
.v6{vertical-align:-7.473067pt;}
.v9{vertical-align:-5.218133pt;}
.vd{vertical-align:-2.669227pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:12.318400pt;}
.v2{vertical-align:15.828267pt;}
.v4{vertical-align:21.331200pt;}
.va{vertical-align:26.474667pt;}
.vc{vertical-align:30.331200pt;}
.v8{vertical-align:47.999467pt;}
.vb{vertical-align:53.333333pt;}
.vf{vertical-align:57.330773pt;}
.ve{vertical-align:60.000000pt;}
.v1{vertical-align:117.333333pt;}
.ls1c{letter-spacing:-17.817600pt;}
.ls1b{letter-spacing:-3.891200pt;}
.ls1d{letter-spacing:-3.840000pt;}
.ls3a{letter-spacing:-1.296000pt;}
.ls3b{letter-spacing:-1.288000pt;}
.ls16{letter-spacing:-1.248000pt;}
.ls30{letter-spacing:-1.200000pt;}
.ls31{letter-spacing:-1.104000pt;}
.ls27{letter-spacing:-1.056000pt;}
.lsd{letter-spacing:-1.008000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.912000pt;}
.ls14{letter-spacing:-0.864000pt;}
.ls2a{letter-spacing:-0.849600pt;}
.lse{letter-spacing:-0.816000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.720000pt;}
.ls4a{letter-spacing:-0.700000pt;}
.ls52{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls51{letter-spacing:-0.597333pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls57{letter-spacing:-0.554667pt;}
.ls50{letter-spacing:-0.546133pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.432000pt;}
.ls12{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls53{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.240000pt;}
.ls54{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls56{letter-spacing:-0.170667pt;}
.ls28{letter-spacing:-0.144000pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.014400pt;}
.ls24{letter-spacing:0.020800pt;}
.ls55{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.048000pt;}
.ls37{letter-spacing:0.067200pt;}
.ls4d{letter-spacing:0.085333pt;}
.ls4{letter-spacing:0.096000pt;}
.ls47{letter-spacing:0.100800pt;}
.ls18{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls3f{letter-spacing:0.224000pt;}
.ls0{letter-spacing:0.240000pt;}
.ls4e{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.336000pt;}
.ls3e{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.432000pt;}
.ls39{letter-spacing:0.441600pt;}
.ls4f{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.528000pt;}
.ls20{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.624000pt;}
.ls4c{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.672000pt;}
.ls40{letter-spacing:0.700000pt;}
.ls34{letter-spacing:0.710400pt;}
.ls22{letter-spacing:9.946667pt;}
.ls2d{letter-spacing:10.213333pt;}
.ls23{letter-spacing:10.266667pt;}
.ls42{letter-spacing:10.660800pt;}
.ls2b{letter-spacing:10.819200pt;}
.ls45{letter-spacing:10.929600pt;}
.ls38{letter-spacing:11.054400pt;}
.ls7{letter-spacing:11.120000pt;}
.ls32{letter-spacing:11.280000pt;}
.ls2c{letter-spacing:11.546667pt;}
.ls44{letter-spacing:12.422400pt;}
.ls4b{letter-spacing:12.480000pt;}
.ls48{letter-spacing:12.528000pt;}
.ls33{letter-spacing:13.733333pt;}
.ls43{letter-spacing:13.809600pt;}
.ls36{letter-spacing:14.577600pt;}
.ls49{letter-spacing:14.659200pt;}
.ls3d{letter-spacing:14.826667pt;}
.ls46{letter-spacing:15.619200pt;}
.ls41{letter-spacing:16.689600pt;}
.ls3c{letter-spacing:23.107200pt;}
.ls1f{letter-spacing:32.001600pt;}
.ls25{letter-spacing:70.656000pt;}
.ws1{word-spacing:-78.336000pt;}
.ws0{word-spacing:-75.605333pt;}
.ws6{word-spacing:-74.496000pt;}
.ws3{word-spacing:-58.777600pt;}
.ws48{word-spacing:-54.480000pt;}
.ws5{word-spacing:-44.851200pt;}
.wsb9{word-spacing:-24.480000pt;}
.wsc6{word-spacing:-21.845333pt;}
.wsc8{word-spacing:-16.320000pt;}
.ws9a{word-spacing:-16.032000pt;}
.ws44{word-spacing:-15.360000pt;}
.ws67{word-spacing:-13.920000pt;}
.ws9f{word-spacing:-13.640533pt;}
.ws45{word-spacing:-13.440000pt;}
.ws6a{word-spacing:-13.344000pt;}
.ws42{word-spacing:-13.152000pt;}
.wsc9{word-spacing:-12.330667pt;}
.wsb7{word-spacing:-12.000000pt;}
.ws8e{word-spacing:-11.861333pt;}
.wsba{word-spacing:-8.960000pt;}
.ws43{word-spacing:-7.672000pt;}
.wsbb{word-spacing:-6.963200pt;}
.ws65{word-spacing:-6.092800pt;}
.ws28{word-spacing:-3.840000pt;}
.ws24{word-spacing:-3.792000pt;}
.ws12{word-spacing:-3.744000pt;}
.wsa{word-spacing:-3.696000pt;}
.ws7c{word-spacing:-3.648000pt;}
.ws22{word-spacing:-3.600000pt;}
.wsc{word-spacing:-3.552000pt;}
.ws10{word-spacing:-3.504000pt;}
.ws19{word-spacing:-3.456000pt;}
.wsf{word-spacing:-3.408000pt;}
.ws25{word-spacing:-3.360000pt;}
.ws2d{word-spacing:-3.312000pt;}
.wse{word-spacing:-3.264000pt;}
.ws50{word-spacing:-3.216000pt;}
.ws74{word-spacing:-3.168000pt;}
.ws52{word-spacing:-3.120000pt;}
.ws20{word-spacing:-3.072000pt;}
.wsb5{word-spacing:-3.024000pt;}
.ws4c{word-spacing:-2.976000pt;}
.wse1{word-spacing:-2.944000pt;}
.ws6d{word-spacing:-2.928000pt;}
.wsbc{word-spacing:-2.880000pt;}
.wsc0{word-spacing:-2.832000pt;}
.wsdf{word-spacing:-2.816000pt;}
.ws84{word-spacing:-2.784000pt;}
.ws1a{word-spacing:-2.736000pt;}
.wsd4{word-spacing:-2.730667pt;}
.ws60{word-spacing:-2.688000pt;}
.ws5a{word-spacing:-2.640000pt;}
.wsdb{word-spacing:-2.560000pt;}
.ws1d{word-spacing:-2.544000pt;}
.wsd7{word-spacing:-2.517333pt;}
.ws39{word-spacing:-2.496000pt;}
.wsae{word-spacing:-2.448000pt;}
.ws81{word-spacing:-2.400000pt;}
.wscf{word-spacing:-2.389333pt;}
.wsc2{word-spacing:-2.352000pt;}
.wsd1{word-spacing:-2.346667pt;}
.wsd2{word-spacing:-2.261333pt;}
.ws3b{word-spacing:-2.256000pt;}
.ws7d{word-spacing:-2.208000pt;}
.ws6f{word-spacing:-2.160000pt;}
.wsa6{word-spacing:-2.112000pt;}
.wsc5{word-spacing:-2.064000pt;}
.wsca{word-spacing:-2.016000pt;}
.ws5e{word-spacing:-1.968000pt;}
.ws6e{word-spacing:-1.920000pt;}
.wscd{word-spacing:-1.872000pt;}
.wsc4{word-spacing:-1.824000pt;}
.ws3f{word-spacing:-1.792000pt;}
.ws71{word-spacing:-1.776000pt;}
.ws3e{word-spacing:-1.728000pt;}
.wsce{word-spacing:-1.706667pt;}
.ws7{word-spacing:-1.680000pt;}
.ws18{word-spacing:-1.653333pt;}
.ws86{word-spacing:-1.584000pt;}
.ws17{word-spacing:-1.536000pt;}
.wse2{word-spacing:-1.493333pt;}
.ws61{word-spacing:-1.488000pt;}
.ws66{word-spacing:-1.478400pt;}
.ws4e{word-spacing:-1.440000pt;}
.ws30{word-spacing:-1.392000pt;}
.ws40{word-spacing:-1.344000pt;}
.ws41{word-spacing:-1.300800pt;}
.ws13{word-spacing:-1.296000pt;}
.ws63{word-spacing:-1.269333pt;}
.ws5f{word-spacing:-1.248000pt;}
.ws9d{word-spacing:-1.236480pt;}
.ws9e{word-spacing:-1.226667pt;}
.ws85{word-spacing:-1.200000pt;}
.ws3c{word-spacing:-1.194667pt;}
.ws14{word-spacing:-1.152000pt;}
.ws75{word-spacing:-1.056000pt;}
.ws69{word-spacing:-1.012800pt;}
.ws3d{word-spacing:-1.008000pt;}
.ws4d{word-spacing:-0.960000pt;}
.ws7b{word-spacing:-0.912000pt;}
.ws7e{word-spacing:-0.896000pt;}
.ws4f{word-spacing:-0.864000pt;}
.ws64{word-spacing:-0.854400pt;}
.wsd3{word-spacing:-0.810667pt;}
.ws58{word-spacing:-0.768000pt;}
.ws5d{word-spacing:-0.720000pt;}
.ws57{word-spacing:-0.624000pt;}
.ws7f{word-spacing:-0.576000pt;}
.wsc7{word-spacing:-0.546133pt;}
.ws6c{word-spacing:-0.528000pt;}
.ws89{word-spacing:-0.480000pt;}
.wsaf{word-spacing:-0.432000pt;}
.wsbf{word-spacing:-0.384000pt;}
.wsab{word-spacing:-0.336000pt;}
.wsb{word-spacing:-0.288000pt;}
.ws55{word-spacing:-0.240000pt;}
.wsa3{word-spacing:-0.192000pt;}
.ws5b{word-spacing:-0.096000pt;}
.ws87{word-spacing:-0.048000pt;}
.ws35{word-spacing:0.000000pt;}
.wscb{word-spacing:0.048000pt;}
.ws3a{word-spacing:0.096000pt;}
.ws4b{word-spacing:0.144000pt;}
.ws2f{word-spacing:0.192000pt;}
.ws46{word-spacing:0.211200pt;}
.ws72{word-spacing:0.240000pt;}
.ws1e{word-spacing:0.384000pt;}
.ws16{word-spacing:0.432000pt;}
.ws11{word-spacing:0.480000pt;}
.ws62{word-spacing:0.528000pt;}
.ws77{word-spacing:0.576000pt;}
.ws76{word-spacing:0.624000pt;}
.ws53{word-spacing:0.672000pt;}
.wse0{word-spacing:0.682667pt;}
.wsb4{word-spacing:0.720000pt;}
.ws78{word-spacing:0.768000pt;}
.ws21{word-spacing:0.816000pt;}
.ws51{word-spacing:0.864000pt;}
.wsdd{word-spacing:0.896000pt;}
.ws1b{word-spacing:0.912000pt;}
.ws33{word-spacing:0.960000pt;}
.wsde{word-spacing:0.981333pt;}
.ws2a{word-spacing:1.008000pt;}
.ws4a{word-spacing:1.056000pt;}
.wsd9{word-spacing:1.066667pt;}
.ws34{word-spacing:1.104000pt;}
.wsdc{word-spacing:1.109333pt;}
.wsac{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.200000pt;}
.ws8a{word-spacing:1.248000pt;}
.ws26{word-spacing:1.296000pt;}
.ws15{word-spacing:1.344000pt;}
.wsd{word-spacing:1.392000pt;}
.ws2b{word-spacing:1.440000pt;}
.ws32{word-spacing:1.488000pt;}
.ws83{word-spacing:1.536000pt;}
.wsbe{word-spacing:1.728000pt;}
.ws37{word-spacing:1.872000pt;}
.ws8{word-spacing:1.968000pt;}
.wsd8{word-spacing:2.133333pt;}
.wsa7{word-spacing:2.208000pt;}
.wsb0{word-spacing:2.256000pt;}
.ws54{word-spacing:2.304000pt;}
.wsa8{word-spacing:2.640000pt;}
.ws82{word-spacing:2.688000pt;}
.ws70{word-spacing:2.736000pt;}
.wsb2{word-spacing:2.784000pt;}
.ws68{word-spacing:2.932800pt;}
.wse3{word-spacing:2.976000pt;}
.ws79{word-spacing:3.170667pt;}
.wsb8{word-spacing:3.326667pt;}
.ws49{word-spacing:3.456000pt;}
.wsb1{word-spacing:3.600000pt;}
.ws80{word-spacing:4.080000pt;}
.wsa5{word-spacing:4.128000pt;}
.ws59{word-spacing:4.320000pt;}
.wsc3{word-spacing:4.704000pt;}
.ws31{word-spacing:4.752000pt;}
.ws73{word-spacing:4.992000pt;}
.ws56{word-spacing:5.424000pt;}
.ws29{word-spacing:5.808000pt;}
.wsbd{word-spacing:6.000000pt;}
.ws27{word-spacing:6.192000pt;}
.ws92{word-spacing:6.336000pt;}
.ws93{word-spacing:6.480000pt;}
.ws95{word-spacing:6.576000pt;}
.ws1f{word-spacing:6.960000pt;}
.wsa1{word-spacing:7.008000pt;}
.wsad{word-spacing:7.152000pt;}
.ws5c{word-spacing:7.200000pt;}
.ws99{word-spacing:7.648000pt;}
.ws4{word-spacing:7.892800pt;}
.ws2{word-spacing:8.097600pt;}
.ws7a{word-spacing:8.208000pt;}
.wsd0{word-spacing:8.277333pt;}
.wscc{word-spacing:8.400000pt;}
.ws2c{word-spacing:9.552000pt;}
.wse8{word-spacing:9.648000pt;}
.ws91{word-spacing:9.792000pt;}
.ws97{word-spacing:10.176000pt;}
.ws96{word-spacing:10.224000pt;}
.wsb3{word-spacing:11.328000pt;}
.wsaa{word-spacing:11.520000pt;}
.ws9{word-spacing:12.048000pt;}
.wse5{word-spacing:12.288000pt;}
.wsda{word-spacing:12.544000pt;}
.ws36{word-spacing:13.968000pt;}
.wsc1{word-spacing:14.160000pt;}
.ws90{word-spacing:14.832000pt;}
.wsa9{word-spacing:14.880000pt;}
.wse9{word-spacing:14.976000pt;}
.wse7{word-spacing:15.072000pt;}
.ws1c{word-spacing:15.168000pt;}
.wsb6{word-spacing:15.744000pt;}
.ws94{word-spacing:15.792000pt;}
.wsd5{word-spacing:16.853333pt;}
.ws88{word-spacing:17.376000pt;}
.wse6{word-spacing:17.616000pt;}
.ws9b{word-spacing:17.740000pt;}
.wsa4{word-spacing:18.528000pt;}
.ws8f{word-spacing:18.954133pt;}
.wsd6{word-spacing:19.242667pt;}
.ws38{word-spacing:20.016000pt;}
.ws23{word-spacing:21.504000pt;}
.ws8c{word-spacing:22.016000pt;}
.wse4{word-spacing:22.848000pt;}
.ws98{word-spacing:23.568000pt;}
.ws8b{word-spacing:25.648000pt;}
.ws8d{word-spacing:25.653333pt;}
.wsa2{word-spacing:25.728000pt;}
.ws47{word-spacing:39.264000pt;}
.ws9c{word-spacing:807.490133pt;}
.wsa0{word-spacing:844.458667pt;}
.ws6b{word-spacing:1276.458667pt;}
._12{margin-left:-1061.941333pt;}
._16{margin-left:-573.989333pt;}
._a{margin-left:-19.082667pt;}
._22{margin-left:-15.274667pt;}
._21{margin-left:-10.560000pt;}
._c{margin-left:-7.819200pt;}
._1c{margin-left:-4.693333pt;}
._4{margin-left:-3.696000pt;}
._2{margin-left:-2.112000pt;}
._0{margin-left:-1.077333pt;}
._1{width:0.912000pt;}
._7{width:1.984000pt;}
._8{width:3.008000pt;}
._f{width:9.936000pt;}
._10{width:11.059200pt;}
._9{width:14.755200pt;}
._1d{width:15.792000pt;}
._b{width:17.203200pt;}
._1b{width:19.075200pt;}
._1a{width:26.666667pt;}
._24{width:30.446400pt;}
._3{width:32.016000pt;}
._20{width:34.901333pt;}
._13{width:36.586667pt;}
._23{width:37.845333pt;}
._11{width:38.837333pt;}
._5{width:42.666667pt;}
._e{width:54.720000pt;}
._d{width:71.088000pt;}
._17{width:78.848000pt;}
._19{width:100.154667pt;}
._1e{width:113.294933pt;}
._15{width:274.982400pt;}
._14{width:291.588267pt;}
._26{width:295.536000pt;}
._25{width:308.016000pt;}
._1f{width:321.270400pt;}
._18{width:382.894933pt;}
._6{width:1498.282667pt;}
.fsc{font-size:21.760000pt;}
.fs3{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:42.480000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsd{font-size:47.040000pt;}
.fs1{font-size:48.000000pt;}
.fsf{font-size:49.066667pt;}
.fs2{font-size:53.333333pt;}
.fs11{font-size:54.613333pt;}
.fs6{font-size:64.000000pt;}
.fs10{font-size:68.266667pt;}
.fs8{font-size:204.800000pt;}
.fs0{font-size:236.266667pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:1.333333pt;}
.y210{bottom:4.082533pt;}
.y101{bottom:4.444000pt;}
.yb7{bottom:6.666667pt;}
.y223{bottom:7.042000pt;}
.y229{bottom:7.042933pt;}
.y21d{bottom:8.180667pt;}
.yf8{bottom:10.142400pt;}
.yf7{bottom:10.738667pt;}
.ybb{bottom:12.778667pt;}
.yfb{bottom:13.108800pt;}
.y185{bottom:16.889467pt;}
.yfa{bottom:18.438933pt;}
.y222{bottom:19.041867pt;}
.y228{bottom:19.042800pt;}
.y18b{bottom:19.519467pt;}
.y21c{bottom:20.180533pt;}
.yf9{bottom:21.392533pt;}
.yfc{bottom:25.551467pt;}
.y1d0{bottom:26.881333pt;}
.y184{bottom:28.889333pt;}
.y221{bottom:31.041733pt;}
.y227{bottom:31.042667pt;}
.y21b{bottom:32.180400pt;}
.y54{bottom:41.333333pt;}
.y220{bottom:43.041600pt;}
.y226{bottom:43.042533pt;}
.y21a{bottom:44.180267pt;}
.y1b8{bottom:49.087467pt;}
.y191{bottom:49.960000pt;}
.y19b{bottom:52.400267pt;}
.ye3{bottom:53.652000pt;}
.y21f{bottom:55.041467pt;}
.y225{bottom:55.042400pt;}
.y17e{bottom:55.726667pt;}
.y219{bottom:56.180133pt;}
.y19a{bottom:59.212000pt;}
.y1b7{bottom:61.087467pt;}
.y190{bottom:64.248000pt;}
.y21e{bottom:67.041333pt;}
.y224{bottom:67.042267pt;}
.y218{bottom:68.180000pt;}
.y1b6{bottom:73.087467pt;}
.y18f{bottom:83.960000pt;}
.y1b5{bottom:85.087467pt;}
.y2b2{bottom:85.333333pt;}
.y187{bottom:85.333533pt;}
.ye1{bottom:85.334400pt;}
.yb4{bottom:85.334933pt;}
.y20e{bottom:85.335467pt;}
.y53{bottom:85.336267pt;}
.y1ee{bottom:85.336533pt;}
.ya3{bottom:85.336800pt;}
.y133{bottom:85.337600pt;}
.y178{bottom:85.338400pt;}
.y2b{bottom:85.338667pt;}
.y257{bottom:85.339733pt;}
.y163{bottom:85.341067pt;}
.y63{bottom:85.341333pt;}
.y290{bottom:85.344267pt;}
.y199{bottom:86.472800pt;}
.y17a{bottom:90.345333pt;}
.y22c{bottom:90.666667pt;}
.y1cf{bottom:93.038667pt;}
.y198{bottom:93.270667pt;}
.y1b4{bottom:97.087467pt;}
.yee{bottom:97.868424pt;}
.y18e{bottom:98.692000pt;}
.y186{bottom:100.000000pt;}
.ye0{bottom:100.000800pt;}
.yb3{bottom:100.001333pt;}
.y20d{bottom:100.001867pt;}
.y52{bottom:100.002667pt;}
.y1ed{bottom:100.002933pt;}
.ya2{bottom:100.003200pt;}
.y132{bottom:100.004000pt;}
.y177{bottom:100.004800pt;}
.y2a{bottom:100.005067pt;}
.y256{bottom:100.006133pt;}
.y162{bottom:100.007467pt;}
.y28f{bottom:100.010667pt;}
.y22b{bottom:105.333333pt;}
.y1c1{bottom:106.332533pt;}
.y1b3{bottom:109.087467pt;}
.ye9{bottom:113.121333pt;}
.ye4{bottom:114.457080pt;}
.y2b1{bottom:114.666667pt;}
.ydf{bottom:114.667200pt;}
.yb2{bottom:114.667733pt;}
.y20c{bottom:114.668267pt;}
.y51{bottom:114.669067pt;}
.y1ec{bottom:114.669333pt;}
.ya1{bottom:114.669600pt;}
.y131{bottom:114.670400pt;}
.y176{bottom:114.671200pt;}
.y29{bottom:114.671467pt;}
.y255{bottom:114.672533pt;}
.y161{bottom:114.673867pt;}
.y62{bottom:114.674133pt;}
.y28e{bottom:114.677067pt;}
.y1c0{bottom:118.332533pt;}
.y193{bottom:118.405333pt;}
.y22a{bottom:120.333333pt;}
.y197{bottom:120.531467pt;}
.y17b{bottom:123.084000pt;}
.ye8{bottom:124.188000pt;}
.y196{bottom:127.329333pt;}
.y18a{bottom:128.550933pt;}
.y2b0{bottom:129.333333pt;}
.yde{bottom:129.333600pt;}
.yb1{bottom:129.334133pt;}
.y20b{bottom:129.334667pt;}
.y50{bottom:129.335467pt;}
.y1eb{bottom:129.335733pt;}
.ya0{bottom:129.336000pt;}
.y130{bottom:129.336800pt;}
.y175{bottom:129.337600pt;}
.y28{bottom:129.337867pt;}
.y254{bottom:129.338933pt;}
.y160{bottom:129.340267pt;}
.y28d{bottom:129.343467pt;}
.y179{bottom:130.666667pt;}
.y212{bottom:131.704000pt;}
.y192{bottom:132.248000pt;}
.yef{bottom:142.084848pt;}
.y2af{bottom:144.000000pt;}
.yb0{bottom:144.000533pt;}
.y20a{bottom:144.001067pt;}
.y4f{bottom:144.001867pt;}
.y1ea{bottom:144.002133pt;}
.y9f{bottom:144.002400pt;}
.y12f{bottom:144.003200pt;}
.y174{bottom:144.004000pt;}
.y27{bottom:144.004267pt;}
.y253{bottom:144.005333pt;}
.y15f{bottom:144.006667pt;}
.y61{bottom:144.006933pt;}
.y28c{bottom:144.009867pt;}
.ydd{bottom:144.011467pt;}
.y1b2{bottom:144.889067pt;}
.y1cd{bottom:148.052000pt;}
.y18d{bottom:152.849333pt;}
.y195{bottom:154.589600pt;}
.y1b1{bottom:156.889067pt;}
.y2ae{bottom:158.666667pt;}
.yaf{bottom:158.666933pt;}
.y209{bottom:158.667467pt;}
.y4e{bottom:158.668267pt;}
.y1e9{bottom:158.668533pt;}
.y9e{bottom:158.668800pt;}
.y12e{bottom:158.669600pt;}
.y173{bottom:158.670400pt;}
.y26{bottom:158.670667pt;}
.y252{bottom:158.671733pt;}
.y15e{bottom:158.673067pt;}
.y28b{bottom:158.676267pt;}
.ydc{bottom:158.677867pt;}
.yba{bottom:159.213333pt;}
.y194{bottom:161.401333pt;}
.y17d{bottom:162.393067pt;}
.y17f{bottom:162.393333pt;}
.y18c{bottom:166.692000pt;}
.y1b0{bottom:168.889067pt;}
.y2ad{bottom:173.333333pt;}
.y208{bottom:173.333867pt;}
.y4d{bottom:173.334667pt;}
.y1e8{bottom:173.334933pt;}
.y9d{bottom:173.335200pt;}
.y12d{bottom:173.336000pt;}
.y172{bottom:173.336800pt;}
.y25{bottom:173.337067pt;}
.y251{bottom:173.338133pt;}
.y15d{bottom:173.339467pt;}
.y60{bottom:173.339733pt;}
.y28a{bottom:173.342667pt;}
.ydb{bottom:173.344267pt;}
.ye5{bottom:175.262160pt;}
.y213{bottom:175.285013pt;}
.y19d{bottom:183.402667pt;}
.yf0{bottom:186.301272pt;}
.y2ac{bottom:188.000000pt;}
.y207{bottom:188.000267pt;}
.y4c{bottom:188.001067pt;}
.y1e7{bottom:188.001333pt;}
.y9c{bottom:188.001600pt;}
.y12c{bottom:188.002400pt;}
.y171{bottom:188.003200pt;}
.y24{bottom:188.003467pt;}
.y250{bottom:188.004533pt;}
.y15c{bottom:188.005867pt;}
.yae{bottom:188.006133pt;}
.y289{bottom:188.009067pt;}
.yda{bottom:188.010667pt;}
.y17c{bottom:198.312000pt;}
.y19c{bottom:199.125333pt;}
.y182{bottom:201.730667pt;}
.y2ab{bottom:202.666667pt;}
.y206{bottom:202.667200pt;}
.y4b{bottom:202.667467pt;}
.y1e6{bottom:202.667733pt;}
.y9b{bottom:202.668000pt;}
.y12b{bottom:202.668800pt;}
.y170{bottom:202.669600pt;}
.y23{bottom:202.669867pt;}
.y24f{bottom:202.670933pt;}
.y15b{bottom:202.672267pt;}
.y5f{bottom:202.672533pt;}
.y288{bottom:202.675467pt;}
.yd9{bottom:202.677067pt;}
.y1cc{bottom:208.188000pt;}
.y216{bottom:210.200000pt;}
.y181{bottom:213.730667pt;}
.yf6{bottom:215.353333pt;}
.y2aa{bottom:217.333333pt;}
.y205{bottom:217.333600pt;}
.y4a{bottom:217.333867pt;}
.y1e5{bottom:217.334133pt;}
.y9a{bottom:217.334400pt;}
.y12a{bottom:217.335200pt;}
.y16f{bottom:217.336000pt;}
.y22{bottom:217.336267pt;}
.y24e{bottom:217.337333pt;}
.y15a{bottom:217.338667pt;}
.yad{bottom:217.338933pt;}
.y2cd{bottom:217.340133pt;}
.y287{bottom:217.341867pt;}
.yd8{bottom:217.343467pt;}
.y214{bottom:218.866027pt;}
.yed{bottom:223.825333pt;}
.y1a3{bottom:225.220000pt;}
.y180{bottom:225.935467pt;}
.yf5{bottom:227.360000pt;}
.ybc{bottom:228.944000pt;}
.y183{bottom:229.750667pt;}
.yf1{bottom:230.517696pt;}
.y1a5{bottom:231.949333pt;}
.y204{bottom:232.000000pt;}
.y49{bottom:232.000267pt;}
.y1e4{bottom:232.000533pt;}
.y99{bottom:232.000800pt;}
.y129{bottom:232.001600pt;}
.y16e{bottom:232.002400pt;}
.y21{bottom:232.002667pt;}
.y24d{bottom:232.003733pt;}
.y159{bottom:232.005067pt;}
.y5e{bottom:232.005333pt;}
.y2cc{bottom:232.006533pt;}
.y286{bottom:232.008267pt;}
.yd7{bottom:232.009867pt;}
.yec{bottom:235.832000pt;}
.ye6{bottom:236.067240pt;}
.y1bf{bottom:237.665867pt;}
.yf4{bottom:239.366667pt;}
.y100{bottom:240.444400pt;}
.y1af{bottom:242.420800pt;}
.y2a9{bottom:246.666667pt;}
.y1e3{bottom:246.666933pt;}
.y98{bottom:246.667200pt;}
.y48{bottom:246.667733pt;}
.y128{bottom:246.668000pt;}
.y16d{bottom:246.668800pt;}
.y20{bottom:246.669067pt;}
.y24c{bottom:246.670133pt;}
.y158{bottom:246.671467pt;}
.y2cb{bottom:246.672933pt;}
.y285{bottom:246.674667pt;}
.y203{bottom:246.675333pt;}
.yd6{bottom:246.676267pt;}
.yeb{bottom:247.838667pt;}
.y1a4{bottom:249.556000pt;}
.y1be{bottom:249.665867pt;}
.yf3{bottom:251.374667pt;}
.yff{bottom:252.444267pt;}
.yb9{bottom:252.837333pt;}
.y1ae{bottom:254.420800pt;}
.yb5{bottom:254.666667pt;}
.y189{bottom:259.666667pt;}
.yea{bottom:259.846667pt;}
.y2a8{bottom:261.333333pt;}
.y97{bottom:261.333600pt;}
.y47{bottom:261.334133pt;}
.y127{bottom:261.334400pt;}
.y16c{bottom:261.335200pt;}
.y1f{bottom:261.335467pt;}
.y24b{bottom:261.336533pt;}
.y157{bottom:261.337867pt;}
.y5d{bottom:261.338133pt;}
.y2ca{bottom:261.339333pt;}
.y284{bottom:261.341067pt;}
.y202{bottom:261.341733pt;}
.yd5{bottom:261.342667pt;}
.y215{bottom:262.447040pt;}
.yfe{bottom:264.444133pt;}
.y1ce{bottom:273.333333pt;}
.yf2{bottom:274.735296pt;}
.y2a7{bottom:276.000000pt;}
.y46{bottom:276.000533pt;}
.y126{bottom:276.000800pt;}
.y96{bottom:276.001333pt;}
.y16b{bottom:276.001600pt;}
.y1e{bottom:276.001867pt;}
.y24a{bottom:276.002933pt;}
.y156{bottom:276.004267pt;}
.y283{bottom:276.007467pt;}
.y201{bottom:276.008133pt;}
.yd4{bottom:276.009067pt;}
.yfd{bottom:276.444000pt;}
.y1a2{bottom:283.614667pt;}
.y2a6{bottom:290.666667pt;}
.y45{bottom:290.666933pt;}
.y125{bottom:290.667200pt;}
.y95{bottom:290.667733pt;}
.y16a{bottom:290.668000pt;}
.y1d{bottom:290.668267pt;}
.y249{bottom:290.669333pt;}
.y155{bottom:290.670667pt;}
.y5c{bottom:290.670933pt;}
.y2c9{bottom:290.672133pt;}
.y282{bottom:290.673867pt;}
.y200{bottom:290.674533pt;}
.yd3{bottom:290.675467pt;}
.y1cb{bottom:293.028000pt;}
.y1c6{bottom:295.609333pt;}
.y1ad{bottom:296.000533pt;}
.ye7{bottom:296.872320pt;}
.y1ca{bottom:305.028000pt;}
.y44{bottom:305.333333pt;}
.y124{bottom:305.333600pt;}
.y94{bottom:305.334133pt;}
.y169{bottom:305.334400pt;}
.y1c{bottom:305.334667pt;}
.y248{bottom:305.335733pt;}
.y154{bottom:305.337067pt;}
.yac{bottom:305.337333pt;}
.y2c8{bottom:305.338533pt;}
.y281{bottom:305.340267pt;}
.y1ff{bottom:305.340933pt;}
.yd2{bottom:305.341867pt;}
.y1bd{bottom:306.332533pt;}
.y1c5{bottom:307.609333pt;}
.y1ac{bottom:308.000533pt;}
.y217{bottom:308.670293pt;}
.y1c9{bottom:317.028000pt;}
.y1a1{bottom:317.673333pt;}
.y1bc{bottom:318.332533pt;}
.y1c4{bottom:319.609333pt;}
.y43{bottom:320.000000pt;}
.y93{bottom:320.000533pt;}
.y168{bottom:320.000800pt;}
.y1b{bottom:320.001067pt;}
.y247{bottom:320.002133pt;}
.y153{bottom:320.003467pt;}
.y5b{bottom:320.003733pt;}
.y2c7{bottom:320.004933pt;}
.y280{bottom:320.006667pt;}
.y1fe{bottom:320.007333pt;}
.yd1{bottom:320.008267pt;}
.y2a5{bottom:334.666667pt;}
.y92{bottom:334.666933pt;}
.y167{bottom:334.667200pt;}
.y1a{bottom:334.667467pt;}
.y246{bottom:334.668533pt;}
.y152{bottom:334.669867pt;}
.yab{bottom:334.670133pt;}
.y2c6{bottom:334.671333pt;}
.y27f{bottom:334.673067pt;}
.y1fd{bottom:334.673733pt;}
.yd0{bottom:334.674667pt;}
.y1c3{bottom:348.724000pt;}
.y2a4{bottom:349.333333pt;}
.y166{bottom:349.333600pt;}
.y19{bottom:349.333867pt;}
.y123{bottom:349.334133pt;}
.y245{bottom:349.334933pt;}
.y42{bottom:349.336267pt;}
.y5a{bottom:349.336533pt;}
.y91{bottom:349.337333pt;}
.y2c5{bottom:349.337733pt;}
.y27e{bottom:349.339467pt;}
.y1fc{bottom:349.340133pt;}
.ycf{bottom:349.341067pt;}
.y1c8{bottom:354.110667pt;}
.y165{bottom:364.000000pt;}
.y18{bottom:364.000267pt;}
.y122{bottom:364.000533pt;}
.y244{bottom:364.001333pt;}
.y41{bottom:364.002667pt;}
.yaa{bottom:364.002933pt;}
.y90{bottom:364.003733pt;}
.y2c4{bottom:364.004133pt;}
.y27d{bottom:364.005867pt;}
.y1fb{bottom:364.006533pt;}
.yce{bottom:364.007467pt;}
.y1a0{bottom:370.545333pt;}
.y17{bottom:378.666667pt;}
.y121{bottom:378.666933pt;}
.yc3{bottom:378.667467pt;}
.y243{bottom:378.667733pt;}
.y40{bottom:378.669067pt;}
.y59{bottom:378.669333pt;}
.y8f{bottom:378.670133pt;}
.y2c3{bottom:378.670533pt;}
.y27c{bottom:378.672267pt;}
.y1fa{bottom:378.672933pt;}
.ycd{bottom:378.673867pt;}
.y16{bottom:393.333333pt;}
.yc2{bottom:393.333867pt;}
.y242{bottom:393.334133pt;}
.y3f{bottom:393.335467pt;}
.ya9{bottom:393.335733pt;}
.y8e{bottom:393.336533pt;}
.y2c2{bottom:393.336933pt;}
.y27b{bottom:393.338667pt;}
.y1f9{bottom:393.339333pt;}
.ycc{bottom:393.340267pt;}
.y1ab{bottom:399.087467pt;}
.y120{bottom:408.000000pt;}
.yc1{bottom:408.000267pt;}
.y241{bottom:408.000533pt;}
.y3e{bottom:408.001867pt;}
.y58{bottom:408.002133pt;}
.y8d{bottom:408.002933pt;}
.y2c1{bottom:408.003333pt;}
.y27a{bottom:408.005067pt;}
.y1f8{bottom:408.005733pt;}
.ycb{bottom:408.006667pt;}
.y1c7{bottom:408.834667pt;}
.y1c2{bottom:409.666667pt;}
.y1aa{bottom:411.087467pt;}
.y2a3{bottom:422.666667pt;}
.y240{bottom:422.666933pt;}
.y3d{bottom:422.668267pt;}
.ya8{bottom:422.668533pt;}
.y8c{bottom:422.669333pt;}
.y2c0{bottom:422.669733pt;}
.y279{bottom:422.671467pt;}
.y15{bottom:422.672000pt;}
.y1f7{bottom:422.672133pt;}
.yca{bottom:422.673067pt;}
.y1bb{bottom:424.110667pt;}
.y1ba{bottom:436.110667pt;}
.y188{bottom:437.333333pt;}
.y3c{bottom:437.334667pt;}
.y57{bottom:437.334933pt;}
.y11f{bottom:437.335467pt;}
.y8b{bottom:437.335733pt;}
.y2bf{bottom:437.336133pt;}
.y23f{bottom:437.337333pt;}
.y278{bottom:437.337867pt;}
.y14{bottom:437.338400pt;}
.y1f6{bottom:437.338533pt;}
.yc9{bottom:437.339467pt;}
.y19f{bottom:439.336000pt;}
.y1a9{bottom:440.667200pt;}
.y1b9{bottom:448.110667pt;}
.y3b{bottom:452.001067pt;}
.ya7{bottom:452.001333pt;}
.y11e{bottom:452.001867pt;}
.y8a{bottom:452.002133pt;}
.y2be{bottom:452.002533pt;}
.y23e{bottom:452.003733pt;}
.y277{bottom:452.004267pt;}
.y13{bottom:452.004800pt;}
.y1f5{bottom:452.004933pt;}
.yc8{bottom:452.005867pt;}
.y1a8{bottom:452.667200pt;}
.y20f{bottom:453.333333pt;}
.y1a7{bottom:464.667200pt;}
.y3a{bottom:466.667467pt;}
.y56{bottom:466.667733pt;}
.y11d{bottom:466.668267pt;}
.y89{bottom:466.668533pt;}
.y2bd{bottom:466.668933pt;}
.y23d{bottom:466.670133pt;}
.y276{bottom:466.670667pt;}
.y12{bottom:466.671200pt;}
.y1f4{bottom:466.671333pt;}
.yc7{bottom:466.672267pt;}
.y1a6{bottom:476.667200pt;}
.y19e{bottom:478.257333pt;}
.y39{bottom:481.333867pt;}
.ya6{bottom:481.334133pt;}
.y11c{bottom:481.334667pt;}
.y88{bottom:481.334933pt;}
.y2bc{bottom:481.335333pt;}
.y23c{bottom:481.336533pt;}
.y275{bottom:481.337067pt;}
.y11{bottom:481.337600pt;}
.y1f3{bottom:481.337733pt;}
.yc6{bottom:481.338667pt;}
.y38{bottom:496.000267pt;}
.y55{bottom:496.000533pt;}
.y11b{bottom:496.001067pt;}
.y87{bottom:496.001333pt;}
.y23b{bottom:496.002933pt;}
.y274{bottom:496.003467pt;}
.y10{bottom:496.004000pt;}
.y1f2{bottom:496.004133pt;}
.yc5{bottom:496.005067pt;}
.y37{bottom:510.666667pt;}
.ya5{bottom:510.666933pt;}
.y11a{bottom:510.667467pt;}
.y2a2{bottom:510.667733pt;}
.y23a{bottom:510.669333pt;}
.y273{bottom:510.669867pt;}
.yf{bottom:510.670400pt;}
.y1f1{bottom:510.670533pt;}
.yc4{bottom:510.671467pt;}
.y151{bottom:510.673867pt;}
.y36{bottom:525.333333pt;}
.y119{bottom:525.333867pt;}
.y86{bottom:525.334133pt;}
.y239{bottom:525.335733pt;}
.y272{bottom:525.336267pt;}
.ye{bottom:525.336800pt;}
.y1f0{bottom:525.336933pt;}
.y1e2{bottom:525.337867pt;}
.y150{bottom:525.340267pt;}
.ya4{bottom:540.000000pt;}
.y118{bottom:540.000267pt;}
.y85{bottom:540.000533pt;}
.y238{bottom:540.002133pt;}
.y271{bottom:540.002667pt;}
.yd{bottom:540.003200pt;}
.y1ef{bottom:540.003333pt;}
.y1e1{bottom:540.004267pt;}
.y14f{bottom:540.006667pt;}
.y117{bottom:554.666667pt;}
.y84{bottom:554.666933pt;}
.y103{bottom:554.667467pt;}
.y237{bottom:554.668533pt;}
.y270{bottom:554.669067pt;}
.yc{bottom:554.669600pt;}
.y1e0{bottom:554.670667pt;}
.y14e{bottom:554.673067pt;}
.y35{bottom:554.675467pt;}
.y83{bottom:569.333333pt;}
.y102{bottom:569.333933pt;}
.y236{bottom:569.334933pt;}
.y26f{bottom:569.335467pt;}
.yb{bottom:569.336000pt;}
.y1df{bottom:569.337067pt;}
.y116{bottom:569.338400pt;}
.y14d{bottom:569.339467pt;}
.y34{bottom:569.341867pt;}
.y82{bottom:584.000000pt;}
.y22e{bottom:584.000200pt;}
.ybf{bottom:584.000400pt;}
.y235{bottom:584.001333pt;}
.y26e{bottom:584.001867pt;}
.ya{bottom:584.002400pt;}
.y1de{bottom:584.003467pt;}
.y115{bottom:584.004800pt;}
.y14c{bottom:584.005867pt;}
.y22d{bottom:598.666667pt;}
.ybe{bottom:598.666867pt;}
.y234{bottom:598.667733pt;}
.y26d{bottom:598.668267pt;}
.y9{bottom:598.668800pt;}
.y1dd{bottom:598.669867pt;}
.y114{bottom:598.671200pt;}
.y14b{bottom:598.672267pt;}
.y33{bottom:598.674667pt;}
.ybd{bottom:613.333333pt;}
.y233{bottom:613.334133pt;}
.y26c{bottom:613.334667pt;}
.y8{bottom:613.335200pt;}
.y1dc{bottom:613.336267pt;}
.y2a1{bottom:613.337333pt;}
.y113{bottom:613.337600pt;}
.y14a{bottom:613.338667pt;}
.y81{bottom:613.339200pt;}
.y32{bottom:613.341067pt;}
.y211{bottom:628.000000pt;}
.y232{bottom:628.000533pt;}
.y26b{bottom:628.001067pt;}
.y7{bottom:628.001600pt;}
.y1db{bottom:628.002667pt;}
.y2a0{bottom:628.003733pt;}
.y112{bottom:628.004000pt;}
.y149{bottom:628.005067pt;}
.y80{bottom:628.005600pt;}
.y31{bottom:628.007467pt;}
.yb8{bottom:642.666667pt;}
.y69{bottom:642.666800pt;}
.y231{bottom:642.666933pt;}
.y26a{bottom:642.667467pt;}
.y6{bottom:642.668000pt;}
.y1da{bottom:642.669067pt;}
.y29f{bottom:642.670133pt;}
.y111{bottom:642.670400pt;}
.y148{bottom:642.671467pt;}
.y7f{bottom:642.672000pt;}
.y30{bottom:642.673867pt;}
.y68{bottom:657.333200pt;}
.y230{bottom:657.333333pt;}
.y269{bottom:657.333867pt;}
.y5{bottom:657.334400pt;}
.y1d9{bottom:657.335467pt;}
.y29e{bottom:657.336533pt;}
.y110{bottom:657.336800pt;}
.y147{bottom:657.337867pt;}
.y7e{bottom:657.338400pt;}
.y22f{bottom:672.000000pt;}
.y268{bottom:672.000267pt;}
.y4{bottom:672.000800pt;}
.y1d8{bottom:672.001867pt;}
.y29d{bottom:672.002933pt;}
.y10f{bottom:672.003200pt;}
.y146{bottom:672.004267pt;}
.y7d{bottom:672.004800pt;}
.y2f{bottom:672.006667pt;}
.y1{bottom:686.666667pt;}
.y3{bottom:686.667200pt;}
.y1d7{bottom:686.668267pt;}
.y29c{bottom:686.669333pt;}
.y10e{bottom:686.669600pt;}
.y145{bottom:686.670667pt;}
.y7c{bottom:686.671200pt;}
.y2e{bottom:686.673067pt;}
.y267{bottom:701.333333pt;}
.y2{bottom:701.333600pt;}
.y1d6{bottom:701.334667pt;}
.y29b{bottom:701.335733pt;}
.y10d{bottom:701.336000pt;}
.y144{bottom:701.337067pt;}
.y7b{bottom:701.337600pt;}
.y2d{bottom:701.339467pt;}
.y67{bottom:716.000000pt;}
.y1d5{bottom:716.001067pt;}
.y29a{bottom:716.002133pt;}
.y10c{bottom:716.002400pt;}
.y143{bottom:716.003467pt;}
.y7a{bottom:716.004000pt;}
.y2c{bottom:716.005867pt;}
.y2bb{bottom:730.666667pt;}
.y1d4{bottom:730.667467pt;}
.y299{bottom:730.668533pt;}
.y10b{bottom:730.668800pt;}
.y142{bottom:730.669867pt;}
.y266{bottom:730.670133pt;}
.y79{bottom:730.670400pt;}
.y2ba{bottom:745.333333pt;}
.y1d3{bottom:745.333867pt;}
.y298{bottom:745.334933pt;}
.y10a{bottom:745.335200pt;}
.y141{bottom:745.336267pt;}
.y265{bottom:745.336533pt;}
.y78{bottom:745.336800pt;}
.y2b9{bottom:760.000000pt;}
.y1d2{bottom:760.000267pt;}
.y297{bottom:760.001333pt;}
.y109{bottom:760.001600pt;}
.y140{bottom:760.002667pt;}
.y264{bottom:760.002933pt;}
.y77{bottom:760.003200pt;}
.y66{bottom:774.666667pt;}
.y296{bottom:774.667733pt;}
.y108{bottom:774.668000pt;}
.y13f{bottom:774.669067pt;}
.y263{bottom:774.669333pt;}
.y76{bottom:774.669600pt;}
.y1d1{bottom:789.333333pt;}
.y295{bottom:789.334133pt;}
.y107{bottom:789.334400pt;}
.y13e{bottom:789.335467pt;}
.y262{bottom:789.335733pt;}
.y75{bottom:789.336000pt;}
.y2b8{bottom:804.000000pt;}
.y294{bottom:804.000533pt;}
.y106{bottom:804.000800pt;}
.y13d{bottom:804.001867pt;}
.y261{bottom:804.002133pt;}
.y74{bottom:804.002400pt;}
.y2b7{bottom:818.666667pt;}
.y293{bottom:818.666933pt;}
.y105{bottom:818.667200pt;}
.y13c{bottom:818.668267pt;}
.y260{bottom:818.668533pt;}
.y73{bottom:818.668800pt;}
.y65{bottom:833.333333pt;}
.y104{bottom:833.333600pt;}
.y13b{bottom:833.334667pt;}
.y25f{bottom:833.334933pt;}
.y72{bottom:833.335200pt;}
.y292{bottom:848.000000pt;}
.y13a{bottom:848.001067pt;}
.y25e{bottom:848.001333pt;}
.y71{bottom:848.001600pt;}
.y2b6{bottom:862.666667pt;}
.y139{bottom:862.667467pt;}
.y25d{bottom:862.667733pt;}
.y70{bottom:862.668000pt;}
.y2b5{bottom:877.333333pt;}
.y138{bottom:877.333867pt;}
.y25c{bottom:877.334133pt;}
.y6f{bottom:877.334400pt;}
.y64{bottom:892.000000pt;}
.y137{bottom:892.000267pt;}
.y25b{bottom:892.000533pt;}
.y6e{bottom:892.000800pt;}
.y2b4{bottom:906.666667pt;}
.y25a{bottom:906.666933pt;}
.y6d{bottom:906.667200pt;}
.y136{bottom:906.671600pt;}
.y2b3{bottom:921.333333pt;}
.y6c{bottom:921.333600pt;}
.y259{bottom:921.333733pt;}
.y135{bottom:921.338000pt;}
.y6b{bottom:936.000000pt;}
.y258{bottom:936.000133pt;}
.y134{bottom:936.004400pt;}
.ye2{bottom:1005.333333pt;}
.y6a{bottom:1041.240000pt;}
.y164{bottom:1041.413333pt;}
.yc0{bottom:1041.906667pt;}
.y2ce{bottom:1042.573333pt;}
.y291{bottom:1045.906667pt;}
.h9{height:20.000000pt;}
.h19{height:33.333333pt;}
.h12{height:38.937500pt;}
.hd{height:44.305312pt;}
.hb{height:44.460938pt;}
.h11{height:44.500000pt;}
.h18{height:45.076000pt;}
.h16{height:45.378933pt;}
.h1f{height:45.525333pt;}
.h4{height:46.250667pt;}
.he{height:48.370667pt;}
.h10{height:49.061250pt;}
.h2{height:50.304000pt;}
.h1c{height:51.175000pt;}
.hf{height:51.216000pt;}
.h7{height:52.032000pt;}
.h3{height:56.906667pt;}
.h8{height:66.750000pt;}
.h5{height:67.072000pt;}
.h17{height:70.974667pt;}
.h1e{height:71.543467pt;}
.ha{height:71.635200pt;}
.h14{height:86.936967pt;}
.h1d{height:111.175000pt;}
.h1a{height:133.968533pt;}
.h1{height:247.607467pt;}
.h13{height:248.000000pt;}
.h6{height:273.152000pt;}
.hc{height:308.000000pt;}
.h1b{height:322.666667pt;}
.h15{height:513.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:110.666667pt;}
.w6{width:210.666667pt;}
.w3{width:304.000000pt;}
.w5{width:432.000000pt;}
.w4{width:632.000000pt;}
.w1{width:815.880000pt;}
.w0{width:816.000000pt;}
.x45{left:-1.065333pt;}
.x0{left:0.000000pt;}
.x26{left:2.374667pt;}
.x6d{left:3.464000pt;}
.x50{left:4.420000pt;}
.x23{left:10.000000pt;}
.x4a{left:12.006667pt;}
.x47{left:17.206667pt;}
.x6c{left:19.760533pt;}
.x2c{left:23.425333pt;}
.x24{left:24.541333pt;}
.x6a{left:26.710667pt;}
.x7e{left:27.653333pt;}
.x1b{left:28.986667pt;}
.x6b{left:40.157333pt;}
.x4b{left:45.089333pt;}
.x73{left:49.136000pt;}
.x32{left:51.556000pt;}
.x3f{left:52.746667pt;}
.x7b{left:70.173333pt;}
.x40{left:71.112800pt;}
.x51{left:75.959200pt;}
.x1c{left:83.880000pt;}
.x33{left:89.777867pt;}
.x1e{left:92.439600pt;}
.x1d{left:95.880000pt;}
.x70{left:97.333333pt;}
.x9{left:99.880000pt;}
.xc{left:100.893013pt;}
.x10{left:102.011893pt;}
.x69{left:103.772000pt;}
.xb{left:104.853013pt;}
.x46{left:105.745333pt;}
.xd{left:106.812853pt;}
.x19{left:108.240000pt;}
.xf{left:109.252213pt;}
.x12{left:112.398613pt;}
.x1a{left:117.560400pt;}
.xe{left:120.239413pt;}
.x67{left:123.624000pt;}
.xa{left:127.573333pt;}
.x11{left:129.625333pt;}
.x68{left:131.154667pt;}
.x18{left:132.720000pt;}
.x14{left:136.518613pt;}
.x4e{left:137.630667pt;}
.x15{left:141.026667pt;}
.x13{left:150.305173pt;}
.x74{left:156.928533pt;}
.x4f{left:164.666533pt;}
.x34{left:166.221600pt;}
.x77{left:169.643333pt;}
.x76{left:171.211333pt;}
.x4d{left:181.484000pt;}
.x79{left:189.092133pt;}
.x2b{left:190.546667pt;}
.x75{left:194.802267pt;}
.x78{left:196.873333pt;}
.x35{left:204.443467pt;}
.x27{left:215.056000pt;}
.x7a{left:222.581067pt;}
.x48{left:229.206667pt;}
.x16{left:231.840000pt;}
.x72{left:236.362293pt;}
.x2e{left:237.462667pt;}
.x36{left:242.665333pt;}
.x52{left:243.936800pt;}
.x65{left:247.106133pt;}
.x4c{left:249.756000pt;}
.x66{left:250.949333pt;}
.x63{left:254.800000pt;}
.x64{left:255.703467pt;}
.x1{left:262.773333pt;}
.x3{left:263.879733pt;}
.x17{left:273.586667pt;}
.x4{left:275.880000pt;}
.x7c{left:278.286667pt;}
.x37{left:280.887200pt;}
.x71{left:284.000000pt;}
.x43{left:303.058667pt;}
.x2{left:306.213333pt;}
.x44{left:333.456000pt;}
.x2d{left:340.746667pt;}
.x49{left:341.796267pt;}
.x30{left:348.031557pt;}
.x2f{left:354.177333pt;}
.x6f{left:373.239600pt;}
.x5e{left:380.449333pt;}
.x38{left:382.220533pt;}
.x62{left:383.114933pt;}
.x5c{left:385.890400pt;}
.x5f{left:387.069067pt;}
.x60{left:388.256267pt;}
.x5b{left:392.106933pt;}
.x61{left:394.961333pt;}
.x5d{left:396.852533pt;}
.x1f{left:411.880000pt;}
.x80{left:417.944533pt;}
.x39{left:420.442400pt;}
.x20{left:423.880000pt;}
.x22{left:425.333333pt;}
.x82{left:426.546933pt;}
.x29{left:427.877867pt;}
.x7f{left:435.878400pt;}
.x2a{left:439.877867pt;}
.x53{left:450.270667pt;}
.x3a{left:458.664267pt;}
.x5a{left:467.181333pt;}
.x59{left:472.373333pt;}
.x57{left:473.732000pt;}
.x55{left:487.313600pt;}
.x3b{left:496.886133pt;}
.x56{left:499.358667pt;}
.x58{left:506.681333pt;}
.x5{left:509.880000pt;}
.x81{left:513.213333pt;}
.x6{left:518.439600pt;}
.x8{left:521.880000pt;}
.x7{left:533.880000pt;}
.x3c{left:535.108000pt;}
.x54{left:536.589333pt;}
.x41{left:547.880000pt;}
.x42{left:559.878800pt;}
.x31{left:565.712000pt;}
.x25{left:569.186667pt;}
.x3d{left:573.329867pt;}
.x6e{left:586.080000pt;}
.x3e{left:611.551733pt;}
.x21{left:701.239600pt;}
.x28{left:782.986667pt;}
.x7d{left:784.320000pt;}
}




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