
    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_b96c22b417cbdb80c6bae345.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133789;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_19e440c3c832bddfed4fbbe3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133789;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_9d42e21d310c01b7c0872d4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_21cd5d034f7f2089fc1f3ed5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_634f4ce9fef83601b01e09eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_826b76aae460338517cd2e4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_574da866f9e8470db6579d80.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_890471345c777622354a9df7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_88bdda7a67963d71abe36847.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_d7d8ecc4bd4676c59662c2b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_197f913bce5235419cb25566.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.097168;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_517cf1df274dc8b4bde8cda9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_4214fe571c21700af691f415.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_890c9f6def83fcb3c2df4b73.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_8fe9b2a86aa7373f220ea6bd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.872587;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_1f83532f108fece8f815be23.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.955078;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(0.262808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262808,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-66.240000px;}
.v3{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.080000px;}
.ls3a{letter-spacing:-0.810000px;}
.ls4f{letter-spacing:-0.666000px;}
.ls5a{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.450600px;}
.ls59{letter-spacing:-0.360000px;}
.ls3b{letter-spacing:-0.337200px;}
.ls11{letter-spacing:-0.303600px;}
.ls8{letter-spacing:-0.291600px;}
.ls25{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.270600px;}
.ls5c{letter-spacing:-0.269400px;}
.ls12{letter-spacing:-0.243600px;}
.ls5d{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.195000px;}
.ls39{letter-spacing:-0.125400px;}
.ls4e{letter-spacing:-0.053280px;}
.ls38{letter-spacing:-0.021600px;}
.ls36{letter-spacing:-0.019440px;}
.ls6{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.015120px;}
.ls10{letter-spacing:0.018000px;}
.ls57{letter-spacing:0.049680px;}
.ls1{letter-spacing:0.053280px;}
.ls52{letter-spacing:0.076011px;}
.ls51{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.131040px;}
.ls29{letter-spacing:0.150048px;}
.ls3f{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.212579px;}
.ls33{letter-spacing:0.216000px;}
.ls5b{letter-spacing:0.223800px;}
.ls2e{letter-spacing:0.234000px;}
.ls2c{letter-spacing:0.244800px;}
.ls31{letter-spacing:0.257040px;}
.lse{letter-spacing:0.259920px;}
.ls32{letter-spacing:0.263520px;}
.ls5{letter-spacing:0.264000px;}
.ls5e{letter-spacing:0.269400px;}
.lsb{letter-spacing:0.293760px;}
.ls55{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.306000px;}
.ls0{letter-spacing:0.316800px;}
.ls24{letter-spacing:0.331800px;}
.ls2{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.428400px;}
.ls34{letter-spacing:0.493920px;}
.ls14{letter-spacing:0.513360px;}
.ls3d{letter-spacing:0.540000px;}
.ls58{letter-spacing:0.630000px;}
.ls1a{letter-spacing:0.876000px;}
.ls50{letter-spacing:0.900000px;}
.ls35{letter-spacing:1.080000px;}
.ls4a{letter-spacing:3.060000px;}
.ls49{letter-spacing:3.960000px;}
.ls16{letter-spacing:5.220000px;}
.lsc{letter-spacing:5.940000px;}
.ls46{letter-spacing:7.380000px;}
.lsd{letter-spacing:8.100000px;}
.ls2a{letter-spacing:8.460000px;}
.ls1c{letter-spacing:8.586720px;}
.ls19{letter-spacing:8.706720px;}
.ls18{letter-spacing:8.820000px;}
.ls1e{letter-spacing:9.540000px;}
.ls40{letter-spacing:10.980000px;}
.ls1d{letter-spacing:13.860000px;}
.ls2b{letter-spacing:14.418000px;}
.ls41{letter-spacing:14.580000px;}
.ls56{letter-spacing:15.066720px;}
.ls42{letter-spacing:15.300000px;}
.ls26{letter-spacing:16.020000px;}
.ls3e{letter-spacing:20.268000px;}
.ls28{letter-spacing:20.340000px;}
.ls21{letter-spacing:21.780000px;}
.ls30{letter-spacing:23.228640px;}
.ls15{letter-spacing:26.820000px;}
.ls2d{letter-spacing:27.548640px;}
.ls45{letter-spacing:28.980000px;}
.lsf{letter-spacing:30.420000px;}
.ls23{letter-spacing:31.140000px;}
.ls48{letter-spacing:34.740000px;}
.ls4d{letter-spacing:38.340000px;}
.ls4b{letter-spacing:40.476000px;}
.ls4c{letter-spacing:40.500000px;}
.ls54{letter-spacing:44.562720px;}
.ls22{letter-spacing:52.020000px;}
.ls43{letter-spacing:65.700000px;}
.ls20{letter-spacing:70.020000px;}
.ls44{letter-spacing:117.540000px;}
.ls3{letter-spacing:125.460000px;}
.ls27{letter-spacing:260.076000px;}
.ls1f{letter-spacing:360.876000px;}
.ls3c{letter-spacing:379.596000px;}
.ls47{letter-spacing:1260.336000px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws1e{word-spacing:-54.000000px;}
.ws0{word-spacing:-16.280640px;}
.wsf{word-spacing:-15.816000px;}
.ws10{word-spacing:-15.368400px;}
.ws2{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.271800px;}
.ws21{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.745000px;}
.wsb{word-spacing:-14.696400px;}
.ws5{word-spacing:-14.648400px;}
.ws20{word-spacing:-14.274000px;}
.wse{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.806000px;}
.ws16{word-spacing:-13.734000px;}
.ws1f{word-spacing:-13.662000px;}
.ws14{word-spacing:-13.536000px;}
.wsc{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.212000px;}
.ws19{word-spacing:-13.140000px;}
.ws17{word-spacing:-12.780000px;}
.ws18{word-spacing:-12.760560px;}
.ws25{word-spacing:-12.690000px;}
.ws28{word-spacing:-12.420000px;}
.ws27{word-spacing:-12.283800px;}
.ws4{word-spacing:-12.060000px;}
.ws29{word-spacing:-11.790600px;}
.ws24{word-spacing:-11.739453px;}
.ws26{word-spacing:-11.700000px;}
.ws8{word-spacing:-11.625840px;}
.ws23{word-spacing:-11.602884px;}
.ws22{word-spacing:-11.526874px;}
.ws1a{word-spacing:-10.440000px;}
.ws1c{word-spacing:-10.418400px;}
.ws1d{word-spacing:-10.314600px;}
.ws1b{word-spacing:-10.169400px;}
.wsa{word-spacing:-10.064160px;}
.ws9{word-spacing:-9.760560px;}
.ws7{word-spacing:0.000000px;}
.ws15{word-spacing:0.972000px;}
._34{margin-left:-3.251040px;}
._5{margin-left:-2.064480px;}
._0{margin-left:-1.008000px;}
._1{width:1.200000px;}
._4{width:2.545440px;}
._1a{width:3.810960px;}
._a{width:5.157840px;}
._11{width:6.309600px;}
._19{width:7.580640px;}
._3{width:8.779680px;}
._22{width:10.278720px;}
._2c{width:11.354400px;}
._23{width:12.788640px;}
._15{width:14.462160px;}
._32{width:15.627840px;}
._1c{width:16.944000px;}
._20{width:18.548640px;}
._f{width:20.605440px;}
._e{width:21.699120px;}
._14{width:23.019360px;}
._b{width:24.554160px;}
._37{width:25.572480px;}
._16{width:26.580240px;}
._17{width:27.933120px;}
._18{width:29.831040px;}
._2{width:30.970080px;}
._26{width:32.310960px;}
._28{width:33.759600px;}
._33{width:34.926000px;}
._7{width:35.938800px;}
._6{width:37.376160px;}
._27{width:39.142800px;}
._21{width:40.273440px;}
._13{width:41.820240px;}
._30{width:42.880560px;}
._35{width:44.304480px;}
._2b{width:45.338400px;}
._9{width:46.353600px;}
._8{width:47.656080px;}
._1d{width:49.512480px;}
._2e{width:50.915520px;}
._36{width:52.588800px;}
._d{width:53.777760px;}
._39{width:55.154160px;}
._25{width:56.175840px;}
._31{width:57.787920px;}
._3a{width:58.803840px;}
._2d{width:59.819760px;}
._1f{width:61.146720px;}
._3f{width:62.193120px;}
._2a{width:63.308880px;}
._29{width:64.361520px;}
._24{width:65.676240px;}
._c{width:66.802560px;}
._3c{width:70.755840px;}
._3b{width:72.190080px;}
._38{width:75.233040px;}
._1e{width:78.818640px;}
._1b{width:81.094320px;}
._2f{width:82.344480px;}
._3d{width:83.604240px;}
._10{width:85.433040px;}
._3e{width:117.474720px;}
._12{width:124.507440px;}
.fc4{color:transparent;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fse{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fsd{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs10{font-size:46.107496px;}
.fs11{font-size:46.207729px;}
.fs1{font-size:48.240000px;}
.fsc{font-size:50.848916px;}
.fs7{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fsf{font-size:58.636706px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.980000px;}
.y1a4{bottom:2.340000px;}
.y187{bottom:2.520000px;}
.y188{bottom:2.700000px;}
.ya9{bottom:2.880000px;}
.y12b{bottom:3.060000px;}
.y1eb{bottom:3.240000px;}
.y77{bottom:4.140000px;}
.y7a{bottom:4.320000px;}
.y18f{bottom:4.500000px;}
.y1fd{bottom:4.860000px;}
.y1d1{bottom:5.220000px;}
.y79{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y1c5{bottom:7.380000px;}
.y1c8{bottom:8.280000px;}
.y1cc{bottom:9.360000px;}
.y185{bottom:9.900000px;}
.y183{bottom:10.080000px;}
.y250{bottom:10.148667px;}
.y257{bottom:10.148668px;}
.y255{bottom:10.169549px;}
.ybc{bottom:10.440000px;}
.y198{bottom:11.340000px;}
.y2a8{bottom:11.880000px;}
.y204{bottom:12.060000px;}
.y2{bottom:12.240000px;}
.y1f3{bottom:12.600000px;}
.y1fb{bottom:12.780000px;}
.y17c{bottom:13.860000px;}
.y1a5{bottom:14.400000px;}
.y238{bottom:14.643515px;}
.y1a2{bottom:14.760000px;}
.y1dc{bottom:15.300000px;}
.y181{bottom:16.020000px;}
.y2a1{bottom:16.200000px;}
.y19f{bottom:16.380000px;}
.y194{bottom:16.560000px;}
.y175{bottom:16.740000px;}
.y1c0{bottom:17.280000px;}
.y18c{bottom:17.460000px;}
.yb1{bottom:17.820000px;}
.yab{bottom:18.000000px;}
.yaf{bottom:18.045000px;}
.y18e{bottom:18.360000px;}
.y128{bottom:18.540000px;}
.y1ea{bottom:18.720000px;}
.y1f0{bottom:19.260000px;}
.y1f7{bottom:19.440000px;}
.y1c4{bottom:19.800000px;}
.y200{bottom:19.980000px;}
.y1c7{bottom:20.340000px;}
.y1b2{bottom:20.520000px;}
.y1c2{bottom:21.420000px;}
.y1af{bottom:22.320000px;}
.y1b7{bottom:23.220000px;}
.y1d0{bottom:23.400000px;}
.y17b{bottom:24.840000px;}
.y197{bottom:25.200000px;}
.ybf{bottom:25.380000px;}
.yc2{bottom:25.560000px;}
.y1ca{bottom:26.460000px;}
.y1e1{bottom:26.490000px;}
.y1ab{bottom:26.640000px;}
.y1db{bottom:27.390000px;}
.y1ff{bottom:27.720000px;}
.y1f2{bottom:28.080000px;}
.y1f9{bottom:28.260000px;}
.y1b0{bottom:28.440000px;}
.y1d3{bottom:28.800000px;}
.y1be{bottom:29.340000px;}
.y2a0{bottom:30.060000px;}
.y193{bottom:31.320000px;}
.y180{bottom:31.500000px;}
.y174{bottom:32.220000px;}
.y18b{bottom:32.400000px;}
.y1c6{bottom:32.760000px;}
.y8{bottom:32.940000px;}
.yac{bottom:33.120000px;}
.yae{bottom:33.165000px;}
.y1de{bottom:33.510000px;}
.y1cb{bottom:33.525000px;}
.y1c3{bottom:33.885000px;}
.y129{bottom:34.020000px;}
.y1b9{bottom:34.380000px;}
.y1ae{bottom:34.560000px;}
.y170{bottom:34.920000px;}
.y1b5{bottom:35.280000px;}
.y1cf{bottom:35.460000px;}
.y1ee{bottom:35.820000px;}
.y1f5{bottom:36.000000px;}
.y17a{bottom:36.720000px;}
.y1e0{bottom:38.550000px;}
.y1c9{bottom:38.925000px;}
.y1aa{bottom:39.060000px;}
.y196{bottom:39.240000px;}
.y1da{bottom:39.450000px;}
.ybe{bottom:40.500000px;}
.y1bc{bottom:40.860000px;}
.y1bd{bottom:41.400000px;}
.y1d2{bottom:42.840000px;}
.y171{bottom:43.170000px;}
.y1f1{bottom:43.560000px;}
.y1f8{bottom:43.740000px;}
.y29f{bottom:43.920000px;}
.y2a5{bottom:43.950000px;}
.y1dd{bottom:45.570000px;}
.y19e{bottom:46.080000px;}
.y18d{bottom:46.260000px;}
.y1ad{bottom:46.620000px;}
.y1b8{bottom:46.800000px;}
.y17f{bottom:46.980000px;}
.y18a{bottom:47.160000px;}
.y1b6{bottom:47.340000px;}
.y1d6{bottom:47.520000px;}
.y173{bottom:47.700000px;}
.y179{bottom:47.925000px;}
.yc0{bottom:48.060000px;}
.y6{bottom:48.600000px;}
.y130{bottom:49.500000px;}
.y12e{bottom:49.530000px;}
.y1df{bottom:50.970000px;}
.y16f{bottom:51.300000px;}
.y1fc{bottom:51.480000px;}
.y249{bottom:51.896240px;}
.y1f6{bottom:52.380000px;}
.y1ef{bottom:52.425000px;}
.y1a9{bottom:52.560000px;}
.y1d7{bottom:52.920000px;}
.y195{bottom:53.100000px;}
.y1bf{bottom:53.460000px;}
.y1bb{bottom:54.360000px;}
.y17d{bottom:55.980000px;}
.y245{bottom:56.582149px;}
.y1ac{bottom:58.680000px;}
.y1b1{bottom:59.040000px;}
.y178{bottom:59.805000px;}
.y19b{bottom:60.165000px;}
.y192{bottom:61.020000px;}
.y19a{bottom:61.245000px;}
.y248{bottom:63.798991px;}
.y1a8{bottom:64.620000px;}
.y1ba{bottom:66.780000px;}
.y244{bottom:68.484899px;}
.y177{bottom:70.785000px;}
.y5{bottom:72.900000px;}
.y247{bottom:75.701740px;}
.y1a7{bottom:77.040000px;}
.y243{bottom:80.387651px;}
.y246{bottom:87.604492px;}
.y15e{bottom:88.200000px;}
.yb7{bottom:88.920000px;}
.y242{bottom:92.290401px;}
.y112{bottom:94.140000px;}
.y75{bottom:94.320000px;}
.y2aa{bottom:95.580000px;}
.y216{bottom:96.300000px;}
.y2a9{bottom:97.380000px;}
.y50{bottom:97.560000px;}
.y236{bottom:97.740000px;}
.yf8{bottom:98.640000px;}
.y2a7{bottom:98.820000px;}
.y1e5{bottom:101.880000px;}
.yb6{bottom:103.680000px;}
.ye2{bottom:104.220000px;}
.y280{bottom:105.300000px;}
.y15d{bottom:105.480000px;}
.y4f{bottom:111.420000px;}
.y21f{bottom:113.580000px;}
.y215{bottom:114.660000px;}
.y235{bottom:115.020000px;}
.yf7{bottom:115.920000px;}
.y1e4{bottom:119.160000px;}
.y16c{bottom:120.960000px;}
.ye1{bottom:121.500000px;}
.y27f{bottom:122.580000px;}
.y15c{bottom:122.760000px;}
.y4e{bottom:125.100000px;}
.y74{bottom:128.700000px;}
.y16e{bottom:130.215000px;}
.y21e{bottom:130.860000px;}
.y234{bottom:132.120000px;}
.yf6{bottom:133.020000px;}
.y1e3{bottom:134.460000px;}
.y2a6{bottom:134.640000px;}
.y16b{bottom:137.160000px;}
.ye0{bottom:138.780000px;}
.y4d{bottom:138.960000px;}
.y27e{bottom:139.860000px;}
.y15a{bottom:140.040000px;}
.y1e2{bottom:143.100000px;}
.y16d{bottom:144.255000px;}
.y111{bottom:144.360000px;}
.y73{bottom:145.980000px;}
.y21d{bottom:148.140000px;}
.y2a4{bottom:148.680000px;}
.y233{bottom:149.400000px;}
.yb5{bottom:149.760000px;}
.yf5{bottom:150.300000px;}
.y110{bottom:151.380000px;}
.y4c{bottom:152.820000px;}
.y16a{bottom:153.540000px;}
.ydf{bottom:156.060000px;}
.y1d9{bottom:156.780000px;}
.y27d{bottom:157.140000px;}
.y159{bottom:157.320000px;}
.y137{bottom:163.080000px;}
.y72{bottom:163.260000px;}
.y21c{bottom:165.420000px;}
.y4b{bottom:166.500000px;}
.y232{bottom:166.680000px;}
.yf4{bottom:167.580000px;}
.y214{bottom:169.560000px;}
.yde{bottom:173.340000px;}
.y27c{bottom:174.240000px;}
.y158{bottom:174.600000px;}
.y4a{bottom:180.360000px;}
.y71{bottom:180.540000px;}
.y21b{bottom:183.630000px;}
.y231{bottom:183.990000px;}
.yf3{bottom:184.890000px;}
.y213{bottom:187.950000px;}
.y24e{bottom:190.144601px;}
.ydd{bottom:190.470000px;}
.y157{bottom:191.730000px;}
.y49{bottom:194.250000px;}
.yb4{bottom:195.690000px;}
.y70{bottom:197.670000px;}
.y230{bottom:201.270000px;}
.y24d{bottom:201.942941px;}
.y21a{bottom:201.990000px;}
.yf2{bottom:202.170000px;}
.y2a3{bottom:203.970000px;}
.y168{bottom:206.280000px;}
.y212{bottom:206.310000px;}
.ydc{bottom:207.750000px;}
.y48{bottom:207.930000px;}
.y156{bottom:209.010000px;}
.y24c{bottom:213.845692px;}
.y6f{bottom:214.950000px;}
.y241{bottom:215.578876px;}
.y27b{bottom:216.930000px;}
.y2a2{bottom:217.650000px;}
.y22f{bottom:218.370000px;}
.yf1{bottom:219.450000px;}
.y1d8{bottom:219.810000px;}
.y167{bottom:220.320000px;}
.y219{bottom:220.350000px;}
.y47{bottom:221.790000px;}
.y211{bottom:223.590000px;}
.ydb{bottom:225.030000px;}
.y24b{bottom:225.748442px;}
.y155{bottom:226.290000px;}
.yb3{bottom:226.650000px;}
.y240{bottom:227.481625px;}
.y29e{bottom:231.510000px;}
.y6e{bottom:232.230000px;}
.y1d5{bottom:232.590000px;}
.y166{bottom:234.180000px;}
.y169{bottom:234.330000px;}
.y46{bottom:235.650000px;}
.yf0{bottom:236.550000px;}
.y24a{bottom:237.651192px;}
.y218{bottom:238.710000px;}
.y23f{bottom:239.384377px;}
.y210{bottom:240.870000px;}
.yda{bottom:242.310000px;}
.y154{bottom:243.570000px;}
.y165{bottom:248.220000px;}
.y45{bottom:249.330000px;}
.y6d{bottom:249.510000px;}
.y23e{bottom:251.287127px;}
.y22e{bottom:252.930000px;}
.yef{bottom:253.830000px;}
.y217{bottom:257.070000px;}
.y20f{bottom:258.150000px;}
.yd9{bottom:259.590000px;}
.y27a{bottom:259.770000px;}
.y153{bottom:260.850000px;}
.y164{bottom:262.260000px;}
.y44{bottom:263.190000px;}
.y136{bottom:266.610000px;}
.y6c{bottom:266.790000px;}
.y22d{bottom:270.210000px;}
.yee{bottom:271.110000px;}
.yb2{bottom:272.550000px;}
.y20e{bottom:275.250000px;}
.yd8{bottom:276.870000px;}
.y43{bottom:277.050000px;}
.y23d{bottom:277.191280px;}
.y152{bottom:277.950000px;}
.y135{bottom:283.890000px;}
.y6b{bottom:284.070000px;}
.y29d{bottom:286.590000px;}
.y22c{bottom:287.490000px;}
.yed{bottom:288.390000px;}
.y23c{bottom:288.968740px;}
.y42{bottom:290.730000px;}
.y20d{bottom:292.530000px;}
.yd7{bottom:293.970000px;}
.y279{bottom:294.330000px;}
.y151{bottom:295.230000px;}
.y6a{bottom:301.170000px;}
.y29c{bottom:303.330000px;}
.y41{bottom:304.590000px;}
.y22b{bottom:304.770000px;}
.y23b{bottom:305.507297px;}
.yec{bottom:305.670000px;}
.y20c{bottom:309.810000px;}
.yd6{bottom:311.250000px;}
.y1d4{bottom:311.430000px;}
.y278{bottom:311.610000px;}
.y150{bottom:312.510000px;}
.y162{bottom:315.105000px;}
.y23a{bottom:317.410049px;}
.y40{bottom:318.450000px;}
.y29b{bottom:319.170000px;}
.y22a{bottom:321.870000px;}
.yeb{bottom:322.950000px;}
.y1ce{bottom:324.210000px;}
.y20b{bottom:327.090000px;}
.yd5{bottom:328.530000px;}
.y277{bottom:328.890000px;}
.y14f{bottom:329.790000px;}
.y161{bottom:331.305000px;}
.y163{bottom:331.410000px;}
.y3f{bottom:332.130000px;}
.y69{bottom:335.730000px;}
.y29a{bottom:336.450000px;}
.y229{bottom:339.150000px;}
.yea{bottom:340.050000px;}
.y20a{bottom:344.370000px;}
.yd4{bottom:345.810000px;}
.y3e{bottom:345.990000px;}
.y276{bottom:346.170000px;}
.y14e{bottom:347.070000px;}
.y160{bottom:347.685000px;}
.y134{bottom:352.830000px;}
.y68{bottom:353.010000px;}
.y299{bottom:353.730000px;}
.y228{bottom:356.430000px;}
.ye9{bottom:357.330000px;}
.y3d{bottom:359.850000px;}
.y209{bottom:361.470000px;}
.yd3{bottom:363.090000px;}
.y275{bottom:363.270000px;}
.y14d{bottom:364.350000px;}
.yb0{bottom:364.530000px;}
.y133{bottom:370.110000px;}
.y67{bottom:370.290000px;}
.y298{bottom:371.010000px;}
.y3c{bottom:373.530000px;}
.y227{bottom:373.710000px;}
.ye8{bottom:374.610000px;}
.y208{bottom:378.750000px;}
.y1cd{bottom:378.930000px;}
.yd2{bottom:380.190000px;}
.y274{bottom:380.550000px;}
.y14c{bottom:381.450000px;}
.y3b{bottom:387.390000px;}
.y66{bottom:387.570000px;}
.y297{bottom:388.290000px;}
.y226{bottom:390.990000px;}
.ye7{bottom:391.890000px;}
.y207{bottom:396.030000px;}
.yd1{bottom:397.470000px;}
.y273{bottom:397.830000px;}
.y14b{bottom:398.730000px;}
.y3a{bottom:401.250000px;}
.y65{bottom:404.670000px;}
.y296{bottom:405.570000px;}
.y225{bottom:408.270000px;}
.ye6{bottom:409.170000px;}
.yad{bottom:410.430000px;}
.y206{bottom:412.410000px;}
.yd0{bottom:414.750000px;}
.y39{bottom:414.930000px;}
.y272{bottom:415.110000px;}
.y14a{bottom:416.010000px;}
.y64{bottom:421.950000px;}
.y295{bottom:422.670000px;}
.y205{bottom:425.415000px;}
.ye5{bottom:426.315000px;}
.y38{bottom:428.835000px;}
.ycf{bottom:432.075000px;}
.y271{bottom:432.435000px;}
.y149{bottom:433.335000px;}
.y63{bottom:439.275000px;}
.y294{bottom:439.995000px;}
.y203{bottom:440.175000px;}
.y37{bottom:442.695000px;}
.y1c1{bottom:442.875000px;}
.ye4{bottom:443.595000px;}
.y270{bottom:449.715000px;}
.y148{bottom:450.615000px;}
.y1b4{bottom:455.655000px;}
.y36{bottom:456.375000px;}
.y62{bottom:456.555000px;}
.y293{bottom:457.275000px;}
.y224{bottom:459.975000px;}
.ye3{bottom:460.875000px;}
.y26f{bottom:466.815000px;}
.y147{bottom:467.895000px;}
.y35{bottom:470.235000px;}
.y132{bottom:473.655000px;}
.y61{bottom:473.835000px;}
.y292{bottom:474.555000px;}
.yce{bottom:476.895000px;}
.y223{bottom:477.255000px;}
.y34{bottom:483.915000px;}
.y26e{bottom:484.095000px;}
.y146{bottom:484.995000px;}
.ycd{bottom:488.415000px;}
.y202{bottom:490.395000px;}
.y60{bottom:490.935000px;}
.y291{bottom:491.835000px;}
.y222{bottom:493.635000px;}
.y33{bottom:497.775000px;}
.y26d{bottom:501.375000px;}
.y145{bottom:502.275000px;}
.yaa{bottom:502.455000px;}
.ycc{bottom:503.175000px;}
.y131{bottom:505.695000px;}
.y221{bottom:506.595000px;}
.y5f{bottom:508.215000px;}
.y290{bottom:508.935000px;}
.y32{bottom:511.635000px;}
.y26c{bottom:518.655000px;}
.y144{bottom:519.555000px;}
.y220{bottom:523.875000px;}
.y31{bottom:525.315000px;}
.y5e{bottom:525.495000px;}
.y28f{bottom:526.215000px;}
.y1b3{bottom:534.495000px;}
.y26b{bottom:535.935000px;}
.y143{bottom:536.835000px;}
.y30{bottom:539.175000px;}
.y201{bottom:540.615000px;}
.y5d{bottom:542.775000px;}
.y28e{bottom:543.495000px;}
.y1a6{bottom:547.275000px;}
.y237{bottom:548.294959px;}
.y239{bottom:548.354254px;}
.ya8{bottom:548.355000px;}
.ycb{bottom:549.255000px;}
.y2f{bottom:553.035000px;}
.y142{bottom:554.115000px;}
.y251{bottom:558.803859px;}
.y5c{bottom:560.055000px;}
.y252{bottom:560.182057px;}
.y28d{bottom:560.775000px;}
.y2e{bottom:566.715000px;}
.y10f{bottom:567.075000px;}
.y12f{bottom:568.515000px;}
.y26a{bottom:570.315000px;}
.y15b{bottom:571.395000px;}
.y5b{bottom:577.335000px;}
.y28c{bottom:578.055000px;}
.y2d{bottom:580.575000px;}
.ya7{bottom:582.375000px;}
.y269{bottom:587.595000px;}
.y141{bottom:588.495000px;}
.y2c{bottom:594.435000px;}
.yca{bottom:595.155000px;}
.y28b{bottom:595.335000px;}
.ya6{bottom:599.655000px;}
.y268{bottom:604.875000px;}
.y140{bottom:605.775000px;}
.y10e{bottom:607.395000px;}
.y2b{bottom:608.115000px;}
.y5a{bottom:611.715000px;}
.y28a{bottom:612.435000px;}
.ya5{bottom:616.035000px;}
.y2a{bottom:621.975000px;}
.y267{bottom:622.155000px;}
.y13f{bottom:623.055000px;}
.y10d{bottom:624.675000px;}
.yc9{bottom:626.115000px;}
.y59{bottom:628.995000px;}
.y289{bottom:629.715000px;}
.y12d{bottom:631.335000px;}
.y29{bottom:635.835000px;}
.y1a1{bottom:636.375000px;}
.ya4{bottom:637.275000px;}
.y266{bottom:639.435000px;}
.y10c{bottom:641.955000px;}
.y58{bottom:646.275000px;}
.y288{bottom:646.995000px;}
.y28{bottom:649.515000px;}
.ya3{bottom:654.555000px;}
.y265{bottom:656.535000px;}
.y13e{bottom:657.615000px;}
.y10b{bottom:659.235000px;}
.y1a3{bottom:661.215000px;}
.y27{bottom:663.375000px;}
.y57{bottom:663.555000px;}
.y287{bottom:664.275000px;}
.y13d{bottom:671.505000px;}
.y15f{bottom:671.580000px;}
.ya2{bottom:671.865000px;}
.yc8{bottom:672.045000px;}
.y264{bottom:673.845000px;}
.y1fe{bottom:674.025000px;}
.y10a{bottom:676.545000px;}
.y26{bottom:677.445000px;}
.y56{bottom:680.865000px;}
.y286{bottom:681.585000px;}
.y25{bottom:686.985000px;}
.ya1{bottom:688.965000px;}
.y1a0{bottom:689.505000px;}
.y263{bottom:691.125000px;}
.y17e{bottom:692.745000px;}
.y109{bottom:693.645000px;}
.y12c{bottom:694.185000px;}
.y55{bottom:697.965000px;}
.y285{bottom:698.865000px;}
.y24{bottom:700.845000px;}
.y19d{bottom:704.265000px;}
.ya0{bottom:706.245000px;}
.y254{bottom:708.178159px;}
.y262{bottom:708.405000px;}
.y108{bottom:710.925000px;}
.y23{bottom:714.525000px;}
.y256{bottom:714.588926px;}
.y54{bottom:715.245000px;}
.y284{bottom:715.965000px;}
.yc7{bottom:717.945000px;}
.y76{bottom:722.985000px;}
.y9f{bottom:723.525000px;}
.y1fa{bottom:724.245000px;}
.y261{bottom:725.685000px;}
.y107{bottom:728.205000px;}
.y22{bottom:728.385000px;}
.y253{bottom:729.373385px;}
.y53{bottom:732.525000px;}
.y283{bottom:733.245000px;}
.y9e{bottom:740.805000px;}
.y12a{bottom:741.525000px;}
.y21{bottom:742.245000px;}
.y260{bottom:742.965000px;}
.y106{bottom:745.485000px;}
.y52{bottom:749.805000px;}
.y282{bottom:750.525000px;}
.y20{bottom:755.925000px;}
.y9d{bottom:758.085000px;}
.y25f{bottom:760.065000px;}
.y105{bottom:762.765000px;}
.yc6{bottom:764.025000px;}
.y51{bottom:767.085000px;}
.y1f{bottom:769.785000px;}
.y9c{bottom:775.365000px;}
.y25e{bottom:777.345000px;}
.y19c{bottom:778.245000px;}
.y104{bottom:780.045000px;}
.y1e{bottom:784.365000px;}
.y24f{bottom:788.260687px;}
.y127{bottom:788.865000px;}
.y1f4{bottom:791.025000px;}
.y9b{bottom:792.465000px;}
.y281{bottom:793.185000px;}
.y25d{bottom:794.625000px;}
.yc5{bottom:794.805000px;}
.y103{bottom:797.145000px;}
.y1d{bottom:800.745000px;}
.y8c{bottom:801.465000px;}
.y9a{bottom:809.745000px;}
.y25c{bottom:811.905000px;}
.y102{bottom:814.425000px;}
.y1c{bottom:815.325000px;}
.y8b{bottom:818.745000px;}
.y99{bottom:827.025000px;}
.y25b{bottom:829.185000px;}
.y101{bottom:831.705000px;}
.y1b{bottom:832.605000px;}
.y8a{bottom:836.025000px;}
.y126{bottom:836.205000px;}
.yc4{bottom:840.885000px;}
.y98{bottom:844.305000px;}
.y25a{bottom:845.565000px;}
.y100{bottom:848.985000px;}
.y1a{bottom:849.885000px;}
.y199{bottom:852.225000px;}
.y89{bottom:853.305000px;}
.y1ed{bottom:857.805000px;}
.y259{bottom:858.525000px;}
.y97{bottom:861.585000px;}
.yff{bottom:866.265000px;}
.y19{bottom:866.985000px;}
.y176{bottom:870.405000px;}
.y88{bottom:870.585000px;}
.y258{bottom:874.725000px;}
.y96{bottom:878.685000px;}
.yfe{bottom:883.545000px;}
.y18{bottom:884.265000px;}
.yc3{bottom:886.785000px;}
.y125{bottom:887.325000px;}
.y87{bottom:887.685000px;}
.y95{bottom:895.965000px;}
.yfd{bottom:900.645000px;}
.y17{bottom:901.545000px;}
.y124{bottom:901.725000px;}
.y86{bottom:904.965000px;}
.y94{bottom:913.290000px;}
.y16{bottom:918.870000px;}
.yfc{bottom:919.050000px;}
.y85{bottom:922.290000px;}
.y1e9{bottom:924.630000px;}
.y191{bottom:926.430000px;}
.y93{bottom:930.570000px;}
.yc1{bottom:932.730000px;}
.y15{bottom:936.150000px;}
.yfb{bottom:936.330000px;}
.y84{bottom:939.570000px;}
.y1ec{bottom:940.830000px;}
.y92{bottom:947.850000px;}
.y14{bottom:953.430000px;}
.y11c{bottom:953.610000px;}
.yfa{bottom:954.690000px;}
.y83{bottom:956.850000px;}
.y91{bottom:965.130000px;}
.y11b{bottom:970.890000px;}
.y13{bottom:971.250000px;}
.yf9{bottom:973.050000px;}
.y82{bottom:974.130000px;}
.y172{bottom:975.210000px;}
.ybd{bottom:978.810000px;}
.y90{bottom:982.230000px;}
.y11a{bottom:987.990000px;}
.y81{bottom:991.230000px;}
.y12{bottom:991.950000px;}
.y8f{bottom:999.510000px;}
.y190{bottom:1000.410000px;}
.y123{bottom:1005.270000px;}
.y119{bottom:1006.350000px;}
.y80{bottom:1008.510000px;}
.y11{bottom:1012.650000px;}
.y8e{bottom:1016.790000px;}
.y122{bottom:1022.550000px;}
.y118{bottom:1023.630000px;}
.y7f{bottom:1025.790000px;}
.y10{bottom:1033.350000px;}
.y8d{bottom:1038.570000px;}
.ybb{bottom:1039.830000px;}
.y117{bottom:1040.910000px;}
.y7e{bottom:1043.070000px;}
.yf{bottom:1054.050000px;}
.y13c{bottom:1054.770000px;}
.y1e8{bottom:1057.110000px;}
.y116{bottom:1058.190000px;}
.y7d{bottom:1060.350000px;}
.y189{bottom:1060.530000px;}
.y13b{bottom:1070.250000px;}
.y1e7{bottom:1074.390000px;}
.ye{bottom:1074.750000px;}
.y121{bottom:1075.470000px;}
.y115{bottom:1076.550000px;}
.y7c{bottom:1077.630000px;}
.y182{bottom:1078.710000px;}
.yba{bottom:1084.470000px;}
.y13a{bottom:1085.910000px;}
.y120{bottom:1092.570000px;}
.y114{bottom:1093.650000px;}
.yd{bottom:1094.730000px;}
.y139{bottom:1101.390000px;}
.yb9{bottom:1101.750000px;}
.y1e6{bottom:1109.850000px;}
.y113{bottom:1110.930000px;}
.yc{bottom:1112.010000px;}
.y138{bottom:1116.330000px;}
.yb8{bottom:1117.770000px;}
.y184{bottom:1120.650000px;}
.y11f{bottom:1128.210000px;}
.yb{bottom:1129.290000px;}
.y186{bottom:1135.410000px;}
.y11e{bottom:1145.490000px;}
.ya{bottom:1146.570000px;}
.y11d{bottom:1162.800000px;}
.y9{bottom:1163.880000px;}
.y7b{bottom:1184.940000px;}
.y4{bottom:1187.820000px;}
.y1{bottom:1199.880000px;}
.y78{bottom:1200.060000px;}
.h61{height:5.729063px;}
.h45{height:12.060000px;}
.h41{height:12.096000px;}
.h5d{height:13.680150px;}
.h3b{height:13.860000px;}
.h3c{height:14.040000px;}
.h1f{height:15.120000px;}
.h2b{height:15.480000px;}
.h7{height:17.903320px;}
.h19{height:20.340000px;}
.h2{height:20.520000px;}
.h57{height:20.923789px;}
.h5a{height:20.923791px;}
.h59{height:20.948848px;}
.h8{height:21.420000px;}
.h39{height:22.680000px;}
.h4b{height:23.319141px;}
.h42{height:24.120000px;}
.h4{height:27.210938px;}
.h3a{height:28.620000px;}
.h12{height:29.664141px;}
.h2a{height:29.678906px;}
.h27{height:30.060000px;}
.h25{height:30.240000px;}
.h4c{height:31.680000px;}
.h5f{height:32.580000px;}
.h5{height:32.835938px;}
.h3{height:33.011719px;}
.h26{height:35.332031px;}
.h43{height:36.805078px;}
.h40{height:36.936000px;}
.h4a{height:37.640116px;}
.h1c{height:38.089687px;}
.h13{height:39.760312px;}
.h54{height:39.871277px;}
.h1e{height:40.985156px;}
.h2f{height:42.086250px;}
.h14{height:42.516211px;}
.h1a{height:44.000156px;}
.h3e{height:45.054492px;}
.h21{height:45.180000px;}
.h24{height:45.216000px;}
.h58{height:45.251986px;}
.h23{height:45.360000px;}
.h55{height:46.467711px;}
.h56{height:46.568727px;}
.h2c{height:46.620000px;}
.h11{height:47.321367px;}
.h6{height:47.344922px;}
.h22{height:47.592773px;}
.h5c{height:47.980898px;}
.h60{height:48.616875px;}
.h50{height:49.500000px;}
.h9{height:50.068125px;}
.h47{height:50.076000px;}
.h15{height:50.171484px;}
.h35{height:52.543305px;}
.h16{height:52.669336px;}
.h31{height:52.971680px;}
.h20{height:52.998047px;}
.h33{height:53.139375px;}
.h38{height:53.709961px;}
.h48{height:54.000000px;}
.h30{height:54.421875px;}
.h5b{height:55.080000px;}
.h5e{height:55.296000px;}
.h4e{height:55.503491px;}
.h10{height:58.621992px;}
.hb{height:58.651172px;}
.h52{height:59.094806px;}
.h3d{height:59.400000px;}
.h1d{height:59.439023px;}
.h37{height:59.580000px;}
.hc{height:60.226875px;}
.h28{height:60.300000px;}
.h1b{height:60.741562px;}
.h29{height:61.423863px;}
.h2e{height:62.100000px;}
.h2d{height:62.136000px;}
.hd{height:62.261719px;}
.h49{height:62.316000px;}
.ha{height:65.884219px;}
.h4d{height:65.916000px;}
.h4f{height:66.060000px;}
.h36{height:68.580000px;}
.hf{height:70.664062px;}
.he{height:72.562500px;}
.h17{height:73.260000px;}
.h3f{height:73.476000px;}
.h46{height:78.120000px;}
.h34{height:80.676000px;}
.h44{height:88.380000px;}
.h18{height:282.656250px;}
.h53{height:359.212524px;}
.h51{height:367.043271px;}
.h32{height:380.340000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w7{width:70.956000px;}
.w2d{width:84.960000px;}
.w28{width:89.985060px;}
.w1f{width:90.000000px;}
.w2a{width:90.090429px;}
.w1b{width:94.500000px;}
.w1d{width:96.516000px;}
.w29{width:96.570618px;}
.w1e{width:96.660000px;}
.w21{width:97.020000px;}
.w20{width:103.176000px;}
.w15{width:104.436000px;}
.w14{width:105.156000px;}
.w12{width:105.696000px;}
.w13{width:105.876000px;}
.w2b{width:115.532633px;}
.w10{width:133.020000px;}
.w17{width:136.980000px;}
.wd{width:154.080000px;}
.w1a{width:190.110000px;}
.w23{width:190.290000px;}
.w26{width:196.950000px;}
.wb{width:206.670000px;}
.wa{width:223.230000px;}
.w9{width:228.450000px;}
.w8{width:228.630000px;}
.w2{width:229.350000px;}
.wf{width:242.490000px;}
.we{width:280.875000px;}
.w25{width:289.830000px;}
.w19{width:350.355000px;}
.w4{width:434.235000px;}
.wc{width:471.495000px;}
.w24{width:487.695000px;}
.w27{width:525.275069px;}
.w18{width:541.185000px;}
.w11{width:545.145000px;}
.w1c{width:583.665000px;}
.w2e{width:595.545000px;}
.w16{width:647.205000px;}
.w22{width:678.885000px;}
.w6{width:680.325000px;}
.w2c{width:682.485000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x74{left:1.980000px;}
.x37{left:5.085000px;}
.x2{left:8.100000px;}
.x4{left:9.180000px;}
.x36{left:10.845000px;}
.x19{left:12.780000px;}
.x4f{left:14.760000px;}
.x24{left:16.560000px;}
.x45{left:17.640000px;}
.x47{left:19.440000px;}
.x51{left:20.880000px;}
.x29{left:21.960000px;}
.x4d{left:23.400000px;}
.x4c{left:24.660000px;}
.x52{left:25.740000px;}
.x41{left:26.820000px;}
.x4a{left:27.900000px;}
.x40{left:29.160000px;}
.x54{left:30.780000px;}
.x26{left:32.625000px;}
.x4e{left:35.100000px;}
.x53{left:37.080000px;}
.x2d{left:40.140000px;}
.x3b{left:43.554000px;}
.x57{left:49.674000px;}
.x3f{left:52.740000px;}
.x73{left:55.074000px;}
.x5a{left:63.900000px;}
.x6c{left:65.012633px;}
.x6b{left:70.017655px;}
.x1b{left:71.280000px;}
.x6d{left:74.759259px;}
.x1f{left:77.034000px;}
.x6{left:86.940000px;}
.x27{left:102.285000px;}
.x1{left:104.256000px;}
.x9{left:106.415987px;}
.x3a{left:111.815987px;}
.x75{left:114.516000px;}
.x68{left:121.964542px;}
.xd{left:125.315987px;}
.x15{left:127.655987px;}
.x31{left:129.527987px;}
.x34{left:130.607987px;}
.x6a{left:132.106302px;}
.x3d{left:133.605000px;}
.x21{left:135.360000px;}
.x39{left:136.836000px;}
.x69{left:147.801880px;}
.xe{left:151.589987px;}
.x72{left:159.869987px;}
.x32{left:167.324987px;}
.x2b{left:169.949987px;}
.x55{left:172.649987px;}
.x22{left:176.969987px;}
.x33{left:184.604987px;}
.x56{left:189.209987px;}
.x1e{left:193.709987px;}
.x76{left:199.470000px;}
.x42{left:202.350000px;}
.x5d{left:209.234143px;}
.xb{left:213.869987px;}
.x58{left:216.570000px;}
.x5f{left:218.585636px;}
.x5e{left:231.493328px;}
.x60{left:238.078887px;}
.x2e{left:240.870000px;}
.x3c{left:244.830000px;}
.x25{left:261.930000px;}
.x43{left:283.395000px;}
.x5b{left:286.994987px;}
.x2c{left:297.614987px;}
.x44{left:299.775000px;}
.x7{left:305.130000px;}
.x20{left:314.535000px;}
.xa{left:327.099000px;}
.x1d{left:328.719000px;}
.x65{left:330.990139px;}
.x3{left:333.615000px;}
.x1a{left:335.055000px;}
.x50{left:339.339000px;}
.x66{left:342.712433px;}
.x67{left:343.897834px;}
.x30{left:348.404987px;}
.x5{left:354.675000px;}
.x23{left:359.174987px;}
.x61{left:364.313052px;}
.x62{left:367.078987px;}
.x64{left:369.318077px;}
.x63{left:384.069726px;}
.x6e{left:385.529638px;}
.x46{left:397.155000px;}
.xf{left:413.534987px;}
.x71{left:418.574987px;}
.xc{left:446.474987px;}
.x10{left:448.814987px;}
.x17{left:459.254987px;}
.x18{left:480.524987px;}
.x48{left:494.385000px;}
.x6f{left:504.355062px;}
.x16{left:519.044987px;}
.x12{left:520.124987px;}
.x5c{left:525.264092px;}
.x70{left:537.282840px;}
.x28{left:543.525000px;}
.x1c{left:563.505000px;}
.x49{left:585.105000px;}
.x59{left:589.065000px;}
.x3e{left:595.905000px;}
.x13{left:596.984987px;}
.x11{left:618.404987px;}
.x14{left:661.244987px;}
.x35{left:669.345000px;}
.x38{left:670.605000px;}
.x4b{left:689.010000px;}
.x2f{left:756.689987px;}
.x2a{left:784.049987px;}
.x8{left:786.749987px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-58.880000pt;}
.v3{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls3a{letter-spacing:-0.720000pt;}
.ls4f{letter-spacing:-0.592000pt;}
.ls5a{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.400533pt;}
.ls59{letter-spacing:-0.320000pt;}
.ls3b{letter-spacing:-0.299733pt;}
.ls11{letter-spacing:-0.269867pt;}
.ls8{letter-spacing:-0.259200pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.240533pt;}
.ls5c{letter-spacing:-0.239467pt;}
.ls12{letter-spacing:-0.216533pt;}
.ls5d{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.173333pt;}
.ls39{letter-spacing:-0.111467pt;}
.ls4e{letter-spacing:-0.047360pt;}
.ls38{letter-spacing:-0.019200pt;}
.ls36{letter-spacing:-0.017280pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.013440pt;}
.ls10{letter-spacing:0.016000pt;}
.ls57{letter-spacing:0.044160pt;}
.ls1{letter-spacing:0.047360pt;}
.ls52{letter-spacing:0.067565pt;}
.ls51{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.116480pt;}
.ls29{letter-spacing:0.133376pt;}
.ls3f{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.188959pt;}
.ls33{letter-spacing:0.192000pt;}
.ls5b{letter-spacing:0.198933pt;}
.ls2e{letter-spacing:0.208000pt;}
.ls2c{letter-spacing:0.217600pt;}
.ls31{letter-spacing:0.228480pt;}
.lse{letter-spacing:0.231040pt;}
.ls32{letter-spacing:0.234240pt;}
.ls5{letter-spacing:0.234667pt;}
.ls5e{letter-spacing:0.239467pt;}
.lsb{letter-spacing:0.261120pt;}
.ls55{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.272000pt;}
.ls0{letter-spacing:0.281600pt;}
.ls24{letter-spacing:0.294933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.380800pt;}
.ls34{letter-spacing:0.439040pt;}
.ls14{letter-spacing:0.456320pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls58{letter-spacing:0.560000pt;}
.ls1a{letter-spacing:0.778667pt;}
.ls50{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.960000pt;}
.ls4a{letter-spacing:2.720000pt;}
.ls49{letter-spacing:3.520000pt;}
.ls16{letter-spacing:4.640000pt;}
.lsc{letter-spacing:5.280000pt;}
.ls46{letter-spacing:6.560000pt;}
.lsd{letter-spacing:7.200000pt;}
.ls2a{letter-spacing:7.520000pt;}
.ls1c{letter-spacing:7.632640pt;}
.ls19{letter-spacing:7.739307pt;}
.ls18{letter-spacing:7.840000pt;}
.ls1e{letter-spacing:8.480000pt;}
.ls40{letter-spacing:9.760000pt;}
.ls1d{letter-spacing:12.320000pt;}
.ls2b{letter-spacing:12.816000pt;}
.ls41{letter-spacing:12.960000pt;}
.ls56{letter-spacing:13.392640pt;}
.ls42{letter-spacing:13.600000pt;}
.ls26{letter-spacing:14.240000pt;}
.ls3e{letter-spacing:18.016000pt;}
.ls28{letter-spacing:18.080000pt;}
.ls21{letter-spacing:19.360000pt;}
.ls30{letter-spacing:20.647680pt;}
.ls15{letter-spacing:23.840000pt;}
.ls2d{letter-spacing:24.487680pt;}
.ls45{letter-spacing:25.760000pt;}
.lsf{letter-spacing:27.040000pt;}
.ls23{letter-spacing:27.680000pt;}
.ls48{letter-spacing:30.880000pt;}
.ls4d{letter-spacing:34.080000pt;}
.ls4b{letter-spacing:35.978667pt;}
.ls4c{letter-spacing:36.000000pt;}
.ls54{letter-spacing:39.611307pt;}
.ls22{letter-spacing:46.240000pt;}
.ls43{letter-spacing:58.400000pt;}
.ls20{letter-spacing:62.240000pt;}
.ls44{letter-spacing:104.480000pt;}
.ls3{letter-spacing:111.520000pt;}
.ls27{letter-spacing:231.178667pt;}
.ls1f{letter-spacing:320.778667pt;}
.ls3c{letter-spacing:337.418667pt;}
.ls47{letter-spacing:1120.298667pt;}
.ws11{word-spacing:-53.120000pt;}
.ws1e{word-spacing:-48.000000pt;}
.ws0{word-spacing:-14.471680pt;}
.wsf{word-spacing:-14.058667pt;}
.ws10{word-spacing:-13.660800pt;}
.ws2{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.574933pt;}
.ws21{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.106667pt;}
.wsb{word-spacing:-13.063467pt;}
.ws5{word-spacing:-13.020800pt;}
.ws20{word-spacing:-12.688000pt;}
.wse{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.272000pt;}
.ws16{word-spacing:-12.208000pt;}
.ws1f{word-spacing:-12.144000pt;}
.ws14{word-spacing:-12.032000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.744000pt;}
.ws19{word-spacing:-11.680000pt;}
.ws17{word-spacing:-11.360000pt;}
.ws18{word-spacing:-11.342720pt;}
.ws25{word-spacing:-11.280000pt;}
.ws28{word-spacing:-11.040000pt;}
.ws27{word-spacing:-10.918933pt;}
.ws4{word-spacing:-10.720000pt;}
.ws29{word-spacing:-10.480533pt;}
.ws24{word-spacing:-10.435069pt;}
.ws26{word-spacing:-10.400000pt;}
.ws8{word-spacing:-10.334080pt;}
.ws23{word-spacing:-10.313675pt;}
.ws22{word-spacing:-10.246110pt;}
.ws1a{word-spacing:-9.280000pt;}
.ws1c{word-spacing:-9.260800pt;}
.ws1d{word-spacing:-9.168533pt;}
.ws1b{word-spacing:-9.039467pt;}
.wsa{word-spacing:-8.945920pt;}
.ws9{word-spacing:-8.676053pt;}
.ws7{word-spacing:0.000000pt;}
.ws15{word-spacing:0.864000pt;}
._34{margin-left:-2.889813pt;}
._5{margin-left:-1.835093pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.066667pt;}
._4{width:2.262613pt;}
._1a{width:3.387520pt;}
._a{width:4.584747pt;}
._11{width:5.608533pt;}
._19{width:6.738347pt;}
._3{width:7.804160pt;}
._22{width:9.136640pt;}
._2c{width:10.092800pt;}
._23{width:11.367680pt;}
._15{width:12.855253pt;}
._32{width:13.891413pt;}
._1c{width:15.061333pt;}
._20{width:16.487680pt;}
._f{width:18.315947pt;}
._e{width:19.288107pt;}
._14{width:20.461653pt;}
._b{width:21.825920pt;}
._37{width:22.731093pt;}
._16{width:23.626880pt;}
._17{width:24.829440pt;}
._18{width:26.516480pt;}
._2{width:27.528960pt;}
._26{width:28.720853pt;}
._28{width:30.008533pt;}
._33{width:31.045333pt;}
._7{width:31.945600pt;}
._6{width:33.223253pt;}
._27{width:34.793600pt;}
._21{width:35.798613pt;}
._13{width:37.173547pt;}
._30{width:38.116053pt;}
._35{width:39.381760pt;}
._2b{width:40.300800pt;}
._9{width:41.203200pt;}
._8{width:42.360960pt;}
._1d{width:44.011093pt;}
._2e{width:45.258240pt;}
._36{width:46.745600pt;}
._d{width:47.802453pt;}
._39{width:49.025920pt;}
._25{width:49.934080pt;}
._31{width:51.367040pt;}
._3a{width:52.270080pt;}
._2d{width:53.173120pt;}
._1f{width:54.352640pt;}
._3f{width:55.282773pt;}
._2a{width:56.274560pt;}
._29{width:57.210240pt;}
._24{width:58.378880pt;}
._c{width:59.380053pt;}
._3c{width:62.894080pt;}
._3b{width:64.168960pt;}
._38{width:66.873813pt;}
._1e{width:70.061013pt;}
._1b{width:72.083840pt;}
._2f{width:73.195093pt;}
._3d{width:74.314880pt;}
._10{width:75.940480pt;}
._3e{width:104.421973pt;}
._12{width:110.673280pt;}
.fse{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fsd{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs10{font-size:40.984441pt;}
.fs11{font-size:41.073537pt;}
.fs1{font-size:42.880000pt;}
.fsc{font-size:45.199037pt;}
.fs7{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fsf{font-size:52.121517pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.760000pt;}
.y1a4{bottom:2.080000pt;}
.y187{bottom:2.240000pt;}
.y188{bottom:2.400000pt;}
.ya9{bottom:2.560000pt;}
.y12b{bottom:2.720000pt;}
.y1eb{bottom:2.880000pt;}
.y77{bottom:3.680000pt;}
.y7a{bottom:3.840000pt;}
.y18f{bottom:4.000000pt;}
.y1fd{bottom:4.320000pt;}
.y1d1{bottom:4.640000pt;}
.y79{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y1c5{bottom:6.560000pt;}
.y1c8{bottom:7.360000pt;}
.y1cc{bottom:8.320000pt;}
.y185{bottom:8.800000pt;}
.y183{bottom:8.960000pt;}
.y250{bottom:9.021037pt;}
.y257{bottom:9.021038pt;}
.y255{bottom:9.039599pt;}
.ybc{bottom:9.280000pt;}
.y198{bottom:10.080000pt;}
.y2a8{bottom:10.560000pt;}
.y204{bottom:10.720000pt;}
.y2{bottom:10.880000pt;}
.y1f3{bottom:11.200000pt;}
.y1fb{bottom:11.360000pt;}
.y17c{bottom:12.320000pt;}
.y1a5{bottom:12.800000pt;}
.y238{bottom:13.016458pt;}
.y1a2{bottom:13.120000pt;}
.y1dc{bottom:13.600000pt;}
.y181{bottom:14.240000pt;}
.y2a1{bottom:14.400000pt;}
.y19f{bottom:14.560000pt;}
.y194{bottom:14.720000pt;}
.y175{bottom:14.880000pt;}
.y1c0{bottom:15.360000pt;}
.y18c{bottom:15.520000pt;}
.yb1{bottom:15.840000pt;}
.yab{bottom:16.000000pt;}
.yaf{bottom:16.040000pt;}
.y18e{bottom:16.320000pt;}
.y128{bottom:16.480000pt;}
.y1ea{bottom:16.640000pt;}
.y1f0{bottom:17.120000pt;}
.y1f7{bottom:17.280000pt;}
.y1c4{bottom:17.600000pt;}
.y200{bottom:17.760000pt;}
.y1c7{bottom:18.080000pt;}
.y1b2{bottom:18.240000pt;}
.y1c2{bottom:19.040000pt;}
.y1af{bottom:19.840000pt;}
.y1b7{bottom:20.640000pt;}
.y1d0{bottom:20.800000pt;}
.y17b{bottom:22.080000pt;}
.y197{bottom:22.400000pt;}
.ybf{bottom:22.560000pt;}
.yc2{bottom:22.720000pt;}
.y1ca{bottom:23.520000pt;}
.y1e1{bottom:23.546667pt;}
.y1ab{bottom:23.680000pt;}
.y1db{bottom:24.346667pt;}
.y1ff{bottom:24.640000pt;}
.y1f2{bottom:24.960000pt;}
.y1f9{bottom:25.120000pt;}
.y1b0{bottom:25.280000pt;}
.y1d3{bottom:25.600000pt;}
.y1be{bottom:26.080000pt;}
.y2a0{bottom:26.720000pt;}
.y193{bottom:27.840000pt;}
.y180{bottom:28.000000pt;}
.y174{bottom:28.640000pt;}
.y18b{bottom:28.800000pt;}
.y1c6{bottom:29.120000pt;}
.y8{bottom:29.280000pt;}
.yac{bottom:29.440000pt;}
.yae{bottom:29.480000pt;}
.y1de{bottom:29.786667pt;}
.y1cb{bottom:29.800000pt;}
.y1c3{bottom:30.120000pt;}
.y129{bottom:30.240000pt;}
.y1b9{bottom:30.560000pt;}
.y1ae{bottom:30.720000pt;}
.y170{bottom:31.040000pt;}
.y1b5{bottom:31.360000pt;}
.y1cf{bottom:31.520000pt;}
.y1ee{bottom:31.840000pt;}
.y1f5{bottom:32.000000pt;}
.y17a{bottom:32.640000pt;}
.y1e0{bottom:34.266667pt;}
.y1c9{bottom:34.600000pt;}
.y1aa{bottom:34.720000pt;}
.y196{bottom:34.880000pt;}
.y1da{bottom:35.066667pt;}
.ybe{bottom:36.000000pt;}
.y1bc{bottom:36.320000pt;}
.y1bd{bottom:36.800000pt;}
.y1d2{bottom:38.080000pt;}
.y171{bottom:38.373333pt;}
.y1f1{bottom:38.720000pt;}
.y1f8{bottom:38.880000pt;}
.y29f{bottom:39.040000pt;}
.y2a5{bottom:39.066667pt;}
.y1dd{bottom:40.506667pt;}
.y19e{bottom:40.960000pt;}
.y18d{bottom:41.120000pt;}
.y1ad{bottom:41.440000pt;}
.y1b8{bottom:41.600000pt;}
.y17f{bottom:41.760000pt;}
.y18a{bottom:41.920000pt;}
.y1b6{bottom:42.080000pt;}
.y1d6{bottom:42.240000pt;}
.y173{bottom:42.400000pt;}
.y179{bottom:42.600000pt;}
.yc0{bottom:42.720000pt;}
.y6{bottom:43.200000pt;}
.y130{bottom:44.000000pt;}
.y12e{bottom:44.026667pt;}
.y1df{bottom:45.306667pt;}
.y16f{bottom:45.600000pt;}
.y1fc{bottom:45.760000pt;}
.y249{bottom:46.129991pt;}
.y1f6{bottom:46.560000pt;}
.y1ef{bottom:46.600000pt;}
.y1a9{bottom:46.720000pt;}
.y1d7{bottom:47.040000pt;}
.y195{bottom:47.200000pt;}
.y1bf{bottom:47.520000pt;}
.y1bb{bottom:48.320000pt;}
.y17d{bottom:49.760000pt;}
.y245{bottom:50.295243pt;}
.y1ac{bottom:52.160000pt;}
.y1b1{bottom:52.480000pt;}
.y178{bottom:53.160000pt;}
.y19b{bottom:53.480000pt;}
.y192{bottom:54.240000pt;}
.y19a{bottom:54.440000pt;}
.y248{bottom:56.710214pt;}
.y1a8{bottom:57.440000pt;}
.y1ba{bottom:59.360000pt;}
.y244{bottom:60.875466pt;}
.y177{bottom:62.920000pt;}
.y5{bottom:64.800000pt;}
.y247{bottom:67.290435pt;}
.y1a7{bottom:68.480000pt;}
.y243{bottom:71.455689pt;}
.y246{bottom:77.870659pt;}
.y15e{bottom:78.400000pt;}
.yb7{bottom:79.040000pt;}
.y242{bottom:82.035912pt;}
.y112{bottom:83.680000pt;}
.y75{bottom:83.840000pt;}
.y2aa{bottom:84.960000pt;}
.y216{bottom:85.600000pt;}
.y2a9{bottom:86.560000pt;}
.y50{bottom:86.720000pt;}
.y236{bottom:86.880000pt;}
.yf8{bottom:87.680000pt;}
.y2a7{bottom:87.840000pt;}
.y1e5{bottom:90.560000pt;}
.yb6{bottom:92.160000pt;}
.ye2{bottom:92.640000pt;}
.y280{bottom:93.600000pt;}
.y15d{bottom:93.760000pt;}
.y4f{bottom:99.040000pt;}
.y21f{bottom:100.960000pt;}
.y215{bottom:101.920000pt;}
.y235{bottom:102.240000pt;}
.yf7{bottom:103.040000pt;}
.y1e4{bottom:105.920000pt;}
.y16c{bottom:107.520000pt;}
.ye1{bottom:108.000000pt;}
.y27f{bottom:108.960000pt;}
.y15c{bottom:109.120000pt;}
.y4e{bottom:111.200000pt;}
.y74{bottom:114.400000pt;}
.y16e{bottom:115.746667pt;}
.y21e{bottom:116.320000pt;}
.y234{bottom:117.440000pt;}
.yf6{bottom:118.240000pt;}
.y1e3{bottom:119.520000pt;}
.y2a6{bottom:119.680000pt;}
.y16b{bottom:121.920000pt;}
.ye0{bottom:123.360000pt;}
.y4d{bottom:123.520000pt;}
.y27e{bottom:124.320000pt;}
.y15a{bottom:124.480000pt;}
.y1e2{bottom:127.200000pt;}
.y16d{bottom:128.226667pt;}
.y111{bottom:128.320000pt;}
.y73{bottom:129.760000pt;}
.y21d{bottom:131.680000pt;}
.y2a4{bottom:132.160000pt;}
.y233{bottom:132.800000pt;}
.yb5{bottom:133.120000pt;}
.yf5{bottom:133.600000pt;}
.y110{bottom:134.560000pt;}
.y4c{bottom:135.840000pt;}
.y16a{bottom:136.480000pt;}
.ydf{bottom:138.720000pt;}
.y1d9{bottom:139.360000pt;}
.y27d{bottom:139.680000pt;}
.y159{bottom:139.840000pt;}
.y137{bottom:144.960000pt;}
.y72{bottom:145.120000pt;}
.y21c{bottom:147.040000pt;}
.y4b{bottom:148.000000pt;}
.y232{bottom:148.160000pt;}
.yf4{bottom:148.960000pt;}
.y214{bottom:150.720000pt;}
.yde{bottom:154.080000pt;}
.y27c{bottom:154.880000pt;}
.y158{bottom:155.200000pt;}
.y4a{bottom:160.320000pt;}
.y71{bottom:160.480000pt;}
.y21b{bottom:163.226667pt;}
.y231{bottom:163.546667pt;}
.yf3{bottom:164.346667pt;}
.y213{bottom:167.066667pt;}
.y24e{bottom:169.017423pt;}
.ydd{bottom:169.306667pt;}
.y157{bottom:170.426667pt;}
.y49{bottom:172.666667pt;}
.yb4{bottom:173.946667pt;}
.y70{bottom:175.706667pt;}
.y230{bottom:178.906667pt;}
.y24d{bottom:179.504836pt;}
.y21a{bottom:179.546667pt;}
.yf2{bottom:179.706667pt;}
.y2a3{bottom:181.306667pt;}
.y168{bottom:183.360000pt;}
.y212{bottom:183.386667pt;}
.ydc{bottom:184.666667pt;}
.y48{bottom:184.826667pt;}
.y156{bottom:185.786667pt;}
.y24c{bottom:190.085059pt;}
.y6f{bottom:191.066667pt;}
.y241{bottom:191.625667pt;}
.y27b{bottom:192.826667pt;}
.y2a2{bottom:193.466667pt;}
.y22f{bottom:194.106667pt;}
.yf1{bottom:195.066667pt;}
.y1d8{bottom:195.386667pt;}
.y167{bottom:195.840000pt;}
.y219{bottom:195.866667pt;}
.y47{bottom:197.146667pt;}
.y211{bottom:198.746667pt;}
.ydb{bottom:200.026667pt;}
.y24b{bottom:200.665282pt;}
.y155{bottom:201.146667pt;}
.yb3{bottom:201.466667pt;}
.y240{bottom:202.205889pt;}
.y29e{bottom:205.786667pt;}
.y6e{bottom:206.426667pt;}
.y1d5{bottom:206.746667pt;}
.y166{bottom:208.160000pt;}
.y169{bottom:208.293333pt;}
.y46{bottom:209.466667pt;}
.yf0{bottom:210.266667pt;}
.y24a{bottom:211.245504pt;}
.y218{bottom:212.186667pt;}
.y23f{bottom:212.786112pt;}
.y210{bottom:214.106667pt;}
.yda{bottom:215.386667pt;}
.y154{bottom:216.506667pt;}
.y165{bottom:220.640000pt;}
.y45{bottom:221.626667pt;}
.y6d{bottom:221.786667pt;}
.y23e{bottom:223.366335pt;}
.y22e{bottom:224.826667pt;}
.yef{bottom:225.626667pt;}
.y217{bottom:228.506667pt;}
.y20f{bottom:229.466667pt;}
.yd9{bottom:230.746667pt;}
.y27a{bottom:230.906667pt;}
.y153{bottom:231.866667pt;}
.y164{bottom:233.120000pt;}
.y44{bottom:233.946667pt;}
.y136{bottom:236.986667pt;}
.y6c{bottom:237.146667pt;}
.y22d{bottom:240.186667pt;}
.yee{bottom:240.986667pt;}
.yb2{bottom:242.266667pt;}
.y20e{bottom:244.666667pt;}
.yd8{bottom:246.106667pt;}
.y43{bottom:246.266667pt;}
.y23d{bottom:246.392249pt;}
.y152{bottom:247.066667pt;}
.y135{bottom:252.346667pt;}
.y6b{bottom:252.506667pt;}
.y29d{bottom:254.746667pt;}
.y22c{bottom:255.546667pt;}
.yed{bottom:256.346667pt;}
.y23c{bottom:256.861102pt;}
.y42{bottom:258.426667pt;}
.y20d{bottom:260.026667pt;}
.yd7{bottom:261.306667pt;}
.y279{bottom:261.626667pt;}
.y151{bottom:262.426667pt;}
.y6a{bottom:267.706667pt;}
.y29c{bottom:269.626667pt;}
.y41{bottom:270.746667pt;}
.y22b{bottom:270.906667pt;}
.y23b{bottom:271.562042pt;}
.yec{bottom:271.706667pt;}
.y20c{bottom:275.386667pt;}
.yd6{bottom:276.666667pt;}
.y1d4{bottom:276.826667pt;}
.y278{bottom:276.986667pt;}
.y150{bottom:277.786667pt;}
.y162{bottom:280.093333pt;}
.y23a{bottom:282.142266pt;}
.y40{bottom:283.066667pt;}
.y29b{bottom:283.706667pt;}
.y22a{bottom:286.106667pt;}
.yeb{bottom:287.066667pt;}
.y1ce{bottom:288.186667pt;}
.y20b{bottom:290.746667pt;}
.yd5{bottom:292.026667pt;}
.y277{bottom:292.346667pt;}
.y14f{bottom:293.146667pt;}
.y161{bottom:294.493333pt;}
.y163{bottom:294.586667pt;}
.y3f{bottom:295.226667pt;}
.y69{bottom:298.426667pt;}
.y29a{bottom:299.066667pt;}
.y229{bottom:301.466667pt;}
.yea{bottom:302.266667pt;}
.y20a{bottom:306.106667pt;}
.yd4{bottom:307.386667pt;}
.y3e{bottom:307.546667pt;}
.y276{bottom:307.706667pt;}
.y14e{bottom:308.506667pt;}
.y160{bottom:309.053333pt;}
.y134{bottom:313.626667pt;}
.y68{bottom:313.786667pt;}
.y299{bottom:314.426667pt;}
.y228{bottom:316.826667pt;}
.ye9{bottom:317.626667pt;}
.y3d{bottom:319.866667pt;}
.y209{bottom:321.306667pt;}
.yd3{bottom:322.746667pt;}
.y275{bottom:322.906667pt;}
.y14d{bottom:323.866667pt;}
.yb0{bottom:324.026667pt;}
.y133{bottom:328.986667pt;}
.y67{bottom:329.146667pt;}
.y298{bottom:329.786667pt;}
.y3c{bottom:332.026667pt;}
.y227{bottom:332.186667pt;}
.ye8{bottom:332.986667pt;}
.y208{bottom:336.666667pt;}
.y1cd{bottom:336.826667pt;}
.yd2{bottom:337.946667pt;}
.y274{bottom:338.266667pt;}
.y14c{bottom:339.066667pt;}
.y3b{bottom:344.346667pt;}
.y66{bottom:344.506667pt;}
.y297{bottom:345.146667pt;}
.y226{bottom:347.546667pt;}
.ye7{bottom:348.346667pt;}
.y207{bottom:352.026667pt;}
.yd1{bottom:353.306667pt;}
.y273{bottom:353.626667pt;}
.y14b{bottom:354.426667pt;}
.y3a{bottom:356.666667pt;}
.y65{bottom:359.706667pt;}
.y296{bottom:360.506667pt;}
.y225{bottom:362.906667pt;}
.ye6{bottom:363.706667pt;}
.yad{bottom:364.826667pt;}
.y206{bottom:366.586667pt;}
.yd0{bottom:368.666667pt;}
.y39{bottom:368.826667pt;}
.y272{bottom:368.986667pt;}
.y14a{bottom:369.786667pt;}
.y64{bottom:375.066667pt;}
.y295{bottom:375.706667pt;}
.y205{bottom:378.146667pt;}
.ye5{bottom:378.946667pt;}
.y38{bottom:381.186667pt;}
.ycf{bottom:384.066667pt;}
.y271{bottom:384.386667pt;}
.y149{bottom:385.186667pt;}
.y63{bottom:390.466667pt;}
.y294{bottom:391.106667pt;}
.y203{bottom:391.266667pt;}
.y37{bottom:393.506667pt;}
.y1c1{bottom:393.666667pt;}
.ye4{bottom:394.306667pt;}
.y270{bottom:399.746667pt;}
.y148{bottom:400.546667pt;}
.y1b4{bottom:405.026667pt;}
.y36{bottom:405.666667pt;}
.y62{bottom:405.826667pt;}
.y293{bottom:406.466667pt;}
.y224{bottom:408.866667pt;}
.ye3{bottom:409.666667pt;}
.y26f{bottom:414.946667pt;}
.y147{bottom:415.906667pt;}
.y35{bottom:417.986667pt;}
.y132{bottom:421.026667pt;}
.y61{bottom:421.186667pt;}
.y292{bottom:421.826667pt;}
.yce{bottom:423.906667pt;}
.y223{bottom:424.226667pt;}
.y34{bottom:430.146667pt;}
.y26e{bottom:430.306667pt;}
.y146{bottom:431.106667pt;}
.ycd{bottom:434.146667pt;}
.y202{bottom:435.906667pt;}
.y60{bottom:436.386667pt;}
.y291{bottom:437.186667pt;}
.y222{bottom:438.786667pt;}
.y33{bottom:442.466667pt;}
.y26d{bottom:445.666667pt;}
.y145{bottom:446.466667pt;}
.yaa{bottom:446.626667pt;}
.ycc{bottom:447.266667pt;}
.y131{bottom:449.506667pt;}
.y221{bottom:450.306667pt;}
.y5f{bottom:451.746667pt;}
.y290{bottom:452.386667pt;}
.y32{bottom:454.786667pt;}
.y26c{bottom:461.026667pt;}
.y144{bottom:461.826667pt;}
.y220{bottom:465.666667pt;}
.y31{bottom:466.946667pt;}
.y5e{bottom:467.106667pt;}
.y28f{bottom:467.746667pt;}
.y1b3{bottom:475.106667pt;}
.y26b{bottom:476.386667pt;}
.y143{bottom:477.186667pt;}
.y30{bottom:479.266667pt;}
.y201{bottom:480.546667pt;}
.y5d{bottom:482.466667pt;}
.y28e{bottom:483.106667pt;}
.y1a6{bottom:486.466667pt;}
.y237{bottom:487.373297pt;}
.y239{bottom:487.426004pt;}
.ya8{bottom:487.426667pt;}
.ycb{bottom:488.226667pt;}
.y2f{bottom:491.586667pt;}
.y142{bottom:492.546667pt;}
.y251{bottom:496.714541pt;}
.y5c{bottom:497.826667pt;}
.y252{bottom:497.939606pt;}
.y28d{bottom:498.466667pt;}
.y2e{bottom:503.746667pt;}
.y10f{bottom:504.066667pt;}
.y12f{bottom:505.346667pt;}
.y26a{bottom:506.946667pt;}
.y15b{bottom:507.906667pt;}
.y5b{bottom:513.186667pt;}
.y28c{bottom:513.826667pt;}
.y2d{bottom:516.066667pt;}
.ya7{bottom:517.666667pt;}
.y269{bottom:522.306667pt;}
.y141{bottom:523.106667pt;}
.y2c{bottom:528.386667pt;}
.yca{bottom:529.026667pt;}
.y28b{bottom:529.186667pt;}
.ya6{bottom:533.026667pt;}
.y268{bottom:537.666667pt;}
.y140{bottom:538.466667pt;}
.y10e{bottom:539.906667pt;}
.y2b{bottom:540.546667pt;}
.y5a{bottom:543.746667pt;}
.y28a{bottom:544.386667pt;}
.ya5{bottom:547.586667pt;}
.y2a{bottom:552.866667pt;}
.y267{bottom:553.026667pt;}
.y13f{bottom:553.826667pt;}
.y10d{bottom:555.266667pt;}
.yc9{bottom:556.546667pt;}
.y59{bottom:559.106667pt;}
.y289{bottom:559.746667pt;}
.y12d{bottom:561.186667pt;}
.y29{bottom:565.186667pt;}
.y1a1{bottom:565.666667pt;}
.ya4{bottom:566.466667pt;}
.y266{bottom:568.386667pt;}
.y10c{bottom:570.626667pt;}
.y58{bottom:574.466667pt;}
.y288{bottom:575.106667pt;}
.y28{bottom:577.346667pt;}
.ya3{bottom:581.826667pt;}
.y265{bottom:583.586667pt;}
.y13e{bottom:584.546667pt;}
.y10b{bottom:585.986667pt;}
.y1a3{bottom:587.746667pt;}
.y27{bottom:589.666667pt;}
.y57{bottom:589.826667pt;}
.y287{bottom:590.466667pt;}
.y13d{bottom:596.893333pt;}
.y15f{bottom:596.960000pt;}
.ya2{bottom:597.213333pt;}
.yc8{bottom:597.373333pt;}
.y264{bottom:598.973333pt;}
.y1fe{bottom:599.133333pt;}
.y10a{bottom:601.373333pt;}
.y26{bottom:602.173333pt;}
.y56{bottom:605.213333pt;}
.y286{bottom:605.853333pt;}
.y25{bottom:610.653333pt;}
.ya1{bottom:612.413333pt;}
.y1a0{bottom:612.893333pt;}
.y263{bottom:614.333333pt;}
.y17e{bottom:615.773333pt;}
.y109{bottom:616.573333pt;}
.y12c{bottom:617.053333pt;}
.y55{bottom:620.413333pt;}
.y285{bottom:621.213333pt;}
.y24{bottom:622.973333pt;}
.y19d{bottom:626.013333pt;}
.ya0{bottom:627.773333pt;}
.y254{bottom:629.491697pt;}
.y262{bottom:629.693333pt;}
.y108{bottom:631.933333pt;}
.y23{bottom:635.133333pt;}
.y256{bottom:635.190156pt;}
.y54{bottom:635.773333pt;}
.y284{bottom:636.413333pt;}
.yc7{bottom:638.173333pt;}
.y76{bottom:642.653333pt;}
.y9f{bottom:643.133333pt;}
.y1fa{bottom:643.773333pt;}
.y261{bottom:645.053333pt;}
.y107{bottom:647.293333pt;}
.y22{bottom:647.453333pt;}
.y253{bottom:648.331897pt;}
.y53{bottom:651.133333pt;}
.y283{bottom:651.773333pt;}
.y9e{bottom:658.493333pt;}
.y12a{bottom:659.133333pt;}
.y21{bottom:659.773333pt;}
.y260{bottom:660.413333pt;}
.y106{bottom:662.653333pt;}
.y52{bottom:666.493333pt;}
.y282{bottom:667.133333pt;}
.y20{bottom:671.933333pt;}
.y9d{bottom:673.853333pt;}
.y25f{bottom:675.613333pt;}
.y105{bottom:678.013333pt;}
.yc6{bottom:679.133333pt;}
.y51{bottom:681.853333pt;}
.y1f{bottom:684.253333pt;}
.y9c{bottom:689.213333pt;}
.y25e{bottom:690.973333pt;}
.y19c{bottom:691.773333pt;}
.y104{bottom:693.373333pt;}
.y1e{bottom:697.213333pt;}
.y24f{bottom:700.676166pt;}
.y127{bottom:701.213333pt;}
.y1f4{bottom:703.133333pt;}
.y9b{bottom:704.413333pt;}
.y281{bottom:705.053333pt;}
.y25d{bottom:706.333333pt;}
.yc5{bottom:706.493333pt;}
.y103{bottom:708.573333pt;}
.y1d{bottom:711.773333pt;}
.y8c{bottom:712.413333pt;}
.y9a{bottom:719.773333pt;}
.y25c{bottom:721.693333pt;}
.y102{bottom:723.933333pt;}
.y1c{bottom:724.733333pt;}
.y8b{bottom:727.773333pt;}
.y99{bottom:735.133333pt;}
.y25b{bottom:737.053333pt;}
.y101{bottom:739.293333pt;}
.y1b{bottom:740.093333pt;}
.y8a{bottom:743.133333pt;}
.y126{bottom:743.293333pt;}
.yc4{bottom:747.453333pt;}
.y98{bottom:750.493333pt;}
.y25a{bottom:751.613333pt;}
.y100{bottom:754.653333pt;}
.y1a{bottom:755.453333pt;}
.y199{bottom:757.533333pt;}
.y89{bottom:758.493333pt;}
.y1ed{bottom:762.493333pt;}
.y259{bottom:763.133333pt;}
.y97{bottom:765.853333pt;}
.yff{bottom:770.013333pt;}
.y19{bottom:770.653333pt;}
.y176{bottom:773.693333pt;}
.y88{bottom:773.853333pt;}
.y258{bottom:777.533333pt;}
.y96{bottom:781.053333pt;}
.yfe{bottom:785.373333pt;}
.y18{bottom:786.013333pt;}
.yc3{bottom:788.253333pt;}
.y125{bottom:788.733333pt;}
.y87{bottom:789.053333pt;}
.y95{bottom:796.413333pt;}
.yfd{bottom:800.573333pt;}
.y17{bottom:801.373333pt;}
.y124{bottom:801.533333pt;}
.y86{bottom:804.413333pt;}
.y94{bottom:811.813333pt;}
.y16{bottom:816.773333pt;}
.yfc{bottom:816.933333pt;}
.y85{bottom:819.813333pt;}
.y1e9{bottom:821.893333pt;}
.y191{bottom:823.493333pt;}
.y93{bottom:827.173333pt;}
.yc1{bottom:829.093333pt;}
.y15{bottom:832.133333pt;}
.yfb{bottom:832.293333pt;}
.y84{bottom:835.173333pt;}
.y1ec{bottom:836.293333pt;}
.y92{bottom:842.533333pt;}
.y14{bottom:847.493333pt;}
.y11c{bottom:847.653333pt;}
.yfa{bottom:848.613333pt;}
.y83{bottom:850.533333pt;}
.y91{bottom:857.893333pt;}
.y11b{bottom:863.013333pt;}
.y13{bottom:863.333333pt;}
.yf9{bottom:864.933333pt;}
.y82{bottom:865.893333pt;}
.y172{bottom:866.853333pt;}
.ybd{bottom:870.053333pt;}
.y90{bottom:873.093333pt;}
.y11a{bottom:878.213333pt;}
.y81{bottom:881.093333pt;}
.y12{bottom:881.733333pt;}
.y8f{bottom:888.453333pt;}
.y190{bottom:889.253333pt;}
.y123{bottom:893.573333pt;}
.y119{bottom:894.533333pt;}
.y80{bottom:896.453333pt;}
.y11{bottom:900.133333pt;}
.y8e{bottom:903.813333pt;}
.y122{bottom:908.933333pt;}
.y118{bottom:909.893333pt;}
.y7f{bottom:911.813333pt;}
.y10{bottom:918.533333pt;}
.y8d{bottom:923.173333pt;}
.ybb{bottom:924.293333pt;}
.y117{bottom:925.253333pt;}
.y7e{bottom:927.173333pt;}
.yf{bottom:936.933333pt;}
.y13c{bottom:937.573333pt;}
.y1e8{bottom:939.653333pt;}
.y116{bottom:940.613333pt;}
.y7d{bottom:942.533333pt;}
.y189{bottom:942.693333pt;}
.y13b{bottom:951.333333pt;}
.y1e7{bottom:955.013333pt;}
.ye{bottom:955.333333pt;}
.y121{bottom:955.973333pt;}
.y115{bottom:956.933333pt;}
.y7c{bottom:957.893333pt;}
.y182{bottom:958.853333pt;}
.yba{bottom:963.973333pt;}
.y13a{bottom:965.253333pt;}
.y120{bottom:971.173333pt;}
.y114{bottom:972.133333pt;}
.yd{bottom:973.093333pt;}
.y139{bottom:979.013333pt;}
.yb9{bottom:979.333333pt;}
.y1e6{bottom:986.533333pt;}
.y113{bottom:987.493333pt;}
.yc{bottom:988.453333pt;}
.y138{bottom:992.293333pt;}
.yb8{bottom:993.573333pt;}
.y184{bottom:996.133333pt;}
.y11f{bottom:1002.853333pt;}
.yb{bottom:1003.813333pt;}
.y186{bottom:1009.253333pt;}
.y11e{bottom:1018.213333pt;}
.ya{bottom:1019.173333pt;}
.y11d{bottom:1033.600000pt;}
.y9{bottom:1034.560000pt;}
.y7b{bottom:1053.280000pt;}
.y4{bottom:1055.840000pt;}
.y1{bottom:1066.560000pt;}
.y78{bottom:1066.720000pt;}
.h61{height:5.092500pt;}
.h45{height:10.720000pt;}
.h41{height:10.752000pt;}
.h5d{height:12.160133pt;}
.h3b{height:12.320000pt;}
.h3c{height:12.480000pt;}
.h1f{height:13.440000pt;}
.h2b{height:13.760000pt;}
.h7{height:15.914062pt;}
.h19{height:18.080000pt;}
.h2{height:18.240000pt;}
.h57{height:18.598924pt;}
.h5a{height:18.598925pt;}
.h59{height:18.621198pt;}
.h8{height:19.040000pt;}
.h39{height:20.160000pt;}
.h4b{height:20.728125pt;}
.h42{height:21.440000pt;}
.h4{height:24.187500pt;}
.h3a{height:25.440000pt;}
.h12{height:26.368125pt;}
.h2a{height:26.381250pt;}
.h27{height:26.720000pt;}
.h25{height:26.880000pt;}
.h4c{height:28.160000pt;}
.h5f{height:28.960000pt;}
.h5{height:29.187500pt;}
.h3{height:29.343750pt;}
.h26{height:31.406250pt;}
.h43{height:32.715625pt;}
.h40{height:32.832000pt;}
.h4a{height:33.457881pt;}
.h1c{height:33.857500pt;}
.h13{height:35.342500pt;}
.h54{height:35.441135pt;}
.h1e{height:36.431250pt;}
.h2f{height:37.410000pt;}
.h14{height:37.792187pt;}
.h1a{height:39.111250pt;}
.h3e{height:40.048437pt;}
.h21{height:40.160000pt;}
.h24{height:40.192000pt;}
.h58{height:40.223987pt;}
.h23{height:40.320000pt;}
.h55{height:41.304632pt;}
.h56{height:41.394424pt;}
.h2c{height:41.440000pt;}
.h11{height:42.063437pt;}
.h6{height:42.084375pt;}
.h22{height:42.304688pt;}
.h5c{height:42.649687pt;}
.h60{height:43.215000pt;}
.h50{height:44.000000pt;}
.h9{height:44.505000pt;}
.h47{height:44.512000pt;}
.h15{height:44.596875pt;}
.h35{height:46.705160pt;}
.h16{height:46.817187pt;}
.h31{height:47.085938pt;}
.h20{height:47.109375pt;}
.h33{height:47.235000pt;}
.h38{height:47.742188pt;}
.h48{height:48.000000pt;}
.h30{height:48.375000pt;}
.h5b{height:48.960000pt;}
.h5e{height:49.152000pt;}
.h4e{height:49.336436pt;}
.h10{height:52.108438pt;}
.hb{height:52.134375pt;}
.h52{height:52.528716pt;}
.h3d{height:52.800000pt;}
.h1d{height:52.834688pt;}
.h37{height:52.960000pt;}
.hc{height:53.535000pt;}
.h28{height:53.600000pt;}
.h1b{height:53.992500pt;}
.h29{height:54.598989pt;}
.h2e{height:55.200000pt;}
.h2d{height:55.232000pt;}
.hd{height:55.343750pt;}
.h49{height:55.392000pt;}
.ha{height:58.563750pt;}
.h4d{height:58.592000pt;}
.h4f{height:58.720000pt;}
.h36{height:60.960000pt;}
.hf{height:62.812500pt;}
.he{height:64.500000pt;}
.h17{height:65.120000pt;}
.h3f{height:65.312000pt;}
.h46{height:69.440000pt;}
.h34{height:71.712000pt;}
.h44{height:78.560000pt;}
.h18{height:251.250000pt;}
.h53{height:319.300021pt;}
.h51{height:326.260685pt;}
.h32{height:338.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w7{width:63.072000pt;}
.w2d{width:75.520000pt;}
.w28{width:79.986720pt;}
.w1f{width:80.000000pt;}
.w2a{width:80.080381pt;}
.w1b{width:84.000000pt;}
.w1d{width:85.792000pt;}
.w29{width:85.840549pt;}
.w1e{width:85.920000pt;}
.w21{width:86.240000pt;}
.w20{width:91.712000pt;}
.w15{width:92.832000pt;}
.w14{width:93.472000pt;}
.w12{width:93.952000pt;}
.w13{width:94.112000pt;}
.w2b{width:102.695674pt;}
.w10{width:118.240000pt;}
.w17{width:121.760000pt;}
.wd{width:136.960000pt;}
.w1a{width:168.986667pt;}
.w23{width:169.146667pt;}
.w26{width:175.066667pt;}
.wb{width:183.706667pt;}
.wa{width:198.426667pt;}
.w9{width:203.066667pt;}
.w8{width:203.226667pt;}
.w2{width:203.866667pt;}
.wf{width:215.546667pt;}
.we{width:249.666667pt;}
.w25{width:257.626667pt;}
.w19{width:311.426667pt;}
.w4{width:385.986667pt;}
.wc{width:419.106667pt;}
.w24{width:433.506667pt;}
.w27{width:466.911172pt;}
.w18{width:481.053333pt;}
.w11{width:484.573333pt;}
.w1c{width:518.813333pt;}
.w2e{width:529.373333pt;}
.w16{width:575.293333pt;}
.w22{width:603.453333pt;}
.w6{width:604.733333pt;}
.w2c{width:606.653333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x74{left:1.760000pt;}
.x37{left:4.520000pt;}
.x2{left:7.200000pt;}
.x4{left:8.160000pt;}
.x36{left:9.640000pt;}
.x19{left:11.360000pt;}
.x4f{left:13.120000pt;}
.x24{left:14.720000pt;}
.x45{left:15.680000pt;}
.x47{left:17.280000pt;}
.x51{left:18.560000pt;}
.x29{left:19.520000pt;}
.x4d{left:20.800000pt;}
.x4c{left:21.920000pt;}
.x52{left:22.880000pt;}
.x41{left:23.840000pt;}
.x4a{left:24.800000pt;}
.x40{left:25.920000pt;}
.x54{left:27.360000pt;}
.x26{left:29.000000pt;}
.x4e{left:31.200000pt;}
.x53{left:32.960000pt;}
.x2d{left:35.680000pt;}
.x3b{left:38.714667pt;}
.x57{left:44.154667pt;}
.x3f{left:46.880000pt;}
.x73{left:48.954667pt;}
.x5a{left:56.800000pt;}
.x6c{left:57.789007pt;}
.x6b{left:62.237916pt;}
.x1b{left:63.360000pt;}
.x6d{left:66.452675pt;}
.x1f{left:68.474667pt;}
.x6{left:77.280000pt;}
.x27{left:90.920000pt;}
.x1{left:92.672000pt;}
.x9{left:94.591988pt;}
.x3a{left:99.391988pt;}
.x75{left:101.792000pt;}
.x68{left:108.412926pt;}
.xd{left:111.391988pt;}
.x15{left:113.471988pt;}
.x31{left:115.135988pt;}
.x34{left:116.095988pt;}
.x6a{left:117.427824pt;}
.x3d{left:118.760000pt;}
.x21{left:120.320000pt;}
.x39{left:121.632000pt;}
.x69{left:131.379449pt;}
.xe{left:134.746655pt;}
.x72{left:142.106655pt;}
.x32{left:148.733322pt;}
.x2b{left:151.066655pt;}
.x55{left:153.466655pt;}
.x22{left:157.306655pt;}
.x33{left:164.093322pt;}
.x56{left:168.186655pt;}
.x1e{left:172.186655pt;}
.x76{left:177.306667pt;}
.x42{left:179.866667pt;}
.x5d{left:185.985905pt;}
.xb{left:190.106655pt;}
.x58{left:192.506667pt;}
.x5f{left:194.298343pt;}
.x5e{left:205.771847pt;}
.x60{left:211.625678pt;}
.x2e{left:214.106667pt;}
.x3c{left:217.626667pt;}
.x25{left:232.826667pt;}
.x43{left:251.906667pt;}
.x5b{left:255.106655pt;}
.x2c{left:264.546655pt;}
.x44{left:266.466667pt;}
.x7{left:271.226667pt;}
.x20{left:279.586667pt;}
.xa{left:290.754667pt;}
.x1d{left:292.194667pt;}
.x65{left:294.213457pt;}
.x3{left:296.546667pt;}
.x1a{left:297.826667pt;}
.x50{left:301.634667pt;}
.x66{left:304.633274pt;}
.x67{left:305.686964pt;}
.x30{left:309.693322pt;}
.x5{left:315.266667pt;}
.x23{left:319.266655pt;}
.x61{left:323.833824pt;}
.x62{left:326.292433pt;}
.x64{left:328.282736pt;}
.x63{left:341.395312pt;}
.x6e{left:342.693012pt;}
.x46{left:353.026667pt;}
.xf{left:367.586655pt;}
.x71{left:372.066655pt;}
.xc{left:396.866655pt;}
.x10{left:398.946655pt;}
.x17{left:408.226655pt;}
.x18{left:427.133322pt;}
.x48{left:439.453333pt;}
.x6f{left:448.315610pt;}
.x16{left:461.373322pt;}
.x12{left:462.333322pt;}
.x5c{left:466.901415pt;}
.x70{left:477.584747pt;}
.x28{left:483.133333pt;}
.x1c{left:500.893333pt;}
.x49{left:520.093333pt;}
.x59{left:523.613333pt;}
.x3e{left:529.693333pt;}
.x13{left:530.653322pt;}
.x11{left:549.693322pt;}
.x14{left:587.773322pt;}
.x35{left:594.973333pt;}
.x38{left:596.093333pt;}
.x4b{left:612.453333pt;}
.x2f{left:672.613322pt;}
.x2a{left:696.933322pt;}
.x8{left:699.333322pt;}
}




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