
    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_7fa80547ee765b49b341e136.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_bfa927335454f48d75619c7d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0fc119566bc64ec69f70d06c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_404f2811899f8d59fa3dbc2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.735840;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_e6d4ca4bea9ca4985e258bb0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734375;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.768069px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:14.994141px;}
.ls2{letter-spacing:16.663445px;}
.lsc{letter-spacing:17.985914px;}
.lsf{letter-spacing:18.000000px;}
.ls8{letter-spacing:18.000020px;}
.lse{letter-spacing:22.500000px;}
.ls4{letter-spacing:26.985959px;}
.ls6{letter-spacing:31.485937px;}
.ls7{letter-spacing:31.485959px;}
.ls1{letter-spacing:35.985959px;}
.ls5{letter-spacing:40.499958px;}
.lsb{letter-spacing:40.500000px;}
.ls9{letter-spacing:44.985937px;}
.ls12{letter-spacing:58.500000px;}
.lsd{letter-spacing:63.000000px;}
.ls3{letter-spacing:64.511718px;}
.ls13{letter-spacing:81.000000px;}
.ls14{letter-spacing:252.000000px;}
.ls10{letter-spacing:535.500023px;}
.ls11{letter-spacing:630.000009px;}
.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;}
}
.ws21{word-spacing:-18.000000px;}
.ws2c{word-spacing:-16.500000px;}
.ws4b{word-spacing:-13.500000px;}
.ws4c{word-spacing:-0.054000px;}
.ws27{word-spacing:-0.000035px;}
.ws5a{word-spacing:-0.000023px;}
.ws76{word-spacing:-0.000022px;}
.wsac{word-spacing:-0.000017px;}
.wsa{word-spacing:-0.000013px;}
.ws1a{word-spacing:-0.000012px;}
.ws9e{word-spacing:-0.000004px;}
.ws46{word-spacing:-0.000002px;}
.ws0{word-spacing:0.000000px;}
.ws7b{word-spacing:0.000002px;}
.ws10{word-spacing:0.000011px;}
.ws54{word-spacing:0.000022px;}
.ws4a{word-spacing:0.000033px;}
.ws17{word-spacing:4.499966px;}
.ws4f{word-spacing:4.499977px;}
.wsa8{word-spacing:4.499979px;}
.ws62{word-spacing:4.499986px;}
.ws65{word-spacing:4.499987px;}
.ws3{word-spacing:4.499988px;}
.ws47{word-spacing:4.499998px;}
.ws5{word-spacing:4.499999px;}
.ws70{word-spacing:4.500001px;}
.ws55{word-spacing:4.500002px;}
.ws4{word-spacing:4.500010px;}
.ws26{word-spacing:4.500011px;}
.ws57{word-spacing:4.500022px;}
.ws30{word-spacing:4.500033px;}
.ws75{word-spacing:4.500034px;}
.ws28{word-spacing:8.999966px;}
.wsf{word-spacing:8.999977px;}
.ws6f{word-spacing:8.999978px;}
.ws1c{word-spacing:8.999988px;}
.ws24{word-spacing:8.999989px;}
.wsa7{word-spacing:8.999991px;}
.ws4d{word-spacing:8.999997px;}
.wsaa{word-spacing:8.999998px;}
.ws6{word-spacing:8.999999px;}
.ws48{word-spacing:9.000000px;}
.ws50{word-spacing:9.000002px;}
.ws1e{word-spacing:9.000010px;}
.ws64{word-spacing:9.000012px;}
.ws39{word-spacing:9.000022px;}
.ws51{word-spacing:9.000034px;}
.ws43{word-spacing:13.499966px;}
.ws11{word-spacing:13.499977px;}
.wsad{word-spacing:13.499983px;}
.ws79{word-spacing:13.499987px;}
.wsb{word-spacing:13.499988px;}
.ws3b{word-spacing:13.499997px;}
.ws8{word-spacing:13.500000px;}
.ws2b{word-spacing:13.500002px;}
.wsc{word-spacing:13.500011px;}
.ws44{word-spacing:13.500022px;}
.ws7a{word-spacing:13.500023px;}
.ws67{word-spacing:13.500033px;}
.ws18{word-spacing:17.999966px;}
.ws2{word-spacing:17.999977px;}
.ws25{word-spacing:17.999987px;}
.ws1{word-spacing:17.999988px;}
.ws2e{word-spacing:17.999997px;}
.ws37{word-spacing:17.999999px;}
.ws19{word-spacing:18.000000px;}
.ws1f{word-spacing:18.000011px;}
.ws35{word-spacing:18.000022px;}
.ws60{word-spacing:18.000033px;}
.ws13{word-spacing:22.499966px;}
.ws40{word-spacing:22.499977px;}
.wsa9{word-spacing:22.499983px;}
.ws95{word-spacing:22.499987px;}
.ws1d{word-spacing:22.499988px;}
.ws59{word-spacing:22.499998px;}
.ws2a{word-spacing:22.499999px;}
.ws14{word-spacing:22.500000px;}
.ws2d{word-spacing:22.500002px;}
.ws9{word-spacing:22.500011px;}
.ws32{word-spacing:22.500022px;}
.ws31{word-spacing:22.500033px;}
.wsd{word-spacing:26.999966px;}
.ws3f{word-spacing:26.999977px;}
.ws20{word-spacing:26.999988px;}
.ws6e{word-spacing:26.999990px;}
.ws3d{word-spacing:26.999999px;}
.wse{word-spacing:27.000000px;}
.wsa4{word-spacing:27.000001px;}
.ws16{word-spacing:27.000011px;}
.wsaf{word-spacing:27.000022px;}
.ws3a{word-spacing:31.499966px;}
.ws1b{word-spacing:31.499977px;}
.ws38{word-spacing:31.499988px;}
.wsa2{word-spacing:31.499998px;}
.ws12{word-spacing:31.499999px;}
.ws5d{word-spacing:31.500002px;}
.ws2f{word-spacing:31.500011px;}
.ws66{word-spacing:35.999966px;}
.ws5e{word-spacing:35.999977px;}
.ws4e{word-spacing:35.999988px;}
.wsab{word-spacing:35.999991px;}
.ws3e{word-spacing:36.000000px;}
.ws23{word-spacing:36.000010px;}
.ws6d{word-spacing:36.000022px;}
.ws42{word-spacing:36.000023px;}
.ws6c{word-spacing:40.499966px;}
.ws33{word-spacing:40.499977px;}
.ws45{word-spacing:40.499988px;}
.ws6b{word-spacing:40.499997px;}
.ws22{word-spacing:40.499999px;}
.ws5b{word-spacing:40.500011px;}
.ws5f{word-spacing:40.500022px;}
.ws15{word-spacing:44.999977px;}
.ws72{word-spacing:44.999988px;}
.ws6a{word-spacing:44.999997px;}
.ws7{word-spacing:45.000000px;}
.ws58{word-spacing:45.000011px;}
.ws77{word-spacing:49.499966px;}
.ws34{word-spacing:49.499988px;}
.ws41{word-spacing:49.499999px;}
.ws69{word-spacing:49.500011px;}
.ws52{word-spacing:53.999977px;}
.ws49{word-spacing:53.999989px;}
.wsae{word-spacing:53.999999px;}
.ws29{word-spacing:54.000000px;}
.ws56{word-spacing:54.000011px;}
.ws68{word-spacing:54.000022px;}
.ws82{word-spacing:54.000023px;}
.ws81{word-spacing:58.499987px;}
.ws36{word-spacing:58.499999px;}
.ws53{word-spacing:58.500010px;}
.ws73{word-spacing:62.999966px;}
.ws74{word-spacing:62.999977px;}
.ws91{word-spacing:62.999988px;}
.ws92{word-spacing:63.000000px;}
.ws71{word-spacing:63.000011px;}
.ws90{word-spacing:63.000020px;}
.ws9c{word-spacing:67.499988px;}
.ws61{word-spacing:67.500000px;}
.ws5c{word-spacing:72.000022px;}
.ws3c{word-spacing:76.499977px;}
.ws63{word-spacing:76.500000px;}
.wsb0{word-spacing:76.500023px;}
.ws86{word-spacing:99.000000px;}
.wsa1{word-spacing:103.499999px;}
.wsa0{word-spacing:103.500001px;}
.wsa3{word-spacing:112.500001px;}
.ws9f{word-spacing:116.999982px;}
.wsa6{word-spacing:117.000000px;}
.ws9a{word-spacing:189.000000px;}
.ws99{word-spacing:193.499966px;}
.ws98{word-spacing:193.499999px;}
.ws84{word-spacing:202.499988px;}
.ws83{word-spacing:202.500000px;}
.ws8d{word-spacing:211.499988px;}
.ws8c{word-spacing:211.500002px;}
.ws8e{word-spacing:211.500023px;}
.ws94{word-spacing:233.999978px;}
.ws9b{word-spacing:233.999988px;}
.ws93{word-spacing:234.000022px;}
.ws8b{word-spacing:278.999988px;}
.wsa5{word-spacing:368.999999px;}
.ws87{word-spacing:432.000033px;}
.ws7c{word-spacing:512.999978px;}
.ws89{word-spacing:517.499978px;}
.ws88{word-spacing:517.500002px;}
.ws7e{word-spacing:607.499978px;}
.ws97{word-spacing:886.500000px;}
.ws96{word-spacing:890.999987px;}
.ws80{word-spacing:994.499987px;}
.ws8a{word-spacing:1971.000011px;}
.ws78{word-spacing:2092.500022px;}
.ws7d{word-spacing:2142.000000px;}
.ws8f{word-spacing:2173.499988px;}
.ws7f{word-spacing:2209.500023px;}
.ws9d{word-spacing:2362.500000px;}
.ws85{word-spacing:2380.499988px;}
._4c{margin-left:-9.914052px;}
._1{margin-left:-8.648446px;}
._3d{margin-left:-7.206947px;}
._0{margin-left:-5.958984px;}
._2{margin-left:-3.972654px;}
._3{margin-left:-2.531250px;}
._18{margin-left:-1.300779px;}
._3f{width:8.085939px;}
._3e{width:14.651369px;}
._30{width:17.999989px;}
._33{width:22.499999px;}
._46{width:25.945307px;}
._2e{width:27.000001px;}
._31{width:31.499999px;}
._34{width:35.999999px;}
._2d{width:40.500000px;}
._2f{width:45.000017px;}
._b{width:49.243486px;}
._35{width:50.269528px;}
._36{width:54.000000px;}
._37{width:58.500011px;}
._3a{width:63.000000px;}
._32{width:67.500001px;}
._3c{width:72.000021px;}
._39{width:76.500002px;}
._3b{width:80.999999px;}
._42{width:84.023438px;}
._44{width:85.500000px;}
._41{width:90.000002px;}
._40{width:94.499999px;}
._38{width:99.256515px;}
._43{width:108.000000px;}
._47{width:121.500002px;}
._4d{width:130.499999px;}
._4a{width:134.613277px;}
._4f{width:148.500019px;}
._4e{width:153.615222px;}
._4b{width:256.359374px;}
._49{width:301.499999px;}
._1c{width:440.145830px;}
._48{width:454.499999px;}
._29{width:458.567704px;}
._20{width:558.516922px;}
._45{width:630.000002px;}
._28{width:634.384111px;}
._2b{width:849.013027px;}
._f{width:1138.138018px;}
._2a{width:1160.040363px;}
._21{width:1184.016925px;}
._9{width:1187.989581px;}
._1b{width:1250.005206px;}
._14{width:1251.973956px;}
._11{width:1254.083331px;}
._1d{width:1267.970050px;}
._19{width:1363.243485px;}
._c{width:1411.934894px;}
._1e{width:1436.016925px;}
._e{width:1463.895831px;}
._13{width:1483.864581px;}
._10{width:1513.958331px;}
._8{width:1515.962237px;}
._16{width:1525.841144px;}
._17{width:1607.825518px;}
._15{width:1621.782550px;}
._1f{width:1759.770832px;}
._12{width:1785.962237px;}
._2c{width:1829.063807px;}
._d{width:1837.958331px;}
._23{width:1863.868489px;}
._5{width:1879.899737px;}
._a{width:1928.345051px;}
._1a{width:2067.774738px;}
._6{width:2153.802082px;}
._7{width:2183.684895px;}
._22{width:2195.708332px;}
._26{width:2215.747395px;}
._27{width:2239.759113px;}
._25{width:2255.720051px;}
._24{width:2327.684892px;}
._4{width:2391.809895px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(77,81,86);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.999999px;}
.fs7{font-size:63.000000px;}
.fs2{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2ce{bottom:10.792968px;}
.y210{bottom:14.871094px;}
.y213{bottom:14.871099px;}
.y218{bottom:14.876954px;}
.y2e8{bottom:18.550781px;}
.y2e6{bottom:18.556634px;}
.y2f3{bottom:18.556637px;}
.y2f8{bottom:18.562488px;}
.y2ff{bottom:18.562499px;}
.y2dd{bottom:18.562502px;}
.y2da{bottom:18.562503px;}
.y2fc{bottom:18.568361px;}
.y2d5{bottom:18.568365px;}
.y2e2{bottom:34.083974px;}
.y212{bottom:38.677734px;}
.y2f2{bottom:41.835947px;}
.y2dc{bottom:41.841797px;}
.y2d9{bottom:41.841798px;}
.y2f7{bottom:41.847648px;}
.y2fb{bottom:41.847656px;}
.y2e5{bottom:41.847659px;}
.y2d4{bottom:41.847660px;}
.y2e1{bottom:57.369134px;}
.y2f6{bottom:65.126943px;}
.y2e4{bottom:65.126954px;}
.y2d3{bottom:65.126955px;}
.y2f1{bottom:65.126957px;}
.y2fe{bottom:65.132811px;}
.y2d8{bottom:65.138673px;}
.y2e0{bottom:80.660159px;}
.yfc{bottom:81.858403px;}
.yd{bottom:81.859498px;}
.y54{bottom:81.859858px;}
.y1c5{bottom:81.861328px;}
.y2f0{bottom:88.412117px;}
.y2d7{bottom:88.417968px;}
.y2d2{bottom:88.423830px;}
.y166{bottom:103.675783px;}
.y37{bottom:103.678708px;}
.yc{bottom:103.678888px;}
.y8e{bottom:103.679443px;}
.y27b{bottom:103.681633px;}
.y2df{bottom:103.939454px;}
.y2ef{bottom:111.697262px;}
.y2d1{bottom:111.703125px;}
.ycd{bottom:127.727048px;}
.y1e1{bottom:128.557245px;}
.y8d{bottom:130.727048px;}
.y2ee{bottom:134.982422px;}
.y1f2{bottom:138.679688px;}
.y156{bottom:139.792974px;}
.y2fa{bottom:143.156248px;}
.y120{bottom:144.679688px;}
.y53{bottom:144.687738px;}
.y25c{bottom:145.541017px;}
.y297{bottom:145.927733px;}
.y307{bottom:147.878902px;}
.y2c7{bottom:149.859367px;}
.y1fe{bottom:150.376103px;}
.y10f{bottom:151.725592px;}
.y1d8{bottom:151.728517px;}
.y21c{bottom:151.833983px;}
.y1b1{bottom:151.921867px;}
.y13c{bottom:152.124024px;}
.y248{bottom:152.958983px;}
.y31{bottom:154.349122px;}
.y155{bottom:155.317389px;}
.ye4{bottom:156.902347px;}
.ycc{bottom:158.774408px;}
.y27a{bottom:158.824223px;}
.y233{bottom:158.999992px;}
.y11e{bottom:161.611809px;}
.y8c{bottom:161.774408px;}
.y52{bottom:167.628293px;}
.y13b{bottom:167.648439px;}
.y178{bottom:169.728517px;}
.y2f9{bottom:174.210936px;}
.y18e{bottom:175.447268px;}
.y2b8{bottom:175.722652px;}
.y11f{bottom:175.727048px;}
.y159{bottom:175.728517px;}
.y25b{bottom:176.589847px;}
.y296{bottom:176.970698px;}
.y154{bottom:177.506464px;}
.y306{bottom:178.933598px;}
.y165{bottom:179.774408px;}
.y1f1{bottom:179.777348px;}
.yf0{bottom:180.902347px;}
.yb4{bottom:182.774408px;}
.y1d7{bottom:182.777348px;}
.y21b{bottom:182.882812px;}
.y1b0{bottom:182.973637px;}
.y11d{bottom:183.086063px;}
.y247{bottom:184.007812px;}
.y311{bottom:184.945312px;}
.yfb{bottom:184.948238px;}
.ye3{bottom:187.949707px;}
.y158{bottom:188.774408px;}
.y13a{bottom:189.121223px;}
.ycb{bottom:189.821783px;}
.y279{bottom:189.873052px;}
.y232{bottom:190.042973px;}
.y30{bottom:190.047367px;}
.y1fd{bottom:191.249992px;}
.y8b{bottom:192.821783px;}
.y51{bottom:200.774408px;}
.y177{bottom:200.777348px;}
.y18d{bottom:206.493157px;}
.y2f5{bottom:206.607426px;}
.ya8{bottom:206.774408px;}
.y1cd{bottom:206.777348px;}
.y25a{bottom:207.632812px;}
.y67{bottom:207.821783px;}
.y295{bottom:208.019528px;}
.y12b{bottom:209.361323px;}
.y164{bottom:210.820312px;}
.yef{bottom:211.948238px;}
.y2c6{bottom:211.951178px;}
.y10e{bottom:213.820312px;}
.yb3{bottom:213.821783px;}
.y19a{bottom:213.823238px;}
.y1af{bottom:214.016602px;}
.y1fc{bottom:215.050778px;}
.yfa{bottom:215.997067px;}
.y310{bottom:215.999992px;}
.y2b5{bottom:217.119142px;}
.ye2{bottom:218.997067px;}
.yca{bottom:220.869142px;}
.y278{bottom:220.916017px;}
.y231{bottom:221.091803px;}
.y8a{bottom:223.869142px;}
.y2f{bottom:225.745612px;}
.y2cb{bottom:228.509768px;}
.y139{bottom:231.820312px;}
.y50{bottom:231.821783px;}
.y176{bottom:231.823238px;}
.y9{bottom:232.296383px;}
.y21a{bottom:233.976558px;}
.y149{bottom:237.820312px;}
.ya7{bottom:237.821783px;}
.y2b7{bottom:237.826178px;}
.y259{bottom:238.681642px;}
.y294{bottom:239.062492px;}
.y153{bottom:239.583983px;}
.y12a{bottom:240.410152px;}
.y305{bottom:241.025392px;}
.y163{bottom:241.869142px;}
.yee{bottom:242.997067px;}
.yb2{bottom:244.869142px;}
.y1ae{bottom:245.068358px;}
.y246{bottom:246.099607px;}
.y2b4{bottom:248.167973px;}
.yc9{bottom:251.916503px;}
.y230{bottom:252.140617px;}
.y89{bottom:254.916503px;}
.y2ca{bottom:259.552733px;}
.y2e{bottom:261.443842px;}
.y1fb{bottom:262.658197px;}
.y2be{bottom:262.863278px;}
.y138{bottom:262.869142px;}
.y1c4{bottom:264.146483px;}
.y219{bottom:268.078119px;}
.y18c{bottom:268.587892px;}
.ya6{bottom:268.869142px;}
.y30f{bottom:268.874992px;}
.y66{bottom:269.916503px;}
.y152{bottom:270.632812px;}
.y129{bottom:271.458983px;}
.y277{bottom:272.337883px;}
.y162{bottom:272.917973px;}
.yed{bottom:274.042973px;}
.y10d{bottom:275.915033px;}
.y199{bottom:275.917973px;}
.y245{bottom:277.148438px;}
.yf9{bottom:278.091803px;}
.y2b3{bottom:279.222652px;}
.y8{bottom:279.902347px;}
.ye1{bottom:281.091803px;}
.yc8{bottom:282.963863px;}
.y22f{bottom:283.183598px;}
.y11c{bottom:283.678717px;}
.y2f4{bottom:284.232426px;}
.y88{bottom:285.963863px;}
.y1fa{bottom:286.464848px;}
.y2c9{bottom:290.601563px;}
.y258{bottom:293.537107px;}
.y137{bottom:293.915033px;}
.y4f{bottom:293.916503px;}
.y1e0{bottom:293.917973px;}
.y276{bottom:294.744142px;}
.y2d{bottom:297.142088px;}
.y18b{bottom:299.636723px;}
.y30e{bottom:299.906242px;}
.y2a4{bottom:299.912108px;}
.ya5{bottom:299.916503px;}
.y148{bottom:299.917973px;}
.y65{bottom:300.963863px;}
.y293{bottom:301.160152px;}
.y151{bottom:301.678717px;}
.y128{bottom:302.504887px;}
.y1f0{bottom:303.960938px;}
.y161{bottom:303.963863px;}
.yb1{bottom:306.963863px;}
.y198{bottom:306.966803px;}
.y1ad{bottom:307.163092px;}
.y244{bottom:308.197268px;}
.y217{bottom:308.753904px;}
.y304{bottom:309.117187px;}
.yf8{bottom:309.137692px;}
.y2b2{bottom:310.265617px;}
.yc7{bottom:314.011238px;}
.y11b{bottom:314.726077px;}
.y2ed{bottom:316.628902px;}
.y257{bottom:317.337892px;}
.y275{bottom:318.544928px;}
.y2c{bottom:322.340332px;}
.y4e{bottom:324.963863px;}
.y175{bottom:324.966803px;}
.y7{bottom:327.508298px;}
.y18a{bottom:330.682613px;}
.y1cc{bottom:330.960938px;}
.ya4{bottom:330.963863px;}
.y292{bottom:332.214848px;}
.y150{bottom:332.724607px;}
.y127{bottom:333.550778px;}
.y1f9{bottom:334.066402px;}
.y160{bottom:335.009768px;}
.yec{bottom:336.137692px;}
.y2c5{bottom:336.140617px;}
.y10c{bottom:338.009768px;}
.yb0{bottom:338.011238px;}
.y197{bottom:338.012693px;}
.y1d6{bottom:338.015617px;}
.y2c8{bottom:338.203117px;}
.y1ac{bottom:338.206058px;}
.y243{bottom:339.246098px;}
.yf7{bottom:340.186523px;}
.y256{bottom:341.144528px;}
.y2b1{bottom:341.308598px;}
.y274{bottom:342.345698px;}
.ye0{bottom:343.186523px;}
.y1c3{bottom:344.238278px;}
.yc6{bottom:345.058598px;}
.y22e{bottom:345.281242px;}
.y11a{bottom:345.773438px;}
.y87{bottom:348.058598px;}
.y216{bottom:349.441398px;}
.y6{bottom:351.311272px;}
.y136{bottom:356.009768px;}
.y4d{bottom:356.011238px;}
.y174{bottom:356.012693px;}
.y1df{bottom:356.015617px;}
.y1f8{bottom:357.873052px;}
.y2b{bottom:358.038577px;}
.y147{bottom:362.009768px;}
.ya3{bottom:362.011238px;}
.y2a3{bottom:362.015617px;}
.y64{bottom:363.058598px;}
.y291{bottom:363.257812px;}
.y14f{bottom:363.773438px;}
.y255{bottom:364.945312px;}
.y15f{bottom:366.058598px;}
.y273{bottom:366.152347px;}
.yeb{bottom:367.186523px;}
.yaf{bottom:369.058598px;}
.y1ab{bottom:369.257812px;}
.yf6{bottom:371.232428px;}
.y2b0{bottom:372.363278px;}
.ydf{bottom:374.233883px;}
.y1c2{bottom:375.287107px;}
.y22d{bottom:376.330073px;}
.y86{bottom:379.105957px;}
.y1f7{bottom:381.679688px;}
.y2a{bottom:383.236823px;}
.y4c{bottom:387.058598px;}
.y254{bottom:388.746098px;}
.y272{bottom:389.953117px;}
.y215{bottom:390.117183px;}
.y189{bottom:392.777348px;}
.ya2{bottom:393.058598px;}
.y290{bottom:394.306642px;}
.y15e{bottom:397.107428px;}
.yea{bottom:398.232428px;}
.y2c4{bottom:398.238278px;}
.y5{bottom:398.917238px;}
.y10b{bottom:400.104488px;}
.y1d3{bottom:400.107428px;}
.y1aa{bottom:400.300778px;}
.y242{bottom:401.337892px;}
.yf5{bottom:402.281242px;}
.y2af{bottom:403.412108px;}
.y1f6{bottom:405.480473px;}
.y121{bottom:406.105957px;}
.y1c1{bottom:406.335938px;}
.yc5{bottom:407.153318px;}
.y22c{bottom:407.378902px;}
.y119{bottom:407.868157px;}
.y29{bottom:408.435052px;}
.y303{bottom:408.468753px;}
.y85{bottom:410.153318px;}
.y253{bottom:412.546867px;}
.y271{bottom:413.753903px;}
.y4b{bottom:418.105957px;}
.y173{bottom:418.107428px;}
.y188{bottom:423.826178px;}
.y2a2{bottom:424.101563px;}
.ya1{bottom:424.105957px;}
.y126{bottom:424.107428px;}
.y63{bottom:425.153318px;}
.y28f{bottom:425.349607px;}
.y14e{bottom:425.868157px;}
.y15d{bottom:428.153318px;}
.ye9{bottom:429.281242px;}
.y214{bottom:430.792968px;}
.yae{bottom:431.153318px;}
.y196{bottom:431.156242px;}
.y1a9{bottom:431.352533px;}
.y241{bottom:432.386723px;}
.yf4{bottom:433.327148px;}
.y28{bottom:433.633297px;}
.y2ae{bottom:434.455073px;}
.yde{bottom:436.328618px;}
.y252{bottom:436.353517px;}
.y1c0{bottom:437.378902px;}
.yc4{bottom:438.200677px;}
.y22b{bottom:438.421867px;}
.y118{bottom:438.915533px;}
.y2ec{bottom:440.818356px;}
.y84{bottom:441.200677px;}
.y4a{bottom:449.153318px;}
.y1de{bottom:449.156242px;}
.y1f5{bottom:453.082028px;}
.y187{bottom:454.872067px;}
.ya0{bottom:455.153318px;}
.y1cb{bottom:455.156242px;}
.y28e{bottom:456.398438px;}
.y14d{bottom:456.914062px;}
.y27{bottom:458.831543px;}
.y15c{bottom:459.199223px;}
.ye8{bottom:460.327148px;}
.y2c3{bottom:460.330073px;}
.y270{bottom:461.361323px;}
.y10a{bottom:462.199223px;}
.yad{bottom:462.200677px;}
.y195{bottom:462.202148px;}
.y1a8{bottom:462.395512px;}
.y240{bottom:463.429688px;}
.yf3{bottom:464.375977px;}
.y2ad{bottom:465.498053px;}
.yc3{bottom:469.248053px;}
.y22a{bottom:469.470698px;}
.y117{bottom:469.962892px;}
.y211{bottom:471.468748px;}
.y83{bottom:472.248053px;}
.y1f4{bottom:476.888678px;}
.y135{bottom:480.199222px;}
.y172{bottom:480.202148px;}
.y251{bottom:483.960938px;}
.y26{bottom:484.029787px;}
.y26f{bottom:485.167973px;}
.y186{bottom:485.917973px;}
.y146{bottom:486.199222px;}
.y9f{bottom:486.200677px;}
.y2a1{bottom:486.205072px;}
.y30d{bottom:486.210938px;}
.y62{bottom:487.248052px;}
.y28d{bottom:487.441402px;}
.y14c{bottom:487.962893px;}
.y1ef{bottom:490.248052px;}
.y2c2{bottom:491.373052px;}
.ye7{bottom:491.375977px;}
.yac{bottom:493.248052px;}
.y1a7{bottom:493.447268px;}
.y23f{bottom:494.478517px;}
.y20f{bottom:495.275388px;}
.yf2{bottom:495.421867px;}
.y2ac{bottom:496.546867px;}
.ydd{bottom:498.423338px;}
.yc2{bottom:500.295412px;}
.y229{bottom:500.519527px;}
.y1f3{bottom:500.689448px;}
.y116{bottom:501.010252px;}
.y82{bottom:503.295412px;}
.y1bf{bottom:505.476562px;}
.y250{bottom:507.761723px;}
.y26e{bottom:508.968742px;}
.y25{bottom:509.228033px;}
.y2bd{bottom:511.242188px;}
.y49{bottom:511.248052px;}
.y185{bottom:516.966802px;}
.y30c{bottom:517.242188px;}
.y9e{bottom:517.248052px;}
.y28c{bottom:518.496098px;}
.y14b{bottom:519.011723px;}
.y1ee{bottom:521.296867px;}
.ye6{bottom:522.421867px;}
.y109{bottom:524.293942px;}
.yab{bottom:524.295412px;}
.y194{bottom:524.296867px;}
.y1a6{bottom:524.490233px;}
.y23e{bottom:525.527348px;}
.y15b{bottom:527.296867px;}
.y2ab{bottom:527.601562px;}
.ydc{bottom:529.470698px;}
.yc1{bottom:531.342773px;}
.y228{bottom:531.562492px;}
.y115{bottom:532.057613px;}
.y26d{bottom:532.769527px;}
.y81{bottom:534.342773px;}
.y24{bottom:534.426263px;}
.y134{bottom:542.293942px;}
.y48{bottom:542.295412px;}
.y171{bottom:542.296867px;}
.yb{bottom:543.120848px;}
.y184{bottom:548.015618px;}
.y2b6{bottom:548.291018px;}
.y9d{bottom:548.295412px;}
.y125{bottom:548.296867px;}
.y61{bottom:549.342773px;}
.y28b{bottom:549.539063px;}
.y1ed{bottom:552.339848px;}
.y2c1{bottom:553.464848px;}
.y108{bottom:555.342773px;}
.y193{bottom:555.345698px;}
.y1a5{bottom:555.541988px;}
.y23d{bottom:556.576178px;}
.y2eb{bottom:557.624992px;}
.y2aa{bottom:558.644527px;}
.y23{bottom:559.624508px;}
.y24f{bottom:561.445308px;}
.y227{bottom:562.611322px;}
.yf1{bottom:563.516602px;}
.y80{bottom:565.390133px;}
.ya{bottom:566.923822px;}
.y2bc{bottom:573.339848px;}
.y47{bottom:573.342773px;}
.y1dd{bottom:573.345698px;}
.y183{bottom:579.061522px;}
.y1ca{bottom:579.339848px;}
.y9c{bottom:579.342773px;}
.y26c{bottom:580.382812px;}
.y60{bottom:580.390133px;}
.y20e{bottom:581.238277px;}
.ye5{bottom:582.143553px;}
.y24e{bottom:582.445312px;}
.y1ec{bottom:583.388678px;}
.y22{bottom:584.822752px;}
.y107{bottom:586.388678px;}
.y192{bottom:586.391602px;}
.y1d2{bottom:586.394527px;}
.y1be{bottom:588.571283px;}
.y2a9{bottom:589.687492px;}
.ydb{bottom:591.565433px;}
.yaa{bottom:592.390133px;}
.yc0{bottom:593.437492px;}
.y226{bottom:593.660152px;}
.y114{bottom:594.152348px;}
.y26b{bottom:604.183598px;}
.y133{bottom:604.388678px;}
.y46{bottom:604.390133px;}
.y170{bottom:604.391602px;}
.y1dc{bottom:604.394527px;}
.y24d{bottom:606.251948px;}
.y21{bottom:610.020998px;}
.y182{bottom:610.107428px;}
.y124{bottom:610.388678px;}
.yb5{bottom:610.390133px;}
.y2a0{bottom:610.394527px;}
.y28a{bottom:611.636723px;}
.y1eb{bottom:614.437492px;}
.y319{bottom:614.531242px;}
.y2c0{bottom:615.562492px;}
.y23c{bottom:616.300773px;}
.y106{bottom:617.437492px;}
.y1a4{bottom:617.636723px;}
.y1bd{bottom:619.617188px;}
.y2a8{bottom:620.742188px;}
.yda{bottom:622.612793px;}
.ybf{bottom:624.484868px;}
.y225{bottom:624.708982px;}
.y113{bottom:625.199708px;}
.y7f{bottom:627.484868px;}
.y26a{bottom:627.984367px;}
.y24c{bottom:630.058598px;}
.y2ea{bottom:631.101558px;}
.y20{bottom:635.219242px;}
.y45{bottom:635.437492px;}
.y23b{bottom:637.300777px;}
.y318{bottom:638.332027px;}
.y181{bottom:641.156242px;}
.y9b{bottom:641.437492px;}
.y5f{bottom:642.484868px;}
.y289{bottom:642.685552px;}
.y20d{bottom:643.335938px;}
.y1ea{bottom:645.486322px;}
.y2bf{bottom:646.617188px;}
.y105{bottom:648.483398px;}
.y191{bottom:648.486322px;}
.y1a3{bottom:648.679688px;}
.y1bc{bottom:650.666018px;}
.y2a7{bottom:651.791018px;}
.ybe{bottom:655.532228px;}
.y112{bottom:656.247068px;}
.y7e{bottom:658.532228px;}
.y1f{bottom:660.417488px;}
.y23a{bottom:661.101562px;}
.y317{bottom:662.132812px;}
.y132{bottom:666.483398px;}
.y44{bottom:666.484868px;}
.y16f{bottom:666.486322px;}
.y224{bottom:671.144523px;}
.y2e9{bottom:672.093742px;}
.y29f{bottom:672.480473px;}
.y9a{bottom:672.484868px;}
.y145{bottom:672.486322px;}
.y5e{bottom:673.532228px;}
.y288{bottom:673.728517px;}
.y20c{bottom:674.384768px;}
.y24b{bottom:677.660152px;}
.y104{bottom:679.532228px;}
.y190{bottom:679.535152px;}
.y1a2{bottom:679.731442px;}
.y1bb{bottom:681.714848px;}
.y2a6{bottom:682.833982px;}
.yd9{bottom:684.707513px;}
.y239{bottom:684.902348px;}
.y1e{bottom:685.615718px;}
.y316{bottom:685.933598px;}
.ybd{bottom:686.579588px;}
.y111{bottom:687.294427px;}
.y7d{bottom:689.579588px;}
.y269{bottom:690.076178px;}
.y223{bottom:692.150392px;}
.y2e7{bottom:695.384758px;}
.y131{bottom:697.532228px;}
.y16e{bottom:697.535152px;}
.y24a{bottom:701.460938px;}
.y180{bottom:703.250977px;}
.y99{bottom:703.532228px;}
.y1c9{bottom:703.535152px;}
.y287{bottom:704.777348px;}
.y20b{bottom:705.433598px;}
.y1e9{bottom:707.578118px;}
.y238{bottom:708.708982px;}
.y315{bottom:709.746098px;}
.y103{bottom:710.578118px;}
.y1a1{bottom:710.774408px;}
.y1d{bottom:710.813963px;}
.y1ba{bottom:712.760738px;}
.yd8{bottom:715.754887px;}
.y222{bottom:715.951178px;}
.y7c{bottom:720.626948px;}
.y268{bottom:721.124992px;}
.y130{bottom:728.578118px;}
.y43{bottom:728.579588px;}
.y16d{bottom:728.581058px;}
.y237{bottom:732.509768px;}
.y17f{bottom:734.296867px;}
.y123{bottom:734.578118px;}
.y98{bottom:734.579588px;}
.y29e{bottom:734.583982px;}
.y2de{bottom:735.539066px;}
.y5d{bottom:735.626948px;}
.y286{bottom:735.820312px;}
.y1c{bottom:736.012207px;}
.y1e8{bottom:738.626948px;}
.y221{bottom:739.751948px;}
.y102{bottom:741.626948px;}
.y1a0{bottom:741.826178px;}
.y2a5{bottom:742.552728px;}
.y1b9{bottom:743.806643px;}
.yd7{bottom:746.802248px;}
.y18f{bottom:747.626948px;}
.y249{bottom:749.068358px;}
.y7b{bottom:751.674322px;}
.y267{bottom:752.167973px;}
.ybc{bottom:754.674322px;}
.y110{bottom:755.387692px;}
.y236{bottom:756.310552px;}
.y2bb{bottom:759.621098px;}
.y42{bottom:759.626948px;}
.y1b{bottom:761.210452px;}
.y220{bottom:763.558598px;}
.y17e{bottom:765.345698px;}
.y97{bottom:765.626948px;}
.y30b{bottom:765.632812px;}
.y5c{bottom:766.674322px;}
.y285{bottom:766.874992px;}
.y20a{bottom:767.525392px;}
.y1e7{bottom:769.675777px;}
.y13f{bottom:772.672852px;}
.y1d5{bottom:772.675777px;}
.y19f{bottom:772.869142px;}
.y2e3{bottom:774.351566px;}
.y1b8{bottom:774.855473px;}
.yd6{bottom:777.849608px;}
.y235{bottom:780.117188px;}
.y7a{bottom:782.721683px;}
.y266{bottom:783.222652px;}
.y1a{bottom:786.408698px;}
.y21f{bottom:787.359367px;}
.y12f{bottom:790.672852px;}
.y41{bottom:790.674322px;}
.y16c{bottom:790.675777px;}
.y17d{bottom:796.394527px;}
.y30a{bottom:796.664062px;}
.y29d{bottom:796.669928px;}
.y96{bottom:796.674322px;}
.y122{bottom:796.675777px;}
.y2db{bottom:797.636723px;}
.y209{bottom:798.574223px;}
.y1e6{bottom:800.718742px;}
.y101{bottom:803.721683px;}
.y1d1{bottom:803.724608px;}
.y234{bottom:803.917973px;}
.y19e{bottom:803.920897px;}
.y1b7{bottom:805.904303px;}
.yd5{bottom:808.896968px;}
.y21e{bottom:811.160152px;}
.y19{bottom:811.606928px;}
.y79{bottom:813.769043px;}
.y302{bottom:817.558598px;}
.y40{bottom:821.721683px;}
.y1db{bottom:821.724608px;}
.y17c{bottom:827.440432px;}
.y1c8{bottom:827.718742px;}
.y95{bottom:827.721683px;}
.y5b{bottom:828.769043px;}
.y284{bottom:828.972652px;}
.y208{bottom:829.617188px;}
.y1e5{bottom:831.767573px;}
.y100{bottom:834.767573px;}
.ybb{bottom:834.769043px;}
.y1d0{bottom:834.773438px;}
.y21d{bottom:834.960938px;}
.y19d{bottom:834.963863px;}
.y18{bottom:836.805173px;}
.y1b6{bottom:836.950192px;}
.y265{bottom:838.072268px;}
.y4{bottom:838.804323px;}
.yd4{bottom:839.944342px;}
.y157{bottom:840.767573px;}
.y78{bottom:844.816402px;}
.y12e{bottom:852.767573px;}
.y3f{bottom:852.769043px;}
.y16b{bottom:852.770512px;}
.y1da{bottom:852.773438px;}
.y71{bottom:858.215326px;}
.y17b{bottom:858.486322px;}
.y144{bottom:858.767573px;}
.y94{bottom:858.769043px;}
.y29c{bottom:858.773438px;}
.y283{bottom:860.015618px;}
.y207{bottom:860.666018px;}
.y2d0{bottom:861.082029px;}
.y17{bottom:862.003417px;}
.y1e4{bottom:862.816402px;}
.yba{bottom:865.816402px;}
.y19c{bottom:866.015617px;}
.y1b5{bottom:867.996098px;}
.y264{bottom:869.121097px;}
.yd3{bottom:870.991702px;}
.y301{bottom:871.171867px;}
.y3{bottom:874.508793px;}
.y77{bottom:875.863762px;}
.y3e{bottom:883.816402px;}
.y2d6{bottom:884.367186px;}
.y16{bottom:887.201662px;}
.y70{bottom:889.341802px;}
.y17a{bottom:889.535152px;}
.y93{bottom:889.816402px;}
.y5a{bottom:890.863762px;}
.y282{bottom:891.064448px;}
.y206{bottom:891.714847px;}
.y1e3{bottom:893.865232px;}
.yff{bottom:896.862308px;}
.yb9{bottom:896.863762px;}
.y1cf{bottom:896.865232px;}
.y19b{bottom:897.058598px;}
.y1b4{bottom:899.044928px;}
.y263{bottom:900.164062px;}
.yd2{bottom:902.039062px;}
.y1d4{bottom:902.865232px;}
.y76{bottom:906.911137px;}
.y15{bottom:912.399907px;}
.y12d{bottom:914.862308px;}
.y3d{bottom:914.863762px;}
.y16a{bottom:914.865232px;}
.y6f{bottom:920.428711px;}
.y29b{bottom:920.859367px;}
.y92{bottom:920.863762px;}
.y143{bottom:920.865232px;}
.y2{bottom:921.079833px;}
.y59{bottom:921.911137px;}
.y281{bottom:922.107427px;}
.y205{bottom:922.763677px;}
.yb8{bottom:927.911137px;}
.y1ce{bottom:927.914062px;}
.y1b3{bottom:930.093742px;}
.y262{bottom:931.212892px;}
.y14{bottom:937.598138px;}
.y75{bottom:937.958498px;}
.y179{bottom:943.139647px;}
.y3c{bottom:945.911137px;}
.y1d9{bottom:945.914062px;}
.y6e{bottom:951.555173px;}
.y91{bottom:951.911137px;}
.y1c7{bottom:951.914062px;}
.y58{bottom:952.958498px;}
.y280{bottom:953.156242px;}
.y204{bottom:953.812492px;}
.yfe{bottom:958.957027px;}
.yb7{bottom:958.958498px;}
.y1b2{bottom:961.139647px;}
.y1e2{bottom:961.957027px;}
.y2cf{bottom:961.992186px;}
.y261{bottom:962.261723px;}
.y13{bottom:962.796382px;}
.yd1{bottom:964.133783px;}
.y1{bottom:967.650873px;}
.y74{bottom:969.005858px;}
.y14a{bottom:976.957027px;}
.y3b{bottom:976.958498px;}
.y169{bottom:976.959967px;}
.y6d{bottom:982.642096px;}
.y142{bottom:982.957027px;}
.y90{bottom:982.958498px;}
.y29a{bottom:982.962892px;}
.y309{bottom:982.968742px;}
.y27f{bottom:984.199223px;}
.y203{bottom:984.855473px;}
.y12{bottom:987.994627px;}
.yb6{bottom:990.005858px;}
.y260{bottom:993.304688px;}
.y2cd{bottom:994.388672px;}
.yd0{bottom:995.181153px;}
.y300{bottom:1006.048827px;}
.y2ba{bottom:1008.000000px;}
.y3a{bottom:1008.005859px;}
.y314{bottom:1010.718750px;}
.y11{bottom:1013.192870px;}
.y6c{bottom:1013.768554px;}
.y308{bottom:1014.000000px;}
.y8f{bottom:1014.005859px;}
.y27e{bottom:1015.253905px;}
.y202{bottom:1015.904296px;}
.y13e{bottom:1021.051758px;}
.y57{bottom:1021.053223px;}
.y25f{bottom:1024.353516px;}
.ycf{bottom:1026.228516px;}
.yfd{bottom:1027.053222px;}
.y15a{bottom:1027.054688px;}
.y36{bottom:1032.902343px;}
.y73{bottom:1037.100587px;}
.y12c{bottom:1039.051758px;}
.y39{bottom:1039.053222px;}
.y168{bottom:1039.054688px;}
.y313{bottom:1041.773438px;}
.y6b{bottom:1044.815918px;}
.y2fd{bottom:1044.978516px;}
.y299{bottom:1045.048829px;}
.ya9{bottom:1045.053222px;}
.y141{bottom:1045.054688px;}
.y27d{bottom:1046.296875px;}
.y10{bottom:1048.891112px;}
.y25e{bottom:1055.402343px;}
.y35{bottom:1058.100586px;}
.y2cc{bottom:1063.593749px;}
.y201{bottom:1069.582031px;}
.y2b9{bottom:1070.097655px;}
.y38{bottom:1070.100586px;}
.y167{bottom:1070.103516px;}
.y6a{bottom:1075.902832px;}
.y1c6{bottom:1076.097655px;}
.y56{bottom:1076.100586px;}
.y27c{bottom:1077.351562px;}
.y34{bottom:1083.298828px;}
.yf{bottom:1084.589354px;}
.y72{bottom:1086.147949px;}
.y13d{bottom:1089.146485px;}
.y200{bottom:1090.587891px;}
.yce{bottom:1094.323242px;}
.y312{bottom:1095.374999px;}
.y69{bottom:1107.029296px;}
.y140{bottom:1107.146484px;}
.y55{bottom:1107.147950px;}
.y298{bottom:1107.152343px;}
.y33{bottom:1108.497071px;}
.y1ff{bottom:1114.394530px;}
.y25d{bottom:1115.121093px;}
.y32{bottom:1133.695312px;}
.y68{bottom:1138.116211px;}
.ye{bottom:1138.195312px;}
.hf{height:26.033203px;}
.h9{height:31.020993px;}
.h1b{height:31.271484px;}
.h14{height:32.273438px;}
.h21{height:39.029296px;}
.h16{height:39.550782px;}
.h18{height:39.556641px;}
.h15{height:41.074218px;}
.h11{height:41.778809px;}
.h19{height:45.181642px;}
.h5{height:45.826173px;}
.h10{height:48.410156px;}
.hb{height:49.289063px;}
.h3{height:49.992188px;}
.ha{height:53.789061px;}
.h6{height:59.167970px;}
.h1e{height:62.320312px;}
.h23{height:62.326172px;}
.h17{height:63.357421px;}
.h2{height:64.546875px;}
.he{height:66.049807px;}
.h20{height:85.605470px;}
.h1{height:96.820313px;}
.h1d{height:108.896484px;}
.h12{height:119.080080px;}
.h8{height:119.083005px;}
.h4{height:119.083185px;}
.hc{height:119.083740px;}
.h1a{height:119.085930px;}
.h1f{height:124.417970px;}
.h1c{height:132.181641px;}
.h13{height:140.900385px;}
.h7{height:140.902590px;}
.hd{height:140.903325px;}
.h24{height:140.906250px;}
.h22{height:155.460938px;}
.h0{height:1263.000000px;}
.w2{width:225.000000px;}
.w3{width:337.500000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1e{left:6.750000px;}
.x18{left:15.701660px;}
.x1a{left:22.223145px;}
.x1c{left:29.707031px;}
.x1d{left:84.950684px;}
.x17{left:101.250000px;}
.x1f{left:102.937500px;}
.xc{left:108.000000px;}
.x27{left:112.517578px;}
.x29{left:113.827148px;}
.x25{left:118.511719px;}
.x24{left:124.505859px;}
.x1{left:128.112454px;}
.xe{left:135.000000px;}
.x22{left:137.094876px;}
.x15{left:150.750000px;}
.x3{left:156.556060px;}
.x10{left:162.000000px;}
.x20{left:184.173491px;}
.xf{left:189.000000px;}
.x16{left:192.668120px;}
.x11{left:216.000000px;}
.x14{left:250.299145px;}
.x4{left:270.930319px;}
.x21{left:275.960460px;}
.x23{left:277.856667px;}
.xa{left:286.265928px;}
.x9{left:298.242326px;}
.x28{left:302.242680px;}
.x19{left:327.375000px;}
.x13{left:332.502098px;}
.x6{left:336.277001px;}
.x8{left:356.557759px;}
.x5{left:361.497218px;}
.x7{left:372.716449px;}
.x2{left:382.707416px;}
.x26{left:439.875000px;}
.xb{left:492.202440px;}
.x2a{left:518.200481px;}
.x2b{left:526.594039px;}
.x2c{left:551.950481px;}
.x1b{left:553.500000px;}
.x2d{left:632.431924px;}
.x12{left:768.425130px;}
.xd{left:776.669265px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:13.328125pt;}
.ls2{letter-spacing:14.811951pt;}
.lsc{letter-spacing:15.987479pt;}
.lsf{letter-spacing:16.000000pt;}
.ls8{letter-spacing:16.000018pt;}
.lse{letter-spacing:20.000000pt;}
.ls4{letter-spacing:23.987519pt;}
.ls6{letter-spacing:27.987499pt;}
.ls7{letter-spacing:27.987519pt;}
.ls1{letter-spacing:31.987519pt;}
.ls5{letter-spacing:35.999963pt;}
.lsb{letter-spacing:36.000000pt;}
.ls9{letter-spacing:39.987499pt;}
.ls12{letter-spacing:52.000000pt;}
.lsd{letter-spacing:56.000000pt;}
.ls3{letter-spacing:57.343750pt;}
.ls13{letter-spacing:72.000000pt;}
.ls14{letter-spacing:224.000000pt;}
.ls10{letter-spacing:476.000020pt;}
.ls11{letter-spacing:560.000008pt;}
.ws21{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-14.666667pt;}
.ws4b{word-spacing:-12.000000pt;}
.ws4c{word-spacing:-0.048000pt;}
.ws27{word-spacing:-0.000031pt;}
.ws5a{word-spacing:-0.000021pt;}
.ws76{word-spacing:-0.000020pt;}
.wsac{word-spacing:-0.000015pt;}
.wsa{word-spacing:-0.000011pt;}
.ws1a{word-spacing:-0.000010pt;}
.ws9e{word-spacing:-0.000003pt;}
.ws46{word-spacing:-0.000002pt;}
.ws0{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.000002pt;}
.ws10{word-spacing:0.000010pt;}
.ws54{word-spacing:0.000020pt;}
.ws4a{word-spacing:0.000030pt;}
.ws17{word-spacing:3.999970pt;}
.ws4f{word-spacing:3.999980pt;}
.wsa8{word-spacing:3.999982pt;}
.ws62{word-spacing:3.999988pt;}
.ws65{word-spacing:3.999989pt;}
.ws3{word-spacing:3.999990pt;}
.ws47{word-spacing:3.999998pt;}
.ws5{word-spacing:4.000000pt;}
.ws70{word-spacing:4.000001pt;}
.ws55{word-spacing:4.000002pt;}
.ws4{word-spacing:4.000009pt;}
.ws26{word-spacing:4.000010pt;}
.ws57{word-spacing:4.000020pt;}
.ws30{word-spacing:4.000029pt;}
.ws75{word-spacing:4.000030pt;}
.ws28{word-spacing:7.999970pt;}
.wsf{word-spacing:7.999979pt;}
.ws6f{word-spacing:7.999980pt;}
.ws1c{word-spacing:7.999989pt;}
.ws24{word-spacing:7.999990pt;}
.wsa7{word-spacing:7.999992pt;}
.ws4d{word-spacing:7.999997pt;}
.wsaa{word-spacing:7.999998pt;}
.ws6{word-spacing:7.999999pt;}
.ws48{word-spacing:8.000000pt;}
.ws50{word-spacing:8.000002pt;}
.ws1e{word-spacing:8.000009pt;}
.ws64{word-spacing:8.000010pt;}
.ws39{word-spacing:8.000020pt;}
.ws51{word-spacing:8.000030pt;}
.ws43{word-spacing:11.999970pt;}
.ws11{word-spacing:11.999980pt;}
.wsad{word-spacing:11.999985pt;}
.ws79{word-spacing:11.999988pt;}
.wsb{word-spacing:11.999990pt;}
.ws3b{word-spacing:11.999998pt;}
.ws8{word-spacing:12.000000pt;}
.ws2b{word-spacing:12.000002pt;}
.wsc{word-spacing:12.000010pt;}
.ws44{word-spacing:12.000020pt;}
.ws7a{word-spacing:12.000020pt;}
.ws67{word-spacing:12.000030pt;}
.ws18{word-spacing:15.999970pt;}
.ws2{word-spacing:15.999980pt;}
.ws25{word-spacing:15.999989pt;}
.ws1{word-spacing:15.999990pt;}
.ws2e{word-spacing:15.999998pt;}
.ws37{word-spacing:15.999999pt;}
.ws19{word-spacing:16.000000pt;}
.ws1f{word-spacing:16.000010pt;}
.ws35{word-spacing:16.000019pt;}
.ws60{word-spacing:16.000029pt;}
.ws13{word-spacing:19.999970pt;}
.ws40{word-spacing:19.999980pt;}
.wsa9{word-spacing:19.999985pt;}
.ws95{word-spacing:19.999989pt;}
.ws1d{word-spacing:19.999990pt;}
.ws59{word-spacing:19.999998pt;}
.ws2a{word-spacing:19.999999pt;}
.ws14{word-spacing:20.000000pt;}
.ws2d{word-spacing:20.000002pt;}
.ws9{word-spacing:20.000010pt;}
.ws32{word-spacing:20.000020pt;}
.ws31{word-spacing:20.000029pt;}
.wsd{word-spacing:23.999970pt;}
.ws3f{word-spacing:23.999980pt;}
.ws20{word-spacing:23.999990pt;}
.ws6e{word-spacing:23.999991pt;}
.ws3d{word-spacing:23.999999pt;}
.wse{word-spacing:24.000000pt;}
.wsa4{word-spacing:24.000001pt;}
.ws16{word-spacing:24.000010pt;}
.wsaf{word-spacing:24.000020pt;}
.ws3a{word-spacing:27.999970pt;}
.ws1b{word-spacing:27.999980pt;}
.ws38{word-spacing:27.999990pt;}
.wsa2{word-spacing:27.999998pt;}
.ws12{word-spacing:28.000000pt;}
.ws5d{word-spacing:28.000002pt;}
.ws2f{word-spacing:28.000010pt;}
.ws66{word-spacing:31.999970pt;}
.ws5e{word-spacing:31.999980pt;}
.ws4e{word-spacing:31.999990pt;}
.wsab{word-spacing:31.999992pt;}
.ws3e{word-spacing:32.000000pt;}
.ws23{word-spacing:32.000009pt;}
.ws6d{word-spacing:32.000019pt;}
.ws42{word-spacing:32.000020pt;}
.ws6c{word-spacing:35.999970pt;}
.ws33{word-spacing:35.999980pt;}
.ws45{word-spacing:35.999990pt;}
.ws6b{word-spacing:35.999998pt;}
.ws22{word-spacing:36.000000pt;}
.ws5b{word-spacing:36.000010pt;}
.ws5f{word-spacing:36.000020pt;}
.ws15{word-spacing:39.999980pt;}
.ws72{word-spacing:39.999989pt;}
.ws6a{word-spacing:39.999997pt;}
.ws7{word-spacing:40.000000pt;}
.ws58{word-spacing:40.000010pt;}
.ws77{word-spacing:43.999970pt;}
.ws34{word-spacing:43.999990pt;}
.ws41{word-spacing:44.000000pt;}
.ws69{word-spacing:44.000010pt;}
.ws52{word-spacing:47.999980pt;}
.ws49{word-spacing:47.999990pt;}
.wsae{word-spacing:47.999999pt;}
.ws29{word-spacing:48.000000pt;}
.ws56{word-spacing:48.000010pt;}
.ws68{word-spacing:48.000019pt;}
.ws82{word-spacing:48.000020pt;}
.ws81{word-spacing:51.999988pt;}
.ws36{word-spacing:51.999999pt;}
.ws53{word-spacing:52.000009pt;}
.ws73{word-spacing:55.999970pt;}
.ws74{word-spacing:55.999980pt;}
.ws91{word-spacing:55.999990pt;}
.ws92{word-spacing:56.000000pt;}
.ws71{word-spacing:56.000010pt;}
.ws90{word-spacing:56.000017pt;}
.ws9c{word-spacing:59.999990pt;}
.ws61{word-spacing:60.000000pt;}
.ws5c{word-spacing:64.000020pt;}
.ws3c{word-spacing:67.999980pt;}
.ws63{word-spacing:68.000000pt;}
.wsb0{word-spacing:68.000020pt;}
.ws86{word-spacing:88.000000pt;}
.wsa1{word-spacing:91.999999pt;}
.wsa0{word-spacing:92.000001pt;}
.wsa3{word-spacing:100.000001pt;}
.ws9f{word-spacing:103.999984pt;}
.wsa6{word-spacing:104.000000pt;}
.ws9a{word-spacing:168.000000pt;}
.ws99{word-spacing:171.999970pt;}
.ws98{word-spacing:172.000000pt;}
.ws84{word-spacing:179.999989pt;}
.ws83{word-spacing:180.000000pt;}
.ws8d{word-spacing:187.999989pt;}
.ws8c{word-spacing:188.000001pt;}
.ws8e{word-spacing:188.000020pt;}
.ws94{word-spacing:207.999980pt;}
.ws9b{word-spacing:207.999990pt;}
.ws93{word-spacing:208.000020pt;}
.ws8b{word-spacing:247.999990pt;}
.wsa5{word-spacing:328.000000pt;}
.ws87{word-spacing:384.000029pt;}
.ws7c{word-spacing:455.999980pt;}
.ws89{word-spacing:459.999980pt;}
.ws88{word-spacing:460.000002pt;}
.ws7e{word-spacing:539.999980pt;}
.ws97{word-spacing:788.000000pt;}
.ws96{word-spacing:791.999988pt;}
.ws80{word-spacing:883.999988pt;}
.ws8a{word-spacing:1752.000010pt;}
.ws78{word-spacing:1860.000020pt;}
.ws7d{word-spacing:1904.000000pt;}
.ws8f{word-spacing:1931.999990pt;}
.ws7f{word-spacing:1964.000020pt;}
.ws9d{word-spacing:2100.000000pt;}
.ws85{word-spacing:2115.999990pt;}
._4c{margin-left:-8.812490pt;}
._1{margin-left:-7.687508pt;}
._3d{margin-left:-6.406176pt;}
._0{margin-left:-5.296874pt;}
._2{margin-left:-3.531248pt;}
._3{margin-left:-2.250000pt;}
._18{margin-left:-1.156248pt;}
._3f{width:7.187501pt;}
._3e{width:13.023439pt;}
._30{width:15.999990pt;}
._33{width:20.000000pt;}
._46{width:23.062495pt;}
._2e{width:24.000001pt;}
._31{width:28.000000pt;}
._34{width:32.000000pt;}
._2d{width:36.000000pt;}
._2f{width:40.000015pt;}
._b{width:43.771988pt;}
._35{width:44.684025pt;}
._36{width:48.000000pt;}
._37{width:52.000010pt;}
._3a{width:56.000000pt;}
._32{width:60.000001pt;}
._3c{width:64.000019pt;}
._39{width:68.000002pt;}
._3b{width:71.999999pt;}
._42{width:74.687500pt;}
._44{width:76.000000pt;}
._41{width:80.000002pt;}
._40{width:83.999999pt;}
._38{width:88.228013pt;}
._43{width:96.000000pt;}
._47{width:108.000002pt;}
._4d{width:116.000000pt;}
._4a{width:119.656246pt;}
._4f{width:132.000017pt;}
._4e{width:136.546864pt;}
._4b{width:227.874999pt;}
._49{width:268.000000pt;}
._1c{width:391.240738pt;}
._48{width:403.999999pt;}
._29{width:407.615737pt;}
._20{width:496.459486pt;}
._45{width:560.000002pt;}
._28{width:563.896987pt;}
._2b{width:754.678246pt;}
._f{width:1011.678238pt;}
._2a{width:1031.146990pt;}
._21{width:1052.459489pt;}
._9{width:1055.990739pt;}
._1b{width:1111.115739pt;}
._14{width:1112.865739pt;}
._11{width:1114.740739pt;}
._1d{width:1127.084489pt;}
._19{width:1211.771987pt;}
._c{width:1255.053239pt;}
._1e{width:1276.459489pt;}
._e{width:1301.240739pt;}
._13{width:1318.990739pt;}
._10{width:1345.740739pt;}
._8{width:1347.521989pt;}
._16{width:1356.303239pt;}
._17{width:1429.178238pt;}
._15{width:1441.584489pt;}
._1f{width:1564.240740pt;}
._12{width:1587.521989pt;}
._2c{width:1625.834495pt;}
._d{width:1633.740739pt;}
._23{width:1656.771990pt;}
._5{width:1671.021989pt;}
._a{width:1714.084490pt;}
._1a{width:1838.021989pt;}
._6{width:1914.490740pt;}
._7{width:1941.053240pt;}
._22{width:1951.740740pt;}
._26{width:1969.553240pt;}
._27{width:1990.896990pt;}
._25{width:2005.084490pt;}
._24{width:2069.053238pt;}
._4{width:2126.053240pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333332pt;}
.fs7{font-size:56.000000pt;}
.fs2{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2ce{bottom:9.593750pt;}
.y210{bottom:13.218751pt;}
.y213{bottom:13.218755pt;}
.y218{bottom:13.223959pt;}
.y2e8{bottom:16.489583pt;}
.y2e6{bottom:16.494786pt;}
.y2f3{bottom:16.494788pt;}
.y2f8{bottom:16.499990pt;}
.y2ff{bottom:16.499999pt;}
.y2dd{bottom:16.500002pt;}
.y2da{bottom:16.500003pt;}
.y2fc{bottom:16.505210pt;}
.y2d5{bottom:16.505214pt;}
.y2e2{bottom:30.296866pt;}
.y212{bottom:34.380208pt;}
.y2f2{bottom:37.187508pt;}
.y2dc{bottom:37.192708pt;}
.y2d9{bottom:37.192710pt;}
.y2f7{bottom:37.197910pt;}
.y2fb{bottom:37.197916pt;}
.y2e5{bottom:37.197919pt;}
.y2d4{bottom:37.197920pt;}
.y2e1{bottom:50.994786pt;}
.y2f6{bottom:57.890616pt;}
.y2e4{bottom:57.890626pt;}
.y2d3{bottom:57.890627pt;}
.y2f1{bottom:57.890628pt;}
.y2fe{bottom:57.895832pt;}
.y2d8{bottom:57.901043pt;}
.y2e0{bottom:71.697919pt;}
.yfc{bottom:72.763025pt;}
.yd{bottom:72.763999pt;}
.y54{bottom:72.764319pt;}
.y1c5{bottom:72.765625pt;}
.y2f0{bottom:78.588548pt;}
.y2d7{bottom:78.593750pt;}
.y2d2{bottom:78.598960pt;}
.y166{bottom:92.156252pt;}
.y37{bottom:92.158852pt;}
.yc{bottom:92.159012pt;}
.y8e{bottom:92.159505pt;}
.y27b{bottom:92.161452pt;}
.y2df{bottom:92.390626pt;}
.y2ef{bottom:99.286455pt;}
.y2d1{bottom:99.291667pt;}
.ycd{bottom:113.535153pt;}
.y1e1{bottom:114.273107pt;}
.y8d{bottom:116.201820pt;}
.y2ee{bottom:119.984375pt;}
.y1f2{bottom:123.270833pt;}
.y156{bottom:124.260422pt;}
.y2fa{bottom:127.249999pt;}
.y120{bottom:128.604167pt;}
.y53{bottom:128.611323pt;}
.y25c{bottom:129.369793pt;}
.y297{bottom:129.713540pt;}
.y307{bottom:131.447913pt;}
.y2c7{bottom:133.208327pt;}
.y1fe{bottom:133.667647pt;}
.y10f{bottom:134.867193pt;}
.y1d8{bottom:134.869793pt;}
.y21c{bottom:134.963540pt;}
.y1b1{bottom:135.041660pt;}
.y13c{bottom:135.221355pt;}
.y248{bottom:135.963540pt;}
.y31{bottom:137.199219pt;}
.y155{bottom:138.059902pt;}
.ye4{bottom:139.468753pt;}
.ycc{bottom:141.132807pt;}
.y27a{bottom:141.177087pt;}
.y233{bottom:141.333327pt;}
.y11e{bottom:143.654942pt;}
.y8c{bottom:143.799473pt;}
.y52{bottom:149.002927pt;}
.y13b{bottom:149.020835pt;}
.y178{bottom:150.869793pt;}
.y2f9{bottom:154.854165pt;}
.y18e{bottom:155.953127pt;}
.y2b8{bottom:156.197913pt;}
.y11f{bottom:156.201820pt;}
.y159{bottom:156.203127pt;}
.y25b{bottom:156.968753pt;}
.y296{bottom:157.307287pt;}
.y154{bottom:157.783524pt;}
.y306{bottom:159.052087pt;}
.y165{bottom:159.799473pt;}
.y1f1{bottom:159.802087pt;}
.yf0{bottom:160.802087pt;}
.yb4{bottom:162.466140pt;}
.y1d7{bottom:162.468753pt;}
.y21b{bottom:162.562500pt;}
.y1b0{bottom:162.643233pt;}
.y11d{bottom:162.743167pt;}
.y247{bottom:163.562500pt;}
.y311{bottom:164.395833pt;}
.yfb{bottom:164.398433pt;}
.ye3{bottom:167.066407pt;}
.y158{bottom:167.799473pt;}
.y13a{bottom:168.107753pt;}
.ycb{bottom:168.730473pt;}
.y279{bottom:168.776047pt;}
.y232{bottom:168.927087pt;}
.y30{bottom:168.930993pt;}
.y1fd{bottom:169.999993pt;}
.y8b{bottom:171.397140pt;}
.y51{bottom:178.466140pt;}
.y177{bottom:178.468753pt;}
.y18d{bottom:183.549473pt;}
.y2f5{bottom:183.651045pt;}
.ya8{bottom:183.799473pt;}
.y1cd{bottom:183.802087pt;}
.y25a{bottom:184.562500pt;}
.y67{bottom:184.730473pt;}
.y295{bottom:184.906247pt;}
.y12b{bottom:186.098953pt;}
.y164{bottom:187.395833pt;}
.yef{bottom:188.398433pt;}
.y2c6{bottom:188.401047pt;}
.y10e{bottom:190.062500pt;}
.yb3{bottom:190.063807pt;}
.y19a{bottom:190.065100pt;}
.y1af{bottom:190.236980pt;}
.y1fc{bottom:191.156247pt;}
.yfa{bottom:191.997393pt;}
.y310{bottom:191.999993pt;}
.y2b5{bottom:192.994793pt;}
.ye2{bottom:194.664060pt;}
.yca{bottom:196.328127pt;}
.y278{bottom:196.369793pt;}
.y231{bottom:196.526047pt;}
.y8a{bottom:198.994793pt;}
.y2f{bottom:200.662766pt;}
.y2cb{bottom:203.119793pt;}
.y139{bottom:206.062500pt;}
.y50{bottom:206.063807pt;}
.y176{bottom:206.065100pt;}
.y9{bottom:206.485673pt;}
.y21a{bottom:207.979163pt;}
.y149{bottom:211.395833pt;}
.ya7{bottom:211.397140pt;}
.y2b7{bottom:211.401047pt;}
.y259{bottom:212.161460pt;}
.y294{bottom:212.499993pt;}
.y153{bottom:212.963540pt;}
.y12a{bottom:213.697913pt;}
.y305{bottom:214.244793pt;}
.y163{bottom:214.994793pt;}
.yee{bottom:215.997393pt;}
.yb2{bottom:217.661460pt;}
.y1ae{bottom:217.838540pt;}
.y246{bottom:218.755207pt;}
.y2b4{bottom:220.593753pt;}
.yc9{bottom:223.925780pt;}
.y230{bottom:224.124993pt;}
.y89{bottom:226.592447pt;}
.y2ca{bottom:230.713540pt;}
.y2e{bottom:232.394526pt;}
.y1fb{bottom:233.473953pt;}
.y2be{bottom:233.656247pt;}
.y138{bottom:233.661460pt;}
.y1c4{bottom:234.796873pt;}
.y219{bottom:238.291661pt;}
.y18c{bottom:238.744793pt;}
.ya6{bottom:238.994793pt;}
.y30f{bottom:238.999993pt;}
.y66{bottom:239.925780pt;}
.y152{bottom:240.562500pt;}
.y129{bottom:241.296873pt;}
.y277{bottom:242.078119pt;}
.y162{bottom:242.593753pt;}
.yed{bottom:243.593753pt;}
.y10d{bottom:245.257807pt;}
.y199{bottom:245.260420pt;}
.y245{bottom:246.354167pt;}
.yf9{bottom:247.192713pt;}
.y2b3{bottom:248.197913pt;}
.y8{bottom:248.802087pt;}
.ye1{bottom:249.859380pt;}
.yc8{bottom:251.523433pt;}
.y22f{bottom:251.718753pt;}
.y11c{bottom:252.158860pt;}
.y2f4{bottom:252.651045pt;}
.y88{bottom:254.190100pt;}
.y1fa{bottom:254.635420pt;}
.y2c9{bottom:258.312500pt;}
.y258{bottom:260.921873pt;}
.y137{bottom:261.257807pt;}
.y4f{bottom:261.259113pt;}
.y1e0{bottom:261.260420pt;}
.y276{bottom:261.994793pt;}
.y2d{bottom:264.126300pt;}
.y18b{bottom:266.343753pt;}
.y30e{bottom:266.583327pt;}
.y2a4{bottom:266.588540pt;}
.ya5{bottom:266.592447pt;}
.y148{bottom:266.593753pt;}
.y65{bottom:267.523433pt;}
.y293{bottom:267.697913pt;}
.y151{bottom:268.158860pt;}
.y128{bottom:268.893233pt;}
.y1f0{bottom:270.187500pt;}
.y161{bottom:270.190100pt;}
.yb1{bottom:272.856767pt;}
.y198{bottom:272.859380pt;}
.y1ad{bottom:273.033860pt;}
.y244{bottom:273.953127pt;}
.y217{bottom:274.447915pt;}
.y304{bottom:274.770832pt;}
.yf8{bottom:274.789060pt;}
.y2b2{bottom:275.791660pt;}
.yc7{bottom:279.121100pt;}
.y11b{bottom:279.756513pt;}
.y2ed{bottom:281.447913pt;}
.y257{bottom:282.078127pt;}
.y275{bottom:283.151047pt;}
.y2c{bottom:286.524739pt;}
.y4e{bottom:288.856767pt;}
.y175{bottom:288.859380pt;}
.y7{bottom:291.118487pt;}
.y18a{bottom:293.940100pt;}
.y1cc{bottom:294.187500pt;}
.ya4{bottom:294.190100pt;}
.y292{bottom:295.302087pt;}
.y150{bottom:295.755207pt;}
.y127{bottom:296.489580pt;}
.y1f9{bottom:296.947913pt;}
.y160{bottom:297.786460pt;}
.yec{bottom:298.789060pt;}
.y2c5{bottom:298.791660pt;}
.y10c{bottom:300.453127pt;}
.yb0{bottom:300.454433pt;}
.y197{bottom:300.455727pt;}
.y1d6{bottom:300.458327pt;}
.y2c8{bottom:300.624993pt;}
.y1ac{bottom:300.627607pt;}
.y243{bottom:301.552087pt;}
.yf7{bottom:302.388020pt;}
.y256{bottom:303.239580pt;}
.y2b1{bottom:303.385420pt;}
.y274{bottom:304.307287pt;}
.ye0{bottom:305.054687pt;}
.y1c3{bottom:305.989580pt;}
.yc6{bottom:306.718753pt;}
.y22e{bottom:306.916660pt;}
.y11a{bottom:307.354167pt;}
.y87{bottom:309.385420pt;}
.y216{bottom:310.614576pt;}
.y6{bottom:312.276687pt;}
.y136{bottom:316.453127pt;}
.y4d{bottom:316.454433pt;}
.y174{bottom:316.455727pt;}
.y1df{bottom:316.458327pt;}
.y1f8{bottom:318.109380pt;}
.y2b{bottom:318.256513pt;}
.y147{bottom:321.786460pt;}
.ya3{bottom:321.787767pt;}
.y2a3{bottom:321.791660pt;}
.y64{bottom:322.718753pt;}
.y291{bottom:322.895833pt;}
.y14f{bottom:323.354167pt;}
.y255{bottom:324.395833pt;}
.y15f{bottom:325.385420pt;}
.y273{bottom:325.468753pt;}
.yeb{bottom:326.388020pt;}
.yaf{bottom:328.052087pt;}
.y1ab{bottom:328.229167pt;}
.yf6{bottom:329.984380pt;}
.y2b0{bottom:330.989580pt;}
.ydf{bottom:332.652340pt;}
.y1c2{bottom:333.588540pt;}
.y22d{bottom:334.515620pt;}
.y86{bottom:336.983073pt;}
.y1f7{bottom:339.270833pt;}
.y2a{bottom:340.654953pt;}
.y4c{bottom:344.052087pt;}
.y254{bottom:345.552087pt;}
.y272{bottom:346.624993pt;}
.y215{bottom:346.770829pt;}
.y189{bottom:349.135420pt;}
.ya2{bottom:349.385420pt;}
.y290{bottom:350.494793pt;}
.y15e{bottom:352.984380pt;}
.yea{bottom:353.984380pt;}
.y2c4{bottom:353.989580pt;}
.y5{bottom:354.593100pt;}
.y10b{bottom:355.648433pt;}
.y1d3{bottom:355.651047pt;}
.y1aa{bottom:355.822913pt;}
.y242{bottom:356.744793pt;}
.yf5{bottom:357.583327pt;}
.y2af{bottom:358.588540pt;}
.y1f6{bottom:360.427087pt;}
.y121{bottom:360.983073pt;}
.y1c1{bottom:361.187500pt;}
.yc5{bottom:361.914060pt;}
.y22c{bottom:362.114580pt;}
.y119{bottom:362.549473pt;}
.y29{bottom:363.053380pt;}
.y303{bottom:363.083336pt;}
.y85{bottom:364.580727pt;}
.y253{bottom:366.708327pt;}
.y271{bottom:367.781247pt;}
.y4b{bottom:371.649740pt;}
.y173{bottom:371.651047pt;}
.y188{bottom:376.734380pt;}
.y2a2{bottom:376.979167pt;}
.ya1{bottom:376.983073pt;}
.y126{bottom:376.984380pt;}
.y63{bottom:377.914060pt;}
.y28f{bottom:378.088540pt;}
.y14e{bottom:378.549473pt;}
.y15d{bottom:380.580727pt;}
.ye9{bottom:381.583327pt;}
.y214{bottom:382.927083pt;}
.yae{bottom:383.247393pt;}
.y196{bottom:383.249993pt;}
.y1a9{bottom:383.424473pt;}
.y241{bottom:384.343753pt;}
.yf4{bottom:385.179687pt;}
.y28{bottom:385.451820pt;}
.y2ae{bottom:386.182287pt;}
.yde{bottom:387.847660pt;}
.y252{bottom:387.869793pt;}
.y1c0{bottom:388.781247pt;}
.yc4{bottom:389.511713pt;}
.y22b{bottom:389.708327pt;}
.y118{bottom:390.147140pt;}
.y2ec{bottom:391.838539pt;}
.y84{bottom:392.178380pt;}
.y4a{bottom:399.247393pt;}
.y1de{bottom:399.249993pt;}
.y1f5{bottom:402.739580pt;}
.y187{bottom:404.330727pt;}
.ya0{bottom:404.580727pt;}
.y1cb{bottom:404.583327pt;}
.y28e{bottom:405.687500pt;}
.y14d{bottom:406.145833pt;}
.y27{bottom:407.850260pt;}
.y15c{bottom:408.177087pt;}
.ye8{bottom:409.179687pt;}
.y2c3{bottom:409.182287pt;}
.y270{bottom:410.098953pt;}
.y10a{bottom:410.843753pt;}
.yad{bottom:410.845047pt;}
.y195{bottom:410.846353pt;}
.y1a8{bottom:411.018233pt;}
.y240{bottom:411.937500pt;}
.yf3{bottom:412.778647pt;}
.y2ad{bottom:413.776047pt;}
.yc3{bottom:417.109380pt;}
.y22a{bottom:417.307287pt;}
.y117{bottom:417.744793pt;}
.y211{bottom:419.083332pt;}
.y83{bottom:419.776047pt;}
.y1f4{bottom:423.901047pt;}
.y135{bottom:426.843753pt;}
.y172{bottom:426.846353pt;}
.y251{bottom:430.187500pt;}
.y26{bottom:430.248700pt;}
.y26f{bottom:431.260420pt;}
.y186{bottom:431.927087pt;}
.y146{bottom:432.177087pt;}
.y9f{bottom:432.178380pt;}
.y2a1{bottom:432.182287pt;}
.y30d{bottom:432.187500pt;}
.y62{bottom:433.109380pt;}
.y28d{bottom:433.281247pt;}
.y14c{bottom:433.744793pt;}
.y1ef{bottom:435.776047pt;}
.y2c2{bottom:436.776047pt;}
.ye7{bottom:436.778647pt;}
.yac{bottom:438.442713pt;}
.y1a7{bottom:438.619793pt;}
.y23f{bottom:439.536460pt;}
.y20f{bottom:440.244789pt;}
.yf2{bottom:440.374993pt;}
.y2ac{bottom:441.374993pt;}
.ydd{bottom:443.042967pt;}
.yc2{bottom:444.707033pt;}
.y229{bottom:444.906247pt;}
.y1f3{bottom:445.057287pt;}
.y116{bottom:445.342447pt;}
.y82{bottom:447.373700pt;}
.y1bf{bottom:449.312499pt;}
.y250{bottom:451.343753pt;}
.y26e{bottom:452.416660pt;}
.y25{bottom:452.647140pt;}
.y2bd{bottom:454.437500pt;}
.y49{bottom:454.442713pt;}
.y185{bottom:459.526047pt;}
.y30c{bottom:459.770833pt;}
.y9e{bottom:459.776047pt;}
.y28c{bottom:460.885420pt;}
.y14b{bottom:461.343753pt;}
.y1ee{bottom:463.374993pt;}
.ye6{bottom:464.374993pt;}
.y109{bottom:466.039060pt;}
.yab{bottom:466.040367pt;}
.y194{bottom:466.041660pt;}
.y1a6{bottom:466.213540pt;}
.y23e{bottom:467.135420pt;}
.y15b{bottom:468.708326pt;}
.y2ab{bottom:468.979167pt;}
.ydc{bottom:470.640620pt;}
.yc1{bottom:472.304687pt;}
.y228{bottom:472.499993pt;}
.y115{bottom:472.940100pt;}
.y26d{bottom:473.572913pt;}
.y81{bottom:474.971353pt;}
.y24{bottom:475.045567pt;}
.y134{bottom:482.039060pt;}
.y48{bottom:482.040367pt;}
.y171{bottom:482.041660pt;}
.yb{bottom:482.774087pt;}
.y184{bottom:487.124993pt;}
.y2b6{bottom:487.369793pt;}
.y9d{bottom:487.373700pt;}
.y125{bottom:487.374993pt;}
.y61{bottom:488.304687pt;}
.y28b{bottom:488.479167pt;}
.y1ed{bottom:490.968753pt;}
.y2c1{bottom:491.968753pt;}
.y108{bottom:493.638020pt;}
.y193{bottom:493.640620pt;}
.y1a5{bottom:493.815100pt;}
.y23d{bottom:494.734380pt;}
.y2eb{bottom:495.666659pt;}
.y2aa{bottom:496.572913pt;}
.y23{bottom:497.444007pt;}
.y24f{bottom:499.062496pt;}
.y227{bottom:500.098953pt;}
.yf1{bottom:500.903646pt;}
.y80{bottom:502.569007pt;}
.ya{bottom:503.932287pt;}
.y2bc{bottom:509.635420pt;}
.y47{bottom:509.638020pt;}
.y1dd{bottom:509.640620pt;}
.y183{bottom:514.721353pt;}
.y1ca{bottom:514.968753pt;}
.y9c{bottom:514.971353pt;}
.y26c{bottom:515.895833pt;}
.y60{bottom:515.902340pt;}
.y20e{bottom:516.656247pt;}
.ye5{bottom:517.460936pt;}
.y24e{bottom:517.729167pt;}
.y1ec{bottom:518.567713pt;}
.y22{bottom:519.842447pt;}
.y107{bottom:521.234380pt;}
.y192{bottom:521.236980pt;}
.y1d2{bottom:521.239580pt;}
.y1be{bottom:523.174473pt;}
.y2a9{bottom:524.166660pt;}
.ydb{bottom:525.835940pt;}
.yaa{bottom:526.569007pt;}
.yc0{bottom:527.499993pt;}
.y226{bottom:527.697913pt;}
.y114{bottom:528.135420pt;}
.y26b{bottom:537.052087pt;}
.y133{bottom:537.234380pt;}
.y46{bottom:537.235673pt;}
.y170{bottom:537.236980pt;}
.y1dc{bottom:537.239580pt;}
.y24d{bottom:538.890620pt;}
.y21{bottom:542.240887pt;}
.y182{bottom:542.317713pt;}
.y124{bottom:542.567713pt;}
.yb5{bottom:542.569007pt;}
.y2a0{bottom:542.572913pt;}
.y28a{bottom:543.677087pt;}
.y1eb{bottom:546.166660pt;}
.y319{bottom:546.249993pt;}
.y2c0{bottom:547.166660pt;}
.y23c{bottom:547.822910pt;}
.y106{bottom:548.833327pt;}
.y1a4{bottom:549.010420pt;}
.y1bd{bottom:550.770833pt;}
.y2a8{bottom:551.770833pt;}
.yda{bottom:553.433593pt;}
.ybf{bottom:555.097660pt;}
.y225{bottom:555.296873pt;}
.y113{bottom:555.733073pt;}
.y7f{bottom:557.764327pt;}
.y26a{bottom:558.208327pt;}
.y24c{bottom:560.052087pt;}
.y2ea{bottom:560.979163pt;}
.y20{bottom:564.639327pt;}
.y45{bottom:564.833327pt;}
.y23b{bottom:566.489580pt;}
.y318{bottom:567.406247pt;}
.y181{bottom:569.916660pt;}
.y9b{bottom:570.166660pt;}
.y5f{bottom:571.097660pt;}
.y289{bottom:571.276047pt;}
.y20d{bottom:571.854167pt;}
.y1ea{bottom:573.765620pt;}
.y2bf{bottom:574.770833pt;}
.y105{bottom:576.429687pt;}
.y191{bottom:576.432287pt;}
.y1a3{bottom:576.604167pt;}
.y1bc{bottom:578.369793pt;}
.y2a7{bottom:579.369793pt;}
.ybe{bottom:582.695313pt;}
.y112{bottom:583.330727pt;}
.y7e{bottom:585.361980pt;}
.y1f{bottom:587.037767pt;}
.y23a{bottom:587.645833pt;}
.y317{bottom:588.562500pt;}
.y132{bottom:592.429687pt;}
.y44{bottom:592.430993pt;}
.y16f{bottom:592.432287pt;}
.y224{bottom:596.572910pt;}
.y2e9{bottom:597.416660pt;}
.y29f{bottom:597.760420pt;}
.y9a{bottom:597.764327pt;}
.y145{bottom:597.765620pt;}
.y5e{bottom:598.695313pt;}
.y288{bottom:598.869793pt;}
.y20c{bottom:599.453127pt;}
.y24b{bottom:602.364580pt;}
.y104{bottom:604.028647pt;}
.y190{bottom:604.031247pt;}
.y1a2{bottom:604.205727pt;}
.y1bb{bottom:605.968753pt;}
.y2a6{bottom:606.963540pt;}
.yd9{bottom:608.628900pt;}
.y239{bottom:608.802087pt;}
.y1e{bottom:609.436193pt;}
.y316{bottom:609.718753pt;}
.ybd{bottom:610.292967pt;}
.y111{bottom:610.928380pt;}
.y7d{bottom:612.959633pt;}
.y269{bottom:613.401047pt;}
.y223{bottom:615.244793pt;}
.y2e7{bottom:618.119785pt;}
.y131{bottom:620.028647pt;}
.y16e{bottom:620.031247pt;}
.y24a{bottom:623.520833pt;}
.y180{bottom:625.111980pt;}
.y99{bottom:625.361980pt;}
.y1c9{bottom:625.364580pt;}
.y287{bottom:626.468753pt;}
.y20b{bottom:627.052087pt;}
.y1e9{bottom:628.958327pt;}
.y238{bottom:629.963540pt;}
.y315{bottom:630.885420pt;}
.y103{bottom:631.624993pt;}
.y1a1{bottom:631.799473pt;}
.y1d{bottom:631.834633pt;}
.y1ba{bottom:633.565100pt;}
.yd8{bottom:636.226567pt;}
.y222{bottom:636.401047pt;}
.y7c{bottom:640.557287pt;}
.y268{bottom:640.999993pt;}
.y130{bottom:647.624993pt;}
.y43{bottom:647.626300pt;}
.y16d{bottom:647.627607pt;}
.y237{bottom:651.119793pt;}
.y17f{bottom:652.708327pt;}
.y123{bottom:652.958327pt;}
.y98{bottom:652.959633pt;}
.y29e{bottom:652.963540pt;}
.y2de{bottom:653.812503pt;}
.y5d{bottom:653.890620pt;}
.y286{bottom:654.062500pt;}
.y1c{bottom:654.233073pt;}
.y1e8{bottom:656.557287pt;}
.y221{bottom:657.557287pt;}
.y102{bottom:659.223953pt;}
.y1a0{bottom:659.401047pt;}
.y2a5{bottom:660.046870pt;}
.y1b9{bottom:661.161460pt;}
.yd7{bottom:663.824220pt;}
.y18f{bottom:664.557287pt;}
.y249{bottom:665.838540pt;}
.y7b{bottom:668.154953pt;}
.y267{bottom:668.593753pt;}
.ybc{bottom:670.821620pt;}
.y110{bottom:671.455727pt;}
.y236{bottom:672.276047pt;}
.y2bb{bottom:675.218753pt;}
.y42{bottom:675.223953pt;}
.y1b{bottom:676.631513pt;}
.y220{bottom:678.718753pt;}
.y17e{bottom:680.307287pt;}
.y97{bottom:680.557287pt;}
.y30b{bottom:680.562500pt;}
.y5c{bottom:681.488287pt;}
.y285{bottom:681.666660pt;}
.y20a{bottom:682.244793pt;}
.y1e7{bottom:684.156247pt;}
.y13f{bottom:686.820313pt;}
.y1d5{bottom:686.822913pt;}
.y19f{bottom:686.994793pt;}
.y2e3{bottom:688.312503pt;}
.y1b8{bottom:688.760420pt;}
.yd6{bottom:691.421873pt;}
.y235{bottom:693.437500pt;}
.y7a{bottom:695.752607pt;}
.y266{bottom:696.197913pt;}
.y1a{bottom:699.029953pt;}
.y21f{bottom:699.874993pt;}
.y12f{bottom:702.820313pt;}
.y41{bottom:702.821620pt;}
.y16c{bottom:702.822913pt;}
.y17d{bottom:707.906247pt;}
.y30a{bottom:708.145833pt;}
.y29d{bottom:708.151047pt;}
.y96{bottom:708.154953pt;}
.y122{bottom:708.156247pt;}
.y2db{bottom:709.010420pt;}
.y209{bottom:709.843753pt;}
.y1e6{bottom:711.749993pt;}
.y101{bottom:714.419273pt;}
.y1d1{bottom:714.421873pt;}
.y234{bottom:714.593753pt;}
.y19e{bottom:714.596353pt;}
.y1b7{bottom:716.359380pt;}
.yd5{bottom:719.019527pt;}
.y21e{bottom:721.031247pt;}
.y19{bottom:721.428380pt;}
.y79{bottom:723.350260pt;}
.y302{bottom:726.718753pt;}
.y40{bottom:730.419273pt;}
.y1db{bottom:730.421873pt;}
.y17c{bottom:735.502607pt;}
.y1c8{bottom:735.749993pt;}
.y95{bottom:735.752607pt;}
.y5b{bottom:736.683593pt;}
.y284{bottom:736.864580pt;}
.y208{bottom:737.437500pt;}
.y1e5{bottom:739.348953pt;}
.y100{bottom:742.015620pt;}
.ybb{bottom:742.016927pt;}
.y1d0{bottom:742.020833pt;}
.y21d{bottom:742.187500pt;}
.y19d{bottom:742.190100pt;}
.y18{bottom:743.826820pt;}
.y1b6{bottom:743.955727pt;}
.y265{bottom:744.953127pt;}
.y4{bottom:745.603843pt;}
.yd4{bottom:746.617193pt;}
.y157{bottom:747.348953pt;}
.y78{bottom:750.947913pt;}
.y12e{bottom:758.015620pt;}
.y3f{bottom:758.016927pt;}
.y16b{bottom:758.018233pt;}
.y1da{bottom:758.020833pt;}
.y71{bottom:762.858067pt;}
.y17b{bottom:763.098953pt;}
.y144{bottom:763.348953pt;}
.y94{bottom:763.350260pt;}
.y29c{bottom:763.354167pt;}
.y283{bottom:764.458327pt;}
.y207{bottom:765.036460pt;}
.y2d0{bottom:765.406248pt;}
.y17{bottom:766.225260pt;}
.y1e4{bottom:766.947913pt;}
.yba{bottom:769.614580pt;}
.y19c{bottom:769.791660pt;}
.y1b5{bottom:771.552087pt;}
.y264{bottom:772.552087pt;}
.yd3{bottom:774.214847pt;}
.y301{bottom:774.374992pt;}
.y3{bottom:777.341150pt;}
.y77{bottom:778.545567pt;}
.y3e{bottom:785.614580pt;}
.y2d6{bottom:786.104165pt;}
.y16{bottom:788.623700pt;}
.y70{bottom:790.526047pt;}
.y17a{bottom:790.697913pt;}
.y93{bottom:790.947913pt;}
.y5a{bottom:791.878900pt;}
.y282{bottom:792.057287pt;}
.y206{bottom:792.635420pt;}
.y1e3{bottom:794.546873pt;}
.yff{bottom:797.210940pt;}
.yb9{bottom:797.212233pt;}
.y1cf{bottom:797.213540pt;}
.y19b{bottom:797.385420pt;}
.y1b4{bottom:799.151047pt;}
.y263{bottom:800.145833pt;}
.yd2{bottom:801.812500pt;}
.y1d4{bottom:802.546873pt;}
.y76{bottom:806.143233pt;}
.y15{bottom:811.022140pt;}
.y12d{bottom:813.210940pt;}
.y3d{bottom:813.212233pt;}
.y16a{bottom:813.213540pt;}
.y6f{bottom:818.158854pt;}
.y29b{bottom:818.541660pt;}
.y92{bottom:818.545567pt;}
.y143{bottom:818.546873pt;}
.y2{bottom:818.737630pt;}
.y59{bottom:819.476567pt;}
.y281{bottom:819.651047pt;}
.y205{bottom:820.234380pt;}
.yb8{bottom:824.809900pt;}
.y1ce{bottom:824.812500pt;}
.y1b3{bottom:826.749993pt;}
.y262{bottom:827.744793pt;}
.y14{bottom:833.420567pt;}
.y75{bottom:833.740887pt;}
.y179{bottom:838.346353pt;}
.y3c{bottom:840.809900pt;}
.y1d9{bottom:840.812500pt;}
.y6e{bottom:845.826820pt;}
.y91{bottom:846.143233pt;}
.y1c7{bottom:846.145833pt;}
.y58{bottom:847.074220pt;}
.y280{bottom:847.249993pt;}
.y204{bottom:847.833327pt;}
.yfe{bottom:852.406247pt;}
.yb7{bottom:852.407553pt;}
.y1b2{bottom:854.346353pt;}
.y1e2{bottom:855.072912pt;}
.y2cf{bottom:855.104165pt;}
.y261{bottom:855.343753pt;}
.y13{bottom:855.819007pt;}
.yd1{bottom:857.007807pt;}
.y1{bottom:860.134110pt;}
.y74{bottom:861.338540pt;}
.y14a{bottom:868.406247pt;}
.y3b{bottom:868.407553pt;}
.y169{bottom:868.408860pt;}
.y6d{bottom:873.459641pt;}
.y142{bottom:873.739580pt;}
.y90{bottom:873.740887pt;}
.y29a{bottom:873.744793pt;}
.y309{bottom:873.749993pt;}
.y27f{bottom:874.843753pt;}
.y203{bottom:875.427087pt;}
.y12{bottom:878.217447pt;}
.yb6{bottom:880.005207pt;}
.y260{bottom:882.937500pt;}
.y2cd{bottom:883.901041pt;}
.yd0{bottom:884.605469pt;}
.y300{bottom:894.265624pt;}
.y2ba{bottom:896.000000pt;}
.y3a{bottom:896.005208pt;}
.y314{bottom:898.416667pt;}
.y11{bottom:900.615885pt;}
.y6c{bottom:901.127604pt;}
.y308{bottom:901.333333pt;}
.y8f{bottom:901.338541pt;}
.y27e{bottom:902.447916pt;}
.y202{bottom:903.026041pt;}
.y13e{bottom:907.601563pt;}
.y57{bottom:907.602865pt;}
.y25f{bottom:910.536459pt;}
.ycf{bottom:912.203125pt;}
.yfd{bottom:912.936197pt;}
.y15a{bottom:912.937500pt;}
.y36{bottom:918.135416pt;}
.y73{bottom:921.867189pt;}
.y12c{bottom:923.601563pt;}
.y39{bottom:923.602864pt;}
.y168{bottom:923.604167pt;}
.y313{bottom:926.020833pt;}
.y6b{bottom:928.725260pt;}
.y2fd{bottom:928.869792pt;}
.y299{bottom:928.932292pt;}
.ya9{bottom:928.936197pt;}
.y141{bottom:928.937500pt;}
.y27d{bottom:930.041667pt;}
.y10{bottom:932.347655pt;}
.y25e{bottom:938.135416pt;}
.y35{bottom:940.533855pt;}
.y2cc{bottom:945.416666pt;}
.y201{bottom:950.739583pt;}
.y2b9{bottom:951.197916pt;}
.y38{bottom:951.200521pt;}
.y167{bottom:951.203125pt;}
.y6a{bottom:956.358073pt;}
.y1c6{bottom:956.531249pt;}
.y56{bottom:956.533855pt;}
.y27c{bottom:957.645833pt;}
.y34{bottom:962.932292pt;}
.yf{bottom:964.079426pt;}
.y72{bottom:965.464843pt;}
.y13d{bottom:968.130209pt;}
.y200{bottom:969.411459pt;}
.yce{bottom:972.731771pt;}
.y312{bottom:973.666666pt;}
.y69{bottom:984.026041pt;}
.y140{bottom:984.130208pt;}
.y55{bottom:984.131511pt;}
.y298{bottom:984.135416pt;}
.y33{bottom:985.330729pt;}
.y1ff{bottom:990.572916pt;}
.y25d{bottom:991.218750pt;}
.y32{bottom:1007.729167pt;}
.y68{bottom:1011.658854pt;}
.ye{bottom:1011.729167pt;}
.hf{height:23.140625pt;}
.h9{height:27.574216pt;}
.h1b{height:27.796875pt;}
.h14{height:28.687500pt;}
.h21{height:34.692708pt;}
.h16{height:35.156251pt;}
.h18{height:35.161459pt;}
.h15{height:36.510416pt;}
.h11{height:37.136719pt;}
.h19{height:40.161459pt;}
.h5{height:40.734376pt;}
.h10{height:43.031250pt;}
.hb{height:43.812500pt;}
.h3{height:44.437500pt;}
.ha{height:47.812499pt;}
.h6{height:52.593751pt;}
.h1e{height:55.395833pt;}
.h23{height:55.401041pt;}
.h17{height:56.317708pt;}
.h2{height:57.375000pt;}
.he{height:58.710940pt;}
.h20{height:76.093751pt;}
.h1{height:86.062500pt;}
.h1d{height:96.796875pt;}
.h12{height:105.848960pt;}
.h8{height:105.851560pt;}
.h4{height:105.851720pt;}
.hc{height:105.852213pt;}
.h1a{height:105.854160pt;}
.h1f{height:110.593751pt;}
.h1c{height:117.494792pt;}
.h13{height:125.244787pt;}
.h7{height:125.246747pt;}
.hd{height:125.247400pt;}
.h24{height:125.250000pt;}
.h22{height:138.187500pt;}
.h0{height:1122.666667pt;}
.w2{width:200.000000pt;}
.w3{width:300.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:6.000000pt;}
.x18{left:13.957031pt;}
.x1a{left:19.753906pt;}
.x1c{left:26.406250pt;}
.x1d{left:75.511719pt;}
.x17{left:90.000000pt;}
.x1f{left:91.500000pt;}
.xc{left:96.000000pt;}
.x27{left:100.015625pt;}
.x29{left:101.179688pt;}
.x25{left:105.343750pt;}
.x24{left:110.671875pt;}
.x1{left:113.877737pt;}
.xe{left:120.000000pt;}
.x22{left:121.862112pt;}
.x15{left:134.000000pt;}
.x3{left:139.160942pt;}
.x10{left:144.000000pt;}
.x20{left:163.709770pt;}
.xf{left:168.000000pt;}
.x16{left:171.260551pt;}
.x11{left:192.000000pt;}
.x14{left:222.488129pt;}
.x4{left:240.826950pt;}
.x21{left:245.298187pt;}
.x23{left:246.983704pt;}
.xa{left:254.458603pt;}
.x9{left:265.104290pt;}
.x28{left:268.660160pt;}
.x19{left:291.000000pt;}
.x13{left:295.557420pt;}
.x6{left:298.912890pt;}
.x8{left:316.940230pt;}
.x5{left:321.330860pt;}
.x7{left:331.303510pt;}
.x2{left:340.184370pt;}
.x26{left:391.000000pt;}
.xb{left:437.513280pt;}
.x2a{left:460.622650pt;}
.x2b{left:468.083590pt;}
.x2c{left:490.622650pt;}
.x1b{left:492.000000pt;}
.x2d{left:562.161710pt;}
.x12{left:683.044560pt;}
.xd{left:690.372680pt;}
}




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