
    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_acae3be79d15e93bd1864ab8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_a6f65d4bf3ed096468c3beef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_41abbfb719607ffb2a009265.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193848;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_3a7e8ae849cc13575ee1071a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3bc8f71b3cd73a1dd46d33f7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_82da3b73ac814a168520e969.woff')format("woff");}.ff6{font-family:ff6;line-height:1.016113;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_9ceb9af1c4be52aa92c8ef65.woff')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_ba15169f2c9a78c5ac4e16cf.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082520;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_49a61dda29e4e93b10c908de.woff')format("woff");}.ff9{font-family:ff9;line-height:0.833984;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_ce3b6799bbda7ec92fb39918.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.953600px;}
.v1{vertical-align:17.028000px;}
.v4{vertical-align:36.000000px;}
.lsd{letter-spacing:-7.371000px;}
.ls3c{letter-spacing:-3.159000px;}
.ls18{letter-spacing:-2.346000px;}
.lse{letter-spacing:-2.277000px;}
.ls20{letter-spacing:-2.109000px;}
.lsc{letter-spacing:-2.040000px;}
.ls3a{letter-spacing:-2.001000px;}
.ls43{letter-spacing:-1.566000px;}
.ls42{letter-spacing:-1.512000px;}
.ls7{letter-spacing:-1.296000px;}
.ls26{letter-spacing:-1.173000px;}
.ls1d{letter-spacing:-1.104000px;}
.ls1b{letter-spacing:-1.053000px;}
.ls1a{letter-spacing:-0.855000px;}
.ls17{letter-spacing:-0.690000px;}
.ls1f{letter-spacing:-0.627000px;}
.lsf{letter-spacing:-0.621000px;}
.ls10{letter-spacing:-0.414000px;}
.ls1e{letter-spacing:-0.345000px;}
.ls35{letter-spacing:-0.276000px;}
.ls41{letter-spacing:-0.270000px;}
.ls45{letter-spacing:-0.243000px;}
.ls6{letter-spacing:-0.180000px;}
.ls3b{letter-spacing:-0.171000px;}
.lsb{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000300px;}
.ls3d{letter-spacing:0.027900px;}
.ls21{letter-spacing:0.151800px;}
.ls4a{letter-spacing:0.189000px;}
.ls46{letter-spacing:0.239400px;}
.ls47{letter-spacing:0.252000px;}
.ls4c{letter-spacing:0.315000px;}
.ls4e{letter-spacing:0.441000px;}
.ls19{letter-spacing:0.621000px;}
.ls27{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.756000px;}
.ls4f{letter-spacing:1.323000px;}
.ls13{letter-spacing:1.350000px;}
.ls31{letter-spacing:1.607700px;}
.ls0{letter-spacing:1.992000px;}
.ls48{letter-spacing:2.160900px;}
.ls40{letter-spacing:2.251800px;}
.ls15{letter-spacing:2.400000px;}
.ls44{letter-spacing:2.415000px;}
.ls2c{letter-spacing:2.550531px;}
.ls9{letter-spacing:2.706000px;}
.ls39{letter-spacing:3.300000px;}
.ls1c{letter-spacing:3.367200px;}
.ls4b{letter-spacing:3.433500px;}
.ls37{letter-spacing:3.657000px;}
.ls34{letter-spacing:4.119300px;}
.ls2b{letter-spacing:4.125000px;}
.ls1{letter-spacing:4.200000px;}
.ls38{letter-spacing:4.278000px;}
.ls30{letter-spacing:5.520000px;}
.ls32{letter-spacing:5.727000px;}
.ls8{letter-spacing:5.760000px;}
.lsa{letter-spacing:5.880000px;}
.ls49{letter-spacing:5.915700px;}
.ls3{letter-spacing:6.000000px;}
.ls4{letter-spacing:6.300000px;}
.ls4d{letter-spacing:7.200000px;}
.ls16{letter-spacing:7.275000px;}
.ls2e{letter-spacing:7.300200px;}
.ls2d{letter-spacing:7.314000px;}
.ls3f{letter-spacing:7.549200px;}
.ls36{letter-spacing:8.142000px;}
.ls2f{letter-spacing:8.160156px;}
.ls3e{letter-spacing:8.160756px;}
.ls2{letter-spacing:8.175000px;}
.ls28{letter-spacing:8.556000px;}
.ls29{letter-spacing:8.583600px;}
.ls12{letter-spacing:9.646200px;}
.ls2a{letter-spacing:9.887700px;}
.ls33{letter-spacing:13.524000px;}
.ls22{letter-spacing:15.042000px;}
.ls23{letter-spacing:129.780000px;}
.ls25{letter-spacing:133.522800px;}
.ls24{letter-spacing:226.745400px;}
.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;}
}
.ws16{word-spacing:-69.000000px;}
.ws0{word-spacing:-29.250000px;}
.ws2{word-spacing:-29.052000px;}
.ws12{word-spacing:-28.350000px;}
.ws50{word-spacing:-28.275000px;}
.ws35{word-spacing:-25.200000px;}
.ws40{word-spacing:-24.375000px;}
.ws54{word-spacing:-22.860000px;}
.ws9{word-spacing:-22.740000px;}
.ws3{word-spacing:-22.620000px;}
.ws18{word-spacing:-20.010000px;}
.ws13{word-spacing:-19.389000px;}
.ws37{word-spacing:-18.975000px;}
.ws1d{word-spacing:-18.630000px;}
.ws53{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.102000px;}
.ws52{word-spacing:-18.018000px;}
.ws4f{word-spacing:-17.703000px;}
.ws15{word-spacing:-17.043000px;}
.ws4{word-spacing:-16.860000px;}
.ws22{word-spacing:-16.698000px;}
.wsc{word-spacing:-16.629000px;}
.ws14{word-spacing:-16.353000px;}
.ws28{word-spacing:-16.200000px;}
.ws20{word-spacing:-16.017000px;}
.ws21{word-spacing:-15.939000px;}
.ws27{word-spacing:-15.870000px;}
.ws4e{word-spacing:-15.561000px;}
.wsa{word-spacing:-15.390000px;}
.ws19{word-spacing:-15.174000px;}
.ws41{word-spacing:-15.042000px;}
.ws2b{word-spacing:-14.820000px;}
.wsb{word-spacing:-14.766000px;}
.ws31{word-spacing:-13.488000px;}
.ws33{word-spacing:-13.338000px;}
.ws48{word-spacing:-13.068000px;}
.ws49{word-spacing:-11.826000px;}
.ws4a{word-spacing:-11.772000px;}
.wsd{word-spacing:-11.303787px;}
.ws51{word-spacing:-10.320849px;}
.ws17{word-spacing:-9.936069px;}
.ws2a{word-spacing:-9.829380px;}
.ws3a{word-spacing:-7.038000px;}
.ws4d{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws8{word-spacing:-4.200000px;}
.ws46{word-spacing:-4.002000px;}
.ws4b{word-spacing:-2.484000px;}
.ws1a{word-spacing:-2.400000px;}
.ws39{word-spacing:-0.897000px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:0.060000px;}
.ws44{word-spacing:0.171000px;}
.ws7{word-spacing:0.180000px;}
.ws4c{word-spacing:0.243000px;}
.ws3c{word-spacing:0.276000px;}
.ws26{word-spacing:0.345000px;}
.ws11{word-spacing:0.621000px;}
.ws24{word-spacing:0.627000px;}
.ws34{word-spacing:0.690000px;}
.ws1e{word-spacing:0.855000px;}
.ws1f{word-spacing:1.053000px;}
.ws3b{word-spacing:1.863000px;}
.wsf{word-spacing:2.040000px;}
.ws25{word-spacing:2.109000px;}
.ws38{word-spacing:2.208000px;}
.ws10{word-spacing:2.277000px;}
.ws1b{word-spacing:2.346000px;}
.ws45{word-spacing:3.159000px;}
.ws3e{word-spacing:3.519000px;}
.ws3d{word-spacing:5.106000px;}
.ws43{word-spacing:5.244000px;}
.ws3f{word-spacing:6.279000px;}
.ws23{word-spacing:6.969000px;}
.ws36{word-spacing:10.419000px;}
.ws42{word-spacing:11.661000px;}
.ws1c{word-spacing:12.906000px;}
.ws47{word-spacing:118.260000px;}
.ws2f{word-spacing:230.748000px;}
.ws2e{word-spacing:242.040000px;}
.ws2d{word-spacing:256.860000px;}
.ws29{word-spacing:375.720000px;}
.ws30{word-spacing:425.214000px;}
.ws32{word-spacing:427.374000px;}
.ws2c{word-spacing:428.214000px;}
._3a{margin-left:-19.984800px;}
._27{margin-left:-17.043000px;}
._43{margin-left:-13.971000px;}
._4f{margin-left:-9.978000px;}
._46{margin-left:-8.019900px;}
._10{margin-left:-7.016100px;}
._a{margin-left:-5.864400px;}
._6{margin-left:-4.567500px;}
._5{margin-left:-2.765700px;}
._4{margin-left:-1.207500px;}
._0{width:1.732500px;}
._7{width:3.055500px;}
._b{width:4.090500px;}
._3{width:5.335500px;}
._2{width:6.697500px;}
._8{width:8.050500px;}
._9{width:9.330000px;}
._11{width:10.886700px;}
._18{width:12.861000px;}
._1e{width:14.840700px;}
._26{width:16.048800px;}
._d{width:17.867100px;}
._1a{width:18.992958px;}
._1b{width:20.014926px;}
._14{width:21.016914px;}
._16{width:22.155900px;}
._17{width:23.667000px;}
._28{width:24.708300px;}
._20{width:27.717300px;}
._1d{width:29.276700px;}
._49{width:30.741900px;}
._45{width:33.624000px;}
._44{width:39.393600px;}
._19{width:42.073440px;}
._13{width:43.445160px;}
._1f{width:44.745300px;}
._22{width:46.023000px;}
._4d{width:47.085000px;}
._4c{width:50.250300px;}
._4b{width:52.042800px;}
._48{width:57.142500px;}
._4a{width:58.388100px;}
._47{width:64.737000px;}
._c{width:68.712000px;}
._23{width:111.573000px;}
._40{width:127.620000px;}
._3f{width:130.740000px;}
._33{width:146.194500px;}
._2d{width:147.392100px;}
._30{width:151.380000px;}
._34{width:182.100000px;}
._36{width:192.195000px;}
._31{width:211.342500px;}
._2a{width:212.527200px;}
._32{width:233.885700px;}
._12{width:243.726000px;}
._29{width:251.520000px;}
._35{width:267.600000px;}
._3d{width:364.867500px;}
._1{width:445.057500px;}
._24{width:446.775000px;}
._15{width:447.794700px;}
._4e{width:449.700000px;}
._39{width:453.109200px;}
._38{width:454.834500px;}
._3c{width:455.869500px;}
._3b{width:457.309500px;}
._3e{width:482.585700px;}
._e{width:578.400000px;}
._2f{width:671.912100px;}
._2e{width:725.972100px;}
._41{width:745.410000px;}
._2b{width:787.137600px;}
._37{width:788.652900px;}
._2c{width:808.597800px;}
._42{width:864.300000px;}
._1c{width:956.348700px;}
._21{width:958.973700px;}
._25{width:963.023700px;}
._f{width:965.003700px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fse{font-size:36.729000px;}
.fs8{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fsc{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;}
.y2c5{bottom:106.118850px;}
.y1ee{bottom:106.130250px;}
.y31d{bottom:106.131900px;}
.y13f{bottom:106.247250px;}
.y237{bottom:106.275600px;}
.y25d{bottom:106.278450px;}
.y1ca{bottom:106.282500px;}
.y11e{bottom:106.284300px;}
.y1a6{bottom:106.287300px;}
.y2a5{bottom:106.287900px;}
.y92{bottom:106.290300px;}
.y214{bottom:106.293300px;}
.yd7{bottom:106.293450px;}
.y47{bottom:106.296300px;}
.y20{bottom:106.300800px;}
.y180{bottom:106.311450px;}
.y280{bottom:106.368150px;}
.y2e7{bottom:106.403700px;}
.y2fd{bottom:106.496850px;}
.yb6{bottom:106.506300px;}
.y25c{bottom:123.531450px;}
.y11d{bottom:123.537300px;}
.y1a5{bottom:123.540300px;}
.y91{bottom:123.543300px;}
.y213{bottom:123.546300px;}
.yd6{bottom:123.546450px;}
.y31c{bottom:126.141900px;}
.y1ed{bottom:126.502500px;}
.y46{bottom:126.544800px;}
.y2a4{bottom:126.762900px;}
.y13e{bottom:126.861000px;}
.y236{bottom:127.010100px;}
.y2e6{bottom:127.099200px;}
.y2fc{bottom:127.192350px;}
.y17f{bottom:127.201200px;}
.y1c9{bottom:127.241250px;}
.y27f{bottom:127.309650px;}
.y2c4{bottom:127.853850px;}
.y1f{bottom:127.960800px;}
.yb5{bottom:128.482800px;}
.y25b{bottom:140.784450px;}
.y11c{bottom:140.790300px;}
.y1a4{bottom:140.793300px;}
.y90{bottom:140.796300px;}
.y212{bottom:143.794800px;}
.yd5{bottom:143.794950px;}
.y6e{bottom:144.997200px;}
.y31b{bottom:146.151900px;}
.y1ec{bottom:146.874750px;}
.y13d{bottom:147.474750px;}
.y235{bottom:147.744600px;}
.y17e{bottom:148.097100px;}
.y1c8{bottom:148.200000px;}
.y27e{bottom:148.251150px;}
.y2c3{bottom:149.588850px;}
.y1e{bottom:149.651850px;}
.yb4{bottom:150.459300px;}
.y2a3{bottom:155.742900px;}
.y2e5{bottom:156.299700px;}
.y2fb{bottom:156.392850px;}
.y25a{bottom:158.037450px;}
.y11b{bottom:158.043300px;}
.y1a3{bottom:158.046300px;}
.y8f{bottom:161.044800px;}
.y6d{bottom:162.250200px;}
.yd4{bottom:162.295500px;}
.y31a{bottom:166.161900px;}
.y1eb{bottom:167.247000px;}
.y13c{bottom:168.088500px;}
.y234{bottom:168.479100px;}
.y1c7{bottom:169.158750px;}
.y17d{bottom:169.171500px;}
.y27d{bottom:169.192650px;}
.y1d{bottom:169.811850px;}
.y45{bottom:170.550300px;}
.yf8{bottom:170.557950px;}
.yb3{bottom:172.435800px;}
.y259{bottom:175.290450px;}
.y11a{bottom:175.296300px;}
.y2e4{bottom:176.995200px;}
.y2fa{bottom:177.088350px;}
.y1a2{bottom:178.294800px;}
.y6c{bottom:179.503200px;}
.yd3{bottom:179.548500px;}
.y2c2{bottom:179.828850px;}
.y319{bottom:186.171900px;}
.y1ea{bottom:187.619250px;}
.y211{bottom:187.817100px;}
.y13b{bottom:188.702250px;}
.y233{bottom:189.213600px;}
.y1c{bottom:189.971850px;}
.y17c{bottom:190.061250px;}
.y1c6{bottom:190.117500px;}
.y27c{bottom:190.134150px;}
.y44{bottom:190.870800px;}
.yf7{bottom:190.895700px;}
.y258{bottom:192.543450px;}
.y119{bottom:192.549300px;}
.yb2{bottom:194.412300px;}
.y15c{bottom:194.572650px;}
.y6b{bottom:196.756200px;}
.y1a1{bottom:196.783200px;}
.y2e3{bottom:197.690700px;}
.yd2{bottom:199.797000px;}
.y8e{bottom:204.973350px;}
.y318{bottom:206.181900px;}
.y2f9{bottom:206.288850px;}
.y2a2{bottom:206.525850px;}
.y1e9{bottom:207.991500px;}
.y210{bottom:208.241100px;}
.y13a{bottom:209.316000px;}
.y257{bottom:209.796450px;}
.y232{bottom:209.948100px;}
.y2c1{bottom:210.068850px;}
.y1b{bottom:210.131850px;}
.y17b{bottom:210.951000px;}
.y27b{bottom:211.075650px;}
.y1c5{bottom:211.076250px;}
.y43{bottom:211.191300px;}
.yf6{bottom:211.233450px;}
.y6a{bottom:214.009200px;}
.y1a0{bottom:214.036200px;}
.yb1{bottom:216.388800px;}
.y15b{bottom:217.330050px;}
.y2e2{bottom:218.386200px;}
.y317{bottom:226.191900px;}
.y8d{bottom:226.777350px;}
.y2f8{bottom:226.984350px;}
.y2a1{bottom:227.001600px;}
.y1e8{bottom:228.363750px;}
.y20f{bottom:228.665100px;}
.y139{bottom:229.929750px;}
.y256{bottom:230.044950px;}
.y1a{bottom:230.291850px;}
.y231{bottom:230.682600px;}
.y69{bottom:231.262200px;}
.y19f{bottom:231.289200px;}
.y42{bottom:231.511800px;}
.y17a{bottom:231.840750px;}
.y27a{bottom:232.017150px;}
.y1c4{bottom:232.035000px;}
.yb0{bottom:238.365300px;}
.y2e1{bottom:239.081700px;}
.y118{bottom:239.749350px;}
.y15a{bottom:240.055050px;}
.y2c0{bottom:240.308850px;}
.yd1{bottom:243.858600px;}
.y316{bottom:246.201900px;}
.y2a0{bottom:247.477350px;}
.y2f7{bottom:247.679850px;}
.y68{bottom:248.515200px;}
.y19e{bottom:248.542200px;}
.y8c{bottom:248.581350px;}
.y1e7{bottom:248.736000px;}
.y20e{bottom:249.090600px;}
.y19{bottom:250.451850px;}
.y138{bottom:250.543500px;}
.y230{bottom:251.417100px;}
.y41{bottom:251.832300px;}
.yf5{bottom:251.908950px;}
.y179{bottom:252.730500px;}
.y279{bottom:252.958650px;}
.y1c3{bottom:252.993750px;}
.yaf{bottom:260.341800px;}
.y117{bottom:260.466600px;}
.y2bf{bottom:262.043850px;}
.y159{bottom:262.780050px;}
.yd0{bottom:264.265350px;}
.y67{bottom:265.768200px;}
.y19d{bottom:265.795200px;}
.y315{bottom:266.211900px;}
.y29f{bottom:267.953100px;}
.y2e0{bottom:268.282200px;}
.y2f6{bottom:268.375350px;}
.y1e6{bottom:269.108250px;}
.y20d{bottom:269.515950px;}
.y8b{bottom:270.385350px;}
.y18{bottom:270.611850px;}
.y22f{bottom:272.151600px;}
.y40{bottom:272.152800px;}
.yf4{bottom:272.246700px;}
.y178{bottom:273.620250px;}
.y278{bottom:273.900150px;}
.y1c2{bottom:273.952500px;}
.y255{bottom:278.687250px;}
.y116{bottom:281.183850px;}
.yae{bottom:282.318300px;}
.y66{bottom:283.021200px;}
.y19c{bottom:283.048200px;}
.y2be{bottom:283.778850px;}
.ycf{bottom:284.672100px;}
.y158{bottom:285.505050px;}
.y314{bottom:286.221900px;}
.y29e{bottom:288.428850px;}
.y2df{bottom:288.977700px;}
.y1e5{bottom:289.480500px;}
.y20c{bottom:289.941300px;}
.y17{bottom:290.771850px;}
.y8a{bottom:292.189350px;}
.y137{bottom:292.409700px;}
.y3f{bottom:292.473300px;}
.yf3{bottom:292.584450px;}
.y22e{bottom:292.886100px;}
.y177{bottom:294.510000px;}
.y277{bottom:294.841650px;}
.y1c1{bottom:294.911250px;}
.y254{bottom:296.687250px;}
.y2f5{bottom:297.575850px;}
.y65{bottom:300.274200px;}
.y115{bottom:301.901100px;}
.y19b{bottom:303.296700px;}
.yad{bottom:304.294800px;}
.yce{bottom:305.078850px;}
.y2bd{bottom:305.513850px;}
.y313{bottom:306.231900px;}
.y157{bottom:308.230050px;}
.y29d{bottom:308.904600px;}
.y2de{bottom:309.673200px;}
.y1e4{bottom:309.852750px;}
.y20b{bottom:310.366650px;}
.y16{bottom:310.931850px;}
.y3e{bottom:312.793800px;}
.yf2{bottom:312.922200px;}
.y22d{bottom:313.580250px;}
.y89{bottom:313.993350px;}
.y253{bottom:314.687250px;}
.y176{bottom:315.399750px;}
.y276{bottom:315.783150px;}
.y1c0{bottom:315.870000px;}
.y64{bottom:317.527200px;}
.y2f4{bottom:318.271350px;}
.y114{bottom:322.618350px;}
.ycd{bottom:325.485600px;}
.y312{bottom:326.241900px;}
.yac{bottom:326.271300px;}
.y29c{bottom:329.380350px;}
.y1e3{bottom:330.225000px;}
.y20a{bottom:330.792000px;}
.y156{bottom:330.961500px;}
.y15{bottom:331.091850px;}
.y3d{bottom:333.114300px;}
.y252{bottom:333.167250px;}
.y22c{bottom:334.314750px;}
.y63{bottom:334.780200px;}
.y2bc{bottom:335.753850px;}
.y88{bottom:335.797350px;}
.y175{bottom:336.289500px;}
.y275{bottom:336.724650px;}
.y1bf{bottom:336.828750px;}
.y136{bottom:338.016900px;}
.y2dd{bottom:338.873700px;}
.y2f3{bottom:338.966850px;}
.y113{bottom:343.335600px;}
.y311{bottom:346.251900px;}
.y19a{bottom:347.322900px;}
.yab{bottom:348.247800px;}
.y29b{bottom:349.856100px;}
.y1e2{bottom:350.597250px;}
.y209{bottom:351.220200px;}
.y14{bottom:351.251850px;}
.y251{bottom:351.647250px;}
.y62{bottom:352.033200px;}
.y3c{bottom:353.434800px;}
.yf1{bottom:353.597700px;}
.y155{bottom:353.693100px;}
.y22b{bottom:355.049250px;}
.y174{bottom:357.179250px;}
.y2bb{bottom:357.488850px;}
.y87{bottom:357.601350px;}
.y274{bottom:357.666150px;}
.y1be{bottom:357.787500px;}
.y2dc{bottom:359.569200px;}
.y135{bottom:362.377650px;}
.y112{bottom:364.052850px;}
.y310{bottom:366.261900px;}
.ycc{bottom:366.299100px;}
.y199{bottom:367.924200px;}
.y2f2{bottom:368.167350px;}
.y61{bottom:369.286200px;}
.y250{bottom:369.647250px;}
.yaa{bottom:370.224300px;}
.y29a{bottom:370.331850px;}
.y1e1{bottom:370.969500px;}
.y13{bottom:371.411850px;}
.y208{bottom:371.644200px;}
.y3b{bottom:373.755300px;}
.yf0{bottom:373.934850px;}
.y22a{bottom:375.783750px;}
.y154{bottom:376.424550px;}
.y173{bottom:378.069000px;}
.y273{bottom:378.607650px;}
.y1bd{bottom:378.746250px;}
.y336{bottom:378.942750px;}
.y86{bottom:379.405350px;}
.y2db{bottom:380.264700px;}
.y111{bottom:384.770100px;}
.y30f{bottom:386.271900px;}
.y60{bottom:386.539200px;}
.ycb{bottom:386.705850px;}
.y134{bottom:386.738400px;}
.y2ba{bottom:387.728850px;}
.y24f{bottom:388.127250px;}
.y198{bottom:388.486200px;}
.y2f1{bottom:388.862850px;}
.y299{bottom:390.807600px;}
.y1e0{bottom:391.341750px;}
.y12{bottom:391.571850px;}
.y207{bottom:392.068200px;}
.ya9{bottom:392.200800px;}
.y3a{bottom:394.075800px;}
.yef{bottom:394.259850px;}
.y229{bottom:396.518250px;}
.y172{bottom:398.958750px;}
.y153{bottom:399.156000px;}
.y335{bottom:399.192750px;}
.y272{bottom:399.549150px;}
.y1bc{bottom:399.705000px;}
.y85{bottom:401.209350px;}
.y5f{bottom:403.792200px;}
.y110{bottom:405.487350px;}
.y24e{bottom:406.127250px;}
.y30e{bottom:406.281900px;}
.yca{bottom:407.112600px;}
.y197{bottom:409.048200px;}
.y2b9{bottom:409.463850px;}
.y2da{bottom:409.465200px;}
.y2f0{bottom:409.558350px;}
.y298{bottom:411.283350px;}
.y1df{bottom:411.714000px;}
.y11{bottom:411.731850px;}
.y206{bottom:412.493550px;}
.ya8{bottom:414.177300px;}
.y39{bottom:414.396300px;}
.yee{bottom:414.597600px;}
.y228{bottom:417.252750px;}
.y334{bottom:419.442750px;}
.y171{bottom:419.848500px;}
.y5e{bottom:421.045200px;}
.y152{bottom:421.887450px;}
.y84{bottom:423.013350px;}
.y24d{bottom:424.127250px;}
.y10f{bottom:426.204600px;}
.y30d{bottom:426.291900px;}
.y196{bottom:429.610200px;}
.y2d9{bottom:430.160700px;}
.y2b8{bottom:431.198850px;}
.y297{bottom:431.759100px;}
.y10{bottom:431.891850px;}
.y1de{bottom:432.086250px;}
.y205{bottom:432.919050px;}
.ya7{bottom:436.153800px;}
.y227{bottom:437.987250px;}
.y5d{bottom:438.298200px;}
.y2ef{bottom:438.758850px;}
.y333{bottom:439.692750px;}
.y170{bottom:440.738250px;}
.y1bb{bottom:441.622500px;}
.y271{bottom:441.755400px;}
.y24c{bottom:442.607250px;}
.y38{bottom:443.219700px;}
.y151{bottom:444.619050px;}
.y83{bottom:444.817350px;}
.y30c{bottom:446.301900px;}
.y10e{bottom:446.921850px;}
.yc9{bottom:447.926100px;}
.y133{bottom:449.310450px;}
.y195{bottom:450.172200px;}
.yf{bottom:452.051850px;}
.y296{bottom:452.234850px;}
.y1dd{bottom:452.458500px;}
.y2b7{bottom:452.933850px;}
.y204{bottom:453.344400px;}
.yed{bottom:455.273100px;}
.ya6{bottom:458.130300px;}
.y5c{bottom:458.546700px;}
.y226{bottom:458.721750px;}
.y2d8{bottom:459.361200px;}
.y2ee{bottom:459.454350px;}
.y24b{bottom:460.607250px;}
.y16f{bottom:461.628000px;}
.y1ba{bottom:462.581250px;}
.y30b{bottom:466.311900px;}
.y82{bottom:466.621350px;}
.y150{bottom:467.344050px;}
.y10d{bottom:467.639100px;}
.yc8{bottom:468.332850px;}
.y132{bottom:469.924200px;}
.y194{bottom:470.742000px;}
.y332{bottom:472.692750px;}
.y295{bottom:472.710600px;}
.y1dc{bottom:472.830750px;}
.y203{bottom:473.789100px;}
.yec{bottom:475.610850px;}
.y24a{bottom:479.087250px;}
.y225{bottom:479.456250px;}
.y2d7{bottom:480.056700px;}
.ya5{bottom:480.106800px;}
.y16e{bottom:482.517750px;}
.y2b6{bottom:483.173850px;}
.y1b9{bottom:483.540000px;}
.ye{bottom:484.961850px;}
.y14f{bottom:485.344050px;}
.y30a{bottom:486.321900px;}
.y10c{bottom:488.356350px;}
.y81{bottom:488.425350px;}
.y2ed{bottom:488.654850px;}
.yc7{bottom:488.739600px;}
.y131{bottom:490.537950px;}
.y193{bottom:491.311950px;}
.y294{bottom:493.186350px;}
.y1db{bottom:493.203000px;}
.y202{bottom:494.213100px;}
.yeb{bottom:495.948600px;}
.y37{bottom:497.047350px;}
.y249{bottom:497.087250px;}
.y224{bottom:500.190750px;}
.ya4{bottom:502.083300px;}
.y5b{bottom:502.545450px;}
.y16d{bottom:503.407500px;}
.y1b8{bottom:504.498750px;}
.y270{bottom:504.748950px;}
.y2b5{bottom:504.908850px;}
.y309{bottom:506.331900px;}
.y10b{bottom:509.073600px;}
.yc6{bottom:509.146350px;}
.y2d6{bottom:509.257200px;}
.y2ec{bottom:509.350350px;}
.y80{bottom:510.229350px;}
.y130{bottom:511.151700px;}
.y192{bottom:512.006100px;}
.y1da{bottom:513.575250px;}
.y293{bottom:513.662100px;}
.y331{bottom:514.197750px;}
.y201{bottom:514.637100px;}
.y248{bottom:515.567250px;}
.yea{bottom:516.286350px;}
.y36{bottom:518.122350px;}
.y14e{bottom:518.804250px;}
.y223{bottom:520.925250px;}
.y5a{bottom:523.607700px;}
.ya3{bottom:524.059800px;}
.y16c{bottom:524.297250px;}
.y1b7{bottom:525.457500px;}
.y26f{bottom:525.690450px;}
.y308{bottom:526.341900px;}
.y2b4{bottom:526.643850px;}
.yc5{bottom:529.553100px;}
.y10a{bottom:529.790850px;}
.y2d5{bottom:530.045850px;}
.y12f{bottom:531.765450px;}
.y7f{bottom:532.033350px;}
.y191{bottom:532.568100px;}
.y330{bottom:533.697750px;}
.y1d9{bottom:533.947500px;}
.y292{bottom:534.137850px;}
.y200{bottom:535.061100px;}
.ye9{bottom:536.624100px;}
.y35{bottom:539.097750px;}
.y222{bottom:541.659750px;}
.yd{bottom:543.395550px;}
.y247{bottom:544.073850px;}
.y59{bottom:544.669950px;}
.y16b{bottom:545.187000px;}
.ya2{bottom:546.036300px;}
.y307{bottom:546.351900px;}
.y1b6{bottom:546.415500px;}
.y26e{bottom:546.631950px;}
.yc4{bottom:549.959850px;}
.y109{bottom:550.508100px;}
.y2d4{bottom:550.741350px;}
.y12e{bottom:552.379200px;}
.y32f{bottom:553.197750px;}
.y7e{bottom:553.837350px;}
.y1d8{bottom:554.319750px;}
.y291{bottom:554.613600px;}
.y1ff{bottom:555.485100px;}
.y2b3{bottom:556.883850px;}
.ye8{bottom:556.961850px;}
.y34{bottom:558.672750px;}
.y2eb{bottom:559.246350px;}
.y221{bottom:562.394250px;}
.y14d{bottom:563.567250px;}
.y58{bottom:565.732200px;}
.y16a{bottom:566.076750px;}
.y306{bottom:566.361900px;}
.y1b5{bottom:567.373350px;}
.y26d{bottom:567.573450px;}
.ya1{bottom:568.012800px;}
.yc3{bottom:570.366600px;}
.yc{bottom:571.052550px;}
.y108{bottom:571.225350px;}
.y32e{bottom:572.697750px;}
.y12d{bottom:572.992950px;}
.y190{bottom:573.709350px;}
.y290{bottom:575.089350px;}
.y7d{bottom:575.641350px;}
.y1fe{bottom:575.909100px;}
.ye7{bottom:577.299600px;}
.y33{bottom:578.247750px;}
.y2b2{bottom:578.618850px;}
.y2d3{bottom:579.941850px;}
.y246{bottom:581.778450px;}
.y220{bottom:583.128750px;}
.y305{bottom:586.371900px;}
.y57{bottom:586.794450px;}
.y169{bottom:586.966500px;}
.y14c{bottom:587.786250px;}
.y1b4{bottom:588.320100px;}
.y26c{bottom:588.514950px;}
.ya0{bottom:589.989300px;}
.yc2{bottom:590.773350px;}
.y107{bottom:591.942600px;}
.y32d{bottom:592.197750px;}
.y12c{bottom:593.599200px;}
.y18f{bottom:594.271350px;}
.y28f{bottom:595.565100px;}
.y1d7{bottom:595.944150px;}
.y1fd{bottom:596.333100px;}
.y7c{bottom:597.445350px;}
.ye6{bottom:597.637350px;}
.y32{bottom:597.822750px;}
.y2b1{bottom:600.353850px;}
.y2d2{bottom:600.637350px;}
.y245{bottom:603.168450px;}
.y21f{bottom:603.863250px;}
.y168{bottom:607.856250px;}
.y56{bottom:607.856700px;}
.y1b3{bottom:609.278850px;}
.y26b{bottom:609.456450px;}
.yc1{bottom:611.180100px;}
.y32c{bottom:611.697750px;}
.y9f{bottom:611.965800px;}
.y14b{bottom:612.005250px;}
.y106{bottom:612.659850px;}
.y12b{bottom:614.126100px;}
.y18e{bottom:614.833350px;}
.y28e{bottom:616.040850px;}
.y1fc{bottom:616.757100px;}
.y31{bottom:617.397750px;}
.ye5{bottom:617.975100px;}
.y304{bottom:619.131900px;}
.y7b{bottom:619.249350px;}
.yb{bottom:619.987350px;}
.y2d1{bottom:621.332850px;}
.y244{bottom:624.558450px;}
.y21e{bottom:624.597750px;}
.y167{bottom:628.746000px;}
.y55{bottom:628.918950px;}
.y1b2{bottom:630.237600px;}
.y26a{bottom:630.461850px;}
.y2b0{bottom:630.593850px;}
.y32b{bottom:631.197750px;}
.yc0{bottom:631.586850px;}
.y105{bottom:633.377100px;}
.y9e{bottom:633.942300px;}
.y12a{bottom:634.739850px;}
.y18d{bottom:635.395350px;}
.y14a{bottom:636.224250px;}
.y28d{bottom:636.516600px;}
.y30{bottom:636.972750px;}
.y1fb{bottom:637.181100px;}
.ye4{bottom:638.312850px;}
.y7a{bottom:641.053350px;}
.y2d0{bottom:642.028350px;}
.y21d{bottom:645.332250px;}
.y243{bottom:645.948450px;}
.y166{bottom:649.635750px;}
.y54{bottom:649.981200px;}
.y32a{bottom:650.697750px;}
.y1b1{bottom:651.196350px;}
.y269{bottom:651.403350px;}
.ybf{bottom:651.993600px;}
.ya{bottom:652.144350px;}
.y2af{bottom:652.328850px;}
.y104{bottom:654.094350px;}
.y129{bottom:655.353600px;}
.y9d{bottom:655.918800px;}
.y18c{bottom:655.957350px;}
.y2f{bottom:656.547750px;}
.y28c{bottom:656.992350px;}
.y1fa{bottom:657.605100px;}
.y1d6{bottom:658.234350px;}
.ye3{bottom:658.650600px;}
.y149{bottom:660.450000px;}
.y79{bottom:662.857350px;}
.y21c{bottom:666.066750px;}
.y242{bottom:667.338450px;}
.y329{bottom:670.197750px;}
.y165{bottom:670.525500px;}
.y53{bottom:671.041050px;}
.y2cf{bottom:671.228850px;}
.y1b0{bottom:672.155100px;}
.y268{bottom:672.344850px;}
.y2ae{bottom:674.063850px;}
.y103{bottom:674.811600px;}
.y128{bottom:675.967350px;}
.y2e{bottom:676.122750px;}
.y18b{bottom:676.519350px;}
.y303{bottom:677.395800px;}
.y28b{bottom:677.468100px;}
.y9c{bottom:677.895300px;}
.y1f9{bottom:678.029100px;}
.y1d5{bottom:678.606600px;}
.ye2{bottom:678.988350px;}
.y9{bottom:684.301350px;}
.y78{bottom:684.661350px;}
.y148{bottom:684.675900px;}
.y241{bottom:688.728450px;}
.y328{bottom:689.697750px;}
.y164{bottom:691.415250px;}
.y2ce{bottom:691.924350px;}
.y52{bottom:692.100900px;}
.y1af{bottom:693.113850px;}
.y267{bottom:693.286350px;}
.ybe{bottom:693.663000px;}
.y102{bottom:695.528850px;}
.y2d{bottom:695.697750px;}
.y127{bottom:696.581100px;}
.y18a{bottom:697.081350px;}
.y28a{bottom:697.943850px;}
.y1f8{bottom:698.453100px;}
.y1d4{bottom:698.978850px;}
.ye1{bottom:699.326100px;}
.y9b{bottom:699.871800px;}
.y2ad{bottom:704.303850px;}
.y302{bottom:704.905800px;}
.y77{bottom:706.465350px;}
.y21b{bottom:708.058500px;}
.y147{bottom:708.901650px;}
.y327{bottom:709.197750px;}
.y240{bottom:710.191350px;}
.y2cd{bottom:712.619850px;}
.y51{bottom:713.160600px;}
.y1ae{bottom:714.072600px;}
.y266{bottom:714.227850px;}
.y2c{bottom:715.272750px;}
.y101{bottom:716.246100px;}
.y8{bottom:716.458350px;}
.y126{bottom:717.194850px;}
.y189{bottom:717.643350px;}
.ybd{bottom:717.821250px;}
.y289{bottom:718.419600px;}
.y1f7{bottom:718.877100px;}
.y1d3{bottom:719.351100px;}
.ye0{bottom:719.663850px;}
.y2ea{bottom:721.124850px;}
.y9a{bottom:721.848300px;}
.y2ac{bottom:726.038850px;}
.y76{bottom:728.269350px;}
.y326{bottom:728.697750px;}
.y23f{bottom:731.581350px;}
.y21a{bottom:732.540750px;}
.y146{bottom:733.168350px;}
.y163{bottom:733.212000px;}
.y50{bottom:734.210700px;}
.y2b{bottom:734.847750px;}
.y1ad{bottom:735.031350px;}
.y265{bottom:735.169350px;}
.y100{bottom:736.963350px;}
.y188{bottom:738.205350px;}
.y288{bottom:738.895350px;}
.y1f6{bottom:739.301100px;}
.y1d2{bottom:739.723350px;}
.ydf{bottom:740.001600px;}
.y2cc{bottom:741.820350px;}
.y99{bottom:743.824800px;}
.y325{bottom:748.197750px;}
.y75{bottom:750.073350px;}
.y23e{bottom:752.971350px;}
.y162{bottom:754.101750px;}
.y2a{bottom:754.422750px;}
.y4f{bottom:755.272950px;}
.y1ac{bottom:755.990100px;}
.y264{bottom:756.110850px;}
.y2ab{bottom:756.278850px;}
.y219{bottom:757.023000px;}
.y145{bottom:757.387350px;}
.yff{bottom:757.680600px;}
.y125{bottom:758.405100px;}
.y187{bottom:758.767350px;}
.y287{bottom:759.371100px;}
.y1f5{bottom:759.725100px;}
.y1d1{bottom:760.095600px;}
.yde{bottom:760.339350px;}
.y2e9{bottom:762.515850px;}
.y98{bottom:765.801300px;}
.y324{bottom:767.697750px;}
.y2cb{bottom:771.020850px;}
.y74{bottom:771.877350px;}
.y29{bottom:773.997750px;}
.y23d{bottom:774.361350px;}
.y161{bottom:774.991500px;}
.y4e{bottom:776.335200px;}
.y1ab{bottom:776.948850px;}
.y263{bottom:777.052350px;}
.y2aa{bottom:778.013850px;}
.y7{bottom:778.387500px;}
.yfe{bottom:778.397850px;}
.y124{bottom:779.018850px;}
.y186{bottom:779.329350px;}
.y286{bottom:779.846850px;}
.y1f4{bottom:780.157350px;}
.ybc{bottom:780.256500px;}
.y1d0{bottom:780.467850px;}
.ydd{bottom:780.677100px;}
.y144{bottom:781.606350px;}
.y2e8{bottom:783.211350px;}
.y323{bottom:787.197750px;}
.y97{bottom:787.777800px;}
.y2ca{bottom:791.716350px;}
.y28{bottom:793.572750px;}
.y73{bottom:793.681350px;}
.y23c{bottom:795.751350px;}
.y160{bottom:795.881250px;}
.y4d{bottom:797.397450px;}
.y1aa{bottom:797.907600px;}
.y262{bottom:797.993850px;}
.yfd{bottom:799.115100px;}
.y123{bottom:799.632600px;}
.y2a9{bottom:799.748850px;}
.y185{bottom:799.891350px;}
.y285{bottom:800.322600px;}
.y1f3{bottom:800.581350px;}
.ybb{bottom:800.663250px;}
.y1cf{bottom:800.840100px;}
.ydc{bottom:801.014850px;}
.y143{bottom:805.825350px;}
.y322{bottom:806.697750px;}
.y6{bottom:808.552500px;}
.y96{bottom:809.754300px;}
.y301{bottom:812.159850px;}
.y2c9{bottom:812.411850px;}
.y27{bottom:813.147750px;}
.y72{bottom:815.485350px;}
.y15f{bottom:816.771000px;}
.y23b{bottom:817.141350px;}
.y4c{bottom:818.459700px;}
.y1a9{bottom:818.866350px;}
.y261{bottom:818.935350px;}
.y218{bottom:819.763350px;}
.yfc{bottom:819.832350px;}
.y122{bottom:820.246350px;}
.y184{bottom:820.453350px;}
.y284{bottom:820.798350px;}
.y1f2{bottom:821.005350px;}
.yba{bottom:821.070000px;}
.y1ce{bottom:821.212350px;}
.ydb{bottom:821.350350px;}
.y321{bottom:826.197750px;}
.y2a8{bottom:829.988850px;}
.y142{bottom:830.044350px;}
.y5{bottom:830.212500px;}
.y95{bottom:831.730800px;}
.y26{bottom:832.722750px;}
.y300{bottom:832.918350px;}
.y2c8{bottom:833.107350px;}
.y71{bottom:837.289350px;}
.y15e{bottom:837.660750px;}
.y23a{bottom:838.531350px;}
.y4b{bottom:839.514600px;}
.y1a8{bottom:839.825100px;}
.y260{bottom:839.876850px;}
.y217{bottom:840.497850px;}
.yfb{bottom:840.549600px;}
.y121{bottom:840.860100px;}
.y183{bottom:841.015350px;}
.y283{bottom:841.274100px;}
.y1f1{bottom:841.429350px;}
.yb9{bottom:841.476750px;}
.y1cd{bottom:841.584600px;}
.yda{bottom:841.688100px;}
.y320{bottom:845.697750px;}
.y2a7{bottom:851.723850px;}
.y25{bottom:852.297750px;}
.y2ff{bottom:853.676850px;}
.y141{bottom:854.263350px;}
.y15d{bottom:858.550500px;}
.y70{bottom:859.093350px;}
.y239{bottom:859.921350px;}
.y4{bottom:860.377500px;}
.y4a{bottom:860.576850px;}
.y25f{bottom:860.818350px;}
.y216{bottom:861.232350px;}
.yfa{bottom:861.266850px;}
.y120{bottom:861.473850px;}
.y182{bottom:861.577350px;}
.y282{bottom:861.749850px;}
.y1f0{bottom:861.853350px;}
.yb8{bottom:861.887850px;}
.y1cc{bottom:861.956850px;}
.yd9{bottom:862.025850px;}
.y2c7{bottom:862.307850px;}
.y31f{bottom:865.197750px;}
.y24{bottom:871.872750px;}
.y94{bottom:874.968450px;}
.y140{bottom:878.482350px;}
.y6f{bottom:880.897350px;}
.y238{bottom:881.311350px;}
.y49{bottom:881.639100px;}
.y1a7{bottom:881.742600px;}
.y25e{bottom:881.759850px;}
.y2a6{bottom:881.963850px;}
.y215{bottom:881.966850px;}
.yf9{bottom:881.984100px;}
.y3{bottom:882.037500px;}
.y11f{bottom:882.087600px;}
.y181{bottom:882.139350px;}
.y281{bottom:882.225600px;}
.y1ef{bottom:882.277350px;}
.yb7{bottom:882.294600px;}
.y1cb{bottom:882.329100px;}
.yd8{bottom:882.363600px;}
.y2fe{bottom:882.940350px;}
.y2c6{bottom:883.003350px;}
.y31e{bottom:884.697750px;}
.y93{bottom:900.706200px;}
.y48{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:904.197750px;}
.y22{bottom:948.189000px;}
.y21{bottom:966.189000px;}
.hb{height:35.347102px;}
.h15{height:38.590266px;}
.hd{height:42.070312px;}
.hc{height:47.329102px;}
.h12{height:50.572266px;}
.h4{height:52.587891px;}
.h17{height:52.939453px;}
.h3{height:55.217285px;}
.h7{height:56.191406px;}
.h1f{height:59.000977px;}
.h9{height:60.476074px;}
.h14{height:60.485074px;}
.he{height:60.505474px;}
.h13{height:60.880371px;}
.h19{height:64.588317px;}
.ha{height:64.620117px;}
.h1c{height:64.623117px;}
.h1b{height:64.623717px;}
.h11{height:64.629717px;}
.h10{height:64.630317px;}
.h1a{height:64.668117px;}
.hf{height:64.668717px;}
.h1e{height:64.781517px;}
.h16{height:64.967517px;}
.h2{height:65.734863px;}
.h8{height:70.993652px;}
.h6{height:73.623047px;}
.h1d{height:75.858398px;}
.h18{height:88.939453px;}
.h5{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.929050px;}
.x6{left:82.447800px;}
.x1{left:83.686650px;}
.x4{left:85.395600px;}
.x14{left:90.429450px;}
.x16{left:92.827200px;}
.xf{left:95.979450px;}
.xe{left:101.124450px;}
.x9{left:102.438150px;}
.xa{left:103.690800px;}
.x5{left:105.030600px;}
.x3{left:106.365600px;}
.x17{left:114.187200px;}
.x1a{left:115.297200px;}
.xc{left:121.128000px;}
.xd{left:123.516300px;}
.x18{left:160.867200px;}
.x15{left:201.097650px;}
.xb{left:202.455600px;}
.x11{left:206.649450px;}
.x8{left:212.663850px;}
.x10{left:214.689450px;}
.x2{left:233.345250px;}
.x12{left:320.724450px;}
.x13{left:352.659450px;}
.x19{left:442.222200px;}
@media print{
.v3{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.403200pt;}
.v1{vertical-align:15.136000pt;}
.v4{vertical-align:32.000000pt;}
.lsd{letter-spacing:-6.552000pt;}
.ls3c{letter-spacing:-2.808000pt;}
.ls18{letter-spacing:-2.085333pt;}
.lse{letter-spacing:-2.024000pt;}
.ls20{letter-spacing:-1.874667pt;}
.lsc{letter-spacing:-1.813333pt;}
.ls3a{letter-spacing:-1.778667pt;}
.ls43{letter-spacing:-1.392000pt;}
.ls42{letter-spacing:-1.344000pt;}
.ls7{letter-spacing:-1.152000pt;}
.ls26{letter-spacing:-1.042667pt;}
.ls1d{letter-spacing:-0.981333pt;}
.ls1b{letter-spacing:-0.936000pt;}
.ls1a{letter-spacing:-0.760000pt;}
.ls17{letter-spacing:-0.613333pt;}
.ls1f{letter-spacing:-0.557333pt;}
.lsf{letter-spacing:-0.552000pt;}
.ls10{letter-spacing:-0.368000pt;}
.ls1e{letter-spacing:-0.306667pt;}
.ls35{letter-spacing:-0.245333pt;}
.ls41{letter-spacing:-0.240000pt;}
.ls45{letter-spacing:-0.216000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls3b{letter-spacing:-0.152000pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000267pt;}
.ls3d{letter-spacing:0.024800pt;}
.ls21{letter-spacing:0.134933pt;}
.ls4a{letter-spacing:0.168000pt;}
.ls46{letter-spacing:0.212800pt;}
.ls47{letter-spacing:0.224000pt;}
.ls4c{letter-spacing:0.280000pt;}
.ls4e{letter-spacing:0.392000pt;}
.ls19{letter-spacing:0.552000pt;}
.ls27{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.672000pt;}
.ls4f{letter-spacing:1.176000pt;}
.ls13{letter-spacing:1.200000pt;}
.ls31{letter-spacing:1.429067pt;}
.ls0{letter-spacing:1.770667pt;}
.ls48{letter-spacing:1.920800pt;}
.ls40{letter-spacing:2.001600pt;}
.ls15{letter-spacing:2.133333pt;}
.ls44{letter-spacing:2.146667pt;}
.ls2c{letter-spacing:2.267139pt;}
.ls9{letter-spacing:2.405333pt;}
.ls39{letter-spacing:2.933333pt;}
.ls1c{letter-spacing:2.993067pt;}
.ls4b{letter-spacing:3.052000pt;}
.ls37{letter-spacing:3.250667pt;}
.ls34{letter-spacing:3.661600pt;}
.ls2b{letter-spacing:3.666667pt;}
.ls1{letter-spacing:3.733333pt;}
.ls38{letter-spacing:3.802667pt;}
.ls30{letter-spacing:4.906667pt;}
.ls32{letter-spacing:5.090667pt;}
.ls8{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls49{letter-spacing:5.258400pt;}
.ls3{letter-spacing:5.333333pt;}
.ls4{letter-spacing:5.600000pt;}
.ls4d{letter-spacing:6.400000pt;}
.ls16{letter-spacing:6.466667pt;}
.ls2e{letter-spacing:6.489067pt;}
.ls2d{letter-spacing:6.501333pt;}
.ls3f{letter-spacing:6.710400pt;}
.ls36{letter-spacing:7.237333pt;}
.ls2f{letter-spacing:7.253472pt;}
.ls3e{letter-spacing:7.254005pt;}
.ls2{letter-spacing:7.266667pt;}
.ls28{letter-spacing:7.605333pt;}
.ls29{letter-spacing:7.629867pt;}
.ls12{letter-spacing:8.574400pt;}
.ls2a{letter-spacing:8.789067pt;}
.ls33{letter-spacing:12.021333pt;}
.ls22{letter-spacing:13.370667pt;}
.ls23{letter-spacing:115.360000pt;}
.ls25{letter-spacing:118.686933pt;}
.ls24{letter-spacing:201.551467pt;}
.ws16{word-spacing:-61.333333pt;}
.ws0{word-spacing:-26.000000pt;}
.ws2{word-spacing:-25.824000pt;}
.ws12{word-spacing:-25.200000pt;}
.ws50{word-spacing:-25.133333pt;}
.ws35{word-spacing:-22.400000pt;}
.ws40{word-spacing:-21.666667pt;}
.ws54{word-spacing:-20.320000pt;}
.ws9{word-spacing:-20.213333pt;}
.ws3{word-spacing:-20.106667pt;}
.ws18{word-spacing:-17.786667pt;}
.ws13{word-spacing:-17.234667pt;}
.ws37{word-spacing:-16.866667pt;}
.ws1d{word-spacing:-16.560000pt;}
.ws53{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.090667pt;}
.ws52{word-spacing:-16.016000pt;}
.ws4f{word-spacing:-15.736000pt;}
.ws15{word-spacing:-15.149333pt;}
.ws4{word-spacing:-14.986667pt;}
.ws22{word-spacing:-14.842667pt;}
.wsc{word-spacing:-14.781333pt;}
.ws14{word-spacing:-14.536000pt;}
.ws28{word-spacing:-14.400000pt;}
.ws20{word-spacing:-14.237333pt;}
.ws21{word-spacing:-14.168000pt;}
.ws27{word-spacing:-14.106667pt;}
.ws4e{word-spacing:-13.832000pt;}
.wsa{word-spacing:-13.680000pt;}
.ws19{word-spacing:-13.488000pt;}
.ws41{word-spacing:-13.370667pt;}
.ws2b{word-spacing:-13.173333pt;}
.wsb{word-spacing:-13.125333pt;}
.ws31{word-spacing:-11.989333pt;}
.ws33{word-spacing:-11.856000pt;}
.ws48{word-spacing:-11.616000pt;}
.ws49{word-spacing:-10.512000pt;}
.ws4a{word-spacing:-10.464000pt;}
.wsd{word-spacing:-10.047811pt;}
.ws51{word-spacing:-9.174088pt;}
.ws17{word-spacing:-8.832061pt;}
.ws2a{word-spacing:-8.737227pt;}
.ws3a{word-spacing:-6.256000pt;}
.ws4d{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws8{word-spacing:-3.733333pt;}
.ws46{word-spacing:-3.557333pt;}
.ws4b{word-spacing:-2.208000pt;}
.ws1a{word-spacing:-2.133333pt;}
.ws39{word-spacing:-0.797333pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:0.053333pt;}
.ws44{word-spacing:0.152000pt;}
.ws7{word-spacing:0.160000pt;}
.ws4c{word-spacing:0.216000pt;}
.ws3c{word-spacing:0.245333pt;}
.ws26{word-spacing:0.306667pt;}
.ws11{word-spacing:0.552000pt;}
.ws24{word-spacing:0.557333pt;}
.ws34{word-spacing:0.613333pt;}
.ws1e{word-spacing:0.760000pt;}
.ws1f{word-spacing:0.936000pt;}
.ws3b{word-spacing:1.656000pt;}
.wsf{word-spacing:1.813333pt;}
.ws25{word-spacing:1.874667pt;}
.ws38{word-spacing:1.962667pt;}
.ws10{word-spacing:2.024000pt;}
.ws1b{word-spacing:2.085333pt;}
.ws45{word-spacing:2.808000pt;}
.ws3e{word-spacing:3.128000pt;}
.ws3d{word-spacing:4.538667pt;}
.ws43{word-spacing:4.661333pt;}
.ws3f{word-spacing:5.581333pt;}
.ws23{word-spacing:6.194667pt;}
.ws36{word-spacing:9.261333pt;}
.ws42{word-spacing:10.365333pt;}
.ws1c{word-spacing:11.472000pt;}
.ws47{word-spacing:105.120000pt;}
.ws2f{word-spacing:205.109333pt;}
.ws2e{word-spacing:215.146667pt;}
.ws2d{word-spacing:228.320000pt;}
.ws29{word-spacing:333.973333pt;}
.ws30{word-spacing:377.968000pt;}
.ws32{word-spacing:379.888000pt;}
.ws2c{word-spacing:380.634667pt;}
._3a{margin-left:-17.764267pt;}
._27{margin-left:-15.149333pt;}
._43{margin-left:-12.418667pt;}
._4f{margin-left:-8.869333pt;}
._46{margin-left:-7.128800pt;}
._10{margin-left:-6.236533pt;}
._a{margin-left:-5.212800pt;}
._6{margin-left:-4.060000pt;}
._5{margin-left:-2.458400pt;}
._4{margin-left:-1.073333pt;}
._0{width:1.540000pt;}
._7{width:2.716000pt;}
._b{width:3.636000pt;}
._3{width:4.742667pt;}
._2{width:5.953333pt;}
._8{width:7.156000pt;}
._9{width:8.293333pt;}
._11{width:9.677067pt;}
._18{width:11.432000pt;}
._1e{width:13.191733pt;}
._26{width:14.265600pt;}
._d{width:15.881867pt;}
._1a{width:16.882629pt;}
._1b{width:17.791045pt;}
._14{width:18.681701pt;}
._16{width:19.694133pt;}
._17{width:21.037333pt;}
._28{width:21.962933pt;}
._20{width:24.637600pt;}
._1d{width:26.023733pt;}
._49{width:27.326133pt;}
._45{width:29.888000pt;}
._44{width:35.016533pt;}
._19{width:37.398613pt;}
._13{width:38.617920pt;}
._1f{width:39.773600pt;}
._22{width:40.909333pt;}
._4d{width:41.853333pt;}
._4c{width:44.666933pt;}
._4b{width:46.260267pt;}
._48{width:50.793333pt;}
._4a{width:51.900533pt;}
._47{width:57.544000pt;}
._c{width:61.077333pt;}
._23{width:99.176000pt;}
._40{width:113.440000pt;}
._3f{width:116.213333pt;}
._33{width:129.950667pt;}
._2d{width:131.015200pt;}
._30{width:134.560000pt;}
._34{width:161.866667pt;}
._36{width:170.840000pt;}
._31{width:187.860000pt;}
._2a{width:188.913067pt;}
._32{width:207.898400pt;}
._12{width:216.645333pt;}
._29{width:223.573333pt;}
._35{width:237.866667pt;}
._3d{width:324.326667pt;}
._1{width:395.606667pt;}
._24{width:397.133333pt;}
._15{width:398.039733pt;}
._4e{width:399.733333pt;}
._39{width:402.763733pt;}
._38{width:404.297333pt;}
._3c{width:405.217333pt;}
._3b{width:406.497333pt;}
._3e{width:428.965067pt;}
._e{width:514.133333pt;}
._2f{width:597.255200pt;}
._2e{width:645.308533pt;}
._41{width:662.586667pt;}
._2b{width:699.677867pt;}
._37{width:701.024800pt;}
._2c{width:718.753600pt;}
._42{width:768.266667pt;}
._1c{width:850.087733pt;}
._21{width:852.421067pt;}
._25{width:856.021067pt;}
._f{width:857.781067pt;}
.fs9{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fse{font-size:32.648000pt;}
.fs8{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fsc{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;}
.y2c5{bottom:94.327867pt;}
.y1ee{bottom:94.338000pt;}
.y31d{bottom:94.339467pt;}
.y13f{bottom:94.442000pt;}
.y237{bottom:94.467200pt;}
.y25d{bottom:94.469733pt;}
.y1ca{bottom:94.473333pt;}
.y11e{bottom:94.474933pt;}
.y1a6{bottom:94.477600pt;}
.y2a5{bottom:94.478133pt;}
.y92{bottom:94.480267pt;}
.y214{bottom:94.482933pt;}
.yd7{bottom:94.483067pt;}
.y47{bottom:94.485600pt;}
.y20{bottom:94.489600pt;}
.y180{bottom:94.499067pt;}
.y280{bottom:94.549467pt;}
.y2e7{bottom:94.581067pt;}
.y2fd{bottom:94.663867pt;}
.yb6{bottom:94.672267pt;}
.y25c{bottom:109.805733pt;}
.y11d{bottom:109.810933pt;}
.y1a5{bottom:109.813600pt;}
.y91{bottom:109.816267pt;}
.y213{bottom:109.818933pt;}
.yd6{bottom:109.819067pt;}
.y31c{bottom:112.126133pt;}
.y1ed{bottom:112.446667pt;}
.y46{bottom:112.484267pt;}
.y2a4{bottom:112.678133pt;}
.y13e{bottom:112.765333pt;}
.y236{bottom:112.897867pt;}
.y2e6{bottom:112.977067pt;}
.y2fc{bottom:113.059867pt;}
.y17f{bottom:113.067733pt;}
.y1c9{bottom:113.103333pt;}
.y27f{bottom:113.164133pt;}
.y2c4{bottom:113.647867pt;}
.y1f{bottom:113.742933pt;}
.yb5{bottom:114.206933pt;}
.y25b{bottom:125.141733pt;}
.y11c{bottom:125.146933pt;}
.y1a4{bottom:125.149600pt;}
.y90{bottom:125.152267pt;}
.y212{bottom:127.817600pt;}
.yd5{bottom:127.817733pt;}
.y6e{bottom:128.886400pt;}
.y31b{bottom:129.912800pt;}
.y1ec{bottom:130.555333pt;}
.y13d{bottom:131.088667pt;}
.y235{bottom:131.328533pt;}
.y17e{bottom:131.641867pt;}
.y1c8{bottom:131.733333pt;}
.y27e{bottom:131.778800pt;}
.y2c3{bottom:132.967867pt;}
.y1e{bottom:133.023867pt;}
.yb4{bottom:133.741600pt;}
.y2a3{bottom:138.438133pt;}
.y2e5{bottom:138.933067pt;}
.y2fb{bottom:139.015867pt;}
.y25a{bottom:140.477733pt;}
.y11b{bottom:140.482933pt;}
.y1a3{bottom:140.485600pt;}
.y8f{bottom:143.150933pt;}
.y6d{bottom:144.222400pt;}
.yd4{bottom:144.262667pt;}
.y31a{bottom:147.699467pt;}
.y1eb{bottom:148.664000pt;}
.y13c{bottom:149.412000pt;}
.y234{bottom:149.759200pt;}
.y1c7{bottom:150.363333pt;}
.y17d{bottom:150.374667pt;}
.y27d{bottom:150.393467pt;}
.y1d{bottom:150.943867pt;}
.y45{bottom:151.600267pt;}
.yf8{bottom:151.607067pt;}
.yb3{bottom:153.276267pt;}
.y259{bottom:155.813733pt;}
.y11a{bottom:155.818933pt;}
.y2e4{bottom:157.329067pt;}
.y2fa{bottom:157.411867pt;}
.y1a2{bottom:158.484267pt;}
.y6c{bottom:159.558400pt;}
.yd3{bottom:159.598667pt;}
.y2c2{bottom:159.847867pt;}
.y319{bottom:165.486133pt;}
.y1ea{bottom:166.772667pt;}
.y211{bottom:166.948533pt;}
.y13b{bottom:167.735333pt;}
.y233{bottom:168.189867pt;}
.y1c{bottom:168.863867pt;}
.y17c{bottom:168.943333pt;}
.y1c6{bottom:168.993333pt;}
.y27c{bottom:169.008133pt;}
.y44{bottom:169.662933pt;}
.yf7{bottom:169.685067pt;}
.y258{bottom:171.149733pt;}
.y119{bottom:171.154933pt;}
.yb2{bottom:172.810933pt;}
.y15c{bottom:172.953467pt;}
.y6b{bottom:174.894400pt;}
.y1a1{bottom:174.918400pt;}
.y2e3{bottom:175.725067pt;}
.yd2{bottom:177.597333pt;}
.y8e{bottom:182.198533pt;}
.y318{bottom:183.272800pt;}
.y2f9{bottom:183.367867pt;}
.y2a2{bottom:183.578533pt;}
.y1e9{bottom:184.881333pt;}
.y210{bottom:185.103200pt;}
.y13a{bottom:186.058667pt;}
.y257{bottom:186.485733pt;}
.y232{bottom:186.620533pt;}
.y2c1{bottom:186.727867pt;}
.y1b{bottom:186.783867pt;}
.y17b{bottom:187.512000pt;}
.y27b{bottom:187.622800pt;}
.y1c5{bottom:187.623333pt;}
.y43{bottom:187.725600pt;}
.yf6{bottom:187.763067pt;}
.y6a{bottom:190.230400pt;}
.y1a0{bottom:190.254400pt;}
.yb1{bottom:192.345600pt;}
.y15b{bottom:193.182267pt;}
.y2e2{bottom:194.121067pt;}
.y317{bottom:201.059467pt;}
.y8d{bottom:201.579867pt;}
.y2f8{bottom:201.763867pt;}
.y2a1{bottom:201.779200pt;}
.y1e8{bottom:202.990000pt;}
.y20f{bottom:203.257867pt;}
.y139{bottom:204.382000pt;}
.y256{bottom:204.484400pt;}
.y1a{bottom:204.703867pt;}
.y231{bottom:205.051200pt;}
.y69{bottom:205.566400pt;}
.y19f{bottom:205.590400pt;}
.y42{bottom:205.788267pt;}
.y17a{bottom:206.080667pt;}
.y27a{bottom:206.237467pt;}
.y1c4{bottom:206.253333pt;}
.yb0{bottom:211.880267pt;}
.y2e1{bottom:212.517067pt;}
.y118{bottom:213.110533pt;}
.y15a{bottom:213.382267pt;}
.y2c0{bottom:213.607867pt;}
.yd1{bottom:216.763200pt;}
.y316{bottom:218.846133pt;}
.y2a0{bottom:219.979867pt;}
.y2f7{bottom:220.159867pt;}
.y68{bottom:220.902400pt;}
.y19e{bottom:220.926400pt;}
.y8c{bottom:220.961200pt;}
.y1e7{bottom:221.098667pt;}
.y20e{bottom:221.413867pt;}
.y19{bottom:222.623867pt;}
.y138{bottom:222.705333pt;}
.y230{bottom:223.481867pt;}
.y41{bottom:223.850933pt;}
.yf5{bottom:223.919067pt;}
.y179{bottom:224.649333pt;}
.y279{bottom:224.852133pt;}
.y1c3{bottom:224.883333pt;}
.yaf{bottom:231.414933pt;}
.y117{bottom:231.525867pt;}
.y2bf{bottom:232.927867pt;}
.y159{bottom:233.582267pt;}
.yd0{bottom:234.902533pt;}
.y67{bottom:236.238400pt;}
.y19d{bottom:236.262400pt;}
.y315{bottom:236.632800pt;}
.y29f{bottom:238.180533pt;}
.y2e0{bottom:238.473067pt;}
.y2f6{bottom:238.555867pt;}
.y1e6{bottom:239.207333pt;}
.y20d{bottom:239.569733pt;}
.y8b{bottom:240.342533pt;}
.y18{bottom:240.543867pt;}
.y22f{bottom:241.912533pt;}
.y40{bottom:241.913600pt;}
.yf4{bottom:241.997067pt;}
.y178{bottom:243.218000pt;}
.y278{bottom:243.466800pt;}
.y1c2{bottom:243.513333pt;}
.y255{bottom:247.722000pt;}
.y116{bottom:249.941200pt;}
.yae{bottom:250.949600pt;}
.y66{bottom:251.574400pt;}
.y19c{bottom:251.598400pt;}
.y2be{bottom:252.247867pt;}
.ycf{bottom:253.041867pt;}
.y158{bottom:253.782267pt;}
.y314{bottom:254.419467pt;}
.y29e{bottom:256.381200pt;}
.y2df{bottom:256.869067pt;}
.y1e5{bottom:257.316000pt;}
.y20c{bottom:257.725600pt;}
.y17{bottom:258.463867pt;}
.y8a{bottom:259.723867pt;}
.y137{bottom:259.919733pt;}
.y3f{bottom:259.976267pt;}
.yf3{bottom:260.075067pt;}
.y22e{bottom:260.343200pt;}
.y177{bottom:261.786667pt;}
.y277{bottom:262.081467pt;}
.y1c1{bottom:262.143333pt;}
.y254{bottom:263.722000pt;}
.y2f5{bottom:264.511867pt;}
.y65{bottom:266.910400pt;}
.y115{bottom:268.356533pt;}
.y19b{bottom:269.597067pt;}
.yad{bottom:270.484267pt;}
.yce{bottom:271.181200pt;}
.y2bd{bottom:271.567867pt;}
.y313{bottom:272.206133pt;}
.y157{bottom:273.982267pt;}
.y29d{bottom:274.581867pt;}
.y2de{bottom:275.265067pt;}
.y1e4{bottom:275.424667pt;}
.y20b{bottom:275.881467pt;}
.y16{bottom:276.383867pt;}
.y3e{bottom:278.038933pt;}
.yf2{bottom:278.153067pt;}
.y22d{bottom:278.738000pt;}
.y89{bottom:279.105200pt;}
.y253{bottom:279.722000pt;}
.y176{bottom:280.355333pt;}
.y276{bottom:280.696133pt;}
.y1c0{bottom:280.773333pt;}
.y64{bottom:282.246400pt;}
.y2f4{bottom:282.907867pt;}
.y114{bottom:286.771867pt;}
.ycd{bottom:289.320533pt;}
.y312{bottom:289.992800pt;}
.yac{bottom:290.018933pt;}
.y29c{bottom:292.782533pt;}
.y1e3{bottom:293.533333pt;}
.y20a{bottom:294.037333pt;}
.y156{bottom:294.188000pt;}
.y15{bottom:294.303867pt;}
.y3d{bottom:296.101600pt;}
.y252{bottom:296.148667pt;}
.y22c{bottom:297.168667pt;}
.y63{bottom:297.582400pt;}
.y2bc{bottom:298.447867pt;}
.y88{bottom:298.486533pt;}
.y175{bottom:298.924000pt;}
.y275{bottom:299.310800pt;}
.y1bf{bottom:299.403333pt;}
.y136{bottom:300.459467pt;}
.y2dd{bottom:301.221067pt;}
.y2f3{bottom:301.303867pt;}
.y113{bottom:305.187200pt;}
.y311{bottom:307.779467pt;}
.y19a{bottom:308.731467pt;}
.yab{bottom:309.553600pt;}
.y29b{bottom:310.983200pt;}
.y1e2{bottom:311.642000pt;}
.y209{bottom:312.195733pt;}
.y14{bottom:312.223867pt;}
.y251{bottom:312.575333pt;}
.y62{bottom:312.918400pt;}
.y3c{bottom:314.164267pt;}
.yf1{bottom:314.309067pt;}
.y155{bottom:314.393867pt;}
.y22b{bottom:315.599333pt;}
.y174{bottom:317.492667pt;}
.y2bb{bottom:317.767867pt;}
.y87{bottom:317.867867pt;}
.y274{bottom:317.925467pt;}
.y1be{bottom:318.033333pt;}
.y2dc{bottom:319.617067pt;}
.y135{bottom:322.113467pt;}
.y112{bottom:323.602533pt;}
.y310{bottom:325.566133pt;}
.ycc{bottom:325.599200pt;}
.y199{bottom:327.043733pt;}
.y2f2{bottom:327.259867pt;}
.y61{bottom:328.254400pt;}
.y250{bottom:328.575333pt;}
.yaa{bottom:329.088267pt;}
.y29a{bottom:329.183867pt;}
.y1e1{bottom:329.750667pt;}
.y13{bottom:330.143867pt;}
.y208{bottom:330.350400pt;}
.y3b{bottom:332.226933pt;}
.yf0{bottom:332.386533pt;}
.y22a{bottom:334.030000pt;}
.y154{bottom:334.599600pt;}
.y173{bottom:336.061333pt;}
.y273{bottom:336.540133pt;}
.y1bd{bottom:336.663333pt;}
.y336{bottom:336.838000pt;}
.y86{bottom:337.249200pt;}
.y2db{bottom:338.013067pt;}
.y111{bottom:342.017867pt;}
.y30f{bottom:343.352800pt;}
.y60{bottom:343.590400pt;}
.ycb{bottom:343.738533pt;}
.y134{bottom:343.767467pt;}
.y2ba{bottom:344.647867pt;}
.y24f{bottom:345.002000pt;}
.y198{bottom:345.321067pt;}
.y2f1{bottom:345.655867pt;}
.y299{bottom:347.384533pt;}
.y1e0{bottom:347.859333pt;}
.y12{bottom:348.063867pt;}
.y207{bottom:348.505067pt;}
.ya9{bottom:348.622933pt;}
.y3a{bottom:350.289600pt;}
.yef{bottom:350.453200pt;}
.y229{bottom:352.460667pt;}
.y172{bottom:354.630000pt;}
.y153{bottom:354.805333pt;}
.y335{bottom:354.838000pt;}
.y272{bottom:355.154800pt;}
.y1bc{bottom:355.293333pt;}
.y85{bottom:356.630533pt;}
.y5f{bottom:358.926400pt;}
.y110{bottom:360.433200pt;}
.y24e{bottom:361.002000pt;}
.y30e{bottom:361.139467pt;}
.yca{bottom:361.877867pt;}
.y197{bottom:363.598400pt;}
.y2b9{bottom:363.967867pt;}
.y2da{bottom:363.969067pt;}
.y2f0{bottom:364.051867pt;}
.y298{bottom:365.585200pt;}
.y1df{bottom:365.968000pt;}
.y11{bottom:365.983867pt;}
.y206{bottom:366.660933pt;}
.ya8{bottom:368.157600pt;}
.y39{bottom:368.352267pt;}
.yee{bottom:368.531200pt;}
.y228{bottom:370.891333pt;}
.y334{bottom:372.838000pt;}
.y171{bottom:373.198667pt;}
.y5e{bottom:374.262400pt;}
.y152{bottom:375.011067pt;}
.y84{bottom:376.011867pt;}
.y24d{bottom:377.002000pt;}
.y10f{bottom:378.848533pt;}
.y30d{bottom:378.926133pt;}
.y196{bottom:381.875733pt;}
.y2d9{bottom:382.365067pt;}
.y2b8{bottom:383.287867pt;}
.y297{bottom:383.785867pt;}
.y10{bottom:383.903867pt;}
.y1de{bottom:384.076667pt;}
.y205{bottom:384.816933pt;}
.ya7{bottom:387.692267pt;}
.y227{bottom:389.322000pt;}
.y5d{bottom:389.598400pt;}
.y2ef{bottom:390.007867pt;}
.y333{bottom:390.838000pt;}
.y170{bottom:391.767333pt;}
.y1bb{bottom:392.553333pt;}
.y271{bottom:392.671467pt;}
.y24c{bottom:393.428667pt;}
.y38{bottom:393.973067pt;}
.y151{bottom:395.216933pt;}
.y83{bottom:395.393200pt;}
.y30c{bottom:396.712800pt;}
.y10e{bottom:397.263867pt;}
.yc9{bottom:398.156533pt;}
.y133{bottom:399.387067pt;}
.y195{bottom:400.153067pt;}
.yf{bottom:401.823867pt;}
.y296{bottom:401.986533pt;}
.y1dd{bottom:402.185333pt;}
.y2b7{bottom:402.607867pt;}
.y204{bottom:402.972800pt;}
.yed{bottom:404.687200pt;}
.ya6{bottom:407.226933pt;}
.y5c{bottom:407.597067pt;}
.y226{bottom:407.752667pt;}
.y2d8{bottom:408.321067pt;}
.y2ee{bottom:408.403867pt;}
.y24b{bottom:409.428667pt;}
.y16f{bottom:410.336000pt;}
.y1ba{bottom:411.183333pt;}
.y30b{bottom:414.499467pt;}
.y82{bottom:414.774533pt;}
.y150{bottom:415.416933pt;}
.y10d{bottom:415.679200pt;}
.yc8{bottom:416.295867pt;}
.y132{bottom:417.710400pt;}
.y194{bottom:418.437333pt;}
.y332{bottom:420.171333pt;}
.y295{bottom:420.187200pt;}
.y1dc{bottom:420.294000pt;}
.y203{bottom:421.145867pt;}
.yec{bottom:422.765200pt;}
.y24a{bottom:425.855333pt;}
.y225{bottom:426.183333pt;}
.y2d7{bottom:426.717067pt;}
.ya5{bottom:426.761600pt;}
.y16e{bottom:428.904667pt;}
.y2b6{bottom:429.487867pt;}
.y1b9{bottom:429.813333pt;}
.ye{bottom:431.077200pt;}
.y14f{bottom:431.416933pt;}
.y30a{bottom:432.286133pt;}
.y10c{bottom:434.094533pt;}
.y81{bottom:434.155867pt;}
.y2ed{bottom:434.359867pt;}
.yc7{bottom:434.435200pt;}
.y131{bottom:436.033733pt;}
.y193{bottom:436.721733pt;}
.y294{bottom:438.387867pt;}
.y1db{bottom:438.402667pt;}
.y202{bottom:439.300533pt;}
.yeb{bottom:440.843200pt;}
.y37{bottom:441.819867pt;}
.y249{bottom:441.855333pt;}
.y224{bottom:444.614000pt;}
.ya4{bottom:446.296267pt;}
.y5b{bottom:446.707067pt;}
.y16d{bottom:447.473333pt;}
.y1b8{bottom:448.443333pt;}
.y270{bottom:448.665733pt;}
.y2b5{bottom:448.807867pt;}
.y309{bottom:450.072800pt;}
.y10b{bottom:452.509867pt;}
.yc6{bottom:452.574533pt;}
.y2d6{bottom:452.673067pt;}
.y2ec{bottom:452.755867pt;}
.y80{bottom:453.537200pt;}
.y130{bottom:454.357067pt;}
.y192{bottom:455.116533pt;}
.y1da{bottom:456.511333pt;}
.y293{bottom:456.588533pt;}
.y331{bottom:457.064667pt;}
.y201{bottom:457.455200pt;}
.y248{bottom:458.282000pt;}
.yea{bottom:458.921200pt;}
.y36{bottom:460.553200pt;}
.y14e{bottom:461.159333pt;}
.y223{bottom:463.044667pt;}
.y5a{bottom:465.429067pt;}
.ya3{bottom:465.830933pt;}
.y16c{bottom:466.042000pt;}
.y1b7{bottom:467.073333pt;}
.y26f{bottom:467.280400pt;}
.y308{bottom:467.859467pt;}
.y2b4{bottom:468.127867pt;}
.yc5{bottom:470.713867pt;}
.y10a{bottom:470.925200pt;}
.y2d5{bottom:471.151867pt;}
.y12f{bottom:472.680400pt;}
.y7f{bottom:472.918533pt;}
.y191{bottom:473.393867pt;}
.y330{bottom:474.398000pt;}
.y1d9{bottom:474.620000pt;}
.y292{bottom:474.789200pt;}
.y200{bottom:475.609867pt;}
.ye9{bottom:476.999200pt;}
.y35{bottom:479.198000pt;}
.y222{bottom:481.475333pt;}
.yd{bottom:483.018267pt;}
.y247{bottom:483.621200pt;}
.y59{bottom:484.151067pt;}
.y16b{bottom:484.610667pt;}
.ya2{bottom:485.365600pt;}
.y307{bottom:485.646133pt;}
.y1b6{bottom:485.702667pt;}
.y26e{bottom:485.895067pt;}
.yc4{bottom:488.853200pt;}
.y109{bottom:489.340533pt;}
.y2d4{bottom:489.547867pt;}
.y12e{bottom:491.003733pt;}
.y32f{bottom:491.731333pt;}
.y7e{bottom:492.299867pt;}
.y1d8{bottom:492.728667pt;}
.y291{bottom:492.989867pt;}
.y1ff{bottom:493.764533pt;}
.y2b3{bottom:495.007867pt;}
.ye8{bottom:495.077200pt;}
.y34{bottom:496.598000pt;}
.y2eb{bottom:497.107867pt;}
.y221{bottom:499.906000pt;}
.y14d{bottom:500.948667pt;}
.y58{bottom:502.873067pt;}
.y16a{bottom:503.179333pt;}
.y306{bottom:503.432800pt;}
.y1b5{bottom:504.331867pt;}
.y26d{bottom:504.509733pt;}
.ya1{bottom:504.900267pt;}
.yc3{bottom:506.992533pt;}
.yc{bottom:507.602267pt;}
.y108{bottom:507.755867pt;}
.y32e{bottom:509.064667pt;}
.y12d{bottom:509.327067pt;}
.y190{bottom:509.963867pt;}
.y290{bottom:511.190533pt;}
.y7d{bottom:511.681200pt;}
.y1fe{bottom:511.919200pt;}
.ye7{bottom:513.155200pt;}
.y33{bottom:513.998000pt;}
.y2b2{bottom:514.327867pt;}
.y2d3{bottom:515.503867pt;}
.y246{bottom:517.136400pt;}
.y220{bottom:518.336667pt;}
.y305{bottom:521.219467pt;}
.y57{bottom:521.595067pt;}
.y169{bottom:521.748000pt;}
.y14c{bottom:522.476667pt;}
.y1b4{bottom:522.951200pt;}
.y26c{bottom:523.124400pt;}
.ya0{bottom:524.434933pt;}
.yc2{bottom:525.131867pt;}
.y107{bottom:526.171200pt;}
.y32d{bottom:526.398000pt;}
.y12c{bottom:527.643733pt;}
.y18f{bottom:528.241200pt;}
.y28f{bottom:529.391200pt;}
.y1d7{bottom:529.728133pt;}
.y1fd{bottom:530.073867pt;}
.y7c{bottom:531.062533pt;}
.ye6{bottom:531.233200pt;}
.y32{bottom:531.398000pt;}
.y2b1{bottom:533.647867pt;}
.y2d2{bottom:533.899867pt;}
.y245{bottom:536.149733pt;}
.y21f{bottom:536.767333pt;}
.y168{bottom:540.316667pt;}
.y56{bottom:540.317067pt;}
.y1b3{bottom:541.581200pt;}
.y26b{bottom:541.739067pt;}
.yc1{bottom:543.271200pt;}
.y32c{bottom:543.731333pt;}
.y9f{bottom:543.969600pt;}
.y14b{bottom:544.004667pt;}
.y106{bottom:544.586533pt;}
.y12b{bottom:545.889867pt;}
.y18e{bottom:546.518533pt;}
.y28e{bottom:547.591867pt;}
.y1fc{bottom:548.228533pt;}
.y31{bottom:548.798000pt;}
.ye5{bottom:549.311200pt;}
.y304{bottom:550.339467pt;}
.y7b{bottom:550.443867pt;}
.yb{bottom:551.099867pt;}
.y2d1{bottom:552.295867pt;}
.y244{bottom:555.163067pt;}
.y21e{bottom:555.198000pt;}
.y167{bottom:558.885333pt;}
.y55{bottom:559.039067pt;}
.y1b2{bottom:560.211200pt;}
.y26a{bottom:560.410533pt;}
.y2b0{bottom:560.527867pt;}
.y32b{bottom:561.064667pt;}
.yc0{bottom:561.410533pt;}
.y105{bottom:563.001867pt;}
.y9e{bottom:563.504267pt;}
.y12a{bottom:564.213200pt;}
.y18d{bottom:564.795867pt;}
.y14a{bottom:565.532667pt;}
.y28d{bottom:565.792533pt;}
.y30{bottom:566.198000pt;}
.y1fb{bottom:566.383200pt;}
.ye4{bottom:567.389200pt;}
.y7a{bottom:569.825200pt;}
.y2d0{bottom:570.691867pt;}
.y21d{bottom:573.628667pt;}
.y243{bottom:574.176400pt;}
.y166{bottom:577.454000pt;}
.y54{bottom:577.761067pt;}
.y32a{bottom:578.398000pt;}
.y1b1{bottom:578.841200pt;}
.y269{bottom:579.025200pt;}
.ybf{bottom:579.549867pt;}
.ya{bottom:579.683867pt;}
.y2af{bottom:579.847867pt;}
.y104{bottom:581.417200pt;}
.y129{bottom:582.536533pt;}
.y9d{bottom:583.038933pt;}
.y18c{bottom:583.073200pt;}
.y2f{bottom:583.598000pt;}
.y28c{bottom:583.993200pt;}
.y1fa{bottom:584.537867pt;}
.y1d6{bottom:585.097200pt;}
.ye3{bottom:585.467200pt;}
.y149{bottom:587.066667pt;}
.y79{bottom:589.206533pt;}
.y21c{bottom:592.059333pt;}
.y242{bottom:593.189733pt;}
.y329{bottom:595.731333pt;}
.y165{bottom:596.022667pt;}
.y53{bottom:596.480933pt;}
.y2cf{bottom:596.647867pt;}
.y1b0{bottom:597.471200pt;}
.y268{bottom:597.639867pt;}
.y2ae{bottom:599.167867pt;}
.y103{bottom:599.832533pt;}
.y128{bottom:600.859867pt;}
.y2e{bottom:600.998000pt;}
.y18b{bottom:601.350533pt;}
.y303{bottom:602.129600pt;}
.y28b{bottom:602.193867pt;}
.y9c{bottom:602.573600pt;}
.y1f9{bottom:602.692533pt;}
.y1d5{bottom:603.205867pt;}
.ye2{bottom:603.545200pt;}
.y9{bottom:608.267867pt;}
.y78{bottom:608.587867pt;}
.y148{bottom:608.600800pt;}
.y241{bottom:612.203067pt;}
.y328{bottom:613.064667pt;}
.y164{bottom:614.591333pt;}
.y2ce{bottom:615.043867pt;}
.y52{bottom:615.200800pt;}
.y1af{bottom:616.101200pt;}
.y267{bottom:616.254533pt;}
.ybe{bottom:616.589333pt;}
.y102{bottom:618.247867pt;}
.y2d{bottom:618.398000pt;}
.y127{bottom:619.183200pt;}
.y18a{bottom:619.627867pt;}
.y28a{bottom:620.394533pt;}
.y1f8{bottom:620.847200pt;}
.y1d4{bottom:621.314533pt;}
.ye1{bottom:621.623200pt;}
.y9b{bottom:622.108267pt;}
.y2ad{bottom:626.047867pt;}
.y302{bottom:626.582933pt;}
.y77{bottom:627.969200pt;}
.y21b{bottom:629.385333pt;}
.y147{bottom:630.134800pt;}
.y327{bottom:630.398000pt;}
.y240{bottom:631.281200pt;}
.y2cd{bottom:633.439867pt;}
.y51{bottom:633.920533pt;}
.y1ae{bottom:634.731200pt;}
.y266{bottom:634.869200pt;}
.y2c{bottom:635.798000pt;}
.y101{bottom:636.663200pt;}
.y8{bottom:636.851867pt;}
.y126{bottom:637.506533pt;}
.y189{bottom:637.905200pt;}
.ybd{bottom:638.063333pt;}
.y289{bottom:638.595200pt;}
.y1f7{bottom:639.001867pt;}
.y1d3{bottom:639.423200pt;}
.ye0{bottom:639.701200pt;}
.y2ea{bottom:640.999867pt;}
.y9a{bottom:641.642933pt;}
.y2ac{bottom:645.367867pt;}
.y76{bottom:647.350533pt;}
.y326{bottom:647.731333pt;}
.y23f{bottom:650.294533pt;}
.y21a{bottom:651.147333pt;}
.y146{bottom:651.705200pt;}
.y163{bottom:651.744000pt;}
.y50{bottom:652.631733pt;}
.y2b{bottom:653.198000pt;}
.y1ad{bottom:653.361200pt;}
.y265{bottom:653.483867pt;}
.y100{bottom:655.078533pt;}
.y188{bottom:656.182533pt;}
.y288{bottom:656.795867pt;}
.y1f6{bottom:657.156533pt;}
.y1d2{bottom:657.531867pt;}
.ydf{bottom:657.779200pt;}
.y2cc{bottom:659.395867pt;}
.y99{bottom:661.177600pt;}
.y325{bottom:665.064667pt;}
.y75{bottom:666.731867pt;}
.y23e{bottom:669.307867pt;}
.y162{bottom:670.312667pt;}
.y2a{bottom:670.598000pt;}
.y4f{bottom:671.353733pt;}
.y1ac{bottom:671.991200pt;}
.y264{bottom:672.098533pt;}
.y2ab{bottom:672.247867pt;}
.y219{bottom:672.909333pt;}
.y145{bottom:673.233200pt;}
.yff{bottom:673.493867pt;}
.y125{bottom:674.137867pt;}
.y187{bottom:674.459867pt;}
.y287{bottom:674.996533pt;}
.y1f5{bottom:675.311200pt;}
.y1d1{bottom:675.640533pt;}
.yde{bottom:675.857200pt;}
.y2e9{bottom:677.791867pt;}
.y98{bottom:680.712267pt;}
.y324{bottom:682.398000pt;}
.y2cb{bottom:685.351867pt;}
.y74{bottom:686.113200pt;}
.y29{bottom:687.998000pt;}
.y23d{bottom:688.321200pt;}
.y161{bottom:688.881333pt;}
.y4e{bottom:690.075733pt;}
.y1ab{bottom:690.621200pt;}
.y263{bottom:690.713200pt;}
.y2aa{bottom:691.567867pt;}
.y7{bottom:691.900000pt;}
.yfe{bottom:691.909200pt;}
.y124{bottom:692.461200pt;}
.y186{bottom:692.737200pt;}
.y286{bottom:693.197200pt;}
.y1f4{bottom:693.473200pt;}
.ybc{bottom:693.561333pt;}
.y1d0{bottom:693.749200pt;}
.ydd{bottom:693.935200pt;}
.y144{bottom:694.761200pt;}
.y2e8{bottom:696.187867pt;}
.y323{bottom:699.731333pt;}
.y97{bottom:700.246933pt;}
.y2ca{bottom:703.747867pt;}
.y28{bottom:705.398000pt;}
.y73{bottom:705.494533pt;}
.y23c{bottom:707.334533pt;}
.y160{bottom:707.450000pt;}
.y4d{bottom:708.797733pt;}
.y1aa{bottom:709.251200pt;}
.y262{bottom:709.327867pt;}
.yfd{bottom:710.324533pt;}
.y123{bottom:710.784533pt;}
.y2a9{bottom:710.887867pt;}
.y185{bottom:711.014533pt;}
.y285{bottom:711.397867pt;}
.y1f3{bottom:711.627867pt;}
.ybb{bottom:711.700667pt;}
.y1cf{bottom:711.857867pt;}
.ydc{bottom:712.013200pt;}
.y143{bottom:716.289200pt;}
.y322{bottom:717.064667pt;}
.y6{bottom:718.713333pt;}
.y96{bottom:719.781600pt;}
.y301{bottom:721.919867pt;}
.y2c9{bottom:722.143867pt;}
.y27{bottom:722.798000pt;}
.y72{bottom:724.875867pt;}
.y15f{bottom:726.018667pt;}
.y23b{bottom:726.347867pt;}
.y4c{bottom:727.519733pt;}
.y1a9{bottom:727.881200pt;}
.y261{bottom:727.942533pt;}
.y218{bottom:728.678533pt;}
.yfc{bottom:728.739867pt;}
.y122{bottom:729.107867pt;}
.y184{bottom:729.291867pt;}
.y284{bottom:729.598533pt;}
.y1f2{bottom:729.782533pt;}
.yba{bottom:729.840000pt;}
.y1ce{bottom:729.966533pt;}
.ydb{bottom:730.089200pt;}
.y321{bottom:734.398000pt;}
.y2a8{bottom:737.767867pt;}
.y142{bottom:737.817200pt;}
.y5{bottom:737.966667pt;}
.y95{bottom:739.316267pt;}
.y26{bottom:740.198000pt;}
.y300{bottom:740.371867pt;}
.y2c8{bottom:740.539867pt;}
.y71{bottom:744.257200pt;}
.y15e{bottom:744.587333pt;}
.y23a{bottom:745.361200pt;}
.y4b{bottom:746.235200pt;}
.y1a8{bottom:746.511200pt;}
.y260{bottom:746.557200pt;}
.y217{bottom:747.109200pt;}
.yfb{bottom:747.155200pt;}
.y121{bottom:747.431200pt;}
.y183{bottom:747.569200pt;}
.y283{bottom:747.799200pt;}
.y1f1{bottom:747.937200pt;}
.yb9{bottom:747.979333pt;}
.y1cd{bottom:748.075200pt;}
.yda{bottom:748.167200pt;}
.y320{bottom:751.731333pt;}
.y2a7{bottom:757.087867pt;}
.y25{bottom:757.598000pt;}
.y2ff{bottom:758.823867pt;}
.y141{bottom:759.345200pt;}
.y15d{bottom:763.156000pt;}
.y70{bottom:763.638533pt;}
.y239{bottom:764.374533pt;}
.y4{bottom:764.780000pt;}
.y4a{bottom:764.957200pt;}
.y25f{bottom:765.171867pt;}
.y216{bottom:765.539867pt;}
.yfa{bottom:765.570533pt;}
.y120{bottom:765.754533pt;}
.y182{bottom:765.846533pt;}
.y282{bottom:765.999867pt;}
.y1f0{bottom:766.091867pt;}
.yb8{bottom:766.122533pt;}
.y1cc{bottom:766.183867pt;}
.yd9{bottom:766.245200pt;}
.y2c7{bottom:766.495867pt;}
.y31f{bottom:769.064667pt;}
.y24{bottom:774.998000pt;}
.y94{bottom:777.749733pt;}
.y140{bottom:780.873200pt;}
.y6f{bottom:783.019867pt;}
.y238{bottom:783.387867pt;}
.y49{bottom:783.679200pt;}
.y1a7{bottom:783.771200pt;}
.y25e{bottom:783.786533pt;}
.y2a6{bottom:783.967867pt;}
.y215{bottom:783.970533pt;}
.yf9{bottom:783.985867pt;}
.y3{bottom:784.033333pt;}
.y11f{bottom:784.077867pt;}
.y181{bottom:784.123867pt;}
.y281{bottom:784.200533pt;}
.y1ef{bottom:784.246533pt;}
.yb7{bottom:784.261867pt;}
.y1cb{bottom:784.292533pt;}
.yd8{bottom:784.323200pt;}
.y2fe{bottom:784.835867pt;}
.y2c6{bottom:784.891867pt;}
.y31e{bottom:786.398000pt;}
.y93{bottom:800.627733pt;}
.y48{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:803.731333pt;}
.y22{bottom:842.834667pt;}
.y21{bottom:858.834667pt;}
.hb{height:31.419646pt;}
.h15{height:34.302458pt;}
.hd{height:37.395833pt;}
.hc{height:42.070312pt;}
.h12{height:44.953125pt;}
.h4{height:46.744792pt;}
.h17{height:47.057292pt;}
.h3{height:49.082031pt;}
.h7{height:49.947917pt;}
.h1f{height:52.445312pt;}
.h9{height:53.756510pt;}
.h14{height:53.764510pt;}
.he{height:53.782644pt;}
.h13{height:54.115885pt;}
.h19{height:57.411837pt;}
.ha{height:57.440104pt;}
.h1c{height:57.442771pt;}
.h1b{height:57.443304pt;}
.h11{height:57.448637pt;}
.h10{height:57.449171pt;}
.h1a{height:57.482771pt;}
.hf{height:57.483304pt;}
.h1e{height:57.583571pt;}
.h16{height:57.748904pt;}
.h2{height:58.430990pt;}
.h8{height:63.105469pt;}
.h6{height:65.442708pt;}
.h1d{height:67.429688pt;}
.h18{height:79.057292pt;}
.h5{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.936933pt;}
.x6{left:73.286933pt;}
.x1{left:74.388133pt;}
.x4{left:75.907200pt;}
.x14{left:80.381733pt;}
.x16{left:82.513067pt;}
.xf{left:85.315067pt;}
.xe{left:89.888400pt;}
.x9{left:91.056133pt;}
.xa{left:92.169600pt;}
.x5{left:93.360533pt;}
.x3{left:94.547200pt;}
.x17{left:101.499733pt;}
.x1a{left:102.486400pt;}
.xc{left:107.669333pt;}
.xd{left:109.792267pt;}
.x18{left:142.993067pt;}
.x15{left:178.753467pt;}
.xb{left:179.960533pt;}
.x11{left:183.688400pt;}
.x8{left:189.034533pt;}
.x10{left:190.835067pt;}
.x2{left:207.418000pt;}
.x12{left:285.088400pt;}
.x13{left:313.475067pt;}
.x19{left:393.086400pt;}
}




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