
    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_46c32bafca8a669ed8f4a0ea.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_0d1a7771a60f9db0dc9648dd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_9d6e2cc4df13ed6271c97b8a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_49e6ba085af933b441ca515a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_0ca7f1c40fac0cffec0e78d6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_39c071561f6d0f031c858642.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904785;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_05d42998eb460d31bbcc1365.woff')format("woff");}.ff7{font-family:ff7;line-height:1.237305;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_32a52e5258e0e8e961b35460.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v8{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v4{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:11.994000px;}
.v3{vertical-align:13.980600px;}
.v1{vertical-align:16.955400px;}
.v5{vertical-align:36.000000px;}
.v6{vertical-align:72.000000px;}
.v7{vertical-align:86.004600px;}
.ls38{letter-spacing:-7.686000px;}
.ls34{letter-spacing:-5.229000px;}
.ls4a{letter-spacing:-4.500000px;}
.ls2f{letter-spacing:-3.243000px;}
.ls2a{letter-spacing:-2.001000px;}
.ls2b{letter-spacing:-1.932000px;}
.ls12{letter-spacing:-1.863000px;}
.ls4e{letter-spacing:-1.680000px;}
.ls1f{letter-spacing:-1.560000px;}
.ls35{letter-spacing:-1.386000px;}
.ls26{letter-spacing:-1.311000px;}
.ls28{letter-spacing:-1.104000px;}
.lsc{letter-spacing:-0.855000px;}
.ls2d{letter-spacing:-0.828000px;}
.ls1d{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.627000px;}
.ls27{letter-spacing:-0.552000px;}
.lse{letter-spacing:-0.483000px;}
.ls1e{letter-spacing:-0.420000px;}
.ls29{letter-spacing:-0.345000px;}
.ls11{letter-spacing:-0.243000px;}
.ls7{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.069000px;}
.ls2e{letter-spacing:-0.040227px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000300px;}
.ls1b{letter-spacing:0.000618px;}
.ls45{letter-spacing:0.001560px;}
.ls3f{letter-spacing:0.003120px;}
.ls3b{letter-spacing:0.003720px;}
.ls43{letter-spacing:0.006420px;}
.ls19{letter-spacing:0.007809px;}
.ls20{letter-spacing:0.008409px;}
.ls15{letter-spacing:0.012600px;}
.ls4d{letter-spacing:0.022200px;}
.ls36{letter-spacing:0.315000px;}
.ls6{letter-spacing:1.260000px;}
.ls30{letter-spacing:1.458000px;}
.lsf{letter-spacing:1.869900px;}
.ls24{letter-spacing:2.208000px;}
.lsd{letter-spacing:2.277000px;}
.lsb{letter-spacing:2.400000px;}
.ls37{letter-spacing:3.300000px;}
.ls0{letter-spacing:4.200000px;}
.ls10{letter-spacing:5.025000px;}
.ls3{letter-spacing:5.460000px;}
.ls8{letter-spacing:5.760000px;}
.ls1a{letter-spacing:5.787813px;}
.ls9{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls1c{letter-spacing:6.154800px;}
.ls31{letter-spacing:6.300000px;}
.ls1{letter-spacing:6.675000px;}
.ls23{letter-spacing:6.762000px;}
.ls33{letter-spacing:6.930000px;}
.ls25{letter-spacing:8.160156px;}
.ls49{letter-spacing:8.160756px;}
.ls5{letter-spacing:8.400000px;}
.ls32{letter-spacing:8.820000px;}
.ls21{letter-spacing:9.315000px;}
.ls22{letter-spacing:10.695000px;}
.ls16{letter-spacing:243.120000px;}
.ls14{letter-spacing:246.000000px;}
.ls18{letter-spacing:249.000000px;}
.ls17{letter-spacing:257.040000px;}
.ls4c{letter-spacing:436.380000px;}
.ls4b{letter-spacing:446.100000px;}
.ls48{letter-spacing:827.280000px;}
.ls42{letter-spacing:828.360000px;}
.ls47{letter-spacing:832.260000px;}
.ls44{letter-spacing:834.000000px;}
.ls46{letter-spacing:834.600000px;}
.ls41{letter-spacing:843.900000px;}
.ls3e{letter-spacing:845.460000px;}
.ls39{letter-spacing:846.900000px;}
.ls40{letter-spacing:848.280000px;}
.ls3d{letter-spacing:848.580000px;}
.ls3c{letter-spacing:849.960000px;}
.ls3a{letter-spacing:851.640000px;}
.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;}
}
.ws0{word-spacing:-27.750000px;}
.ws4b{word-spacing:-26.523000px;}
.ws1f{word-spacing:-26.100000px;}
.ws51{word-spacing:-24.375000px;}
.ws4a{word-spacing:-24.219000px;}
.ws54{word-spacing:-22.860000px;}
.ws20{word-spacing:-22.518000px;}
.ws1d{word-spacing:-19.389000px;}
.ws43{word-spacing:-19.320000px;}
.ws9{word-spacing:-18.630000px;}
.ws53{word-spacing:-18.018000px;}
.ws4c{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.262000px;}
.ws1b{word-spacing:-17.043000px;}
.ws42{word-spacing:-16.974000px;}
.ws27{word-spacing:-16.860000px;}
.ws3f{word-spacing:-16.698000px;}
.ws1e{word-spacing:-16.560000px;}
.ws38{word-spacing:-16.491000px;}
.wsf{word-spacing:-16.200000px;}
.ws39{word-spacing:-15.939000px;}
.ws4d{word-spacing:-15.561000px;}
.ws21{word-spacing:-15.180000px;}
.ws41{word-spacing:-15.111000px;}
.ws40{word-spacing:-15.042000px;}
.ws2a{word-spacing:-14.820000px;}
.ws50{word-spacing:-14.175000px;}
.ws3a{word-spacing:-13.338000px;}
.ws5d{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.960000px;}
.ws4f{word-spacing:-12.474000px;}
.ws1c{word-spacing:-11.303787px;}
.ws44{word-spacing:-11.263560px;}
.ws37{word-spacing:-9.936069px;}
.ws2e{word-spacing:-9.829380px;}
.ws3b{word-spacing:-8.846442px;}
.ws56{word-spacing:-8.640060px;}
.ws4{word-spacing:-8.400000px;}
.ws52{word-spacing:-7.875000px;}
.ws3c{word-spacing:-6.762000px;}
.ws4e{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.880000px;}
.ws7{word-spacing:-5.760000px;}
.ws8{word-spacing:-4.200000px;}
.ws19{word-spacing:-2.400000px;}
.ws5{word-spacing:-1.260000px;}
.ws47{word-spacing:-0.759000px;}
.ws3{word-spacing:0.000000px;}
.ws46{word-spacing:0.069000px;}
.ws6{word-spacing:0.240000px;}
.ws35{word-spacing:0.420000px;}
.ws23{word-spacing:0.627000px;}
.ws48{word-spacing:0.828000px;}
.ws1a{word-spacing:0.855000px;}
.ws45{word-spacing:1.104000px;}
.ws3d{word-spacing:1.311000px;}
.ws36{word-spacing:1.560000px;}
.ws22{word-spacing:2.139000px;}
.ws49{word-spacing:3.243000px;}
.ws3e{word-spacing:8.211000px;}
.ws2d{word-spacing:70.200000px;}
.ws34{word-spacing:73.260000px;}
.ws24{word-spacing:73.662000px;}
.ws29{word-spacing:93.540000px;}
.ws26{word-spacing:104.700000px;}
.ws10{word-spacing:112.878000px;}
.ws31{word-spacing:114.000000px;}
.ws15{word-spacing:135.060000px;}
.ws25{word-spacing:138.708000px;}
.ws2c{word-spacing:142.440000px;}
.ws30{word-spacing:146.100000px;}
.ws33{word-spacing:151.920000px;}
.ws14{word-spacing:166.920000px;}
.wse{word-spacing:179.820000px;}
.ws12{word-spacing:190.170000px;}
.ws11{word-spacing:193.140000px;}
.ws2b{word-spacing:230.394000px;}
.ws28{word-spacing:231.834000px;}
.ws2f{word-spacing:233.094000px;}
.ws13{word-spacing:257.772000px;}
.wsd{word-spacing:312.042000px;}
.ws32{word-spacing:317.760000px;}
.ws5c{word-spacing:392.700000px;}
.ws57{word-spacing:404.940000px;}
.ws5a{word-spacing:405.000000px;}
.ws58{word-spacing:405.960000px;}
.ws5b{word-spacing:412.080000px;}
.ws59{word-spacing:412.260000px;}
.ws16{word-spacing:473.760000px;}
.ws55{word-spacing:524.976000px;}
.ws17{word-spacing:612.210000px;}
.wsb{word-spacing:630.582000px;}
.ws18{word-spacing:1043.280000px;}
._1f{margin-left:-19.596000px;}
._26{margin-left:-10.044006px;}
._a{margin-left:-8.236800px;}
._17{margin-left:-6.851400px;}
._b{margin-left:-5.571000px;}
._6{margin-left:-4.182000px;}
._5{margin-left:-2.496000px;}
._7{margin-left:-1.362000px;}
._0{width:1.635000px;}
._3{width:2.702400px;}
._9{width:4.028400px;}
._4{width:5.499600px;}
._2{width:6.795000px;}
._8{width:8.242800px;}
._f{width:9.384000px;}
._10{width:10.533000px;}
._27{width:11.545500px;}
._16{width:12.570600px;}
._14{width:14.487000px;}
._13{width:15.642000px;}
._25{width:16.720200px;}
._12{width:17.934000px;}
._11{width:19.584000px;}
._2e{width:21.048300px;}
._18{width:22.396800px;}
._29{width:23.832600px;}
._2c{width:27.704160px;}
._30{width:29.562600px;}
._31{width:30.602100px;}
._2a{width:33.927000px;}
._2b{width:35.142054px;}
._2f{width:37.220400px;}
._1b{width:43.445160px;}
._40{width:46.934400px;}
._c{width:85.554000px;}
._22{width:87.093000px;}
._39{width:104.580000px;}
._21{width:130.860000px;}
._24{width:133.800000px;}
._41{width:176.316360px;}
._19{width:181.320000px;}
._43{width:228.448560px;}
._23{width:239.640000px;}
._37{width:251.344800px;}
._53{width:252.900000px;}
._15{width:260.610000px;}
._36{width:268.174560px;}
._46{width:270.528360px;}
._55{width:280.920000px;}
._56{width:285.400800px;}
._4d{width:301.320000px;}
._42{width:307.320000px;}
._52{width:312.360000px;}
._5a{width:314.400000px;}
._58{width:329.440800px;}
._44{width:333.360000px;}
._59{width:337.200000px;}
._51{width:340.020000px;}
._4a{width:343.880400px;}
._47{width:345.960000px;}
._54{width:353.385000px;}
._57{width:367.320000px;}
._33{width:386.886600px;}
._4c{width:394.807380px;}
._3b{width:412.778400px;}
._3c{width:414.060000px;}
._35{width:415.080000px;}
._38{width:422.491200px;}
._34{width:423.960000px;}
._3a{width:432.000000px;}
._49{width:454.199580px;}
._1{width:455.580000px;}
._1d{width:456.760200px;}
._2d{width:457.789800px;}
._20{width:459.409800px;}
._3f{width:461.623800px;}
._45{width:472.500000px;}
._48{width:478.800000px;}
._3d{width:492.000000px;}
._32{width:506.472000px;}
._3e{width:508.860000px;}
._4f{width:510.480000px;}
._4b{width:574.980000px;}
._d{width:578.400000px;}
._50{width:588.562380px;}
._4e{width:623.746380px;}
._1a{width:779.760000px;}
._1c{width:956.203200px;}
._28{width:959.323200px;}
._e{width:963.373200px;}
._1e{width:965.353200px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1aa{bottom:106.153350px;}
.y1e7{bottom:106.244850px;}
.y13f{bottom:106.284300px;}
.y6a{bottom:106.287450px;}
.yd3{bottom:106.293300px;}
.y1c8{bottom:106.295700px;}
.y164{bottom:106.296300px;}
.y226{bottom:106.299150px;}
.y20{bottom:106.300800px;}
.yb0{bottom:106.316400px;}
.y47{bottom:106.390800px;}
.y221{bottom:106.641300px;}
.y21a{bottom:106.644300px;}
.y223{bottom:106.971300px;}
.y186{bottom:109.294800px;}
.y90{bottom:109.294950px;}
.y219{bottom:110.619300px;}
.y222{bottom:111.096300px;}
.y21b{bottom:111.099300px;}
.y244{bottom:114.443850px;}
.y24c{bottom:115.271400px;}
.y265{bottom:115.271850px;}
.y260{bottom:115.272600px;}
.y254{bottom:115.308750px;}
.y239{bottom:115.383750px;}
.y264{bottom:115.511850px;}
.y25f{bottom:115.512600px;}
.y25b{bottom:115.518900px;}
.y23c{bottom:115.527000px;}
.y243{bottom:115.527750px;}
.y26f{bottom:115.533900px;}
.y23d{bottom:115.542600px;}
.y266{bottom:115.556850px;}
.y26c{bottom:115.563150px;}
.y255{bottom:115.563750px;}
.y242{bottom:115.568700px;}
.y24b{bottom:115.751400px;}
.y246{bottom:115.754550px;}
.y23b{bottom:115.771350px;}
.y245{bottom:115.784700px;}
.y238{bottom:115.788750px;}
.y22b{bottom:120.753750px;}
.y22c{bottom:123.033750px;}
.y22d{bottom:123.468750px;}
.y13e{bottom:123.537300px;}
.y69{bottom:123.540450px;}
.yd2{bottom:123.546300px;}
.y1a9{bottom:126.525600px;}
.y163{bottom:126.544800px;}
.y46{bottom:126.728550px;}
.y204{bottom:126.749100px;}
.y252{bottom:127.140600px;}
.y1e6{bottom:127.444350px;}
.y229{bottom:127.452450px;}
.y228{bottom:127.667100px;}
.y251{bottom:127.680600px;}
.y227{bottom:127.937100px;}
.y1f{bottom:127.960800px;}
.y253{bottom:128.072100px;}
.yaf{bottom:129.103650px;}
.y1c7{bottom:135.811200px;}
.y205{bottom:138.559350px;}
.y13d{bottom:140.790300px;}
.y68{bottom:140.793450px;}
.yd1{bottom:143.794800px;}
.y162{bottom:145.048200px;}
.y1a8{bottom:146.897850px;}
.y45{bottom:147.066300px;}
.y1e5{bottom:148.643850px;}
.y1e{bottom:149.651850px;}
.y203{bottom:149.970750px;}
.yae{bottom:151.890900px;}
.y185{bottom:153.319800px;}
.y8f{bottom:153.364650px;}
.y1c6{bottom:156.821700px;}
.y13c{bottom:158.043300px;}
.y67{bottom:158.046450px;}
.yd0{bottom:162.292200px;}
.y161{bottom:165.296700px;}
.y1a7{bottom:167.270100px;}
.y44{bottom:167.404050px;}
.y1d{bottom:169.811850px;}
.y202{bottom:171.060750px;}
.y184{bottom:173.571300px;}
.y8e{bottom:173.616150px;}
.yad{bottom:174.683850px;}
.y13b{bottom:175.296300px;}
.y1c5{bottom:177.832200px;}
.y66{bottom:178.294950px;}
.y1e4{bottom:178.348350px;}
.ycf{bottom:179.545200px;}
.y1a6{bottom:187.642350px;}
.y43{bottom:187.741800px;}
.y119{bottom:187.819050px;}
.y1c{bottom:189.971850px;}
.y201{bottom:192.150750px;}
.y183{bottom:193.822800px;}
.y8d{bottom:193.867650px;}
.y13a{bottom:195.544800px;}
.yce{bottom:196.798200px;}
.yac{bottom:197.488200px;}
.y1c4{bottom:198.842700px;}
.y1e3{bottom:199.547850px;}
.y1a5{bottom:208.014600px;}
.y42{bottom:208.079550px;}
.y160{bottom:209.319900px;}
.y1b{bottom:210.131850px;}
.y118{bottom:210.157800px;}
.y22a{bottom:212.775150px;}
.y200{bottom:213.240750px;}
.y182{bottom:214.076550px;}
.y8c{bottom:214.119150px;}
.ycd{bottom:217.046700px;}
.y218{bottom:217.629300px;}
.y213{bottom:217.629600px;}
.y214{bottom:219.039600px;}
.y215{bottom:219.173550px;}
.y216{bottom:219.174300px;}
.y210{bottom:219.846000px;}
.y20c{bottom:220.062000px;}
.y207{bottom:220.069350px;}
.yab{bottom:220.275450px;}
.y20a{bottom:220.827000px;}
.y209{bottom:220.833600px;}
.y20d{bottom:220.947000px;}
.y208{bottom:221.254350px;}
.yf9{bottom:222.309750px;}
.y1c3{bottom:228.358200px;}
.y1a4{bottom:228.386850px;}
.y41{bottom:228.417300px;}
.y65{bottom:229.111650px;}
.y1e2{bottom:229.252350px;}
.y1a{bottom:230.291850px;}
.y15f{bottom:230.330400px;}
.y24d{bottom:231.640350px;}
.y26d{bottom:231.640950px;}
.y247{bottom:231.641400px;}
.y261{bottom:231.641850px;}
.y25c{bottom:231.642600px;}
.y256{bottom:231.645600px;}
.y268{bottom:231.648150px;}
.y267{bottom:231.648600px;}
.y257{bottom:231.648900px;}
.y271{bottom:231.649800px;}
.y23e{bottom:231.652050px;}
.y270{bottom:231.653100px;}
.y23f{bottom:231.653700px;}
.y23a{bottom:231.678750px;}
.y117{bottom:232.496550px;}
.y22f{bottom:233.238750px;}
.y1ff{bottom:234.330750px;}
.y181{bottom:234.345900px;}
.y8b{bottom:234.370650px;}
.ycc{bottom:235.535250px;}
.y139{bottom:239.568900px;}
.yf8{bottom:242.989050px;}
.yaa{bottom:243.062700px;}
.y40{bottom:248.755050px;}
.y1a3{bottom:248.759100px;}
.y1c2{bottom:249.368700px;}
.y19{bottom:250.451850px;}
.y15e{bottom:251.340900px;}
.y64{bottom:251.836650px;}
.ycb{bottom:252.788250px;}
.y180{bottom:254.597400px;}
.y8a{bottom:254.622150px;}
.y116{bottom:254.835300px;}
.y1fe{bottom:255.420750px;}
.y138{bottom:260.361750px;}
.yf7{bottom:263.651400px;}
.ya9{bottom:265.855650px;}
.y3f{bottom:269.092800px;}
.y1a2{bottom:269.131350px;}
.y63{bottom:269.836650px;}
.yca{bottom:270.041250px;}
.y18{bottom:270.611850px;}
.y15d{bottom:272.351400px;}
.y17f{bottom:274.848900px;}
.y89{bottom:274.873650px;}
.y1fd{bottom:276.510750px;}
.y115{bottom:277.175550px;}
.y1c1{bottom:278.884200px;}
.y1e1{bottom:280.156350px;}
.y137{bottom:281.079000px;}
.yf6{bottom:284.334150px;}
.yc9{bottom:287.294250px;}
.ya8{bottom:288.722700px;}
.y3e{bottom:289.430550px;}
.y1a1{bottom:289.503600px;}
.y17{bottom:290.771850px;}
.y62{bottom:292.561650px;}
.y15c{bottom:293.363100px;}
.y230{bottom:294.858750px;}
.y17e{bottom:295.100400px;}
.y88{bottom:295.125150px;}
.y1fc{bottom:297.600750px;}
.y114{bottom:299.515800px;}
.y1c0{bottom:299.894700px;}
.y1e0{bottom:301.355850px;}
.y136{bottom:301.796250px;}
.yc8{bottom:304.547250px;}
.yf5{bottom:305.016900px;}
.y3d{bottom:309.768300px;}
.y1a0{bottom:309.875850px;}
.y61{bottom:310.561650px;}
.y16{bottom:310.931850px;}
.ya7{bottom:311.509950px;}
.y15b{bottom:314.374800px;}
.y17d{bottom:315.351900px;}
.y87{bottom:315.376650px;}
.y1fb{bottom:318.690750px;}
.y1bf{bottom:320.905200px;}
.yc7{bottom:321.800250px;}
.y113{bottom:321.859050px;}
.y135{bottom:322.513500px;}
.yf4{bottom:325.699650px;}
.y60{bottom:328.561650px;}
.y3c{bottom:330.106050px;}
.y19f{bottom:330.248100px;}
.y1df{bottom:331.060350px;}
.y15{bottom:331.091850px;}
.ya6{bottom:334.297200px;}
.y15a{bottom:335.392500px;}
.y17c{bottom:335.603400px;}
.y86{bottom:335.628150px;}
.y1fa{bottom:339.780750px;}
.yc6{bottom:342.048750px;}
.y134{bottom:343.230750px;}
.y112{bottom:344.197800px;}
.yf3{bottom:346.382400px;}
.y1be{bottom:350.420700px;}
.y3b{bottom:350.443800px;}
.y19e{bottom:350.620350px;}
.y14{bottom:351.251850px;}
.y5f{bottom:351.286650px;}
.y1de{bottom:352.259850px;}
.y224{bottom:353.781300px;}
.y21c{bottom:353.784300px;}
.y17b{bottom:355.854900px;}
.y85{bottom:355.879650px;}
.y225{bottom:356.376300px;}
.y159{bottom:356.403000px;}
.y21e{bottom:356.466300px;}
.y21f{bottom:356.481300px;}
.y21d{bottom:356.556300px;}
.ya5{bottom:357.084450px;}
.y1f9{bottom:360.870750px;}
.y133{bottom:363.948000px;}
.y111{bottom:366.536550px;}
.yf2{bottom:367.065150px;}
.y3a{bottom:370.781550px;}
.y19d{bottom:370.992600px;}
.y13{bottom:371.411850px;}
.y1bd{bottom:371.431200px;}
.y5e{bottom:374.011650px;}
.y17a{bottom:376.106400px;}
.y84{bottom:376.131150px;}
.y158{bottom:377.413500px;}
.ya4{bottom:379.871700px;}
.y1f8{bottom:381.960750px;}
.y1dd{bottom:381.964350px;}
.y132{bottom:384.665250px;}
.yc5{bottom:386.072100px;}
.yf1{bottom:387.744450px;}
.y110{bottom:388.876950px;}
.y39{bottom:391.119300px;}
.y19c{bottom:391.364850px;}
.y12{bottom:391.571850px;}
.y5d{bottom:392.011650px;}
.y1bc{bottom:392.441700px;}
.y179{bottom:396.366900px;}
.y83{bottom:396.382650px;}
.y157{bottom:398.424000px;}
.y206{bottom:399.244350px;}
.ya3{bottom:402.658950px;}
.y1f7{bottom:403.050750px;}
.y1dc{bottom:403.163850px;}
.y131{bottom:405.382500px;}
.yc4{bottom:407.479350px;}
.yf0{bottom:408.427200px;}
.y5c{bottom:410.011650px;}
.y10f{bottom:411.239850px;}
.y38{bottom:411.457050px;}
.y11{bottom:411.731850px;}
.y19b{bottom:411.737100px;}
.y1bb{bottom:413.452200px;}
.y178{bottom:416.618400px;}
.y82{bottom:416.634150px;}
.y156{bottom:419.434500px;}
.y1f6{bottom:424.140750px;}
.y1db{bottom:424.363350px;}
.ya2{bottom:425.446200px;}
.y130{bottom:426.099750px;}
.yc3{bottom:428.891850px;}
.y37{bottom:431.794800px;}
.y10{bottom:431.891850px;}
.y19a{bottom:432.109350px;}
.y5b{bottom:432.736650px;}
.y10e{bottom:433.578600px;}
.y177{bottom:436.869900px;}
.y81{bottom:436.885650px;}
.y155{bottom:440.445000px;}
.y1ba{bottom:442.967700px;}
.y1f5{bottom:445.230750px;}
.y12f{bottom:446.817000px;}
.ya1{bottom:448.233450px;}
.yc2{bottom:450.299100px;}
.y5a{bottom:450.736650px;}
.yf{bottom:452.051850px;}
.y199{bottom:452.481600px;}
.y24e{bottom:452.665350px;}
.y248{bottom:452.666400px;}
.y262{bottom:452.666850px;}
.y25d{bottom:452.667600px;}
.y269{bottom:452.673150px;}
.y258{bottom:452.673900px;}
.y272{bottom:452.674800px;}
.y240{bottom:452.678700px;}
.y1da{bottom:454.067850px;}
.y10d{bottom:455.917350px;}
.y176{bottom:457.121400px;}
.y80{bottom:457.137150px;}
.y154{bottom:461.456700px;}
.y1b9{bottom:463.978200px;}
.y1f4{bottom:466.320750px;}
.y12e{bottom:467.534250px;}
.yef{bottom:469.130250px;}
.ya0{bottom:471.020700px;}
.yc1{bottom:471.735000px;}
.y198{bottom:472.853850px;}
.y36{bottom:473.398200px;}
.y59{bottom:473.461650px;}
.y175{bottom:477.375150px;}
.y7f{bottom:477.388650px;}
.y10c{bottom:478.256100px;}
.y231{bottom:482.088750px;}
.y153{bottom:482.468400px;}
.y22e{bottom:482.988750px;}
.y1d9{bottom:483.772350px;}
.ye{bottom:484.961850px;}
.y1b8{bottom:484.988700px;}
.yee{bottom:487.130250px;}
.y232{bottom:487.923750px;}
.y12d{bottom:488.251500px;}
.y58{bottom:491.461650px;}
.yc0{bottom:493.142250px;}
.y197{bottom:493.226100px;}
.y9f{bottom:493.807950px;}
.y7e{bottom:497.640150px;}
.y174{bottom:497.660250px;}
.y1f3{bottom:500.160750px;}
.y10b{bottom:500.594850px;}
.y152{bottom:503.480100px;}
.y1d8{bottom:504.971850px;}
.y12c{bottom:508.968750px;}
.yed{bottom:509.855250px;}
.y57{bottom:514.186650px;}
.y1b7{bottom:514.504200px;}
.ybf{bottom:514.549500px;}
.y9e{bottom:516.595200px;}
.y7d{bottom:517.891650px;}
.y173{bottom:517.911750px;}
.ye7{bottom:518.855250px;}
.y10a{bottom:522.933600px;}
.y151{bottom:524.509950px;}
.y1d7{bottom:526.171350px;}
.yec{bottom:527.855250px;}
.y12b{bottom:529.691850px;}
.y196{bottom:534.850500px;}
.y1b6{bottom:535.514700px;}
.y35{bottom:535.762800px;}
.ybe{bottom:535.956750px;}
.ye6{bottom:536.855250px;}
.y56{bottom:536.918100px;}
.y7c{bottom:538.143150px;}
.y172{bottom:538.163250px;}
.y9d{bottom:539.382450px;}
.yd{bottom:543.395550px;}
.y109{bottom:545.272350px;}
.y150{bottom:545.520450px;}
.y53{bottom:545.918100px;}
.y12a{bottom:550.438200px;}
.yea{bottom:550.580250px;}
.y55{bottom:554.918100px;}
.y1d6{bottom:555.875850px;}
.y1b5{bottom:556.525200px;}
.y34{bottom:556.852800px;}
.ybd{bottom:557.364000px;}
.y7b{bottom:558.394650px;}
.y171{bottom:558.414750px;}
.y1f2{bottom:559.525800px;}
.yeb{bottom:559.580250px;}
.y9c{bottom:562.169700px;}
.y52{bottom:563.918100px;}
.y14f{bottom:566.530950px;}
.y108{bottom:567.611100px;}
.ye9{bottom:568.580250px;}
.yc{bottom:571.052550px;}
.y129{bottom:571.155450px;}
.y220{bottom:572.631300px;}
.y54{bottom:572.918100px;}
.y20e{bottom:574.446000px;}
.y211{bottom:574.449600px;}
.y1d5{bottom:577.075350px;}
.y33{bottom:577.992750px;}
.y7a{bottom:578.646150px;}
.y170{bottom:578.666250px;}
.ybc{bottom:578.771250px;}
.y9b{bottom:584.956950px;}
.y1b4{bottom:586.040700px;}
.ye8{bottom:586.580250px;}
.y14e{bottom:587.541450px;}
.y1f1{bottom:588.106800px;}
.y107{bottom:589.949850px;}
.y128{bottom:591.872700px;}
.y51{bottom:593.654550px;}
.y195{bottom:597.171300px;}
.y32{bottom:597.582750px;}
.y79{bottom:598.897650px;}
.y16f{bottom:598.917750px;}
.ybb{bottom:600.178500px;}
.y1d4{bottom:606.779850px;}
.y249{bottom:606.806400px;}
.y263{bottom:606.806850px;}
.y25e{bottom:606.807600px;}
.y26a{bottom:606.813150px;}
.y26e{bottom:606.813900px;}
.y273{bottom:606.814800px;}
.y241{bottom:606.818700px;}
.y24f{bottom:606.955350px;}
.y259{bottom:606.963900px;}
.y1b3{bottom:607.051200px;}
.y9a{bottom:607.744200px;}
.y14d{bottom:608.551950px;}
.ye5{bottom:609.320250px;}
.y106{bottom:612.288600px;}
.y127{bottom:612.589950px;}
.y233{bottom:613.968750px;}
.y31{bottom:617.172750px;}
.y194{bottom:617.543550px;}
.y78{bottom:619.151400px;}
.y16e{bottom:619.169250px;}
.yb{bottom:619.987350px;}
.yba{bottom:621.585750px;}
.y50{bottom:626.475000px;}
.ye4{bottom:627.320250px;}
.y1d3{bottom:627.979350px;}
.y14c{bottom:629.562450px;}
.y126{bottom:633.307200px;}
.y105{bottom:634.627350px;}
.y1b2{bottom:636.566700px;}
.y30{bottom:636.762750px;}
.y193{bottom:637.915800px;}
.y77{bottom:639.405000px;}
.y16d{bottom:639.420750px;}
.y234{bottom:642.588750px;}
.yb9{bottom:642.993000px;}
.ye2{bottom:650.039100px;}
.ye3{bottom:650.045250px;}
.y14b{bottom:650.572950px;}
.y99{bottom:651.792300px;}
.ya{bottom:652.144350px;}
.y125{bottom:654.030300px;}
.y2f{bottom:656.352750px;}
.y104{bottom:656.966100px;}
.y1b1{bottom:657.577200px;}
.y1d2{bottom:657.683850px;}
.y192{bottom:658.288050px;}
.y76{bottom:659.658750px;}
.y16c{bottom:659.672250px;}
.yb8{bottom:664.400250px;}
.ydc{bottom:668.039100px;}
.y4f{bottom:670.576350px;}
.y14a{bottom:671.583450px;}
.y124{bottom:674.805750px;}
.y2e{bottom:675.942750px;}
.y98{bottom:678.340050px;}
.y1b0{bottom:678.587700px;}
.y191{bottom:678.660300px;}
.y1d1{bottom:678.883350px;}
.y103{bottom:679.304850px;}
.y16b{bottom:679.923750px;}
.y75{bottom:679.934850px;}
.y1f0{bottom:681.576600px;}
.y9{bottom:684.301350px;}
.yb7{bottom:685.807500px;}
.ye1{bottom:690.764100px;}
.y149{bottom:692.593950px;}
.y4e{bottom:694.162500px;}
.y123{bottom:695.523000px;}
.y2d{bottom:695.532750px;}
.y190{bottom:699.032550px;}
.yde{bottom:699.764100px;}
.y16a{bottom:700.175250px;}
.y74{bottom:700.186350px;}
.y102{bottom:701.643600px;}
.y1ef{bottom:703.421850px;}
.yb6{bottom:707.214750px;}
.y1af{bottom:708.103200px;}
.y1d0{bottom:708.587850px;}
.ye0{bottom:708.764100px;}
.y148{bottom:713.604450px;}
.y2c{bottom:715.122750px;}
.y122{bottom:716.240250px;}
.y8{bottom:716.458350px;}
.y4d{bottom:717.743250px;}
.ydd{bottom:717.764100px;}
.y18f{bottom:719.404800px;}
.y169{bottom:720.426750px;}
.y73{bottom:720.437850px;}
.y101{bottom:723.982350px;}
.y1ee{bottom:725.267100px;}
.ydf{bottom:726.764100px;}
.y1ae{bottom:729.113700px;}
.y1cf{bottom:729.787350px;}
.y147{bottom:734.614950px;}
.y2b{bottom:734.712750px;}
.y121{bottom:736.957500px;}
.y18e{bottom:739.777050px;}
.y168{bottom:740.678250px;}
.y72{bottom:740.689350px;}
.y97{bottom:743.156400px;}
.y100{bottom:746.321100px;}
.y20f{bottom:746.691000px;}
.y217{bottom:746.694300px;}
.y212{bottom:746.694600px;}
.y20b{bottom:746.697000px;}
.y1ed{bottom:747.112350px;}
.ydb{bottom:749.504100px;}
.yb5{bottom:749.893800px;}
.yd8{bottom:751.874100px;}
.y2a{bottom:754.302750px;}
.y146{bottom:755.625450px;}
.y250{bottom:755.680350px;}
.y24a{bottom:755.681400px;}
.y26b{bottom:755.688150px;}
.y25a{bottom:755.688900px;}
.y274{bottom:755.689800px;}
.y120{bottom:757.674750px;}
.y1ad{bottom:758.629200px;}
.y1ce{bottom:759.491850px;}
.y18d{bottom:760.095600px;}
.y167{bottom:760.929750px;}
.y71{bottom:760.940850px;}
.y4c{bottom:762.587850px;}
.y235{bottom:764.943750px;}
.y96{bottom:765.977850px;}
.yff{bottom:768.661350px;}
.yd6{bottom:769.874100px;}
.yda{bottom:772.244100px;}
.y29{bottom:773.892750px;}
.yb4{bottom:775.044300px;}
.y145{bottom:776.635950px;}
.y1ec{bottom:777.462600px;}
.y7{bottom:778.387500px;}
.y11f{bottom:778.392000px;}
.y1ac{bottom:779.639700px;}
.y18c{bottom:780.467850px;}
.y1cd{bottom:780.691350px;}
.y166{bottom:781.181250px;}
.y70{bottom:781.192350px;}
.yd7{bottom:787.874100px;}
.y95{bottom:788.765100px;}
.y237{bottom:789.753750px;}
.y4b{bottom:789.925350px;}
.yd9{bottom:790.244100px;}
.yfe{bottom:791.006100px;}
.y28{bottom:793.482750px;}
.y236{bottom:796.308750px;}
.y144{bottom:797.646450px;}
.y11e{bottom:799.109250px;}
.y1eb{bottom:799.307850px;}
.y18b{bottom:800.840100px;}
.y165{bottom:801.435000px;}
.y6f{bottom:801.443850px;}
.y6{bottom:808.552500px;}
.y1ab{bottom:809.155200px;}
.y1cc{bottom:810.395850px;}
.y278{bottom:810.447750px;}
.y94{bottom:811.552350px;}
.y27{bottom:813.072750px;}
.yfd{bottom:813.344850px;}
.y143{bottom:818.656950px;}
.y11d{bottom:819.826500px;}
.yd5{bottom:820.153500px;}
.y18a{bottom:821.212350px;}
.y6e{bottom:821.695350px;}
.y1ea{bottom:829.658100px;}
.y5{bottom:830.212500px;}
.y277{bottom:830.697750px;}
.y1cb{bottom:831.595350px;}
.y26{bottom:832.662750px;}
.y93{bottom:834.339600px;}
.yfc{bottom:835.683600px;}
.yb3{bottom:838.479600px;}
.y142{bottom:839.667450px;}
.y11c{bottom:840.543750px;}
.y189{bottom:841.584600px;}
.y6d{bottom:841.946850px;}
.y276{bottom:850.947750px;}
.y1e9{bottom:851.503350px;}
.y25{bottom:852.252750px;}
.y4a{bottom:855.539850px;}
.y92{bottom:857.126850px;}
.yfb{bottom:858.022350px;}
.yb2{bottom:859.886850px;}
.y4{bottom:860.377500px;}
.y141{bottom:860.680350px;}
.y11b{bottom:861.261000px;}
.y1ca{bottom:861.299850px;}
.y188{bottom:861.956850px;}
.y6c{bottom:862.198350px;}
.y275{bottom:871.197750px;}
.y24{bottom:871.842750px;}
.y49{bottom:879.120600px;}
.y91{bottom:879.914100px;}
.yfa{bottom:880.362600px;}
.yb1{bottom:881.294100px;}
.y140{bottom:881.690850px;}
.y1e8{bottom:881.853600px;}
.y11a{bottom:881.984100px;}
.yd4{bottom:882.018600px;}
.y3{bottom:882.037500px;}
.y187{bottom:882.329100px;}
.y6b{bottom:882.449850px;}
.y1c9{bottom:882.499350px;}
.y48{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:904.197750px;}
.y22{bottom:948.189000px;}
.y21{bottom:966.189000px;}
.hd{height:32.250000px;}
.hf{height:33.870539px;}
.he{height:40.312500px;}
.ha{height:40.757812px;}
.h2e{height:40.936945px;}
.h16{height:41.396484px;}
.hc{height:41.460938px;}
.h10{height:45.852539px;}
.h4{height:50.947266px;}
.hb{height:51.826172px;}
.h11{height:52.918945px;}
.h3{height:53.494629px;}
.h22{height:58.579755px;}
.h8{height:58.589355px;}
.h1e{height:58.603155px;}
.h1d{height:58.670955px;}
.h2c{height:58.784428px;}
.h28{height:58.785028px;}
.h17{height:58.798828px;}
.h26{height:58.804155px;}
.h9{height:59.600098px;}
.h27{height:61.738770px;}
.h2{height:63.684082px;}
.h14{height:67.550252px;}
.h25{height:67.583252px;}
.h23{height:67.589852px;}
.h20{height:67.594652px;}
.h21{height:67.595252px;}
.h13{height:67.609652px;}
.h1f{height:67.612652px;}
.h24{height:67.613852px;}
.h12{height:67.618652px;}
.h7{height:68.778809px;}
.h6{height:71.326172px;}
.h15{height:77.396484px;}
.h2a{height:86.904066px;}
.h29{height:86.918466px;}
.h2d{height:86.932866px;}
.h2b{height:86.933466px;}
.h1b{height:86.947266px;}
.h5{height:91.705078px;}
.h1a{height:94.798828px;}
.h18{height:122.947266px;}
.h1c{height:130.798828px;}
.h19{height:130.823428px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:82.214250px;}
.x7{left:83.880600px;}
.x6{left:85.410600px;}
.x1c{left:87.939600px;}
.x18{left:89.169600px;}
.x19{left:90.324600px;}
.x1e{left:92.616000px;}
.x30{left:95.014950px;}
.x2e{left:97.682700px;}
.x28{left:101.106000px;}
.x5{left:105.030600px;}
.x8{left:106.131450px;}
.x66{left:113.133750px;}
.x4e{left:114.514950px;}
.x31{left:122.373300px;}
.x6b{left:124.488750px;}
.x67{left:131.133750px;}
.x69{left:133.488750px;}
.x32{left:138.723300px;}
.x6c{left:142.488750px;}
.x51{left:143.995200px;}
.x68{left:149.133750px;}
.x6a{left:151.488750px;}
.x33{left:155.073300px;}
.x2d{left:158.552700px;}
.x29{left:159.621000px;}
.x54{left:166.720200px;}
.x34{left:171.423300px;}
.x4f{left:173.365200px;}
.x52{left:175.720200px;}
.x6d{left:183.213750px;}
.x55{left:184.720200px;}
.x35{left:187.783950px;}
.x50{left:191.365200px;}
.x53{left:193.720200px;}
.x6e{left:201.213750px;}
.x56{left:202.720200px;}
.x9{left:212.663850px;}
.x36{left:216.452400px;}
.xb{left:218.796750px;}
.x1a{left:223.419600px;}
.x1d{left:224.874600px;}
.x4{left:230.594700px;}
.x3{left:232.349700px;}
.x2{left:233.581500px;}
.x6f{left:237.230850px;}
.x57{left:243.445200px;}
.x37{left:245.124600px;}
.x21{left:251.151000px;}
.x1f{left:253.911000px;}
.x70{left:255.230850px;}
.xa{left:257.796000px;}
.x20{left:259.236000px;}
.x39{left:261.485400px;}
.x38{left:270.474600px;}
.x71{left:277.955850px;}
.x2f{left:279.617700px;}
.x58{left:284.187450px;}
.xc{left:288.840750px;}
.x3c{left:295.838850px;}
.xd{left:303.324750px;}
.x3a{left:304.835400px;}
.x59{left:306.918900px;}
.x3b{left:313.838850px;}
.x72{left:318.687450px;}
.x24{left:326.901000px;}
.x22{left:329.286000px;}
.x73{left:336.687450px;}
.x23{left:339.231000px;}
.x2b{left:342.411000px;}
.x2a{left:343.896000px;}
.x3d{left:346.538850px;}
.x5a{left:347.656800px;}
.x74{left:359.418900px;}
.xe{left:362.748750px;}
.x5b{left:365.656800px;}
.xf{left:375.300750px;}
.x75{left:377.418900px;}
.x3e{left:388.249500px;}
.x76{left:395.418900px;}
.x3f{left:397.253100px;}
.x25{left:400.611000px;}
.x26{left:401.991000px;}
.x27{left:404.121000px;}
.x5c{left:411.113400px;}
.x40{left:413.603100px;}
.x41{left:429.953100px;}
.x77{left:431.425350px;}
.x5d{left:433.844850px;}
.x11{left:435.180750px;}
.x10{left:438.012750px;}
.x12{left:441.120750px;}
.x44{left:446.303100px;}
.x1b{left:449.484600px;}
.x78{left:454.150350px;}
.x5e{left:456.576300px;}
.x42{left:464.303100px;}
.x79{left:472.156950px;}
.x46{left:474.378600px;}
.x5f{left:479.307750px;}
.x43{left:482.303100px;}
.x2c{left:488.301000px;}
.x7a{left:490.156950px;}
.x60{left:497.314350px;}
.x45{left:500.313600px;}
.x14{left:506.100750px;}
.x7b{left:508.156950px;}
.x13{left:509.988750px;}
.x15{left:513.096750px;}
.x47{left:518.793600px;}
.x61{left:520.039350px;}
.x7c{left:526.156950px;}
.x48{left:536.793600px;}
.x4a{left:537.858600px;}
.x7d{left:548.881950px;}
.x49{left:554.793600px;}
.x7e{left:566.888400px;}
.x16{left:576.744750px;}
.x7f{left:584.888400px;}
.x62{left:588.817050px;}
.x17{left:591.228750px;}
.x4b{left:603.438450px;}
.x63{left:609.065550px;}
.x80{left:620.888400px;}
.x4c{left:623.686950px;}
.x64{left:626.318550px;}
.x4d{left:640.939950px;}
.x65{left:643.571550px;}
@media print{
.v8{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v4{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:10.661333pt;}
.v3{vertical-align:12.427200pt;}
.v1{vertical-align:15.071467pt;}
.v5{vertical-align:32.000000pt;}
.v6{vertical-align:64.000000pt;}
.v7{vertical-align:76.448533pt;}
.ls38{letter-spacing:-6.832000pt;}
.ls34{letter-spacing:-4.648000pt;}
.ls4a{letter-spacing:-4.000000pt;}
.ls2f{letter-spacing:-2.882667pt;}
.ls2a{letter-spacing:-1.778667pt;}
.ls2b{letter-spacing:-1.717333pt;}
.ls12{letter-spacing:-1.656000pt;}
.ls4e{letter-spacing:-1.493333pt;}
.ls1f{letter-spacing:-1.386667pt;}
.ls35{letter-spacing:-1.232000pt;}
.ls26{letter-spacing:-1.165333pt;}
.ls28{letter-spacing:-0.981333pt;}
.lsc{letter-spacing:-0.760000pt;}
.ls2d{letter-spacing:-0.736000pt;}
.ls1d{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.557333pt;}
.ls27{letter-spacing:-0.490667pt;}
.lse{letter-spacing:-0.429333pt;}
.ls1e{letter-spacing:-0.373333pt;}
.ls29{letter-spacing:-0.306667pt;}
.ls11{letter-spacing:-0.216000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.061333pt;}
.ls2e{letter-spacing:-0.035757pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000267pt;}
.ls1b{letter-spacing:0.000549pt;}
.ls45{letter-spacing:0.001387pt;}
.ls3f{letter-spacing:0.002773pt;}
.ls3b{letter-spacing:0.003307pt;}
.ls43{letter-spacing:0.005707pt;}
.ls19{letter-spacing:0.006941pt;}
.ls20{letter-spacing:0.007475pt;}
.ls15{letter-spacing:0.011200pt;}
.ls4d{letter-spacing:0.019733pt;}
.ls36{letter-spacing:0.280000pt;}
.ls6{letter-spacing:1.120000pt;}
.ls30{letter-spacing:1.296000pt;}
.lsf{letter-spacing:1.662133pt;}
.ls24{letter-spacing:1.962667pt;}
.lsd{letter-spacing:2.024000pt;}
.lsb{letter-spacing:2.133333pt;}
.ls37{letter-spacing:2.933333pt;}
.ls0{letter-spacing:3.733333pt;}
.ls10{letter-spacing:4.466667pt;}
.ls3{letter-spacing:4.853333pt;}
.ls8{letter-spacing:5.120000pt;}
.ls1a{letter-spacing:5.144723pt;}
.ls9{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls1c{letter-spacing:5.470933pt;}
.ls31{letter-spacing:5.600000pt;}
.ls1{letter-spacing:5.933333pt;}
.ls23{letter-spacing:6.010667pt;}
.ls33{letter-spacing:6.160000pt;}
.ls25{letter-spacing:7.253472pt;}
.ls49{letter-spacing:7.254005pt;}
.ls5{letter-spacing:7.466667pt;}
.ls32{letter-spacing:7.840000pt;}
.ls21{letter-spacing:8.280000pt;}
.ls22{letter-spacing:9.506667pt;}
.ls16{letter-spacing:216.106667pt;}
.ls14{letter-spacing:218.666667pt;}
.ls18{letter-spacing:221.333333pt;}
.ls17{letter-spacing:228.480000pt;}
.ls4c{letter-spacing:387.893333pt;}
.ls4b{letter-spacing:396.533333pt;}
.ls48{letter-spacing:735.360000pt;}
.ls42{letter-spacing:736.320000pt;}
.ls47{letter-spacing:739.786667pt;}
.ls44{letter-spacing:741.333333pt;}
.ls46{letter-spacing:741.866667pt;}
.ls41{letter-spacing:750.133333pt;}
.ls3e{letter-spacing:751.520000pt;}
.ls39{letter-spacing:752.800000pt;}
.ls40{letter-spacing:754.026667pt;}
.ls3d{letter-spacing:754.293333pt;}
.ls3c{letter-spacing:755.520000pt;}
.ls3a{letter-spacing:757.013333pt;}
.ws0{word-spacing:-24.666667pt;}
.ws4b{word-spacing:-23.576000pt;}
.ws1f{word-spacing:-23.200000pt;}
.ws51{word-spacing:-21.666667pt;}
.ws4a{word-spacing:-21.528000pt;}
.ws54{word-spacing:-20.320000pt;}
.ws20{word-spacing:-20.016000pt;}
.ws1d{word-spacing:-17.234667pt;}
.ws43{word-spacing:-17.173333pt;}
.ws9{word-spacing:-16.560000pt;}
.ws53{word-spacing:-16.016000pt;}
.ws4c{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.344000pt;}
.ws1b{word-spacing:-15.149333pt;}
.ws42{word-spacing:-15.088000pt;}
.ws27{word-spacing:-14.986667pt;}
.ws3f{word-spacing:-14.842667pt;}
.ws1e{word-spacing:-14.720000pt;}
.ws38{word-spacing:-14.658667pt;}
.wsf{word-spacing:-14.400000pt;}
.ws39{word-spacing:-14.168000pt;}
.ws4d{word-spacing:-13.832000pt;}
.ws21{word-spacing:-13.493333pt;}
.ws41{word-spacing:-13.432000pt;}
.ws40{word-spacing:-13.370667pt;}
.ws2a{word-spacing:-13.173333pt;}
.ws50{word-spacing:-12.600000pt;}
.ws3a{word-spacing:-11.856000pt;}
.ws5d{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.520000pt;}
.ws4f{word-spacing:-11.088000pt;}
.ws1c{word-spacing:-10.047811pt;}
.ws44{word-spacing:-10.012053pt;}
.ws37{word-spacing:-8.832061pt;}
.ws2e{word-spacing:-8.737227pt;}
.ws3b{word-spacing:-7.863504pt;}
.ws56{word-spacing:-7.680053pt;}
.ws4{word-spacing:-7.466667pt;}
.ws52{word-spacing:-7.000000pt;}
.ws3c{word-spacing:-6.010667pt;}
.ws4e{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.wsa{word-spacing:-5.226667pt;}
.ws7{word-spacing:-5.120000pt;}
.ws8{word-spacing:-3.733333pt;}
.ws19{word-spacing:-2.133333pt;}
.ws5{word-spacing:-1.120000pt;}
.ws47{word-spacing:-0.674667pt;}
.ws3{word-spacing:0.000000pt;}
.ws46{word-spacing:0.061333pt;}
.ws6{word-spacing:0.213333pt;}
.ws35{word-spacing:0.373333pt;}
.ws23{word-spacing:0.557333pt;}
.ws48{word-spacing:0.736000pt;}
.ws1a{word-spacing:0.760000pt;}
.ws45{word-spacing:0.981333pt;}
.ws3d{word-spacing:1.165333pt;}
.ws36{word-spacing:1.386667pt;}
.ws22{word-spacing:1.901333pt;}
.ws49{word-spacing:2.882667pt;}
.ws3e{word-spacing:7.298667pt;}
.ws2d{word-spacing:62.400000pt;}
.ws34{word-spacing:65.120000pt;}
.ws24{word-spacing:65.477333pt;}
.ws29{word-spacing:83.146667pt;}
.ws26{word-spacing:93.066667pt;}
.ws10{word-spacing:100.336000pt;}
.ws31{word-spacing:101.333333pt;}
.ws15{word-spacing:120.053333pt;}
.ws25{word-spacing:123.296000pt;}
.ws2c{word-spacing:126.613333pt;}
.ws30{word-spacing:129.866667pt;}
.ws33{word-spacing:135.040000pt;}
.ws14{word-spacing:148.373333pt;}
.wse{word-spacing:159.840000pt;}
.ws12{word-spacing:169.040000pt;}
.ws11{word-spacing:171.680000pt;}
.ws2b{word-spacing:204.794667pt;}
.ws28{word-spacing:206.074667pt;}
.ws2f{word-spacing:207.194667pt;}
.ws13{word-spacing:229.130667pt;}
.wsd{word-spacing:277.370667pt;}
.ws32{word-spacing:282.453333pt;}
.ws5c{word-spacing:349.066667pt;}
.ws57{word-spacing:359.946667pt;}
.ws5a{word-spacing:360.000000pt;}
.ws58{word-spacing:360.853333pt;}
.ws5b{word-spacing:366.293333pt;}
.ws59{word-spacing:366.453333pt;}
.ws16{word-spacing:421.120000pt;}
.ws55{word-spacing:466.645333pt;}
.ws17{word-spacing:544.186667pt;}
.wsb{word-spacing:560.517333pt;}
.ws18{word-spacing:927.360000pt;}
._1f{margin-left:-17.418667pt;}
._26{margin-left:-8.928005pt;}
._a{margin-left:-7.321600pt;}
._17{margin-left:-6.090133pt;}
._b{margin-left:-4.952000pt;}
._6{margin-left:-3.717333pt;}
._5{margin-left:-2.218667pt;}
._7{margin-left:-1.210667pt;}
._0{width:1.453333pt;}
._3{width:2.402133pt;}
._9{width:3.580800pt;}
._4{width:4.888533pt;}
._2{width:6.040000pt;}
._8{width:7.326933pt;}
._f{width:8.341333pt;}
._10{width:9.362667pt;}
._27{width:10.262667pt;}
._16{width:11.173867pt;}
._14{width:12.877333pt;}
._13{width:13.904000pt;}
._25{width:14.862400pt;}
._12{width:15.941333pt;}
._11{width:17.408000pt;}
._2e{width:18.709600pt;}
._18{width:19.908267pt;}
._29{width:21.184533pt;}
._2c{width:24.625920pt;}
._30{width:26.277867pt;}
._31{width:27.201867pt;}
._2a{width:30.157333pt;}
._2b{width:31.237381pt;}
._2f{width:33.084800pt;}
._1b{width:38.617920pt;}
._40{width:41.719467pt;}
._c{width:76.048000pt;}
._22{width:77.416000pt;}
._39{width:92.960000pt;}
._21{width:116.320000pt;}
._24{width:118.933333pt;}
._41{width:156.725653pt;}
._19{width:161.173333pt;}
._43{width:203.065387pt;}
._23{width:213.013333pt;}
._37{width:223.417600pt;}
._53{width:224.800000pt;}
._15{width:231.653333pt;}
._36{width:238.377387pt;}
._46{width:240.469653pt;}
._55{width:249.706667pt;}
._56{width:253.689600pt;}
._4d{width:267.840000pt;}
._42{width:273.173333pt;}
._52{width:277.653333pt;}
._5a{width:279.466667pt;}
._58{width:292.836267pt;}
._44{width:296.320000pt;}
._59{width:299.733333pt;}
._51{width:302.240000pt;}
._4a{width:305.671467pt;}
._47{width:307.520000pt;}
._54{width:314.120000pt;}
._57{width:326.506667pt;}
._33{width:343.899200pt;}
._4c{width:350.939893pt;}
._3b{width:366.914133pt;}
._3c{width:368.053333pt;}
._35{width:368.960000pt;}
._38{width:375.547733pt;}
._34{width:376.853333pt;}
._3a{width:384.000000pt;}
._49{width:403.732960pt;}
._1{width:404.960000pt;}
._1d{width:406.009067pt;}
._2d{width:406.924267pt;}
._20{width:408.364267pt;}
._3f{width:410.332267pt;}
._45{width:420.000000pt;}
._48{width:425.600000pt;}
._3d{width:437.333333pt;}
._32{width:450.197333pt;}
._3e{width:452.320000pt;}
._4f{width:453.760000pt;}
._4b{width:511.093333pt;}
._d{width:514.133333pt;}
._50{width:523.166560pt;}
._4e{width:554.441227pt;}
._1a{width:693.120000pt;}
._1c{width:849.958400pt;}
._28{width:852.731733pt;}
._e{width:856.331733pt;}
._1e{width:858.091733pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1aa{bottom:94.358533pt;}
.y1e7{bottom:94.439867pt;}
.y13f{bottom:94.474933pt;}
.y6a{bottom:94.477733pt;}
.yd3{bottom:94.482933pt;}
.y1c8{bottom:94.485067pt;}
.y164{bottom:94.485600pt;}
.y226{bottom:94.488133pt;}
.y20{bottom:94.489600pt;}
.yb0{bottom:94.503467pt;}
.y47{bottom:94.569600pt;}
.y221{bottom:94.792267pt;}
.y21a{bottom:94.794933pt;}
.y223{bottom:95.085600pt;}
.y186{bottom:97.150933pt;}
.y90{bottom:97.151067pt;}
.y219{bottom:98.328267pt;}
.y222{bottom:98.752267pt;}
.y21b{bottom:98.754933pt;}
.y244{bottom:101.727867pt;}
.y24c{bottom:102.463467pt;}
.y265{bottom:102.463867pt;}
.y260{bottom:102.464533pt;}
.y254{bottom:102.496667pt;}
.y239{bottom:102.563333pt;}
.y264{bottom:102.677200pt;}
.y25f{bottom:102.677867pt;}
.y25b{bottom:102.683467pt;}
.y23c{bottom:102.690667pt;}
.y243{bottom:102.691333pt;}
.y26f{bottom:102.696800pt;}
.y23d{bottom:102.704533pt;}
.y266{bottom:102.717200pt;}
.y26c{bottom:102.722800pt;}
.y255{bottom:102.723333pt;}
.y242{bottom:102.727733pt;}
.y24b{bottom:102.890133pt;}
.y246{bottom:102.892933pt;}
.y23b{bottom:102.907867pt;}
.y245{bottom:102.919733pt;}
.y238{bottom:102.923333pt;}
.y22b{bottom:107.336667pt;}
.y22c{bottom:109.363333pt;}
.y22d{bottom:109.750000pt;}
.y13e{bottom:109.810933pt;}
.y69{bottom:109.813733pt;}
.yd2{bottom:109.818933pt;}
.y1a9{bottom:112.467200pt;}
.y163{bottom:112.484267pt;}
.y46{bottom:112.647600pt;}
.y204{bottom:112.665867pt;}
.y252{bottom:113.013867pt;}
.y1e6{bottom:113.283867pt;}
.y229{bottom:113.291067pt;}
.y228{bottom:113.481867pt;}
.y251{bottom:113.493867pt;}
.y227{bottom:113.721867pt;}
.y1f{bottom:113.742933pt;}
.y253{bottom:113.841867pt;}
.yaf{bottom:114.758800pt;}
.y1c7{bottom:120.721067pt;}
.y205{bottom:123.163867pt;}
.y13d{bottom:125.146933pt;}
.y68{bottom:125.149733pt;}
.yd1{bottom:127.817600pt;}
.y162{bottom:128.931733pt;}
.y1a8{bottom:130.575867pt;}
.y45{bottom:130.725600pt;}
.y1e5{bottom:132.127867pt;}
.y1e{bottom:133.023867pt;}
.y203{bottom:133.307333pt;}
.yae{bottom:135.014133pt;}
.y185{bottom:136.284267pt;}
.y8f{bottom:136.324133pt;}
.y1c6{bottom:139.397067pt;}
.y13c{bottom:140.482933pt;}
.y67{bottom:140.485733pt;}
.yd0{bottom:144.259733pt;}
.y161{bottom:146.930400pt;}
.y1a7{bottom:148.684533pt;}
.y44{bottom:148.803600pt;}
.y1d{bottom:150.943867pt;}
.y202{bottom:152.054000pt;}
.y184{bottom:154.285600pt;}
.y8e{bottom:154.325467pt;}
.yad{bottom:155.274533pt;}
.y13b{bottom:155.818933pt;}
.y1c5{bottom:158.073067pt;}
.y66{bottom:158.484400pt;}
.y1e4{bottom:158.531867pt;}
.ycf{bottom:159.595733pt;}
.y1a6{bottom:166.793200pt;}
.y43{bottom:166.881600pt;}
.y119{bottom:166.950267pt;}
.y1c{bottom:168.863867pt;}
.y201{bottom:170.800667pt;}
.y183{bottom:172.286933pt;}
.y8d{bottom:172.326800pt;}
.y13a{bottom:173.817600pt;}
.yce{bottom:174.931733pt;}
.yac{bottom:175.545067pt;}
.y1c4{bottom:176.749067pt;}
.y1e3{bottom:177.375867pt;}
.y1a5{bottom:184.901867pt;}
.y42{bottom:184.959600pt;}
.y160{bottom:186.062133pt;}
.y1b{bottom:186.783867pt;}
.y118{bottom:186.806933pt;}
.y22a{bottom:189.133467pt;}
.y200{bottom:189.547333pt;}
.y182{bottom:190.290267pt;}
.y8c{bottom:190.328133pt;}
.ycd{bottom:192.930400pt;}
.y218{bottom:193.448267pt;}
.y213{bottom:193.448533pt;}
.y214{bottom:194.701867pt;}
.y215{bottom:194.820933pt;}
.y216{bottom:194.821600pt;}
.y210{bottom:195.418667pt;}
.y20c{bottom:195.610667pt;}
.y207{bottom:195.617200pt;}
.yab{bottom:195.800400pt;}
.y20a{bottom:196.290667pt;}
.y209{bottom:196.296533pt;}
.y20d{bottom:196.397333pt;}
.y208{bottom:196.670533pt;}
.yf9{bottom:197.608667pt;}
.y1c3{bottom:202.985067pt;}
.y1a4{bottom:203.010533pt;}
.y41{bottom:203.037600pt;}
.y65{bottom:203.654800pt;}
.y1e2{bottom:203.779867pt;}
.y1a{bottom:204.703867pt;}
.y15f{bottom:204.738133pt;}
.y24d{bottom:205.902533pt;}
.y26d{bottom:205.903067pt;}
.y247{bottom:205.903467pt;}
.y261{bottom:205.903867pt;}
.y25c{bottom:205.904533pt;}
.y256{bottom:205.907200pt;}
.y268{bottom:205.909467pt;}
.y267{bottom:205.909867pt;}
.y257{bottom:205.910133pt;}
.y271{bottom:205.910933pt;}
.y23e{bottom:205.912933pt;}
.y270{bottom:205.913867pt;}
.y23f{bottom:205.914400pt;}
.y23a{bottom:205.936667pt;}
.y117{bottom:206.663600pt;}
.y22f{bottom:207.323333pt;}
.y1ff{bottom:208.294000pt;}
.y181{bottom:208.307467pt;}
.y8b{bottom:208.329467pt;}
.ycc{bottom:209.364667pt;}
.y139{bottom:212.950133pt;}
.yf8{bottom:215.990267pt;}
.yaa{bottom:216.055733pt;}
.y40{bottom:221.115600pt;}
.y1a3{bottom:221.119200pt;}
.y1c2{bottom:221.661067pt;}
.y19{bottom:222.623867pt;}
.y15e{bottom:223.414133pt;}
.y64{bottom:223.854800pt;}
.ycb{bottom:224.700667pt;}
.y180{bottom:226.308800pt;}
.y8a{bottom:226.330800pt;}
.y116{bottom:226.520267pt;}
.y1fe{bottom:227.040667pt;}
.y138{bottom:231.432667pt;}
.yf7{bottom:234.356800pt;}
.ya9{bottom:236.316133pt;}
.y3f{bottom:239.193600pt;}
.y1a2{bottom:239.227867pt;}
.y63{bottom:239.854800pt;}
.yca{bottom:240.036667pt;}
.y18{bottom:240.543867pt;}
.y15d{bottom:242.090133pt;}
.y17f{bottom:244.310133pt;}
.y89{bottom:244.332133pt;}
.y1fd{bottom:245.787333pt;}
.y115{bottom:246.378267pt;}
.y1c1{bottom:247.897067pt;}
.y1e1{bottom:249.027867pt;}
.y137{bottom:249.848000pt;}
.yf6{bottom:252.741467pt;}
.yc9{bottom:255.372667pt;}
.ya8{bottom:256.642400pt;}
.y3e{bottom:257.271600pt;}
.y1a1{bottom:257.336533pt;}
.y17{bottom:258.463867pt;}
.y62{bottom:260.054800pt;}
.y15c{bottom:260.767200pt;}
.y230{bottom:262.096667pt;}
.y17e{bottom:262.311467pt;}
.y88{bottom:262.333467pt;}
.y1fc{bottom:264.534000pt;}
.y114{bottom:266.236267pt;}
.y1c0{bottom:266.573067pt;}
.y1e0{bottom:267.871867pt;}
.y136{bottom:268.263333pt;}
.yc8{bottom:270.708667pt;}
.yf5{bottom:271.126133pt;}
.y3d{bottom:275.349600pt;}
.y1a0{bottom:275.445200pt;}
.y61{bottom:276.054800pt;}
.y16{bottom:276.383867pt;}
.ya7{bottom:276.897733pt;}
.y15b{bottom:279.444267pt;}
.y17d{bottom:280.312800pt;}
.y87{bottom:280.334800pt;}
.y1fb{bottom:283.280667pt;}
.y1bf{bottom:285.249067pt;}
.yc7{bottom:286.044667pt;}
.y113{bottom:286.096933pt;}
.y135{bottom:286.678667pt;}
.yf4{bottom:289.510800pt;}
.y60{bottom:292.054800pt;}
.y3c{bottom:293.427600pt;}
.y19f{bottom:293.553867pt;}
.y1df{bottom:294.275867pt;}
.y15{bottom:294.303867pt;}
.ya6{bottom:297.153067pt;}
.y15a{bottom:298.126667pt;}
.y17c{bottom:298.314133pt;}
.y86{bottom:298.336133pt;}
.y1fa{bottom:302.027333pt;}
.yc6{bottom:304.043333pt;}
.y134{bottom:305.094000pt;}
.y112{bottom:305.953600pt;}
.yf3{bottom:307.895467pt;}
.y1be{bottom:311.485067pt;}
.y3b{bottom:311.505600pt;}
.y19e{bottom:311.662533pt;}
.y14{bottom:312.223867pt;}
.y5f{bottom:312.254800pt;}
.y1de{bottom:313.119867pt;}
.y224{bottom:314.472267pt;}
.y21c{bottom:314.474933pt;}
.y17b{bottom:316.315467pt;}
.y85{bottom:316.337467pt;}
.y225{bottom:316.778933pt;}
.y159{bottom:316.802667pt;}
.y21e{bottom:316.858933pt;}
.y21f{bottom:316.872267pt;}
.y21d{bottom:316.938933pt;}
.ya5{bottom:317.408400pt;}
.y1f9{bottom:320.774000pt;}
.y133{bottom:323.509333pt;}
.y111{bottom:325.810267pt;}
.yf2{bottom:326.280133pt;}
.y3a{bottom:329.583600pt;}
.y19d{bottom:329.771200pt;}
.y13{bottom:330.143867pt;}
.y1bd{bottom:330.161067pt;}
.y5e{bottom:332.454800pt;}
.y17a{bottom:334.316800pt;}
.y84{bottom:334.338800pt;}
.y158{bottom:335.478667pt;}
.ya4{bottom:337.663733pt;}
.y1f8{bottom:339.520667pt;}
.y1dd{bottom:339.523867pt;}
.y132{bottom:341.924667pt;}
.yc5{bottom:343.175200pt;}
.yf1{bottom:344.661733pt;}
.y110{bottom:345.668400pt;}
.y39{bottom:347.661600pt;}
.y19c{bottom:347.879867pt;}
.y12{bottom:348.063867pt;}
.y5d{bottom:348.454800pt;}
.y1bc{bottom:348.837067pt;}
.y179{bottom:352.326133pt;}
.y83{bottom:352.340133pt;}
.y157{bottom:354.154667pt;}
.y206{bottom:354.883867pt;}
.ya3{bottom:357.919067pt;}
.y1f7{bottom:358.267333pt;}
.y1dc{bottom:358.367867pt;}
.y131{bottom:360.340000pt;}
.yc4{bottom:362.203867pt;}
.yf0{bottom:363.046400pt;}
.y5c{bottom:364.454800pt;}
.y10f{bottom:365.546533pt;}
.y38{bottom:365.739600pt;}
.y11{bottom:365.983867pt;}
.y19b{bottom:365.988533pt;}
.y1bb{bottom:367.513067pt;}
.y178{bottom:370.327467pt;}
.y82{bottom:370.341467pt;}
.y156{bottom:372.830667pt;}
.y1f6{bottom:377.014000pt;}
.y1db{bottom:377.211867pt;}
.ya2{bottom:378.174400pt;}
.y130{bottom:378.755333pt;}
.yc3{bottom:381.237200pt;}
.y37{bottom:383.817600pt;}
.y10{bottom:383.903867pt;}
.y19a{bottom:384.097200pt;}
.y5b{bottom:384.654800pt;}
.y10e{bottom:385.403200pt;}
.y177{bottom:388.328800pt;}
.y81{bottom:388.342800pt;}
.y155{bottom:391.506667pt;}
.y1ba{bottom:393.749067pt;}
.y1f5{bottom:395.760667pt;}
.y12f{bottom:397.170667pt;}
.ya1{bottom:398.429733pt;}
.yc2{bottom:400.265867pt;}
.y5a{bottom:400.654800pt;}
.yf{bottom:401.823867pt;}
.y199{bottom:402.205867pt;}
.y24e{bottom:402.369200pt;}
.y248{bottom:402.370133pt;}
.y262{bottom:402.370533pt;}
.y25d{bottom:402.371200pt;}
.y269{bottom:402.376133pt;}
.y258{bottom:402.376800pt;}
.y272{bottom:402.377600pt;}
.y240{bottom:402.381067pt;}
.y1da{bottom:403.615867pt;}
.y10d{bottom:405.259867pt;}
.y176{bottom:406.330133pt;}
.y80{bottom:406.344133pt;}
.y154{bottom:410.183733pt;}
.y1b9{bottom:412.425067pt;}
.y1f4{bottom:414.507333pt;}
.y12e{bottom:415.586000pt;}
.yef{bottom:417.004667pt;}
.ya0{bottom:418.685067pt;}
.yc1{bottom:419.320000pt;}
.y198{bottom:420.314533pt;}
.y36{bottom:420.798400pt;}
.y59{bottom:420.854800pt;}
.y175{bottom:424.333467pt;}
.y7f{bottom:424.345467pt;}
.y10c{bottom:425.116533pt;}
.y231{bottom:428.523333pt;}
.y153{bottom:428.860800pt;}
.y22e{bottom:429.323333pt;}
.y1d9{bottom:430.019867pt;}
.ye{bottom:431.077200pt;}
.y1b8{bottom:431.101067pt;}
.yee{bottom:433.004667pt;}
.y232{bottom:433.710000pt;}
.y12d{bottom:434.001333pt;}
.y58{bottom:436.854800pt;}
.yc0{bottom:438.348667pt;}
.y197{bottom:438.423200pt;}
.y9f{bottom:438.940400pt;}
.y7e{bottom:442.346800pt;}
.y174{bottom:442.364667pt;}
.y1f3{bottom:444.587333pt;}
.y10b{bottom:444.973200pt;}
.y152{bottom:447.537867pt;}
.y1d8{bottom:448.863867pt;}
.y12c{bottom:452.416667pt;}
.yed{bottom:453.204667pt;}
.y57{bottom:457.054800pt;}
.y1b7{bottom:457.337067pt;}
.ybf{bottom:457.377333pt;}
.y9e{bottom:459.195733pt;}
.y7d{bottom:460.348133pt;}
.y173{bottom:460.366000pt;}
.ye7{bottom:461.204667pt;}
.y10a{bottom:464.829867pt;}
.y151{bottom:466.231067pt;}
.y1d7{bottom:467.707867pt;}
.yec{bottom:469.204667pt;}
.y12b{bottom:470.837200pt;}
.y196{bottom:475.422667pt;}
.y1b6{bottom:476.013067pt;}
.y35{bottom:476.233600pt;}
.ybe{bottom:476.406000pt;}
.ye6{bottom:477.204667pt;}
.y56{bottom:477.260533pt;}
.y7c{bottom:478.349467pt;}
.y172{bottom:478.367333pt;}
.y9d{bottom:479.451067pt;}
.yd{bottom:483.018267pt;}
.y109{bottom:484.686533pt;}
.y150{bottom:484.907067pt;}
.y53{bottom:485.260533pt;}
.y12a{bottom:489.278400pt;}
.yea{bottom:489.404667pt;}
.y55{bottom:493.260533pt;}
.y1d6{bottom:494.111867pt;}
.y1b5{bottom:494.689067pt;}
.y34{bottom:494.980267pt;}
.ybd{bottom:495.434667pt;}
.y7b{bottom:496.350800pt;}
.y171{bottom:496.368667pt;}
.y1f2{bottom:497.356267pt;}
.yeb{bottom:497.404667pt;}
.y9c{bottom:499.706400pt;}
.y52{bottom:501.260533pt;}
.y14f{bottom:503.583067pt;}
.y108{bottom:504.543200pt;}
.ye9{bottom:505.404667pt;}
.yc{bottom:507.602267pt;}
.y129{bottom:507.693733pt;}
.y220{bottom:509.005600pt;}
.y54{bottom:509.260533pt;}
.y20e{bottom:510.618667pt;}
.y211{bottom:510.621867pt;}
.y1d5{bottom:512.955867pt;}
.y33{bottom:513.771333pt;}
.y7a{bottom:514.352133pt;}
.y170{bottom:514.370000pt;}
.ybc{bottom:514.463333pt;}
.y9b{bottom:519.961733pt;}
.y1b4{bottom:520.925067pt;}
.ye8{bottom:521.404667pt;}
.y14e{bottom:522.259067pt;}
.y1f1{bottom:522.761600pt;}
.y107{bottom:524.399867pt;}
.y128{bottom:526.109067pt;}
.y51{bottom:527.692933pt;}
.y195{bottom:530.818933pt;}
.y32{bottom:531.184667pt;}
.y79{bottom:532.353467pt;}
.y16f{bottom:532.371333pt;}
.ybb{bottom:533.492000pt;}
.y1d4{bottom:539.359867pt;}
.y249{bottom:539.383467pt;}
.y263{bottom:539.383867pt;}
.y25e{bottom:539.384533pt;}
.y26a{bottom:539.389467pt;}
.y26e{bottom:539.390133pt;}
.y273{bottom:539.390933pt;}
.y241{bottom:539.394400pt;}
.y24f{bottom:539.515867pt;}
.y259{bottom:539.523467pt;}
.y1b3{bottom:539.601067pt;}
.y9a{bottom:540.217067pt;}
.y14d{bottom:540.935067pt;}
.ye5{bottom:541.618000pt;}
.y106{bottom:544.256533pt;}
.y127{bottom:544.524400pt;}
.y233{bottom:545.750000pt;}
.y31{bottom:548.598000pt;}
.y194{bottom:548.927600pt;}
.y78{bottom:550.356800pt;}
.y16e{bottom:550.372667pt;}
.yb{bottom:551.099867pt;}
.yba{bottom:552.520667pt;}
.y50{bottom:556.866667pt;}
.ye4{bottom:557.618000pt;}
.y1d3{bottom:558.203867pt;}
.y14c{bottom:559.611067pt;}
.y126{bottom:562.939733pt;}
.y105{bottom:564.113200pt;}
.y1b2{bottom:565.837067pt;}
.y30{bottom:566.011333pt;}
.y193{bottom:567.036267pt;}
.y77{bottom:568.360000pt;}
.y16d{bottom:568.374000pt;}
.y234{bottom:571.190000pt;}
.yb9{bottom:571.549333pt;}
.ye2{bottom:577.812533pt;}
.ye3{bottom:577.818000pt;}
.y14b{bottom:578.287067pt;}
.y99{bottom:579.370933pt;}
.ya{bottom:579.683867pt;}
.y125{bottom:581.360267pt;}
.y2f{bottom:583.424667pt;}
.y104{bottom:583.969867pt;}
.y1b1{bottom:584.513067pt;}
.y1d2{bottom:584.607867pt;}
.y192{bottom:585.144933pt;}
.y76{bottom:586.363333pt;}
.y16c{bottom:586.375333pt;}
.yb8{bottom:590.578000pt;}
.ydc{bottom:593.812533pt;}
.y4f{bottom:596.067867pt;}
.y14a{bottom:596.963067pt;}
.y124{bottom:599.827333pt;}
.y2e{bottom:600.838000pt;}
.y98{bottom:602.968933pt;}
.y1b0{bottom:603.189067pt;}
.y191{bottom:603.253600pt;}
.y1d1{bottom:603.451867pt;}
.y103{bottom:603.826533pt;}
.y16b{bottom:604.376667pt;}
.y75{bottom:604.386533pt;}
.y1f0{bottom:605.845867pt;}
.y9{bottom:608.267867pt;}
.yb7{bottom:609.606667pt;}
.ye1{bottom:614.012533pt;}
.y149{bottom:615.639067pt;}
.y4e{bottom:617.033333pt;}
.y123{bottom:618.242667pt;}
.y2d{bottom:618.251333pt;}
.y190{bottom:621.362267pt;}
.yde{bottom:622.012533pt;}
.y16a{bottom:622.378000pt;}
.y74{bottom:622.387867pt;}
.y102{bottom:623.683200pt;}
.y1ef{bottom:625.263867pt;}
.yb6{bottom:628.635333pt;}
.y1af{bottom:629.425067pt;}
.y1d0{bottom:629.855867pt;}
.ye0{bottom:630.012533pt;}
.y148{bottom:634.315067pt;}
.y2c{bottom:635.664667pt;}
.y122{bottom:636.658000pt;}
.y8{bottom:636.851867pt;}
.y4d{bottom:637.994000pt;}
.ydd{bottom:638.012533pt;}
.y18f{bottom:639.470933pt;}
.y169{bottom:640.379333pt;}
.y73{bottom:640.389200pt;}
.y101{bottom:643.539867pt;}
.y1ee{bottom:644.681867pt;}
.ydf{bottom:646.012533pt;}
.y1ae{bottom:648.101067pt;}
.y1cf{bottom:648.699867pt;}
.y147{bottom:652.991067pt;}
.y2b{bottom:653.078000pt;}
.y121{bottom:655.073333pt;}
.y18e{bottom:657.579600pt;}
.y168{bottom:658.380667pt;}
.y72{bottom:658.390533pt;}
.y97{bottom:660.583467pt;}
.y100{bottom:663.396533pt;}
.y20f{bottom:663.725333pt;}
.y217{bottom:663.728267pt;}
.y212{bottom:663.728533pt;}
.y20b{bottom:663.730667pt;}
.y1ed{bottom:664.099867pt;}
.ydb{bottom:666.225867pt;}
.yb5{bottom:666.572267pt;}
.yd8{bottom:668.332533pt;}
.y2a{bottom:670.491333pt;}
.y146{bottom:671.667067pt;}
.y250{bottom:671.715867pt;}
.y24a{bottom:671.716800pt;}
.y26b{bottom:671.722800pt;}
.y25a{bottom:671.723467pt;}
.y274{bottom:671.724267pt;}
.y120{bottom:673.488667pt;}
.y1ad{bottom:674.337067pt;}
.y1ce{bottom:675.103867pt;}
.y18d{bottom:675.640533pt;}
.y167{bottom:676.382000pt;}
.y71{bottom:676.391867pt;}
.y4c{bottom:677.855867pt;}
.y235{bottom:679.950000pt;}
.y96{bottom:680.869200pt;}
.yff{bottom:683.254533pt;}
.yd6{bottom:684.332533pt;}
.yda{bottom:686.439200pt;}
.y29{bottom:687.904667pt;}
.yb4{bottom:688.928267pt;}
.y145{bottom:690.343067pt;}
.y1ec{bottom:691.077867pt;}
.y7{bottom:691.900000pt;}
.y11f{bottom:691.904000pt;}
.y1ac{bottom:693.013067pt;}
.y18c{bottom:693.749200pt;}
.y1cd{bottom:693.947867pt;}
.y166{bottom:694.383333pt;}
.y70{bottom:694.393200pt;}
.yd7{bottom:700.332533pt;}
.y95{bottom:701.124533pt;}
.y237{bottom:702.003333pt;}
.y4b{bottom:702.155867pt;}
.yd9{bottom:702.439200pt;}
.yfe{bottom:703.116533pt;}
.y28{bottom:705.318000pt;}
.y236{bottom:707.830000pt;}
.y144{bottom:709.019067pt;}
.y11e{bottom:710.319333pt;}
.y1eb{bottom:710.495867pt;}
.y18b{bottom:711.857867pt;}
.y165{bottom:712.386667pt;}
.y6f{bottom:712.394533pt;}
.y6{bottom:718.713333pt;}
.y1ab{bottom:719.249067pt;}
.y1cc{bottom:720.351867pt;}
.y278{bottom:720.398000pt;}
.y94{bottom:721.379867pt;}
.y27{bottom:722.731333pt;}
.yfd{bottom:722.973200pt;}
.y143{bottom:727.695067pt;}
.y11d{bottom:728.734667pt;}
.yd5{bottom:729.025333pt;}
.y18a{bottom:729.966533pt;}
.y6e{bottom:730.395867pt;}
.y1ea{bottom:737.473867pt;}
.y5{bottom:737.966667pt;}
.y277{bottom:738.398000pt;}
.y1cb{bottom:739.195867pt;}
.y26{bottom:740.144667pt;}
.y93{bottom:741.635200pt;}
.yfc{bottom:742.829867pt;}
.yb3{bottom:745.315200pt;}
.y142{bottom:746.371067pt;}
.y11c{bottom:747.150000pt;}
.y189{bottom:748.075200pt;}
.y6d{bottom:748.397200pt;}
.y276{bottom:756.398000pt;}
.y1e9{bottom:756.891867pt;}
.y25{bottom:757.558000pt;}
.y4a{bottom:760.479867pt;}
.y92{bottom:761.890533pt;}
.yfb{bottom:762.686533pt;}
.yb2{bottom:764.343867pt;}
.y4{bottom:764.780000pt;}
.y141{bottom:765.049200pt;}
.y11b{bottom:765.565333pt;}
.y1ca{bottom:765.599867pt;}
.y188{bottom:766.183867pt;}
.y6c{bottom:766.398533pt;}
.y275{bottom:774.398000pt;}
.y24{bottom:774.971333pt;}
.y49{bottom:781.440533pt;}
.y91{bottom:782.145867pt;}
.yfa{bottom:782.544533pt;}
.yb1{bottom:783.372533pt;}
.y140{bottom:783.725200pt;}
.y1e8{bottom:783.869867pt;}
.y11a{bottom:783.985867pt;}
.yd4{bottom:784.016533pt;}
.y3{bottom:784.033333pt;}
.y187{bottom:784.292533pt;}
.y6b{bottom:784.399867pt;}
.y1c9{bottom:784.443867pt;}
.y48{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:803.731333pt;}
.y22{bottom:842.834667pt;}
.y21{bottom:858.834667pt;}
.hd{height:28.666667pt;}
.hf{height:30.107146pt;}
.he{height:35.833333pt;}
.ha{height:36.229167pt;}
.h2e{height:36.388396pt;}
.h16{height:36.796875pt;}
.hc{height:36.854167pt;}
.h10{height:40.757812pt;}
.h4{height:45.286458pt;}
.hb{height:46.067708pt;}
.h11{height:47.039062pt;}
.h3{height:47.550781pt;}
.h22{height:52.070894pt;}
.h8{height:52.079427pt;}
.h1e{height:52.091694pt;}
.h1d{height:52.151960pt;}
.h2c{height:52.252825pt;}
.h28{height:52.253358pt;}
.h17{height:52.265625pt;}
.h26{height:52.270360pt;}
.h9{height:52.977865pt;}
.h27{height:54.878906pt;}
.h2{height:56.608073pt;}
.h14{height:60.044669pt;}
.h25{height:60.074002pt;}
.h23{height:60.079869pt;}
.h20{height:60.084135pt;}
.h21{height:60.084669pt;}
.h13{height:60.097469pt;}
.h1f{height:60.100135pt;}
.h24{height:60.101202pt;}
.h12{height:60.105469pt;}
.h7{height:61.136719pt;}
.h6{height:63.401042pt;}
.h15{height:68.796875pt;}
.h2a{height:77.248058pt;}
.h29{height:77.260858pt;}
.h2d{height:77.273658pt;}
.h2b{height:77.274192pt;}
.h1b{height:77.286458pt;}
.h5{height:81.515625pt;}
.h1a{height:84.265625pt;}
.h18{height:109.286458pt;}
.h1c{height:116.265625pt;}
.h19{height:116.287492pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:73.079333pt;}
.x7{left:74.560533pt;}
.x6{left:75.920533pt;}
.x1c{left:78.168533pt;}
.x18{left:79.261867pt;}
.x19{left:80.288533pt;}
.x1e{left:82.325333pt;}
.x30{left:84.457733pt;}
.x2e{left:86.829067pt;}
.x28{left:89.872000pt;}
.x5{left:93.360533pt;}
.x8{left:94.339067pt;}
.x66{left:100.563333pt;}
.x4e{left:101.791067pt;}
.x31{left:108.776267pt;}
.x6b{left:110.656667pt;}
.x67{left:116.563333pt;}
.x69{left:118.656667pt;}
.x32{left:123.309600pt;}
.x6c{left:126.656667pt;}
.x51{left:127.995733pt;}
.x68{left:132.563333pt;}
.x6a{left:134.656667pt;}
.x33{left:137.842933pt;}
.x2d{left:140.935733pt;}
.x29{left:141.885333pt;}
.x54{left:148.195733pt;}
.x34{left:152.376267pt;}
.x4f{left:154.102400pt;}
.x52{left:156.195733pt;}
.x6d{left:162.856667pt;}
.x55{left:164.195733pt;}
.x35{left:166.919067pt;}
.x50{left:170.102400pt;}
.x53{left:172.195733pt;}
.x6e{left:178.856667pt;}
.x56{left:180.195733pt;}
.x9{left:189.034533pt;}
.x36{left:192.402133pt;}
.xb{left:194.486000pt;}
.x1a{left:198.595200pt;}
.x1d{left:199.888533pt;}
.x4{left:204.973067pt;}
.x3{left:206.533067pt;}
.x2{left:207.628000pt;}
.x6f{left:210.871867pt;}
.x57{left:216.395733pt;}
.x37{left:217.888533pt;}
.x21{left:223.245333pt;}
.x1f{left:225.698667pt;}
.x70{left:226.871867pt;}
.xa{left:229.152000pt;}
.x20{left:230.432000pt;}
.x39{left:232.431467pt;}
.x38{left:240.421867pt;}
.x71{left:247.071867pt;}
.x2f{left:248.549067pt;}
.x58{left:252.611067pt;}
.xc{left:256.747333pt;}
.x3c{left:262.967867pt;}
.xd{left:269.622000pt;}
.x3a{left:270.964800pt;}
.x59{left:272.816800pt;}
.x3b{left:278.967867pt;}
.x72{left:283.277733pt;}
.x24{left:290.578667pt;}
.x22{left:292.698667pt;}
.x73{left:299.277733pt;}
.x23{left:301.538667pt;}
.x2b{left:304.365333pt;}
.x2a{left:305.685333pt;}
.x3d{left:308.034533pt;}
.x5a{left:309.028267pt;}
.x74{left:319.483467pt;}
.xe{left:322.443333pt;}
.x5b{left:325.028267pt;}
.xf{left:333.600667pt;}
.x75{left:335.483467pt;}
.x3e{left:345.110667pt;}
.x76{left:351.483467pt;}
.x3f{left:353.113867pt;}
.x25{left:356.098667pt;}
.x26{left:357.325333pt;}
.x27{left:359.218667pt;}
.x5c{left:365.434133pt;}
.x40{left:367.647200pt;}
.x41{left:382.180533pt;}
.x77{left:383.489200pt;}
.x5d{left:385.639867pt;}
.x11{left:386.827333pt;}
.x10{left:389.344667pt;}
.x12{left:392.107333pt;}
.x44{left:396.713867pt;}
.x1b{left:399.541867pt;}
.x78{left:403.689200pt;}
.x5e{left:405.845600pt;}
.x42{left:412.713867pt;}
.x79{left:419.695067pt;}
.x46{left:421.669867pt;}
.x5f{left:426.051333pt;}
.x43{left:428.713867pt;}
.x2c{left:434.045333pt;}
.x7a{left:435.695067pt;}
.x60{left:442.057200pt;}
.x45{left:444.723200pt;}
.x14{left:449.867333pt;}
.x7b{left:451.695067pt;}
.x13{left:453.323333pt;}
.x15{left:456.086000pt;}
.x47{left:461.149867pt;}
.x61{left:462.257200pt;}
.x7c{left:467.695067pt;}
.x48{left:477.149867pt;}
.x4a{left:478.096533pt;}
.x7d{left:487.895067pt;}
.x49{left:493.149867pt;}
.x7e{left:503.900800pt;}
.x16{left:512.662000pt;}
.x7f{left:519.900800pt;}
.x62{left:523.392933pt;}
.x17{left:525.536667pt;}
.x4b{left:536.389733pt;}
.x63{left:541.391600pt;}
.x80{left:551.900800pt;}
.x4c{left:554.388400pt;}
.x64{left:556.727600pt;}
.x4d{left:569.724400pt;}
.x65{left:572.063600pt;}
}




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