
    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_c07bc0354c4a1a43959e5104.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6d10e9d31e70db71e1d07e47.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_3d0c0e5d52801f60865d5f46.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6b6ab1c6e4fcc2a9d064cc14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_00ec998bfdfb95e261deebf5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.817871;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_1c2adcb81f6506acd5efc06a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9de4043e8d1a88d69984ae15.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.625000;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_ce0a5642e9b1775310be1ad4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.056152;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);}
.v2{vertical-align:-21.978000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v5{vertical-align:42.000000px;}
.v1{vertical-align:180.000000px;}
.ls14{letter-spacing:-5.544000px;}
.ls15{letter-spacing:-3.300000px;}
.ls1d{letter-spacing:-2.310000px;}
.ls17{letter-spacing:-2.220000px;}
.ls9{letter-spacing:-1.776000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.002819px;}
.ls13{letter-spacing:0.009600px;}
.ls1e{letter-spacing:0.010200px;}
.ls12{letter-spacing:0.011400px;}
.ls5{letter-spacing:0.056380px;}
.ls11{letter-spacing:0.056980px;}
.lse{letter-spacing:0.132000px;}
.ls16{letter-spacing:0.396000px;}
.lsf{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.726000px;}
.ls19{letter-spacing:0.924000px;}
.ls7{letter-spacing:0.990000px;}
.lsd{letter-spacing:1.122000px;}
.ls6{letter-spacing:1.254000px;}
.lsb{letter-spacing:1.320000px;}
.ls3{letter-spacing:1.680000px;}
.ls1f{letter-spacing:2.706000px;}
.ls1{letter-spacing:3.360000px;}
.ls4{letter-spacing:12.000000px;}
.ls2{letter-spacing:129.000000px;}
.ls1a{letter-spacing:315.000000px;}
.ls18{letter-spacing:335.950800px;}
.ls1b{letter-spacing:345.000000px;}
.ls1c{letter-spacing:378.438480px;}
.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;}
}
.ws4f{word-spacing:-350.950800px;}
.wse{word-spacing:-84.464550px;}
.wsa{word-spacing:-48.000000px;}
.ws4{word-spacing:-27.360000px;}
.ws2{word-spacing:-16.500000px;}
.wsb{word-spacing:-15.000000px;}
.ws9{word-spacing:-12.000000px;}
.ws80{word-spacing:-10.500000px;}
.ws25{word-spacing:-9.619500px;}
.ws76{word-spacing:-8.745000px;}
.ws0{word-spacing:-7.590000px;}
.ws99{word-spacing:-7.008000px;}
.ws2b{word-spacing:-6.468000px;}
.ws11{word-spacing:-3.630000px;}
.ws7e{word-spacing:-3.366000px;}
.ws6{word-spacing:-3.360000px;}
.ws6e{word-spacing:-3.300000px;}
.ws9f{word-spacing:-2.772000px;}
.ws9e{word-spacing:-2.706000px;}
.ws28{word-spacing:-2.178000px;}
.ws19{word-spacing:-2.112000px;}
.ws5{word-spacing:-1.680000px;}
.ws9b{word-spacing:-1.650000px;}
.wsd{word-spacing:-1.632000px;}
.ws1c{word-spacing:-1.320000px;}
.ws10{word-spacing:-1.254000px;}
.ws1f{word-spacing:-1.188000px;}
.ws20{word-spacing:-1.122000px;}
.ws8{word-spacing:-1.080000px;}
.ws12{word-spacing:-0.990000px;}
.ws5b{word-spacing:-0.924000px;}
.ws18{word-spacing:-0.726000px;}
.ws14{word-spacing:-0.660000px;}
.ws3a{word-spacing:-0.600000px;}
.ws1d{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.462000px;}
.ws48{word-spacing:-0.396000px;}
.ws22{word-spacing:-0.132000px;}
.ws1{word-spacing:0.000000px;}
.wsa3{word-spacing:0.066000px;}
.ws15{word-spacing:0.132000px;}
.ws9d{word-spacing:0.264000px;}
.wsa2{word-spacing:0.858000px;}
.ws24{word-spacing:0.990000px;}
.ws13{word-spacing:1.776000px;}
.ws6f{word-spacing:2.220000px;}
.wsa1{word-spacing:3.432000px;}
.ws9c{word-spacing:3.696000px;}
.ws1b{word-spacing:4.752000px;}
.ws9a{word-spacing:5.016000px;}
.ws29{word-spacing:5.544000px;}
.ws16{word-spacing:6.204000px;}
.ws17{word-spacing:7.722000px;}
.ws21{word-spacing:8.250000px;}
.ws26{word-spacing:10.692000px;}
.ws1e{word-spacing:11.022000px;}
.ws27{word-spacing:11.286000px;}
.wsf{word-spacing:11.616000px;}
.wsc{word-spacing:12.000000px;}
.wsa0{word-spacing:18.414000px;}
.ws2a{word-spacing:24.684000px;}
.ws1a{word-spacing:27.258000px;}
.ws67{word-spacing:27.600000px;}
.ws7f{word-spacing:29.814000px;}
.ws65{word-spacing:30.000000px;}
.ws60{word-spacing:33.660000px;}
.ws63{word-spacing:34.980000px;}
.ws36{word-spacing:36.000000px;}
.ws34{word-spacing:36.669000px;}
.ws3{word-spacing:38.874000px;}
.ws96{word-spacing:40.759800px;}
.ws7c{word-spacing:42.930000px;}
.ws61{word-spacing:43.548000px;}
.ws37{word-spacing:45.750000px;}
.ws2f{word-spacing:54.000000px;}
.ws32{word-spacing:55.029600px;}
.ws2d{word-spacing:60.969000px;}
.ws5e{word-spacing:63.660000px;}
.ws5c{word-spacing:67.029600px;}
.ws94{word-spacing:70.759800px;}
.ws62{word-spacing:73.680000px;}
.ws2c{word-spacing:79.029600px;}
.ws95{word-spacing:85.759800px;}
.ws81{word-spacing:87.000000px;}
.ws5d{word-spacing:96.969600px;}
.ws64{word-spacing:97.680000px;}
.ws68{word-spacing:101.040000px;}
.ws30{word-spacing:101.119800px;}
.ws7b{word-spacing:102.500400px;}
.ws83{word-spacing:103.014000px;}
.ws85{word-spacing:103.792800px;}
.ws31{word-spacing:111.007800px;}
.ws35{word-spacing:115.830000px;}
.ws39{word-spacing:119.190000px;}
.ws7{word-spacing:129.000000px;}
.ws2e{word-spacing:131.119800px;}
.ws4e{word-spacing:138.000000px;}
.ws75{word-spacing:144.000000px;}
.ws49{word-spacing:156.418800px;}
.ws72{word-spacing:159.418800px;}
.ws73{word-spacing:162.000000px;}
.ws4b{word-spacing:167.999400px;}
.ws4a{word-spacing:168.000000px;}
.ws4c{word-spacing:170.226600px;}
.ws74{word-spacing:174.000000px;}
.ws33{word-spacing:181.680000px;}
.ws7d{word-spacing:188.700000px;}
.ws66{word-spacing:191.040000px;}
.ws38{word-spacing:209.190000px;}
.ws51{word-spacing:225.970800px;}
.ws52{word-spacing:240.970800px;}
.ws54{word-spacing:245.950800px;}
.ws58{word-spacing:245.951400px;}
.ws77{word-spacing:264.000000px;}
.ws5f{word-spacing:276.000000px;}
.ws98{word-spacing:285.600000px;}
.ws87{word-spacing:317.893200px;}
.ws89{word-spacing:317.893800px;}
.ws8f{word-spacing:323.440200px;}
.ws8e{word-spacing:332.893200px;}
.ws93{word-spacing:332.893800px;}
.ws4d{word-spacing:333.660000px;}
.ws8c{word-spacing:334.006800px;}
.ws97{word-spacing:337.674000px;}
.ws91{word-spacing:340.810800px;}
.ws8b{word-spacing:347.893800px;}
.ws92{word-spacing:367.476000px;}
.ws59{word-spacing:376.716000px;}
.ws50{word-spacing:406.716000px;}
.ws86{word-spacing:414.097800px;}
.ws69{word-spacing:437.526600px;}
.ws90{word-spacing:444.136800px;}
.ws8d{word-spacing:467.466000px;}
.ws3c{word-spacing:470.688000px;}
.ws88{word-spacing:472.461000px;}
.ws40{word-spacing:475.698000px;}
.ws42{word-spacing:478.920600px;}
.ws43{word-spacing:479.863200px;}
.ws45{word-spacing:482.353200px;}
.ws8a{word-spacing:482.466000px;}
.ws3e{word-spacing:485.688000px;}
.ws5a{word-spacing:606.921600px;}
.ws3b{word-spacing:687.730200px;}
.ws55{word-spacing:742.666800px;}
.ws56{word-spacing:752.554800px;}
.ws53{word-spacing:772.666800px;}
.ws47{word-spacing:837.342000px;}
.ws3d{word-spacing:837.622800px;}
.ws41{word-spacing:842.632800px;}
.ws6c{word-spacing:845.870400px;}
.ws44{word-spacing:850.132800px;}
.ws3f{word-spacing:852.622800px;}
.ws6d{word-spacing:855.758400px;}
.ws6b{word-spacing:875.589600px;}
.ws6a{word-spacing:875.870400px;}
.ws46{word-spacing:897.402000px;}
.ws71{word-spacing:943.324200px;}
.ws7a{word-spacing:959.160000px;}
.ws70{word-spacing:1033.384200px;}
.ws84{word-spacing:1093.584600px;}
.ws82{word-spacing:1099.347600px;}
.ws57{word-spacing:1108.617600px;}
.ws79{word-spacing:1268.160000px;}
.ws78{word-spacing:1278.048000px;}
._43{margin-left:-335.950200px;}
._13{margin-left:-16.632000px;}
._19{margin-left:-14.516400px;}
._3{margin-left:-12.668400px;}
._1c{margin-left:-11.439000px;}
._0{margin-left:-10.212000px;}
._18{margin-left:-9.001800px;}
._1{margin-left:-7.590000px;}
._c{margin-left:-6.362400px;}
._4{margin-left:-5.078400px;}
._6{margin-left:-3.761400px;}
._5{margin-left:-2.359800px;}
._7{margin-left:-1.359600px;}
._1b{width:1.042800px;}
._d{width:2.079000px;}
._8{width:3.333000px;}
._12{width:5.181000px;}
._9{width:6.560400px;}
._2{width:7.590000px;}
._10{width:8.910000px;}
._14{width:10.104600px;}
._a{width:11.906400px;}
._16{width:13.510200px;}
._15{width:15.483600px;}
._22{width:17.582400px;}
._1e{width:18.625200px;}
._e{width:20.222400px;}
._11{width:21.383400px;}
._f{width:22.756800px;}
._b{width:23.997600px;}
._1f{width:25.140000px;}
._21{width:26.822400px;}
._20{width:28.650600px;}
._23{width:29.983800px;}
._24{width:31.574400px;}
._25{width:32.729400px;}
._72{width:33.983400px;}
._76{width:35.514600px;}
._1d{width:40.684200px;}
._73{width:46.866600px;}
._74{width:49.909200px;}
._3c{width:51.000000px;}
._50{width:54.159600px;}
._6d{width:60.060000px;}
._75{width:61.155600px;}
._17{width:69.000000px;}
._63{width:80.803200px;}
._58{width:81.897600px;}
._1a{width:84.000000px;}
._62{width:87.664800px;}
._60{width:96.300000px;}
._55{width:99.000000px;}
._4b{width:105.000000px;}
._29{width:111.000000px;}
._30{width:113.226600px;}
._5e{width:127.993200px;}
._52{width:129.000000px;}
._32{width:133.500000px;}
._27{width:137.835000px;}
._2f{width:141.000000px;}
._2e{width:143.226600px;}
._35{width:146.737800px;}
._64{width:161.921400px;}
._71{width:169.140000px;}
._3b{width:171.000000px;}
._3e{width:173.226600px;}
._3d{width:177.000000px;}
._31{width:179.323800px;}
._51{width:180.660000px;}
._5c{width:183.000000px;}
._5b{width:189.000000px;}
._3f{width:201.000000px;}
._2a{width:202.370400px;}
._28{width:204.430800px;}
._40{width:207.133200px;}
._61{width:219.213600px;}
._59{width:226.055400px;}
._42{width:231.000000px;}
._5f{width:238.576800px;}
._56{width:243.040200px;}
._26{width:246.493800px;}
._39{width:252.462000px;}
._48{width:255.970800px;}
._34{width:258.000000px;}
._4e{width:261.000000px;}
._53{width:264.600000px;}
._67{width:273.899400px;}
._54{width:276.000000px;}
._2c{width:279.000000px;}
._4c{width:285.687000px;}
._33{width:291.076200px;}
._6a{width:299.945400px;}
._4d{width:305.313000px;}
._2d{width:309.900000px;}
._2b{width:316.629600px;}
._6f{width:325.800000px;}
._3a{width:327.000000px;}
._38{width:332.037600px;}
._6b{width:339.105000px;}
._4f{width:345.960000px;}
._41{width:357.000000px;}
._5a{width:358.444200px;}
._69{width:385.218000px;}
._65{width:400.500000px;}
._66{width:405.746400px;}
._68{width:459.136800px;}
._49{width:621.921600px;}
._37{width:624.421800px;}
._44{width:626.901600px;}
._36{width:749.700000px;}
._70{width:756.514800px;}
._57{width:774.600000px;}
._5d{width:959.160000px;}
._46{width:987.872400px;}
._47{width:992.853000px;}
._45{width:1153.617600px;}
._6c{width:1275.840000px;}
._4a{width:1358.803800px;}
._6e{width:1620.782400px;}
.fc2{color:rgb(90,87,88);}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs8{font-size:38.478000px;}
.fsb{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:138.000000px;}
.fs7{font-size:337.858200px;}
.y0{bottom:0.000000px;}
.y23{bottom:66.708300px;}
.yfd{bottom:73.632000px;}
.yfe{bottom:79.332000px;}
.y1ab{bottom:80.962350px;}
.ydc{bottom:92.832000px;}
.y142{bottom:94.597800px;}
.y1d3{bottom:95.609550px;}
.yfc{bottom:96.132000px;}
.ya{bottom:98.149950px;}
.y13f{bottom:98.532000px;}
.ycd{bottom:99.735750px;}
.y367{bottom:101.815950px;}
.yab{bottom:101.832000px;}
.y2cb{bottom:102.553050px;}
.y16f{bottom:102.807000px;}
.y2dd{bottom:103.143000px;}
.y1aa{bottom:103.462350px;}
.y32d{bottom:103.507800px;}
.y1bf{bottom:104.934000px;}
.y1ed{bottom:106.151850px;}
.y163{bottom:107.518500px;}
.y186{bottom:110.518500px;}
.y29c{bottom:111.504600px;}
.y281{bottom:111.663750px;}
.y86{bottom:115.018500px;}
.yda{bottom:115.332000px;}
.y121{bottom:117.097800px;}
.y1d2{bottom:118.109550px;}
.y13e{bottom:121.032000px;}
.ycc{bottom:122.235750px;}
.y366{bottom:124.315950px;}
.yaa{bottom:124.332000px;}
.y16e{bottom:125.307000px;}
.y2dc{bottom:125.643000px;}
.y1a9{bottom:125.962350px;}
.y32c{bottom:126.007800px;}
.y1be{bottom:127.434000px;}
.y162{bottom:130.018500px;}
.y1ec{bottom:130.052250px;}
.y5b{bottom:133.018500px;}
.y280{bottom:134.064150px;}
.yfb{bottom:134.832000px;}
.y85{bottom:137.518500px;}
.yd9{bottom:137.832000px;}
.y120{bottom:139.597800px;}
.y2c7{bottom:139.986750px;}
.y29b{bottom:140.146800px;}
.y1d1{bottom:140.609550px;}
.y13d{bottom:143.532000px;}
.ycb{bottom:144.735750px;}
.y365{bottom:146.815950px;}
.ya9{bottom:146.832000px;}
.y16d{bottom:147.807000px;}
.y2db{bottom:148.143000px;}
.y1a8{bottom:148.462350px;}
.y1bd{bottom:149.934000px;}
.y161{bottom:152.518500px;}
.y1eb{bottom:153.952650px;}
.y185{bottom:155.518500px;}
.y27f{bottom:156.464550px;}
.y5a{bottom:157.018500px;}
.yfa{bottom:157.332000px;}
.y23a{bottom:158.265150px;}
.y2ab{bottom:158.918250px;}
.y84{bottom:160.018500px;}
.yd8{bottom:160.332000px;}
.y11f{bottom:162.097800px;}
.y2c6{bottom:162.486750px;}
.y1d0{bottom:163.109550px;}
.y13c{bottom:166.032000px;}
.yca{bottom:167.235600px;}
.y22{bottom:167.478750px;}
.y29a{bottom:168.547050px;}
.y364{bottom:169.315950px;}
.ya8{bottom:169.332000px;}
.y2da{bottom:170.643000px;}
.y1a7{bottom:170.962350px;}
.y32a{bottom:171.570300px;}
.y1bc{bottom:172.434000px;}
.y160{bottom:175.018500px;}
.y16c{bottom:176.307000px;}
.y1ea{bottom:177.853050px;}
.y27e{bottom:178.864950px;}
.yf9{bottom:179.832000px;}
.y239{bottom:180.765150px;}
.y59{bottom:181.018500px;}
.y2aa{bottom:181.418250px;}
.y83{bottom:182.518500px;}
.yd7{bottom:182.832000px;}
.y11e{bottom:184.597800px;}
.y2c5{bottom:184.986750px;}
.y184{bottom:185.518500px;}
.y1cf{bottom:185.609550px;}
.y13b{bottom:188.532000px;}
.yc9{bottom:189.735600px;}
.y21{bottom:189.978750px;}
.y363{bottom:191.815950px;}
.ya7{bottom:191.832000px;}
.y329{bottom:192.570300px;}
.y2d9{bottom:193.143000px;}
.y1a6{bottom:193.462350px;}
.y1bb{bottom:194.934000px;}
.y299{bottom:196.947450px;}
.y15f{bottom:197.518500px;}
.y27d{bottom:201.265350px;}
.y1e9{bottom:201.753450px;}
.yf8{bottom:202.332000px;}
.y238{bottom:203.265150px;}
.y2a9{bottom:203.918250px;}
.y58{bottom:205.018500px;}
.yd6{bottom:205.332000px;}
.y11d{bottom:207.097800px;}
.y1ce{bottom:208.109550px;}
.y13a{bottom:211.032000px;}
.yc8{bottom:212.235600px;}
.y20{bottom:212.478750px;}
.y328{bottom:213.570300px;}
.y32b{bottom:213.585000px;}
.y362{bottom:214.315950px;}
.ya6{bottom:214.332000px;}
.y2d8{bottom:215.643000px;}
.y1a5{bottom:215.962350px;}
.y1ba{bottom:217.434000px;}
.y15e{bottom:220.018500px;}
.y27c{bottom:223.665750px;}
.yf7{bottom:224.832000px;}
.y298{bottom:225.347850px;}
.y1e8{bottom:225.653850px;}
.y237{bottom:225.765150px;}
.y2a8{bottom:226.418250px;}
.y82{bottom:227.518500px;}
.yd5{bottom:227.832000px;}
.y57{bottom:229.018500px;}
.y2c4{bottom:231.486750px;}
.y183{bottom:232.018500px;}
.y16a{bottom:232.419300px;}
.y139{bottom:233.532000px;}
.yc7{bottom:234.735600px;}
.y1f{bottom:234.978750px;}
.y326{bottom:235.985250px;}
.y361{bottom:236.815950px;}
.ya5{bottom:236.832000px;}
.y2d7{bottom:238.143000px;}
.y15d{bottom:242.518500px;}
.y27b{bottom:246.066150px;}
.y325{bottom:246.485250px;}
.yf6{bottom:247.332000px;}
.y236{bottom:248.265150px;}
.y2a7{bottom:248.918250px;}
.y1e7{bottom:249.554100px;}
.y81{bottom:250.018500px;}
.yd4{bottom:250.332000px;}
.y11c{bottom:252.097800px;}
.y56{bottom:253.018500px;}
.y168{bottom:253.419300px;}
.y1cd{bottom:253.672050px;}
.y297{bottom:253.748250px;}
.y182{bottom:254.518500px;}
.y327{bottom:256.985250px;}
.y2c3{bottom:257.128950px;}
.y342{bottom:257.235600px;}
.y187{bottom:257.832000px;}
.y360{bottom:259.315950px;}
.ya4{bottom:259.332000px;}
.y2d6{bottom:260.643000px;}
.y1a4{bottom:261.712350px;}
.y1b9{bottom:263.184000px;}
.y138{bottom:263.532000px;}
.y15c{bottom:265.018500px;}
.y27a{bottom:268.466550px;}
.y235{bottom:270.765150px;}
.y2a6{bottom:271.418250px;}
.y80{bottom:272.518500px;}
.yd3{bottom:272.832000px;}
.y1e6{bottom:273.454500px;}
.y55{bottom:274.018500px;}
.y169{bottom:274.419300px;}
.y11b{bottom:274.597800px;}
.y1cc{bottom:276.072450px;}
.y181{bottom:277.018500px;}
.yf5{bottom:277.332000px;}
.yc6{bottom:279.735600px;}
.ydb{bottom:280.332000px;}
.y35f{bottom:281.815950px;}
.ya3{bottom:281.832000px;}
.y296{bottom:282.148650px;}
.y2c2{bottom:282.287550px;}
.y2d5{bottom:283.143000px;}
.y324{bottom:285.706500px;}
.y1a3{bottom:285.854400px;}
.y137{bottom:286.032000px;}
.y1b8{bottom:287.326050px;}
.y15b{bottom:287.518500px;}
.y279{bottom:290.866950px;}
.y16b{bottom:291.531600px;}
.y234{bottom:293.265150px;}
.y2a5{bottom:293.918250px;}
.y7f{bottom:295.018500px;}
.yd2{bottom:295.332000px;}
.y1cb{bottom:297.072450px;}
.y11a{bottom:297.097800px;}
.y1e5{bottom:297.354900px;}
.y54{bottom:298.018500px;}
.y180{bottom:299.518500px;}
.yc5{bottom:302.235600px;}
.y35e{bottom:304.315950px;}
.ya2{bottom:304.332000px;}
.y2d4{bottom:305.643000px;}
.y2c1{bottom:307.446300px;}
.y1a2{bottom:309.754800px;}
.y15a{bottom:310.018500px;}
.y295{bottom:310.549050px;}
.y323{bottom:311.206500px;}
.y1b7{bottom:311.226450px;}
.y2f3{bottom:312.473400px;}
.y278{bottom:313.267200px;}
.y2a4{bottom:316.418250px;}
.y7e{bottom:317.518500px;}
.yd1{bottom:317.832000px;}
.y1ca{bottom:319.231200px;}
.y119{bottom:319.597800px;}
.y1e4{bottom:321.255300px;}
.y53{bottom:322.018500px;}
.yc4{bottom:324.735600px;}
.y216{bottom:326.407200px;}
.y35d{bottom:326.815950px;}
.ya1{bottom:326.832000px;}
.y167{bottom:327.732000px;}
.y2d3{bottom:328.143000px;}
.y136{bottom:329.532000px;}
.y159{bottom:332.518500px;}
.y2c0{bottom:332.846700px;}
.y1a1{bottom:333.655200px;}
.y322{bottom:333.706500px;}
.y7d{bottom:334.018500px;}
.y2f2{bottom:334.973400px;}
.y1b6{bottom:335.126850px;}
.y1e{bottom:335.328750px;}
.y277{bottom:335.667600px;}
.y2a3{bottom:338.918250px;}
.y294{bottom:338.949450px;}
.y3c{bottom:340.018500px;}
.yd0{bottom:340.332000px;}
.y233{bottom:341.265150px;}
.y118{bottom:342.097800px;}
.y17f{bottom:344.518500px;}
.y1e3{bottom:345.155700px;}
.y52{bottom:346.018500px;}
.yc3{bottom:347.235600px;}
.y1c9{bottom:347.952450px;}
.y215{bottom:348.907200px;}
.y35c{bottom:349.315950px;}
.ya0{bottom:349.332000px;}
.y166{bottom:350.232000px;}
.y2d2{bottom:350.643000px;}
.y135{bottom:352.032000px;}
.y7c{bottom:355.018500px;}
.y321{bottom:356.206500px;}
.y2bf{bottom:357.067800px;}
.y2f1{bottom:357.473400px;}
.y1a0{bottom:357.555600px;}
.y276{bottom:357.826350px;}
.y1d{bottom:357.828750px;}
.y1b5{bottom:359.027250px;}
.y2a2{bottom:361.418250px;}
.y1fd{bottom:362.446800px;}
.y3b{bottom:362.518500px;}
.ycf{bottom:362.832000px;}
.y117{bottom:364.597800px;}
.y51{bottom:367.018500px;}
.y290{bottom:367.108200px;}
.y1e2{bottom:369.056100px;}
.y232{bottom:369.665550px;}
.yc2{bottom:369.735600px;}
.y214{bottom:371.407200px;}
.y35b{bottom:371.815950px;}
.y9f{bottom:371.832000px;}
.y2d1{bottom:373.143000px;}
.y134{bottom:374.532000px;}
.y7b{bottom:376.018500px;}
.y158{bottom:377.518500px;}
.y320{bottom:378.706500px;}
.y2f0{bottom:379.973400px;}
.y1c{bottom:380.328750px;}
.y19f{bottom:381.456000px;}
.y1b2{bottom:382.686000px;}
.y21f{bottom:383.067300px;}
.y2a1{bottom:383.918250px;}
.y265{bottom:384.849750px;}
.y1fc{bottom:384.946800px;}
.y3a{bottom:385.018500px;}
.ye1{bottom:385.332000px;}
.y252{bottom:385.667400px;}
.y275{bottom:386.789250px;}
.y116{bottom:387.097800px;}
.y293{bottom:388.108200px;}
.y17e{bottom:389.518500px;}
.y50{bottom:391.018500px;}
.yc1{bottom:392.235600px;}
.yce{bottom:392.832000px;}
.y1e1{bottom:392.956500px;}
.y213{bottom:393.907200px;}
.y35a{bottom:394.315950px;}
.y9e{bottom:394.332000px;}
.y165{bottom:395.232000px;}
.y2d0{bottom:395.643000px;}
.y1c8{bottom:395.952450px;}
.y33f{bottom:396.033300px;}
.y7a{bottom:397.018500px;}
.y133{bottom:397.032000px;}
.y231{bottom:398.307600px;}
.y157{bottom:400.018500px;}
.y31f{bottom:401.206500px;}
.y2be{bottom:402.067800px;}
.y2ef{bottom:402.473400px;}
.y1b{bottom:402.828750px;}
.y1b3{bottom:403.686000px;}
.y19e{bottom:405.356400px;}
.y21e{bottom:405.567300px;}
.y1b4{bottom:406.344600px;}
.y2a0{bottom:406.418250px;}
.y1fb{bottom:407.446800px;}
.y39{bottom:407.518500px;}
.y274{bottom:407.789250px;}
.ye0{bottom:407.832000px;}
.y115{bottom:409.597800px;}
.y17d{bottom:412.018500px;}
.yc0{bottom:414.735600px;}
.y4f{bottom:415.018500px;}
.y291{bottom:416.266800px;}
.y359{bottom:416.815950px;}
.y9d{bottom:416.832000px;}
.y1e0{bottom:416.856900px;}
.y164{bottom:417.732000px;}
.y79{bottom:418.018500px;}
.y2cf{bottom:418.143000px;}
.y1c7{bottom:418.452450px;}
.y33e{bottom:418.533300px;}
.y132{bottom:419.532000px;}
.y156{bottom:422.518500px;}
.y31e{bottom:423.706500px;}
.y2bd{bottom:424.567800px;}
.y2ee{bottom:424.973400px;}
.y1a{bottom:425.328750px;}
.y230{bottom:426.708000px;}
.y21d{bottom:428.067300px;}
.y29f{bottom:428.918250px;}
.y19d{bottom:429.256800px;}
.y1fa{bottom:429.946800px;}
.y38{bottom:430.018500px;}
.y1b1{bottom:430.245000px;}
.ydf{bottom:430.332000px;}
.y264{bottom:431.949750px;}
.y114{bottom:432.097800px;}
.y251{bottom:433.667400px;}
.y17c{bottom:434.518500px;}
.ybf{bottom:437.235600px;}
.y292{bottom:437.266800px;}
.y212{bottom:438.907200px;}
.y4e{bottom:439.018500px;}
.y358{bottom:439.315950px;}
.y9c{bottom:439.332000px;}
.y2ce{bottom:440.643000px;}
.y1df{bottom:440.757300px;}
.y1c6{bottom:440.952450px;}
.y33d{bottom:441.033300px;}
.y131{bottom:442.032000px;}
.y155{bottom:445.018500px;}
.y31d{bottom:446.206500px;}
.y2bc{bottom:447.067800px;}
.y2ed{bottom:447.473400px;}
.y19{bottom:447.828750px;}
.y21c{bottom:450.567300px;}
.y29e{bottom:451.418250px;}
.y1f9{bottom:452.446800px;}
.y37{bottom:452.518500px;}
.yf2{bottom:452.832000px;}
.y19c{bottom:453.157200px;}
.y9{bottom:454.407450px;}
.y263{bottom:454.449750px;}
.y113{bottom:454.597800px;}
.y273{bottom:454.889250px;}
.y22f{bottom:455.108400px;}
.y250{bottom:456.167400px;}
.y309{bottom:457.062450px;}
.y1b0{bottom:459.716250px;}
.ybe{bottom:459.735600px;}
.y4d{bottom:460.018500px;}
.yde{bottom:460.332000px;}
.y211{bottom:461.307600px;}
.y357{bottom:461.815950px;}
.y9b{bottom:461.832000px;}
.y2cd{bottom:463.143000px;}
.y1c5{bottom:463.452450px;}
.y17b{bottom:464.518500px;}
.y130{bottom:464.532000px;}
.y1de{bottom:464.657700px;}
.y28f{bottom:465.425550px;}
.y154{bottom:467.518500px;}
.y31c{bottom:468.706500px;}
.y2bb{bottom:469.567800px;}
.y18{bottom:470.328750px;}
.y21b{bottom:473.067300px;}
.y2ca{bottom:474.730650px;}
.y1f8{bottom:474.946800px;}
.y36{bottom:475.018500px;}
.yf1{bottom:475.332000px;}
.y262{bottom:476.949750px;}
.y19b{bottom:477.057600px;}
.y112{bottom:477.097800px;}
.y272{bottom:477.389250px;}
.y24f{bottom:478.667400px;}
.y308{bottom:479.562450px;}
.y78{bottom:481.018500px;}
.ybd{bottom:482.235600px;}
.ydd{bottom:482.832000px;}
.y8{bottom:482.907450px;}
.y22e{bottom:483.508800px;}
.y210{bottom:483.708000px;}
.y4c{bottom:484.018500px;}
.y356{bottom:484.315950px;}
.y9a{bottom:484.332000px;}
.y1c4{bottom:485.952450px;}
.y33b{bottom:486.783300px;}
.y12f{bottom:487.032000px;}
.y1dd{bottom:488.558100px;}
.y153{bottom:490.018500px;}
.y2ba{bottom:492.067800px;}
.y17{bottom:492.828750px;}
.y2ec{bottom:493.205100px;}
.y21a{bottom:495.567300px;}
.y28e{bottom:497.146800px;}
.y2c9{bottom:497.230650px;}
.y1f7{bottom:497.446800px;}
.y35{bottom:497.518500px;}
.yf0{bottom:497.832000px;}
.y261{bottom:499.449750px;}
.y111{bottom:499.597800px;}
.y271{bottom:499.889250px;}
.y19a{bottom:500.958000px;}
.y24e{bottom:501.167400px;}
.y77{bottom:502.018500px;}
.y307{bottom:502.062450px;}
.y29d{bottom:502.418250px;}
.ybc{bottom:504.735600px;}
.y4b{bottom:505.018500px;}
.yff{bottom:505.332000px;}
.y20f{bottom:506.108400px;}
.y355{bottom:506.815950px;}
.y1af{bottom:506.816250px;}
.y99{bottom:506.832000px;}
.y33a{bottom:507.783300px;}
.y33c{bottom:507.798000px;}
.y1c3{bottom:508.452450px;}
.y12e{bottom:509.532000px;}
.y17a{bottom:511.018500px;}
.y7{bottom:511.407450px;}
.y22d{bottom:511.909200px;}
.y1dc{bottom:512.458500px;}
.y2eb{bottom:512.485500px;}
.y152{bottom:512.518500px;}
.y2cc{bottom:514.143000px;}
.y31b{bottom:514.269000px;}
.y2b9{bottom:514.567800px;}
.y219{bottom:518.067300px;}
.y1f6{bottom:519.946800px;}
.y34{bottom:520.018500px;}
.yef{bottom:520.332000px;}
.y260{bottom:521.949750px;}
.y110{bottom:522.097800px;}
.y270{bottom:522.389250px;}
.y76{bottom:523.018500px;}
.y24d{bottom:523.667400px;}
.y199{bottom:524.858400px;}
.ybb{bottom:527.235600px;}
.y20e{bottom:528.508800px;}
.y4a{bottom:529.018500px;}
.y354{bottom:529.315950px;}
.y1ae{bottom:529.316250px;}
.y98{bottom:529.332000px;}
.y339{bottom:530.198250px;}
.y1c2{bottom:530.952450px;}
.y2ea{bottom:531.765750px;}
.y12d{bottom:532.032000px;}
.y179{bottom:533.518500px;}
.y151{bottom:535.018500px;}
.y1db{bottom:536.358900px;}
.y31a{bottom:536.427750px;}
.y2b8{bottom:537.067800px;}
.y6{bottom:539.907450px;}
.y22c{bottom:540.309600px;}
.y218{bottom:540.567300px;}
.y2c8{bottom:540.730650px;}
.y1f5{bottom:542.446800px;}
.y33{bottom:542.518500px;}
.yee{bottom:542.832000px;}
.y75{bottom:544.018500px;}
.y25f{bottom:544.449750px;}
.y10f{bottom:544.597800px;}
.y26f{bottom:544.889250px;}
.y28d{bottom:545.146800px;}
.y24c{bottom:546.167400px;}
.y306{bottom:547.866600px;}
.y198{bottom:548.758800px;}
.y341{bottom:549.735600px;}
.y20d{bottom:550.909200px;}
.y2e9{bottom:551.046000px;}
.y353{bottom:551.815950px;}
.y1ad{bottom:551.816250px;}
.y97{bottom:551.832000px;}
.y49{bottom:553.018500px;}
.y1c1{bottom:553.452450px;}
.y12c{bottom:554.532000px;}
.y178{bottom:556.018500px;}
.y319{bottom:557.427750px;}
.y150{bottom:557.518500px;}
.y338{bottom:559.107000px;}
.y16{bottom:559.428750px;}
.y1da{bottom:560.259300px;}
.y69{bottom:561.872100px;}
.y1f4{bottom:564.946800px;}
.y32{bottom:565.018500px;}
.yed{bottom:565.332000px;}
.y25e{bottom:566.949750px;}
.y10e{bottom:567.097800px;}
.y26e{bottom:567.389250px;}
.y28c{bottom:567.646800px;}
.y5{bottom:568.407450px;}
.y24b{bottom:568.667400px;}
.y22b{bottom:568.710000px;}
.y305{bottom:570.267000px;}
.y2e8{bottom:570.326250px;}
.yba{bottom:572.235600px;}
.y197{bottom:572.659200px;}
.y302{bottom:572.826150px;}
.y20c{bottom:573.309600px;}
.y352{bottom:574.315950px;}
.y96{bottom:574.332000px;}
.y48{bottom:577.018500px;}
.y12b{bottom:577.032000px;}
.y177{bottom:578.518500px;}
.y318{bottom:579.828150px;}
.y14f{bottom:580.018500px;}
.y15{bottom:581.928750px;}
.y2b7{bottom:582.067800px;}
.y1d9{bottom:584.159700px;}
.y68{bottom:584.372100px;}
.y74{bottom:586.018500px;}
.y31{bottom:587.518500px;}
.yec{bottom:587.832000px;}
.y25d{bottom:589.449750px;}
.y10d{bottom:589.597800px;}
.y2e7{bottom:589.606500px;}
.y26d{bottom:589.889250px;}
.y28b{bottom:590.146800px;}
.y217{bottom:591.567300px;}
.y304{bottom:592.667400px;}
.y301{bottom:593.826150px;}
.yb9{bottom:594.735600px;}
.y20b{bottom:595.710000px;}
.y196{bottom:596.559600px;}
.y351{bottom:596.815950px;}
.y95{bottom:596.832000px;}
.y22a{bottom:597.110250px;}
.y12a{bottom:599.532000px;}
.y317{bottom:600.828150px;}
.y47{bottom:601.018500px;}
.y14e{bottom:602.518500px;}
.y2b6{bottom:604.468200px;}
.y67{bottom:606.872100px;}
.y73{bottom:607.018500px;}
.y337{bottom:607.107000px;}
.y1d8{bottom:608.060100px;}
.y2e6{bottom:608.886750px;}
.y30{bottom:610.018500px;}
.yeb{bottom:610.332000px;}
.y1f3{bottom:610.509300px;}
.y10c{bottom:612.097800px;}
.y24a{bottom:612.167400px;}
.y26c{bottom:612.389250px;}
.y28a{bottom:612.646800px;}
.y303{bottom:615.067800px;}
.yb8{bottom:617.235600px;}
.y20a{bottom:618.110250px;}
.y350{bottom:619.315950px;}
.y94{bottom:619.332000px;}
.y195{bottom:620.460000px;}
.y129{bottom:622.032000px;}
.y316{bottom:623.228550px;}
.y176{bottom:623.518500px;}
.y46{bottom:625.018500px;}
.y229{bottom:625.510650px;}
.y72{bottom:628.018500px;}
.y2e5{bottom:628.167000px;}
.y2b5{bottom:628.610250px;}
.y66{bottom:629.372100px;}
.y336{bottom:629.607000px;}
.y249{bottom:631.809600px;}
.y1d7{bottom:631.960350px;}
.y2f{bottom:632.518500px;}
.yf4{bottom:632.832000px;}
.y1f2{bottom:632.909700px;}
.y25c{bottom:634.449750px;}
.y10b{bottom:634.597800px;}
.y26b{bottom:634.889250px;}
.y289{bottom:635.146800px;}
.y300{bottom:637.468200px;}
.yb7{bottom:639.735600px;}
.y209{bottom:640.510650px;}
.y34f{bottom:641.815950px;}
.y93{bottom:641.832000px;}
.y315{bottom:644.228550px;}
.y194{bottom:644.360250px;}
.y128{bottom:644.532000px;}
.y175{bottom:646.018500px;}
.y2e4{bottom:647.447400px;}
.y14d{bottom:647.518500px;}
.y14{bottom:648.528750px;}
.y45{bottom:649.018500px;}
.y248{bottom:651.210000px;}
.y65{bottom:651.872100px;}
.y335{bottom:652.107000px;}
.y228{bottom:653.911050px;}
.y2b4{bottom:654.010650px;}
.y2e{bottom:655.018500px;}
.y1f1{bottom:655.310100px;}
.yea{bottom:655.332000px;}
.y1d6{bottom:655.619100px;}
.y25b{bottom:657.091800px;}
.y10a{bottom:657.097800px;}
.y26a{bottom:657.389250px;}
.y288{bottom:657.646800px;}
.y2ff{bottom:659.868600px;}
.yb6{bottom:662.235600px;}
.y2fc{bottom:662.427750px;}
.y208{bottom:662.911050px;}
.y34e{bottom:664.315950px;}
.y92{bottom:664.332000px;}
.y2e3{bottom:666.558450px;}
.y314{bottom:666.628950px;}
.y127{bottom:667.032000px;}
.y193{bottom:668.260650px;}
.y174{bottom:668.518500px;}
.y44{bottom:670.018500px;}
.y247{bottom:670.610250px;}
.y13{bottom:671.028750px;}
.y64{bottom:674.372100px;}
.y2d{bottom:677.518500px;}
.y1f0{bottom:677.710350px;}
.ye9{bottom:677.832000px;}
.y2b3{bottom:679.411050px;}
.y25a{bottom:679.492200px;}
.y141{bottom:679.597800px;}
.y269{bottom:679.889250px;}
.y2e2{bottom:681.558450px;}
.y2fe{bottom:682.269000px;}
.y227{bottom:682.311450px;}
.y2fb{bottom:683.427750px;}
.yb5{bottom:684.735600px;}
.y207{bottom:685.311450px;}
.y1d5{bottom:685.332000px;}
.y34d{bottom:686.815950px;}
.y91{bottom:686.832000px;}
.y313{bottom:687.628950px;}
.y126{bottom:689.532000px;}
.y246{bottom:690.010650px;}
.y71{bottom:691.018500px;}
.y192{bottom:692.161050px;}
.y14c{bottom:692.518500px;}
.y12{bottom:693.528750px;}
.y43{bottom:694.018500px;}
.y2e1{bottom:696.558450px;}
.y63{bottom:696.872100px;}
.y2c{bottom:700.018500px;}
.y1ef{bottom:700.110750px;}
.ye8{bottom:700.332000px;}
.y287{bottom:700.509300px;}
.y259{bottom:701.892600px;}
.y109{bottom:702.097800px;}
.y2fd{bottom:704.669400px;}
.y2b2{bottom:704.811450px;}
.y1d4{bottom:706.332000px;}
.yb4{bottom:707.235600px;}
.y206{bottom:707.711850px;}
.y34c{bottom:709.315950px;}
.y90{bottom:709.332000px;}
.y245{bottom:709.411050px;}
.y312{bottom:710.029200px;}
.y226{bottom:710.711850px;}
.y2e0{bottom:711.558450px;}
.y70{bottom:712.018500px;}
.y125{bottom:712.032000px;}
.y173{bottom:713.518500px;}
.y14b{bottom:715.018500px;}
.y334{bottom:715.407000px;}
.y191{bottom:716.061450px;}
.y42{bottom:718.018500px;}
.y2b{bottom:722.518500px;}
.ye7{bottom:722.832000px;}
.y286{bottom:722.909700px;}
.y258{bottom:724.293000px;}
.y108{bottom:724.597800px;}
.y268{bottom:725.451750px;}
.y2df{bottom:726.558450px;}
.y2fa{bottom:727.069800px;}
.y244{bottom:728.811450px;}
.y1ee{bottom:728.832000px;}
.yb3{bottom:729.735600px;}
.y205{bottom:730.112250px;}
.y2b1{bottom:730.211850px;}
.y145{bottom:730.332000px;}
.y311{bottom:731.029200px;}
.y34b{bottom:731.815950px;}
.y8f{bottom:731.832000px;}
.y6f{bottom:733.018500px;}
.y124{bottom:734.532000px;}
.y172{bottom:736.018500px;}
.y14a{bottom:737.518500px;}
.y11{bottom:738.528750px;}
.y225{bottom:739.112250px;}
.y190{bottom:739.961850px;}
.y41{bottom:742.018500px;}
.y2a{bottom:745.018500px;}
.y285{bottom:745.310100px;}
.ye6{bottom:745.332000px;}
.y62{bottom:746.372100px;}
.y255{bottom:746.451750px;}
.y107{bottom:747.097800px;}
.y266{bottom:747.852150px;}
.y243{bottom:748.211850px;}
.y2f9{bottom:749.470200px;}
.y2de{bottom:752.232000px;}
.yb2{bottom:752.235600px;}
.y204{bottom:752.512650px;}
.y144{bottom:752.832000px;}
.y310{bottom:753.429600px;}
.y6e{bottom:754.018500px;}
.y34a{bottom:754.315950px;}
.y8e{bottom:754.332000px;}
.y2b0{bottom:755.612250px;}
.y123{bottom:757.032000px;}
.y333{bottom:757.804800px;}
.y170{bottom:758.518500px;}
.y149{bottom:760.018500px;}
.y10{bottom:761.028750px;}
.y18f{bottom:763.862250px;}
.y40{bottom:766.018500px;}
.y256{bottom:767.451750px;}
.y224{bottom:767.512650px;}
.y29{bottom:767.518500px;}
.y242{bottom:767.612250px;}
.y284{bottom:767.710350px;}
.ye5{bottom:767.832000px;}
.y257{bottom:768.610350px;}
.y267{bottom:768.852150px;}
.y106{bottom:769.597800px;}
.y330{bottom:771.519300px;}
.y2f8{bottom:771.870600px;}
.yb1{bottom:774.735750px;}
.y203{bottom:774.913050px;}
.y6d{bottom:775.018500px;}
.y143{bottom:775.332000px;}
.y30f{bottom:775.830000px;}
.y349{bottom:776.815950px;}
.y8d{bottom:776.832000px;}
.y332{bottom:778.804800px;}
.y122{bottom:779.532000px;}
.y2af{bottom:781.012650px;}
.y171{bottom:781.018500px;}
.y147{bottom:782.518500px;}
.yf{bottom:783.528750px;}
.y241{bottom:787.012650px;}
.y18e{bottom:787.762650px;}
.y28{bottom:790.018500px;}
.y283{bottom:790.110750px;}
.ye4{bottom:790.332000px;}
.y254{bottom:791.010750px;}
.y4{bottom:791.907450px;}
.y105{bottom:792.097800px;}
.y32e{bottom:792.519300px;}
.y2f7{bottom:794.271000px;}
.y2f5{bottom:795.429600px;}
.y223{bottom:795.913050px;}
.y6c{bottom:796.018500px;}
.y30e{bottom:796.830000px;}
.yb0{bottom:797.235750px;}
.y1ff{bottom:797.313450px;}
.yf3{bottom:797.832000px;}
.y5c{bottom:799.149600px;}
.y348{bottom:799.315950px;}
.y8c{bottom:799.332000px;}
.y148{bottom:805.018500px;}
.ye{bottom:806.028750px;}
.y240{bottom:806.413050px;}
.y3f{bottom:808.018500px;}
.y18d{bottom:811.663050px;}
.y27{bottom:812.518500px;}
.ye3{bottom:812.832000px;}
.y32f{bottom:813.519300px;}
.y104{bottom:814.597800px;}
.y2f6{bottom:816.671400px;}
.y6b{bottom:817.018500px;}
.y202{bottom:818.313450px;}
.y282{bottom:818.832000px;}
.y30d{bottom:819.230400px;}
.y253{bottom:819.732000px;}
.y340{bottom:819.735750px;}
.y331{bottom:820.804800px;}
.y347{bottom:821.815950px;}
.y8b{bottom:821.832000px;}
.y3{bottom:821.907450px;}
.y222{bottom:824.071800px;}
.y23f{bottom:825.813450px;}
.yd{bottom:828.528750px;}
.y2ae{bottom:831.571800px;}
.y3e{bottom:833.518500px;}
.y26{bottom:835.018500px;}
.y18a{bottom:835.321800px;}
.y103{bottom:837.097800px;}
.y61{bottom:837.872100px;}
.y6a{bottom:838.018500px;}
.y2f4{bottom:839.071800px;}
.y30c{bottom:840.230400px;}
.y201{bottom:840.472200px;}
.y1c0{bottom:841.332000px;}
.yaf{bottom:842.235750px;}
.ye2{bottom:842.832000px;}
.y346{bottom:844.315950px;}
.y8a{bottom:844.332000px;}
.y23c{bottom:844.972200px;}
.y221{bottom:852.230400px;}
.y18b{bottom:856.321800px;}
.y2ad{bottom:856.730400px;}
.y25{bottom:857.518500px;}
.y18c{bottom:858.980400px;}
.y3d{bottom:859.018500px;}
.y102{bottom:859.597800px;}
.y2{bottom:860.907450px;}
.y200{bottom:861.472200px;}
.y30b{bottom:862.630800px;}
.yae{bottom:864.735750px;}
.y23e{bottom:865.730400px;}
.y23d{bottom:865.972200px;}
.y345{bottom:866.815950px;}
.y89{bottom:866.832000px;}
.y60{bottom:867.872100px;}
.yc{bottom:873.528750px;}
.y146{bottom:877.018500px;}
.y220{bottom:880.389150px;}
.y2ac{bottom:881.889150px;}
.y140{bottom:882.097800px;}
.y189{bottom:882.880800px;}
.y1fe{bottom:883.630800px;}
.y23b{bottom:885.130800px;}
.yad{bottom:887.235750px;}
.y344{bottom:889.315950px;}
.y88{bottom:889.332000px;}
.y101{bottom:889.597800px;}
.y5f{bottom:890.372100px;}
.y30a{bottom:891.352050px;}
.yb{bottom:896.028750px;}
.y1{bottom:899.907450px;}
.y24{bottom:907.018500px;}
.yac{bottom:909.735750px;}
.y343{bottom:911.815950px;}
.y87{bottom:911.832000px;}
.y100{bottom:912.097800px;}
.y188{bottom:912.352050px;}
.y1ac{bottom:912.605850px;}
.y5e{bottom:912.872100px;}
.y5d{bottom:949.109250px;}
.h17{height:28.464844px;}
.h8{height:33.351562px;}
.h1a{height:35.334919px;}
.h19{height:35.335519px;}
.h18{height:36.011719px;}
.hb{height:40.664062px;}
.hc{height:41.156250px;}
.h1d{height:41.689453px;}
.h13{height:44.284951px;}
.h7{height:44.730469px;}
.he{height:45.826172px;}
.h10{height:45.858398px;}
.h16{height:49.972617px;}
.h1c{height:50.419922px;}
.h15{height:50.478112px;}
.h14{height:50.478712px;}
.ha{height:51.445312px;}
.h4{height:52.863281px;}
.h12{height:54.017578px;}
.h11{height:55.461914px;}
.h6{height:56.589844px;}
.h9{height:65.062500px;}
.h5{height:72.023438px;}
.h1b{height:82.664062px;}
.h3{height:93.527344px;}
.hf{height:236.589844px;}
.hd{height:289.687011px;}
.h2{height:1020.472500px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:680.250000px;}
.w2{width:680.314500px;}
.w4{width:680.400000px;}
.w0{width:686.880000px;}
.w1{width:687.000000px;}
.x0{left:0.000000px;}
.xb{left:70.200000px;}
.x34{left:76.762500px;}
.x5b{left:79.080750px;}
.x3b{left:80.395800px;}
.x6b{left:82.233600px;}
.x1a{left:83.842950px;}
.x21{left:85.286400px;}
.xf{left:86.400000px;}
.x2{left:87.721800px;}
.x72{left:88.947600px;}
.x49{left:91.462500px;}
.x1{left:92.657700px;}
.x44{left:95.245500px;}
.x1d{left:97.159800px;}
.x43{left:98.995500px;}
.x3e{left:100.852650px;}
.x1c{left:102.689100px;}
.x48{left:104.055600px;}
.x3{left:106.850100px;}
.x23{left:108.234000px;}
.x4{left:111.043950px;}
.x20{left:112.423950px;}
.x2d{left:115.148850px;}
.x70{left:116.378550px;}
.x35{left:118.248300px;}
.x54{left:120.497550px;}
.xe{left:122.400000px;}
.x2f{left:124.211250px;}
.x2c{left:128.126550px;}
.x1b{left:135.437250px;}
.x2b{left:141.334950px;}
.x42{left:143.294700px;}
.x1e{left:144.428100px;}
.x24{left:146.737800px;}
.x75{left:152.863950px;}
.x17{left:155.485050px;}
.x12{left:158.400000px;}
.x1f{left:162.878550px;}
.x22{left:165.008100px;}
.x61{left:167.220900px;}
.x5c{left:168.712500px;}
.x27{left:173.952300px;}
.x37{left:175.333650px;}
.x3c{left:178.791000px;}
.x6a{left:186.262350px;}
.x26{left:192.267300px;}
.x57{left:194.482650px;}
.x41{left:197.848050px;}
.x59{left:198.931200px;}
.x28{left:201.852300px;}
.x7f{left:203.527350px;}
.x5f{left:208.756800px;}
.x67{left:210.918450px;}
.x31{left:213.546150px;}
.x83{left:214.569900px;}
.x58{left:217.047600px;}
.x62{left:218.123850px;}
.x64{left:221.410200px;}
.x14{left:224.297700px;}
.x45{left:226.240950px;}
.x71{left:230.440500px;}
.x30{left:231.662700px;}
.x2a{left:232.722300px;}
.x19{left:235.183200px;}
.x69{left:240.995250px;}
.x4b{left:242.873850px;}
.x55{left:246.516900px;}
.x16{left:248.100300px;}
.x7{left:249.973800px;}
.x46{left:252.733200px;}
.x5d{left:254.212500px;}
.x38{left:255.481200px;}
.x68{left:256.952700px;}
.x82{left:258.679350px;}
.x73{left:260.344200px;}
.x4a{left:261.623850px;}
.x6{left:264.395850px;}
.x2e{left:267.274800px;}
.x3d{left:268.289850px;}
.x80{left:270.276300px;}
.x8{left:274.480650px;}
.x5{left:276.813450px;}
.x11{left:279.286800px;}
.x9{left:280.304850px;}
.x36{left:283.273500px;}
.x56{left:284.636550px;}
.x5a{left:286.717200px;}
.x60{left:288.137700px;}
.xd{left:289.950900px;}
.x33{left:291.667650px;}
.x4e{left:308.962500px;}
.xa{left:312.735750px;}
.x63{left:314.336400px;}
.x47{left:324.631950px;}
.x5e{left:327.712500px;}
.x3a{left:329.868900px;}
.x32{left:331.872600px;}
.x76{left:335.161050px;}
.x4f{left:338.962500px;}
.x10{left:341.884050px;}
.x15{left:344.075400px;}
.x18{left:345.300000px;}
.xc{left:346.302000px;}
.x29{left:357.305100px;}
.x7e{left:359.249700px;}
.x7d{left:363.194700px;}
.x39{left:366.795000px;}
.x7c{left:375.375000px;}
.x6d{left:379.837500px;}
.x6c{left:383.741700px;}
.x77{left:396.023850px;}
.x4c{left:408.964350px;}
.x78{left:412.693800px;}
.x66{left:418.569900px;}
.x65{left:423.441300px;}
.x6e{left:429.613350px;}
.x25{left:434.860950px;}
.x6f{left:440.010750px;}
.x51{left:442.756200px;}
.x50{left:443.953650px;}
.x7b{left:451.060950px;}
.x4d{left:469.865250px;}
.x7a{left:495.794850px;}
.x79{left:500.573850px;}
.x3f{left:507.026550px;}
.x74{left:514.537500px;}
.x40{left:523.766100px;}
.x52{left:527.962500px;}
.x81{left:530.250000px;}
.x53{left:557.962500px;}
.x13{left:832.774350px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v5{vertical-align:37.333333pt;}
.v1{vertical-align:160.000000pt;}
.ls14{letter-spacing:-4.928000pt;}
.ls15{letter-spacing:-2.933333pt;}
.ls1d{letter-spacing:-2.053333pt;}
.ls17{letter-spacing:-1.973333pt;}
.ls9{letter-spacing:-1.578667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.002506pt;}
.ls13{letter-spacing:0.008533pt;}
.ls1e{letter-spacing:0.009067pt;}
.ls12{letter-spacing:0.010133pt;}
.ls5{letter-spacing:0.050115pt;}
.ls11{letter-spacing:0.050649pt;}
.lse{letter-spacing:0.117333pt;}
.ls16{letter-spacing:0.352000pt;}
.lsf{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.645333pt;}
.ls19{letter-spacing:0.821333pt;}
.ls7{letter-spacing:0.880000pt;}
.lsd{letter-spacing:0.997333pt;}
.ls6{letter-spacing:1.114667pt;}
.lsb{letter-spacing:1.173333pt;}
.ls3{letter-spacing:1.493333pt;}
.ls1f{letter-spacing:2.405333pt;}
.ls1{letter-spacing:2.986667pt;}
.ls4{letter-spacing:10.666667pt;}
.ls2{letter-spacing:114.666667pt;}
.ls1a{letter-spacing:280.000000pt;}
.ls18{letter-spacing:298.622933pt;}
.ls1b{letter-spacing:306.666667pt;}
.ls1c{letter-spacing:336.389760pt;}
.ws4f{word-spacing:-311.956267pt;}
.wse{word-spacing:-75.079600pt;}
.wsa{word-spacing:-42.666667pt;}
.ws4{word-spacing:-24.320000pt;}
.ws2{word-spacing:-14.666667pt;}
.wsb{word-spacing:-13.333333pt;}
.ws9{word-spacing:-10.666667pt;}
.ws80{word-spacing:-9.333333pt;}
.ws25{word-spacing:-8.550667pt;}
.ws76{word-spacing:-7.773333pt;}
.ws0{word-spacing:-6.746667pt;}
.ws99{word-spacing:-6.229333pt;}
.ws2b{word-spacing:-5.749333pt;}
.ws11{word-spacing:-3.226667pt;}
.ws7e{word-spacing:-2.992000pt;}
.ws6{word-spacing:-2.986667pt;}
.ws6e{word-spacing:-2.933333pt;}
.ws9f{word-spacing:-2.464000pt;}
.ws9e{word-spacing:-2.405333pt;}
.ws28{word-spacing:-1.936000pt;}
.ws19{word-spacing:-1.877333pt;}
.ws5{word-spacing:-1.493333pt;}
.ws9b{word-spacing:-1.466667pt;}
.wsd{word-spacing:-1.450667pt;}
.ws1c{word-spacing:-1.173333pt;}
.ws10{word-spacing:-1.114667pt;}
.ws1f{word-spacing:-1.056000pt;}
.ws20{word-spacing:-0.997333pt;}
.ws8{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.880000pt;}
.ws5b{word-spacing:-0.821333pt;}
.ws18{word-spacing:-0.645333pt;}
.ws14{word-spacing:-0.586667pt;}
.ws3a{word-spacing:-0.533333pt;}
.ws1d{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.410667pt;}
.ws48{word-spacing:-0.352000pt;}
.ws22{word-spacing:-0.117333pt;}
.ws1{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.058667pt;}
.ws15{word-spacing:0.117333pt;}
.ws9d{word-spacing:0.234667pt;}
.wsa2{word-spacing:0.762667pt;}
.ws24{word-spacing:0.880000pt;}
.ws13{word-spacing:1.578667pt;}
.ws6f{word-spacing:1.973333pt;}
.wsa1{word-spacing:3.050667pt;}
.ws9c{word-spacing:3.285333pt;}
.ws1b{word-spacing:4.224000pt;}
.ws9a{word-spacing:4.458667pt;}
.ws29{word-spacing:4.928000pt;}
.ws16{word-spacing:5.514667pt;}
.ws17{word-spacing:6.864000pt;}
.ws21{word-spacing:7.333333pt;}
.ws26{word-spacing:9.504000pt;}
.ws1e{word-spacing:9.797333pt;}
.ws27{word-spacing:10.032000pt;}
.wsf{word-spacing:10.325333pt;}
.wsc{word-spacing:10.666667pt;}
.wsa0{word-spacing:16.368000pt;}
.ws2a{word-spacing:21.941333pt;}
.ws1a{word-spacing:24.229333pt;}
.ws67{word-spacing:24.533333pt;}
.ws7f{word-spacing:26.501333pt;}
.ws65{word-spacing:26.666667pt;}
.ws60{word-spacing:29.920000pt;}
.ws63{word-spacing:31.093333pt;}
.ws36{word-spacing:32.000000pt;}
.ws34{word-spacing:32.594667pt;}
.ws3{word-spacing:34.554667pt;}
.ws96{word-spacing:36.230933pt;}
.ws7c{word-spacing:38.160000pt;}
.ws61{word-spacing:38.709333pt;}
.ws37{word-spacing:40.666667pt;}
.ws2f{word-spacing:48.000000pt;}
.ws32{word-spacing:48.915200pt;}
.ws2d{word-spacing:54.194667pt;}
.ws5e{word-spacing:56.586667pt;}
.ws5c{word-spacing:59.581867pt;}
.ws94{word-spacing:62.897600pt;}
.ws62{word-spacing:65.493333pt;}
.ws2c{word-spacing:70.248533pt;}
.ws95{word-spacing:76.230933pt;}
.ws81{word-spacing:77.333333pt;}
.ws5d{word-spacing:86.195200pt;}
.ws64{word-spacing:86.826667pt;}
.ws68{word-spacing:89.813333pt;}
.ws30{word-spacing:89.884267pt;}
.ws7b{word-spacing:91.111467pt;}
.ws83{word-spacing:91.568000pt;}
.ws85{word-spacing:92.260267pt;}
.ws31{word-spacing:98.673600pt;}
.ws35{word-spacing:102.960000pt;}
.ws39{word-spacing:105.946667pt;}
.ws7{word-spacing:114.666667pt;}
.ws2e{word-spacing:116.550933pt;}
.ws4e{word-spacing:122.666667pt;}
.ws75{word-spacing:128.000000pt;}
.ws49{word-spacing:139.038933pt;}
.ws72{word-spacing:141.705600pt;}
.ws73{word-spacing:144.000000pt;}
.ws4b{word-spacing:149.332800pt;}
.ws4a{word-spacing:149.333333pt;}
.ws4c{word-spacing:151.312533pt;}
.ws74{word-spacing:154.666667pt;}
.ws33{word-spacing:161.493333pt;}
.ws7d{word-spacing:167.733333pt;}
.ws66{word-spacing:169.813333pt;}
.ws38{word-spacing:185.946667pt;}
.ws51{word-spacing:200.862933pt;}
.ws52{word-spacing:214.196267pt;}
.ws54{word-spacing:218.622933pt;}
.ws58{word-spacing:218.623467pt;}
.ws77{word-spacing:234.666667pt;}
.ws5f{word-spacing:245.333333pt;}
.ws98{word-spacing:253.866667pt;}
.ws87{word-spacing:282.571733pt;}
.ws89{word-spacing:282.572267pt;}
.ws8f{word-spacing:287.502400pt;}
.ws8e{word-spacing:295.905067pt;}
.ws93{word-spacing:295.905600pt;}
.ws4d{word-spacing:296.586667pt;}
.ws8c{word-spacing:296.894933pt;}
.ws97{word-spacing:300.154667pt;}
.ws91{word-spacing:302.942933pt;}
.ws8b{word-spacing:309.238933pt;}
.ws92{word-spacing:326.645333pt;}
.ws59{word-spacing:334.858667pt;}
.ws50{word-spacing:361.525333pt;}
.ws86{word-spacing:368.086933pt;}
.ws69{word-spacing:388.912533pt;}
.ws90{word-spacing:394.788267pt;}
.ws8d{word-spacing:415.525333pt;}
.ws3c{word-spacing:418.389333pt;}
.ws88{word-spacing:419.965333pt;}
.ws40{word-spacing:422.842667pt;}
.ws42{word-spacing:425.707200pt;}
.ws43{word-spacing:426.545067pt;}
.ws45{word-spacing:428.758400pt;}
.ws8a{word-spacing:428.858667pt;}
.ws3e{word-spacing:431.722667pt;}
.ws5a{word-spacing:539.485867pt;}
.ws3b{word-spacing:611.315733pt;}
.ws55{word-spacing:660.148267pt;}
.ws56{word-spacing:668.937600pt;}
.ws53{word-spacing:686.814933pt;}
.ws47{word-spacing:744.304000pt;}
.ws3d{word-spacing:744.553600pt;}
.ws41{word-spacing:749.006933pt;}
.ws6c{word-spacing:751.884800pt;}
.ws44{word-spacing:755.673600pt;}
.ws3f{word-spacing:757.886933pt;}
.ws6d{word-spacing:760.674133pt;}
.ws6b{word-spacing:778.301867pt;}
.ws6a{word-spacing:778.551467pt;}
.ws46{word-spacing:797.690667pt;}
.ws71{word-spacing:838.510400pt;}
.ws7a{word-spacing:852.586667pt;}
.ws70{word-spacing:918.563733pt;}
.ws84{word-spacing:972.075200pt;}
.ws82{word-spacing:977.197867pt;}
.ws57{word-spacing:985.437867pt;}
.ws79{word-spacing:1127.253333pt;}
.ws78{word-spacing:1136.042667pt;}
._43{margin-left:-298.622400pt;}
._13{margin-left:-14.784000pt;}
._19{margin-left:-12.903467pt;}
._3{margin-left:-11.260800pt;}
._1c{margin-left:-10.168000pt;}
._0{margin-left:-9.077333pt;}
._18{margin-left:-8.001600pt;}
._1{margin-left:-6.746667pt;}
._c{margin-left:-5.655467pt;}
._4{margin-left:-4.514133pt;}
._6{margin-left:-3.343467pt;}
._5{margin-left:-2.097600pt;}
._7{margin-left:-1.208533pt;}
._1b{width:0.926933pt;}
._d{width:1.848000pt;}
._8{width:2.962667pt;}
._12{width:4.605333pt;}
._9{width:5.831467pt;}
._2{width:6.746667pt;}
._10{width:7.920000pt;}
._14{width:8.981867pt;}
._a{width:10.583467pt;}
._16{width:12.009067pt;}
._15{width:13.763200pt;}
._22{width:15.628800pt;}
._1e{width:16.555733pt;}
._e{width:17.975467pt;}
._11{width:19.007467pt;}
._f{width:20.228267pt;}
._b{width:21.331200pt;}
._1f{width:22.346667pt;}
._21{width:23.842133pt;}
._20{width:25.467200pt;}
._23{width:26.652267pt;}
._24{width:28.066133pt;}
._25{width:29.092800pt;}
._72{width:30.207467pt;}
._76{width:31.568533pt;}
._1d{width:36.163733pt;}
._73{width:41.659200pt;}
._74{width:44.363733pt;}
._3c{width:45.333333pt;}
._50{width:48.141867pt;}
._6d{width:53.386667pt;}
._75{width:54.360533pt;}
._17{width:61.333333pt;}
._63{width:71.825067pt;}
._58{width:72.797867pt;}
._1a{width:74.666667pt;}
._62{width:77.924267pt;}
._60{width:85.600000pt;}
._55{width:88.000000pt;}
._4b{width:93.333333pt;}
._29{width:98.666667pt;}
._30{width:100.645867pt;}
._5e{width:113.771733pt;}
._52{width:114.666667pt;}
._32{width:118.666667pt;}
._27{width:122.520000pt;}
._2f{width:125.333333pt;}
._2e{width:127.312533pt;}
._35{width:130.433600pt;}
._64{width:143.930133pt;}
._71{width:150.346667pt;}
._3b{width:152.000000pt;}
._3e{width:153.979200pt;}
._3d{width:157.333333pt;}
._31{width:159.398933pt;}
._51{width:160.586667pt;}
._5c{width:162.666667pt;}
._5b{width:168.000000pt;}
._3f{width:178.666667pt;}
._2a{width:179.884800pt;}
._28{width:181.716267pt;}
._40{width:184.118400pt;}
._61{width:194.856533pt;}
._59{width:200.938133pt;}
._42{width:205.333333pt;}
._5f{width:212.068267pt;}
._56{width:216.035733pt;}
._26{width:219.105600pt;}
._39{width:224.410667pt;}
._48{width:227.529600pt;}
._34{width:229.333333pt;}
._4e{width:232.000000pt;}
._53{width:235.200000pt;}
._67{width:243.466133pt;}
._54{width:245.333333pt;}
._2c{width:248.000000pt;}
._4c{width:253.944000pt;}
._33{width:258.734400pt;}
._6a{width:266.618133pt;}
._4d{width:271.389333pt;}
._2d{width:275.466667pt;}
._2b{width:281.448533pt;}
._6f{width:289.600000pt;}
._3a{width:290.666667pt;}
._38{width:295.144533pt;}
._6b{width:301.426667pt;}
._4f{width:307.520000pt;}
._41{width:317.333333pt;}
._5a{width:318.617067pt;}
._69{width:342.416000pt;}
._65{width:356.000000pt;}
._66{width:360.663467pt;}
._68{width:408.121600pt;}
._49{width:552.819200pt;}
._37{width:555.041600pt;}
._44{width:557.245867pt;}
._36{width:666.400000pt;}
._70{width:672.457600pt;}
._57{width:688.533333pt;}
._5d{width:852.586667pt;}
._46{width:878.108800pt;}
._47{width:882.536000pt;}
._45{width:1025.437867pt;}
._6c{width:1134.080000pt;}
._4a{width:1207.825600pt;}
._6e{width:1440.695467pt;}
.fs9{font-size:31.093333pt;}
.fs8{font-size:34.202667pt;}
.fsb{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:122.666667pt;}
.fs7{font-size:300.318400pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:59.296267pt;}
.yfd{bottom:65.450667pt;}
.yfe{bottom:70.517333pt;}
.y1ab{bottom:71.966533pt;}
.ydc{bottom:82.517333pt;}
.y142{bottom:84.086933pt;}
.y1d3{bottom:84.986267pt;}
.yfc{bottom:85.450667pt;}
.ya{bottom:87.244400pt;}
.y13f{bottom:87.584000pt;}
.ycd{bottom:88.654000pt;}
.y367{bottom:90.503067pt;}
.yab{bottom:90.517333pt;}
.y2cb{bottom:91.158267pt;}
.y16f{bottom:91.384000pt;}
.y2dd{bottom:91.682667pt;}
.y1aa{bottom:91.966533pt;}
.y32d{bottom:92.006933pt;}
.y1bf{bottom:93.274667pt;}
.y1ed{bottom:94.357200pt;}
.y163{bottom:95.572000pt;}
.y186{bottom:98.238667pt;}
.y29c{bottom:99.115200pt;}
.y281{bottom:99.256667pt;}
.y86{bottom:102.238667pt;}
.yda{bottom:102.517333pt;}
.y121{bottom:104.086933pt;}
.y1d2{bottom:104.986267pt;}
.y13e{bottom:107.584000pt;}
.ycc{bottom:108.654000pt;}
.y366{bottom:110.503067pt;}
.yaa{bottom:110.517333pt;}
.y16e{bottom:111.384000pt;}
.y2dc{bottom:111.682667pt;}
.y1a9{bottom:111.966533pt;}
.y32c{bottom:112.006933pt;}
.y1be{bottom:113.274667pt;}
.y162{bottom:115.572000pt;}
.y1ec{bottom:115.602000pt;}
.y5b{bottom:118.238667pt;}
.y280{bottom:119.168133pt;}
.yfb{bottom:119.850667pt;}
.y85{bottom:122.238667pt;}
.yd9{bottom:122.517333pt;}
.y120{bottom:124.086933pt;}
.y2c7{bottom:124.432667pt;}
.y29b{bottom:124.574933pt;}
.y1d1{bottom:124.986267pt;}
.y13d{bottom:127.584000pt;}
.ycb{bottom:128.654000pt;}
.y365{bottom:130.503067pt;}
.ya9{bottom:130.517333pt;}
.y16d{bottom:131.384000pt;}
.y2db{bottom:131.682667pt;}
.y1a8{bottom:131.966533pt;}
.y1bd{bottom:133.274667pt;}
.y161{bottom:135.572000pt;}
.y1eb{bottom:136.846800pt;}
.y185{bottom:138.238667pt;}
.y27f{bottom:139.079600pt;}
.y5a{bottom:139.572000pt;}
.yfa{bottom:139.850667pt;}
.y23a{bottom:140.680133pt;}
.y2ab{bottom:141.260667pt;}
.y84{bottom:142.238667pt;}
.yd8{bottom:142.517333pt;}
.y11f{bottom:144.086933pt;}
.y2c6{bottom:144.432667pt;}
.y1d0{bottom:144.986267pt;}
.y13c{bottom:147.584000pt;}
.yca{bottom:148.653867pt;}
.y22{bottom:148.870000pt;}
.y29a{bottom:149.819600pt;}
.y364{bottom:150.503067pt;}
.ya8{bottom:150.517333pt;}
.y2da{bottom:151.682667pt;}
.y1a7{bottom:151.966533pt;}
.y32a{bottom:152.506933pt;}
.y1bc{bottom:153.274667pt;}
.y160{bottom:155.572000pt;}
.y16c{bottom:156.717333pt;}
.y1ea{bottom:158.091600pt;}
.y27e{bottom:158.991067pt;}
.yf9{bottom:159.850667pt;}
.y239{bottom:160.680133pt;}
.y59{bottom:160.905333pt;}
.y2aa{bottom:161.260667pt;}
.y83{bottom:162.238667pt;}
.yd7{bottom:162.517333pt;}
.y11e{bottom:164.086933pt;}
.y2c5{bottom:164.432667pt;}
.y184{bottom:164.905333pt;}
.y1cf{bottom:164.986267pt;}
.y13b{bottom:167.584000pt;}
.yc9{bottom:168.653867pt;}
.y21{bottom:168.870000pt;}
.y363{bottom:170.503067pt;}
.ya7{bottom:170.517333pt;}
.y329{bottom:171.173600pt;}
.y2d9{bottom:171.682667pt;}
.y1a6{bottom:171.966533pt;}
.y1bb{bottom:173.274667pt;}
.y299{bottom:175.064400pt;}
.y15f{bottom:175.572000pt;}
.y27d{bottom:178.902533pt;}
.y1e9{bottom:179.336400pt;}
.yf8{bottom:179.850667pt;}
.y238{bottom:180.680133pt;}
.y2a9{bottom:181.260667pt;}
.y58{bottom:182.238667pt;}
.yd6{bottom:182.517333pt;}
.y11d{bottom:184.086933pt;}
.y1ce{bottom:184.986267pt;}
.y13a{bottom:187.584000pt;}
.yc8{bottom:188.653867pt;}
.y20{bottom:188.870000pt;}
.y328{bottom:189.840267pt;}
.y32b{bottom:189.853333pt;}
.y362{bottom:190.503067pt;}
.ya6{bottom:190.517333pt;}
.y2d8{bottom:191.682667pt;}
.y1a5{bottom:191.966533pt;}
.y1ba{bottom:193.274667pt;}
.y15e{bottom:195.572000pt;}
.y27c{bottom:198.814000pt;}
.yf7{bottom:199.850667pt;}
.y298{bottom:200.309200pt;}
.y1e8{bottom:200.581200pt;}
.y237{bottom:200.680133pt;}
.y2a8{bottom:201.260667pt;}
.y82{bottom:202.238667pt;}
.yd5{bottom:202.517333pt;}
.y57{bottom:203.572000pt;}
.y2c4{bottom:205.766000pt;}
.y183{bottom:206.238667pt;}
.y16a{bottom:206.594933pt;}
.y139{bottom:207.584000pt;}
.yc7{bottom:208.653867pt;}
.y1f{bottom:208.870000pt;}
.y326{bottom:209.764667pt;}
.y361{bottom:210.503067pt;}
.ya5{bottom:210.517333pt;}
.y2d7{bottom:211.682667pt;}
.y15d{bottom:215.572000pt;}
.y27b{bottom:218.725467pt;}
.y325{bottom:219.098000pt;}
.yf6{bottom:219.850667pt;}
.y236{bottom:220.680133pt;}
.y2a7{bottom:221.260667pt;}
.y1e7{bottom:221.825867pt;}
.y81{bottom:222.238667pt;}
.yd4{bottom:222.517333pt;}
.y11c{bottom:224.086933pt;}
.y56{bottom:224.905333pt;}
.y168{bottom:225.261600pt;}
.y1cd{bottom:225.486267pt;}
.y297{bottom:225.554000pt;}
.y182{bottom:226.238667pt;}
.y327{bottom:228.431333pt;}
.y2c3{bottom:228.559067pt;}
.y342{bottom:228.653867pt;}
.y187{bottom:229.184000pt;}
.y360{bottom:230.503067pt;}
.ya4{bottom:230.517333pt;}
.y2d6{bottom:231.682667pt;}
.y1a4{bottom:232.633200pt;}
.y1b9{bottom:233.941333pt;}
.y138{bottom:234.250667pt;}
.y15c{bottom:235.572000pt;}
.y27a{bottom:238.636933pt;}
.y235{bottom:240.680133pt;}
.y2a6{bottom:241.260667pt;}
.y80{bottom:242.238667pt;}
.yd3{bottom:242.517333pt;}
.y1e6{bottom:243.070667pt;}
.y55{bottom:243.572000pt;}
.y169{bottom:243.928267pt;}
.y11b{bottom:244.086933pt;}
.y1cc{bottom:245.397733pt;}
.y181{bottom:246.238667pt;}
.yf5{bottom:246.517333pt;}
.yc6{bottom:248.653867pt;}
.ydb{bottom:249.184000pt;}
.y35f{bottom:250.503067pt;}
.ya3{bottom:250.517333pt;}
.y296{bottom:250.798800pt;}
.y2c2{bottom:250.922267pt;}
.y2d5{bottom:251.682667pt;}
.y324{bottom:253.961333pt;}
.y1a3{bottom:254.092800pt;}
.y137{bottom:254.250667pt;}
.y1b8{bottom:255.400933pt;}
.y15b{bottom:255.572000pt;}
.y279{bottom:258.548400pt;}
.y16b{bottom:259.139200pt;}
.y234{bottom:260.680133pt;}
.y2a5{bottom:261.260667pt;}
.y7f{bottom:262.238667pt;}
.yd2{bottom:262.517333pt;}
.y1cb{bottom:264.064400pt;}
.y11a{bottom:264.086933pt;}
.y1e5{bottom:264.315467pt;}
.y54{bottom:264.905333pt;}
.y180{bottom:266.238667pt;}
.yc5{bottom:268.653867pt;}
.y35e{bottom:270.503067pt;}
.ya2{bottom:270.517333pt;}
.y2d4{bottom:271.682667pt;}
.y2c1{bottom:273.285600pt;}
.y1a2{bottom:275.337600pt;}
.y15a{bottom:275.572000pt;}
.y295{bottom:276.043600pt;}
.y323{bottom:276.628000pt;}
.y1b7{bottom:276.645733pt;}
.y2f3{bottom:277.754133pt;}
.y278{bottom:278.459733pt;}
.y2a4{bottom:281.260667pt;}
.y7e{bottom:282.238667pt;}
.yd1{bottom:282.517333pt;}
.y1ca{bottom:283.761067pt;}
.y119{bottom:284.086933pt;}
.y1e4{bottom:285.560267pt;}
.y53{bottom:286.238667pt;}
.yc4{bottom:288.653867pt;}
.y216{bottom:290.139733pt;}
.y35d{bottom:290.503067pt;}
.ya1{bottom:290.517333pt;}
.y167{bottom:291.317333pt;}
.y2d3{bottom:291.682667pt;}
.y136{bottom:292.917333pt;}
.y159{bottom:295.572000pt;}
.y2c0{bottom:295.863733pt;}
.y1a1{bottom:296.582400pt;}
.y322{bottom:296.628000pt;}
.y7d{bottom:296.905333pt;}
.y2f2{bottom:297.754133pt;}
.y1b6{bottom:297.890533pt;}
.y1e{bottom:298.070000pt;}
.y277{bottom:298.371200pt;}
.y2a3{bottom:301.260667pt;}
.y294{bottom:301.288400pt;}
.y3c{bottom:302.238667pt;}
.yd0{bottom:302.517333pt;}
.y233{bottom:303.346800pt;}
.y118{bottom:304.086933pt;}
.y17f{bottom:306.238667pt;}
.y1e3{bottom:306.805067pt;}
.y52{bottom:307.572000pt;}
.yc3{bottom:308.653867pt;}
.y1c9{bottom:309.291067pt;}
.y215{bottom:310.139733pt;}
.y35c{bottom:310.503067pt;}
.ya0{bottom:310.517333pt;}
.y166{bottom:311.317333pt;}
.y2d2{bottom:311.682667pt;}
.y135{bottom:312.917333pt;}
.y7c{bottom:315.572000pt;}
.y321{bottom:316.628000pt;}
.y2bf{bottom:317.393600pt;}
.y2f1{bottom:317.754133pt;}
.y1a0{bottom:317.827200pt;}
.y276{bottom:318.067867pt;}
.y1d{bottom:318.070000pt;}
.y1b5{bottom:319.135333pt;}
.y2a2{bottom:321.260667pt;}
.y1fd{bottom:322.174933pt;}
.y3b{bottom:322.238667pt;}
.ycf{bottom:322.517333pt;}
.y117{bottom:324.086933pt;}
.y51{bottom:326.238667pt;}
.y290{bottom:326.318400pt;}
.y1e2{bottom:328.049867pt;}
.y232{bottom:328.591600pt;}
.yc2{bottom:328.653867pt;}
.y214{bottom:330.139733pt;}
.y35b{bottom:330.503067pt;}
.y9f{bottom:330.517333pt;}
.y2d1{bottom:331.682667pt;}
.y134{bottom:332.917333pt;}
.y7b{bottom:334.238667pt;}
.y158{bottom:335.572000pt;}
.y320{bottom:336.628000pt;}
.y2f0{bottom:337.754133pt;}
.y1c{bottom:338.070000pt;}
.y19f{bottom:339.072000pt;}
.y1b2{bottom:340.165333pt;}
.y21f{bottom:340.504267pt;}
.y2a1{bottom:341.260667pt;}
.y265{bottom:342.088667pt;}
.y1fc{bottom:342.174933pt;}
.y3a{bottom:342.238667pt;}
.ye1{bottom:342.517333pt;}
.y252{bottom:342.815467pt;}
.y275{bottom:343.812667pt;}
.y116{bottom:344.086933pt;}
.y293{bottom:344.985067pt;}
.y17e{bottom:346.238667pt;}
.y50{bottom:347.572000pt;}
.yc1{bottom:348.653867pt;}
.yce{bottom:349.184000pt;}
.y1e1{bottom:349.294667pt;}
.y213{bottom:350.139733pt;}
.y35a{bottom:350.503067pt;}
.y9e{bottom:350.517333pt;}
.y165{bottom:351.317333pt;}
.y2d0{bottom:351.682667pt;}
.y1c8{bottom:351.957733pt;}
.y33f{bottom:352.029600pt;}
.y7a{bottom:352.905333pt;}
.y133{bottom:352.917333pt;}
.y231{bottom:354.051200pt;}
.y157{bottom:355.572000pt;}
.y31f{bottom:356.628000pt;}
.y2be{bottom:357.393600pt;}
.y2ef{bottom:357.754133pt;}
.y1b{bottom:358.070000pt;}
.y1b3{bottom:358.832000pt;}
.y19e{bottom:360.316800pt;}
.y21e{bottom:360.504267pt;}
.y1b4{bottom:361.195200pt;}
.y2a0{bottom:361.260667pt;}
.y1fb{bottom:362.174933pt;}
.y39{bottom:362.238667pt;}
.y274{bottom:362.479333pt;}
.ye0{bottom:362.517333pt;}
.y115{bottom:364.086933pt;}
.y17d{bottom:366.238667pt;}
.yc0{bottom:368.653867pt;}
.y4f{bottom:368.905333pt;}
.y291{bottom:370.014933pt;}
.y359{bottom:370.503067pt;}
.y9d{bottom:370.517333pt;}
.y1e0{bottom:370.539467pt;}
.y164{bottom:371.317333pt;}
.y79{bottom:371.572000pt;}
.y2cf{bottom:371.682667pt;}
.y1c7{bottom:371.957733pt;}
.y33e{bottom:372.029600pt;}
.y132{bottom:372.917333pt;}
.y156{bottom:375.572000pt;}
.y31e{bottom:376.628000pt;}
.y2bd{bottom:377.393600pt;}
.y2ee{bottom:377.754133pt;}
.y1a{bottom:378.070000pt;}
.y230{bottom:379.296000pt;}
.y21d{bottom:380.504267pt;}
.y29f{bottom:381.260667pt;}
.y19d{bottom:381.561600pt;}
.y1fa{bottom:382.174933pt;}
.y38{bottom:382.238667pt;}
.y1b1{bottom:382.440000pt;}
.ydf{bottom:382.517333pt;}
.y264{bottom:383.955333pt;}
.y114{bottom:384.086933pt;}
.y251{bottom:385.482133pt;}
.y17c{bottom:386.238667pt;}
.ybf{bottom:388.653867pt;}
.y292{bottom:388.681600pt;}
.y212{bottom:390.139733pt;}
.y4e{bottom:390.238667pt;}
.y358{bottom:390.503067pt;}
.y9c{bottom:390.517333pt;}
.y2ce{bottom:391.682667pt;}
.y1df{bottom:391.784267pt;}
.y1c6{bottom:391.957733pt;}
.y33d{bottom:392.029600pt;}
.y131{bottom:392.917333pt;}
.y155{bottom:395.572000pt;}
.y31d{bottom:396.628000pt;}
.y2bc{bottom:397.393600pt;}
.y2ed{bottom:397.754133pt;}
.y19{bottom:398.070000pt;}
.y21c{bottom:400.504267pt;}
.y29e{bottom:401.260667pt;}
.y1f9{bottom:402.174933pt;}
.y37{bottom:402.238667pt;}
.yf2{bottom:402.517333pt;}
.y19c{bottom:402.806400pt;}
.y9{bottom:403.917733pt;}
.y263{bottom:403.955333pt;}
.y113{bottom:404.086933pt;}
.y273{bottom:404.346000pt;}
.y22f{bottom:404.540800pt;}
.y250{bottom:405.482133pt;}
.y309{bottom:406.277733pt;}
.y1b0{bottom:408.636667pt;}
.ybe{bottom:408.653867pt;}
.y4d{bottom:408.905333pt;}
.yde{bottom:409.184000pt;}
.y211{bottom:410.051200pt;}
.y357{bottom:410.503067pt;}
.y9b{bottom:410.517333pt;}
.y2cd{bottom:411.682667pt;}
.y1c5{bottom:411.957733pt;}
.y17b{bottom:412.905333pt;}
.y130{bottom:412.917333pt;}
.y1de{bottom:413.029067pt;}
.y28f{bottom:413.711600pt;}
.y154{bottom:415.572000pt;}
.y31c{bottom:416.628000pt;}
.y2bb{bottom:417.393600pt;}
.y18{bottom:418.070000pt;}
.y21b{bottom:420.504267pt;}
.y2ca{bottom:421.982800pt;}
.y1f8{bottom:422.174933pt;}
.y36{bottom:422.238667pt;}
.yf1{bottom:422.517333pt;}
.y262{bottom:423.955333pt;}
.y19b{bottom:424.051200pt;}
.y112{bottom:424.086933pt;}
.y272{bottom:424.346000pt;}
.y24f{bottom:425.482133pt;}
.y308{bottom:426.277733pt;}
.y78{bottom:427.572000pt;}
.ybd{bottom:428.653867pt;}
.ydd{bottom:429.184000pt;}
.y8{bottom:429.251067pt;}
.y22e{bottom:429.785600pt;}
.y210{bottom:429.962667pt;}
.y4c{bottom:430.238667pt;}
.y356{bottom:430.503067pt;}
.y9a{bottom:430.517333pt;}
.y1c4{bottom:431.957733pt;}
.y33b{bottom:432.696267pt;}
.y12f{bottom:432.917333pt;}
.y1dd{bottom:434.273867pt;}
.y153{bottom:435.572000pt;}
.y2ba{bottom:437.393600pt;}
.y17{bottom:438.070000pt;}
.y2ec{bottom:438.404533pt;}
.y21a{bottom:440.504267pt;}
.y28e{bottom:441.908267pt;}
.y2c9{bottom:441.982800pt;}
.y1f7{bottom:442.174933pt;}
.y35{bottom:442.238667pt;}
.yf0{bottom:442.517333pt;}
.y261{bottom:443.955333pt;}
.y111{bottom:444.086933pt;}
.y271{bottom:444.346000pt;}
.y19a{bottom:445.296000pt;}
.y24e{bottom:445.482133pt;}
.y77{bottom:446.238667pt;}
.y307{bottom:446.277733pt;}
.y29d{bottom:446.594000pt;}
.ybc{bottom:448.653867pt;}
.y4b{bottom:448.905333pt;}
.yff{bottom:449.184000pt;}
.y20f{bottom:449.874133pt;}
.y355{bottom:450.503067pt;}
.y1af{bottom:450.503333pt;}
.y99{bottom:450.517333pt;}
.y33a{bottom:451.362933pt;}
.y33c{bottom:451.376000pt;}
.y1c3{bottom:451.957733pt;}
.y12e{bottom:452.917333pt;}
.y17a{bottom:454.238667pt;}
.y7{bottom:454.584400pt;}
.y22d{bottom:455.030400pt;}
.y1dc{bottom:455.518667pt;}
.y2eb{bottom:455.542667pt;}
.y152{bottom:455.572000pt;}
.y2cc{bottom:457.016000pt;}
.y31b{bottom:457.128000pt;}
.y2b9{bottom:457.393600pt;}
.y219{bottom:460.504267pt;}
.y1f6{bottom:462.174933pt;}
.y34{bottom:462.238667pt;}
.yef{bottom:462.517333pt;}
.y260{bottom:463.955333pt;}
.y110{bottom:464.086933pt;}
.y270{bottom:464.346000pt;}
.y76{bottom:464.905333pt;}
.y24d{bottom:465.482133pt;}
.y199{bottom:466.540800pt;}
.ybb{bottom:468.653867pt;}
.y20e{bottom:469.785600pt;}
.y4a{bottom:470.238667pt;}
.y354{bottom:470.503067pt;}
.y1ae{bottom:470.503333pt;}
.y98{bottom:470.517333pt;}
.y339{bottom:471.287333pt;}
.y1c2{bottom:471.957733pt;}
.y2ea{bottom:472.680667pt;}
.y12d{bottom:472.917333pt;}
.y179{bottom:474.238667pt;}
.y151{bottom:475.572000pt;}
.y1db{bottom:476.763467pt;}
.y31a{bottom:476.824667pt;}
.y2b8{bottom:477.393600pt;}
.y6{bottom:479.917733pt;}
.y22c{bottom:480.275200pt;}
.y218{bottom:480.504267pt;}
.y2c8{bottom:480.649467pt;}
.y1f5{bottom:482.174933pt;}
.y33{bottom:482.238667pt;}
.yee{bottom:482.517333pt;}
.y75{bottom:483.572000pt;}
.y25f{bottom:483.955333pt;}
.y10f{bottom:484.086933pt;}
.y26f{bottom:484.346000pt;}
.y28d{bottom:484.574933pt;}
.y24c{bottom:485.482133pt;}
.y306{bottom:486.992533pt;}
.y198{bottom:487.785600pt;}
.y341{bottom:488.653867pt;}
.y20d{bottom:489.697067pt;}
.y2e9{bottom:489.818667pt;}
.y353{bottom:490.503067pt;}
.y1ad{bottom:490.503333pt;}
.y97{bottom:490.517333pt;}
.y49{bottom:491.572000pt;}
.y1c1{bottom:491.957733pt;}
.y12c{bottom:492.917333pt;}
.y178{bottom:494.238667pt;}
.y319{bottom:495.491333pt;}
.y150{bottom:495.572000pt;}
.y338{bottom:496.984000pt;}
.y16{bottom:497.270000pt;}
.y1da{bottom:498.008267pt;}
.y69{bottom:499.441867pt;}
.y1f4{bottom:502.174933pt;}
.y32{bottom:502.238667pt;}
.yed{bottom:502.517333pt;}
.y25e{bottom:503.955333pt;}
.y10e{bottom:504.086933pt;}
.y26e{bottom:504.346000pt;}
.y28c{bottom:504.574933pt;}
.y5{bottom:505.251067pt;}
.y24b{bottom:505.482133pt;}
.y22b{bottom:505.520000pt;}
.y305{bottom:506.904000pt;}
.y2e8{bottom:506.956667pt;}
.yba{bottom:508.653867pt;}
.y197{bottom:509.030400pt;}
.y302{bottom:509.178800pt;}
.y20c{bottom:509.608533pt;}
.y352{bottom:510.503067pt;}
.y96{bottom:510.517333pt;}
.y48{bottom:512.905333pt;}
.y12b{bottom:512.917333pt;}
.y177{bottom:514.238667pt;}
.y318{bottom:515.402800pt;}
.y14f{bottom:515.572000pt;}
.y15{bottom:517.270000pt;}
.y2b7{bottom:517.393600pt;}
.y1d9{bottom:519.253067pt;}
.y68{bottom:519.441867pt;}
.y74{bottom:520.905333pt;}
.y31{bottom:522.238667pt;}
.yec{bottom:522.517333pt;}
.y25d{bottom:523.955333pt;}
.y10d{bottom:524.086933pt;}
.y2e7{bottom:524.094667pt;}
.y26d{bottom:524.346000pt;}
.y28b{bottom:524.574933pt;}
.y217{bottom:525.837600pt;}
.y304{bottom:526.815467pt;}
.y301{bottom:527.845467pt;}
.yb9{bottom:528.653867pt;}
.y20b{bottom:529.520000pt;}
.y196{bottom:530.275200pt;}
.y351{bottom:530.503067pt;}
.y95{bottom:530.517333pt;}
.y22a{bottom:530.764667pt;}
.y12a{bottom:532.917333pt;}
.y317{bottom:534.069467pt;}
.y47{bottom:534.238667pt;}
.y14e{bottom:535.572000pt;}
.y2b6{bottom:537.305067pt;}
.y67{bottom:539.441867pt;}
.y73{bottom:539.572000pt;}
.y337{bottom:539.650667pt;}
.y1d8{bottom:540.497867pt;}
.y2e6{bottom:541.232667pt;}
.y30{bottom:542.238667pt;}
.yeb{bottom:542.517333pt;}
.y1f3{bottom:542.674933pt;}
.y10c{bottom:544.086933pt;}
.y24a{bottom:544.148800pt;}
.y26c{bottom:544.346000pt;}
.y28a{bottom:544.574933pt;}
.y303{bottom:546.726933pt;}
.yb8{bottom:548.653867pt;}
.y20a{bottom:549.431333pt;}
.y350{bottom:550.503067pt;}
.y94{bottom:550.517333pt;}
.y195{bottom:551.520000pt;}
.y129{bottom:552.917333pt;}
.y316{bottom:553.980933pt;}
.y176{bottom:554.238667pt;}
.y46{bottom:555.572000pt;}
.y229{bottom:556.009467pt;}
.y72{bottom:558.238667pt;}
.y2e5{bottom:558.370667pt;}
.y2b5{bottom:558.764667pt;}
.y66{bottom:559.441867pt;}
.y336{bottom:559.650667pt;}
.y249{bottom:561.608533pt;}
.y1d7{bottom:561.742533pt;}
.y2f{bottom:562.238667pt;}
.yf4{bottom:562.517333pt;}
.y1f2{bottom:562.586400pt;}
.y25c{bottom:563.955333pt;}
.y10b{bottom:564.086933pt;}
.y26b{bottom:564.346000pt;}
.y289{bottom:564.574933pt;}
.y300{bottom:566.638400pt;}
.yb7{bottom:568.653867pt;}
.y209{bottom:569.342800pt;}
.y34f{bottom:570.503067pt;}
.y93{bottom:570.517333pt;}
.y315{bottom:572.647600pt;}
.y194{bottom:572.764667pt;}
.y128{bottom:572.917333pt;}
.y175{bottom:574.238667pt;}
.y2e4{bottom:575.508800pt;}
.y14d{bottom:575.572000pt;}
.y14{bottom:576.470000pt;}
.y45{bottom:576.905333pt;}
.y248{bottom:578.853333pt;}
.y65{bottom:579.441867pt;}
.y335{bottom:579.650667pt;}
.y228{bottom:581.254267pt;}
.y2b4{bottom:581.342800pt;}
.y2e{bottom:582.238667pt;}
.y1f1{bottom:582.497867pt;}
.yea{bottom:582.517333pt;}
.y1d6{bottom:582.772533pt;}
.y25b{bottom:584.081600pt;}
.y10a{bottom:584.086933pt;}
.y26a{bottom:584.346000pt;}
.y288{bottom:584.574933pt;}
.y2ff{bottom:586.549867pt;}
.yb6{bottom:588.653867pt;}
.y2fc{bottom:588.824667pt;}
.y208{bottom:589.254267pt;}
.y34e{bottom:590.503067pt;}
.y92{bottom:590.517333pt;}
.y2e3{bottom:592.496400pt;}
.y314{bottom:592.559067pt;}
.y127{bottom:592.917333pt;}
.y193{bottom:594.009467pt;}
.y174{bottom:594.238667pt;}
.y44{bottom:595.572000pt;}
.y247{bottom:596.098000pt;}
.y13{bottom:596.470000pt;}
.y64{bottom:599.441867pt;}
.y2d{bottom:602.238667pt;}
.y1f0{bottom:602.409200pt;}
.ye9{bottom:602.517333pt;}
.y2b3{bottom:603.920933pt;}
.y25a{bottom:603.993067pt;}
.y141{bottom:604.086933pt;}
.y269{bottom:604.346000pt;}
.y2e2{bottom:605.829733pt;}
.y2fe{bottom:606.461333pt;}
.y227{bottom:606.499067pt;}
.y2fb{bottom:607.491333pt;}
.yb5{bottom:608.653867pt;}
.y207{bottom:609.165733pt;}
.y1d5{bottom:609.184000pt;}
.y34d{bottom:610.503067pt;}
.y91{bottom:610.517333pt;}
.y313{bottom:611.225733pt;}
.y126{bottom:612.917333pt;}
.y246{bottom:613.342800pt;}
.y71{bottom:614.238667pt;}
.y192{bottom:615.254267pt;}
.y14c{bottom:615.572000pt;}
.y12{bottom:616.470000pt;}
.y43{bottom:616.905333pt;}
.y2e1{bottom:619.163067pt;}
.y63{bottom:619.441867pt;}
.y2c{bottom:622.238667pt;}
.y1ef{bottom:622.320667pt;}
.ye8{bottom:622.517333pt;}
.y287{bottom:622.674933pt;}
.y259{bottom:623.904533pt;}
.y109{bottom:624.086933pt;}
.y2fd{bottom:626.372800pt;}
.y2b2{bottom:626.499067pt;}
.y1d4{bottom:627.850667pt;}
.yb4{bottom:628.653867pt;}
.y206{bottom:629.077200pt;}
.y34c{bottom:630.503067pt;}
.y90{bottom:630.517333pt;}
.y245{bottom:630.587600pt;}
.y312{bottom:631.137067pt;}
.y226{bottom:631.743867pt;}
.y2e0{bottom:632.496400pt;}
.y70{bottom:632.905333pt;}
.y125{bottom:632.917333pt;}
.y173{bottom:634.238667pt;}
.y14b{bottom:635.572000pt;}
.y334{bottom:635.917333pt;}
.y191{bottom:636.499067pt;}
.y42{bottom:638.238667pt;}
.y2b{bottom:642.238667pt;}
.ye7{bottom:642.517333pt;}
.y286{bottom:642.586400pt;}
.y258{bottom:643.816000pt;}
.y108{bottom:644.086933pt;}
.y268{bottom:644.846000pt;}
.y2df{bottom:645.829733pt;}
.y2fa{bottom:646.284267pt;}
.y244{bottom:647.832400pt;}
.y1ee{bottom:647.850667pt;}
.yb3{bottom:648.653867pt;}
.y205{bottom:648.988667pt;}
.y2b1{bottom:649.077200pt;}
.y145{bottom:649.184000pt;}
.y311{bottom:649.803733pt;}
.y34b{bottom:650.503067pt;}
.y8f{bottom:650.517333pt;}
.y6f{bottom:651.572000pt;}
.y124{bottom:652.917333pt;}
.y172{bottom:654.238667pt;}
.y14a{bottom:655.572000pt;}
.y11{bottom:656.470000pt;}
.y225{bottom:656.988667pt;}
.y190{bottom:657.743867pt;}
.y41{bottom:659.572000pt;}
.y2a{bottom:662.238667pt;}
.y285{bottom:662.497867pt;}
.ye6{bottom:662.517333pt;}
.y62{bottom:663.441867pt;}
.y255{bottom:663.512667pt;}
.y107{bottom:664.086933pt;}
.y266{bottom:664.757467pt;}
.y243{bottom:665.077200pt;}
.y2f9{bottom:666.195733pt;}
.y2de{bottom:668.650667pt;}
.yb2{bottom:668.653867pt;}
.y204{bottom:668.900133pt;}
.y144{bottom:669.184000pt;}
.y310{bottom:669.715200pt;}
.y6e{bottom:670.238667pt;}
.y34a{bottom:670.503067pt;}
.y8e{bottom:670.517333pt;}
.y2b0{bottom:671.655333pt;}
.y123{bottom:672.917333pt;}
.y333{bottom:673.604267pt;}
.y170{bottom:674.238667pt;}
.y149{bottom:675.572000pt;}
.y10{bottom:676.470000pt;}
.y18f{bottom:678.988667pt;}
.y40{bottom:680.905333pt;}
.y256{bottom:682.179333pt;}
.y224{bottom:682.233467pt;}
.y29{bottom:682.238667pt;}
.y242{bottom:682.322000pt;}
.y284{bottom:682.409200pt;}
.ye5{bottom:682.517333pt;}
.y257{bottom:683.209200pt;}
.y267{bottom:683.424133pt;}
.y106{bottom:684.086933pt;}
.y330{bottom:685.794933pt;}
.y2f8{bottom:686.107200pt;}
.yb1{bottom:688.654000pt;}
.y203{bottom:688.811600pt;}
.y6d{bottom:688.905333pt;}
.y143{bottom:689.184000pt;}
.y30f{bottom:689.626667pt;}
.y349{bottom:690.503067pt;}
.y8d{bottom:690.517333pt;}
.y332{bottom:692.270933pt;}
.y122{bottom:692.917333pt;}
.y2af{bottom:694.233467pt;}
.y171{bottom:694.238667pt;}
.y147{bottom:695.572000pt;}
.yf{bottom:696.470000pt;}
.y241{bottom:699.566800pt;}
.y18e{bottom:700.233467pt;}
.y28{bottom:702.238667pt;}
.y283{bottom:702.320667pt;}
.ye4{bottom:702.517333pt;}
.y254{bottom:703.120667pt;}
.y4{bottom:703.917733pt;}
.y105{bottom:704.086933pt;}
.y32e{bottom:704.461600pt;}
.y2f7{bottom:706.018667pt;}
.y2f5{bottom:707.048533pt;}
.y223{bottom:707.478267pt;}
.y6c{bottom:707.572000pt;}
.y30e{bottom:708.293333pt;}
.yb0{bottom:708.654000pt;}
.y1ff{bottom:708.723067pt;}
.yf3{bottom:709.184000pt;}
.y5c{bottom:710.355200pt;}
.y348{bottom:710.503067pt;}
.y8c{bottom:710.517333pt;}
.y148{bottom:715.572000pt;}
.ye{bottom:716.470000pt;}
.y240{bottom:716.811600pt;}
.y3f{bottom:718.238667pt;}
.y18d{bottom:721.478267pt;}
.y27{bottom:722.238667pt;}
.ye3{bottom:722.517333pt;}
.y32f{bottom:723.128267pt;}
.y104{bottom:724.086933pt;}
.y2f6{bottom:725.930133pt;}
.y6b{bottom:726.238667pt;}
.y202{bottom:727.389733pt;}
.y282{bottom:727.850667pt;}
.y30d{bottom:728.204800pt;}
.y253{bottom:728.650667pt;}
.y340{bottom:728.654000pt;}
.y331{bottom:729.604267pt;}
.y347{bottom:730.503067pt;}
.y8b{bottom:730.517333pt;}
.y3{bottom:730.584400pt;}
.y222{bottom:732.508267pt;}
.y23f{bottom:734.056400pt;}
.yd{bottom:736.470000pt;}
.y2ae{bottom:739.174933pt;}
.y3e{bottom:740.905333pt;}
.y26{bottom:742.238667pt;}
.y18a{bottom:742.508267pt;}
.y103{bottom:744.086933pt;}
.y61{bottom:744.775200pt;}
.y6a{bottom:744.905333pt;}
.y2f4{bottom:745.841600pt;}
.y30c{bottom:746.871467pt;}
.y201{bottom:747.086400pt;}
.y1c0{bottom:747.850667pt;}
.yaf{bottom:748.654000pt;}
.ye2{bottom:749.184000pt;}
.y346{bottom:750.503067pt;}
.y8a{bottom:750.517333pt;}
.y23c{bottom:751.086400pt;}
.y221{bottom:757.538133pt;}
.y18b{bottom:761.174933pt;}
.y2ad{bottom:761.538133pt;}
.y25{bottom:762.238667pt;}
.y18c{bottom:763.538133pt;}
.y3d{bottom:763.572000pt;}
.y102{bottom:764.086933pt;}
.y2{bottom:765.251067pt;}
.y200{bottom:765.753067pt;}
.y30b{bottom:766.782933pt;}
.yae{bottom:768.654000pt;}
.y23e{bottom:769.538133pt;}
.y23d{bottom:769.753067pt;}
.y345{bottom:770.503067pt;}
.y89{bottom:770.517333pt;}
.y60{bottom:771.441867pt;}
.yc{bottom:776.470000pt;}
.y146{bottom:779.572000pt;}
.y220{bottom:782.568133pt;}
.y2ac{bottom:783.901467pt;}
.y140{bottom:784.086933pt;}
.y189{bottom:784.782933pt;}
.y1fe{bottom:785.449600pt;}
.y23b{bottom:786.782933pt;}
.yad{bottom:788.654000pt;}
.y344{bottom:790.503067pt;}
.y88{bottom:790.517333pt;}
.y101{bottom:790.753600pt;}
.y5f{bottom:791.441867pt;}
.y30a{bottom:792.312933pt;}
.yb{bottom:796.470000pt;}
.y1{bottom:799.917733pt;}
.y24{bottom:806.238667pt;}
.yac{bottom:808.654000pt;}
.y343{bottom:810.503067pt;}
.y87{bottom:810.517333pt;}
.y100{bottom:810.753600pt;}
.y188{bottom:810.979600pt;}
.y1ac{bottom:811.205200pt;}
.y5e{bottom:811.441867pt;}
.y5d{bottom:843.652667pt;}
.h17{height:25.302083pt;}
.h8{height:29.645833pt;}
.h1a{height:31.408817pt;}
.h19{height:31.409350pt;}
.h18{height:32.010417pt;}
.hb{height:36.145833pt;}
.hc{height:36.583333pt;}
.h1d{height:37.057292pt;}
.h13{height:39.364401pt;}
.h7{height:39.760417pt;}
.he{height:40.734375pt;}
.h10{height:40.763021pt;}
.h16{height:44.420104pt;}
.h1c{height:44.817708pt;}
.h15{height:44.869433pt;}
.h14{height:44.869967pt;}
.ha{height:45.729167pt;}
.h4{height:46.989583pt;}
.h12{height:48.015625pt;}
.h11{height:49.299479pt;}
.h6{height:50.302083pt;}
.h9{height:57.833333pt;}
.h5{height:64.020833pt;}
.h1b{height:73.479167pt;}
.h3{height:83.135417pt;}
.hf{height:210.302083pt;}
.hd{height:257.499566pt;}
.h2{height:907.086667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:604.666667pt;}
.w2{width:604.724000pt;}
.w4{width:604.800000pt;}
.w0{width:610.560000pt;}
.w1{width:610.666667pt;}
.x0{left:0.000000pt;}
.xb{left:62.400000pt;}
.x34{left:68.233333pt;}
.x5b{left:70.294000pt;}
.x3b{left:71.462933pt;}
.x6b{left:73.096533pt;}
.x1a{left:74.527067pt;}
.x21{left:75.810133pt;}
.xf{left:76.800000pt;}
.x2{left:77.974933pt;}
.x72{left:79.064533pt;}
.x49{left:81.300000pt;}
.x1{left:82.362400pt;}
.x44{left:84.662667pt;}
.x1d{left:86.364267pt;}
.x43{left:87.996000pt;}
.x3e{left:89.646800pt;}
.x1c{left:91.279200pt;}
.x48{left:92.493867pt;}
.x3{left:94.977867pt;}
.x23{left:96.208000pt;}
.x4{left:98.705733pt;}
.x20{left:99.932400pt;}
.x2d{left:102.354533pt;}
.x70{left:103.447600pt;}
.x35{left:105.109600pt;}
.x54{left:107.108933pt;}
.xe{left:108.800000pt;}
.x2f{left:110.410000pt;}
.x2c{left:113.890267pt;}
.x1b{left:120.388667pt;}
.x2b{left:125.631067pt;}
.x42{left:127.373067pt;}
.x1e{left:128.380533pt;}
.x24{left:130.433600pt;}
.x75{left:135.879067pt;}
.x17{left:138.208933pt;}
.x12{left:140.800000pt;}
.x1f{left:144.780933pt;}
.x22{left:146.673867pt;}
.x61{left:148.640800pt;}
.x5c{left:149.966667pt;}
.x27{left:154.624267pt;}
.x37{left:155.852133pt;}
.x3c{left:158.925333pt;}
.x6a{left:165.566533pt;}
.x26{left:170.904267pt;}
.x57{left:172.873467pt;}
.x41{left:175.864933pt;}
.x59{left:176.827733pt;}
.x28{left:179.424267pt;}
.x7f{left:180.913200pt;}
.x5f{left:185.561600pt;}
.x67{left:187.483067pt;}
.x31{left:189.818800pt;}
.x83{left:190.728800pt;}
.x58{left:192.931200pt;}
.x62{left:193.887867pt;}
.x64{left:196.809067pt;}
.x14{left:199.375733pt;}
.x45{left:201.103067pt;}
.x71{left:204.836000pt;}
.x30{left:205.922400pt;}
.x2a{left:206.864267pt;}
.x19{left:209.051733pt;}
.x69{left:214.218000pt;}
.x4b{left:215.887867pt;}
.x55{left:219.126133pt;}
.x16{left:220.533600pt;}
.x7{left:222.198933pt;}
.x46{left:224.651733pt;}
.x5d{left:225.966667pt;}
.x38{left:227.094400pt;}
.x68{left:228.402400pt;}
.x82{left:229.937200pt;}
.x73{left:231.417067pt;}
.x4a{left:232.554533pt;}
.x6{left:235.018533pt;}
.x2e{left:237.577600pt;}
.x3d{left:238.479867pt;}
.x80{left:240.245600pt;}
.x8{left:243.982800pt;}
.x5{left:246.056400pt;}
.x11{left:248.254933pt;}
.x9{left:249.159867pt;}
.x36{left:251.798667pt;}
.x56{left:253.010267pt;}
.x5a{left:254.859733pt;}
.x60{left:256.122400pt;}
.xd{left:257.734133pt;}
.x33{left:259.260133pt;}
.x4e{left:274.633333pt;}
.xa{left:277.987333pt;}
.x63{left:279.410133pt;}
.x47{left:288.561733pt;}
.x5e{left:291.300000pt;}
.x3a{left:293.216800pt;}
.x32{left:294.997867pt;}
.x76{left:297.920933pt;}
.x4f{left:301.300000pt;}
.x10{left:303.896933pt;}
.x15{left:305.844800pt;}
.x18{left:306.933333pt;}
.xc{left:307.824000pt;}
.x29{left:317.604533pt;}
.x7e{left:319.333067pt;}
.x7d{left:322.839733pt;}
.x39{left:326.040000pt;}
.x7c{left:333.666667pt;}
.x6d{left:337.633333pt;}
.x6c{left:341.103733pt;}
.x77{left:352.021200pt;}
.x4c{left:363.523867pt;}
.x78{left:366.838933pt;}
.x66{left:372.062133pt;}
.x65{left:376.392267pt;}
.x6e{left:381.878533pt;}
.x25{left:386.543067pt;}
.x6f{left:391.120667pt;}
.x51{left:393.561067pt;}
.x50{left:394.625467pt;}
.x7b{left:400.943067pt;}
.x4d{left:417.658000pt;}
.x7a{left:440.706533pt;}
.x79{left:444.954533pt;}
.x3f{left:450.690267pt;}
.x74{left:457.366667pt;}
.x40{left:465.569867pt;}
.x52{left:469.300000pt;}
.x81{left:471.333333pt;}
.x53{left:495.966667pt;}
.x13{left:740.243867pt;}
}




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