
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_7301562e92430c3807c137c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4973aa1575aeb143c1c95d56.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_03db1642450cd5f04018ac4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a532bdce4d29f015001c74d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_95ec5cdaf2f2c9c863021ca8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_a34bd3dcd59bab1fba477e29.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_67758a3472c811c06098035a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7e8c5ce1811fa1d75068e02f.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-23.760000px;}
.v5{vertical-align:-20.880000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls21{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.053280px;}
.ls23{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.152640px;}
.ls19{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206400px;}
.lse{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.269400px;}
.lsc{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.391680px;}
.ls10{letter-spacing:0.403920px;}
.lsf{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.828000px;}
.ls3{letter-spacing:0.864000px;}
.ls29{letter-spacing:0.936000px;}
.ls1f{letter-spacing:2.160000px;}
.lsb{letter-spacing:5.040000px;}
.ls1{letter-spacing:5.760000px;}
.ls22{letter-spacing:10.800000px;}
.ls25{letter-spacing:14.400000px;}
.ls26{letter-spacing:18.720000px;}
.ls24{letter-spacing:22.320000px;}
.ls28{letter-spacing:27.360000px;}
.ls1e{letter-spacing:32.400000px;}
.ls27{letter-spacing:54.720000px;}
.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;}
}
.ws1a{word-spacing:-18.936000px;}
.ws0{word-spacing:-18.864000px;}
.ws7{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.424000px;}
.ws19{word-spacing:-17.280000px;}
.wsb{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.093600px;}
.wsf{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.680200px;}
.ws14{word-spacing:-13.505760px;}
.ws1{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.329400px;}
.ws9{word-spacing:-12.060000px;}
.wse{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
.ws13{word-spacing:137.304000px;}
.ws16{word-spacing:146.424000px;}
._14{margin-left:-5.040000px;}
._4{margin-left:-3.888000px;}
._2{margin-left:-2.436000px;}
._0{margin-left:-1.080000px;}
._1{width:1.290000px;}
._3{width:3.030000px;}
._13{width:4.164000px;}
._b{width:5.184000px;}
._c{width:6.192000px;}
._d{width:7.986000px;}
._10{width:9.030000px;}
._9{width:10.728000px;}
._a{width:11.952000px;}
._e{width:13.248000px;}
._5{width:14.976000px;}
._6{width:16.368000px;}
._25{width:19.512000px;}
._26{width:20.664000px;}
._2c{width:22.104000px;}
._35{width:23.112000px;}
._27{width:24.480000px;}
._f{width:25.488000px;}
._49{width:26.586000px;}
._20{width:27.792000px;}
._36{width:29.232000px;}
._8{width:30.960000px;}
._7{width:31.968000px;}
._1a{width:33.912000px;}
._34{width:35.136000px;}
._48{width:36.486000px;}
._4e{width:37.656000px;}
._15{width:38.664000px;}
._11{width:39.960000px;}
._12{width:41.196000px;}
._1c{width:42.768000px;}
._1d{width:43.920000px;}
._2d{width:45.720000px;}
._1e{width:47.016000px;}
._1f{width:48.390000px;}
._23{width:50.322000px;}
._32{width:51.696000px;}
._59{width:52.704000px;}
._22{width:54.072000px;}
._16{width:55.368000px;}
._17{width:56.880000px;}
._21{width:58.824000px;}
._4f{width:60.696000px;}
._50{width:62.136000px;}
._3d{width:63.216000px;}
._3c{width:64.224000px;}
._43{width:66.288000px;}
._31{width:67.584000px;}
._2a{width:68.832000px;}
._2b{width:69.912000px;}
._4a{width:71.352000px;}
._18{width:72.648000px;}
._19{width:74.004000px;}
._3b{width:75.816000px;}
._33{width:77.880000px;}
._6a{width:79.584000px;}
._29{width:81.264000px;}
._5d{width:82.968000px;}
._37{width:84.888000px;}
._38{width:86.592000px;}
._61{width:87.840000px;}
._58{width:91.578000px;}
._3f{width:92.664000px;}
._39{width:93.816000px;}
._3a{width:94.896000px;}
._24{width:99.000000px;}
._28{width:100.440000px;}
._1b{width:101.880000px;}
._40{width:103.608000px;}
._57{width:104.628000px;}
._5b{width:107.124000px;}
._3e{width:108.216000px;}
._68{width:109.440000px;}
._4b{width:116.928000px;}
._64{width:118.656000px;}
._52{width:120.294000px;}
._53{width:121.662000px;}
._62{width:124.632000px;}
._63{width:126.000000px;}
._5a{width:129.090000px;}
._56{width:130.158000px;}
._2e{width:135.360000px;}
._55{width:143.676000px;}
._60{width:146.340000px;}
._51{width:148.566000px;}
._2f{width:149.880000px;}
._30{width:150.912000px;}
._42{width:154.800000px;}
._41{width:155.952000px;}
._54{width:157.626000px;}
._47{width:170.208000px;}
._44{width:171.264000px;}
._45{width:172.728000px;}
._67{width:179.208000px;}
._5e{width:183.168000px;}
._6b{width:190.296000px;}
._6c{width:192.228000px;}
._5c{width:197.976000px;}
._5f{width:202.680000px;}
._4c{width:244.944000px;}
._4d{width:246.144000px;}
._69{width:324.576000px;}
._66{width:368.568000px;}
._46{width:609.624000px;}
._65{width:668.952000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.780000px;}
.y71{bottom:3.795000px;}
.ybd{bottom:4.500000px;}
.ydc{bottom:5.400000px;}
.y68{bottom:6.120000px;}
.yea{bottom:7.185000px;}
.y111{bottom:8.280000px;}
.ye7{bottom:10.425000px;}
.y173{bottom:10.440000px;}
.y144{bottom:10.965000px;}
.ye3{bottom:11.175000px;}
.y69{bottom:11.340000px;}
.y124{bottom:11.865000px;}
.y64{bottom:12.420000px;}
.y6f{bottom:12.435000px;}
.y141{bottom:12.990000px;}
.yba{bottom:13.140000px;}
.y194{bottom:13.305000px;}
.y12a{bottom:13.680000px;}
.y66{bottom:14.760000px;}
.yd8{bottom:16.365000px;}
.y164{bottom:16.725000px;}
.yd5{bottom:16.755000px;}
.y13a{bottom:16.920000px;}
.y8c{bottom:17.610000px;}
.yfe{bottom:17.625000px;}
.yb5{bottom:17.745000px;}
.ycd{bottom:17.820000px;}
.y16a{bottom:18.360000px;}
.y16e{bottom:18.375000px;}
.y17a{bottom:18.390000px;}
.ycb{bottom:18.540000px;}
.y1bf{bottom:18.555000px;}
.y1b9{bottom:18.720000px;}
.y168{bottom:19.080000px;}
.yf1{bottom:19.260000px;}
.y15e{bottom:19.275000px;}
.yef{bottom:19.290000px;}
.y103{bottom:19.440000px;}
.y116{bottom:19.470000px;}
.y74{bottom:20.880000px;}
.y61{bottom:21.060000px;}
.y6c{bottom:21.075000px;}
.yd1{bottom:21.435000px;}
.yc0{bottom:22.005000px;}
.y67{bottom:23.400000px;}
.y18c{bottom:23.775000px;}
.y190{bottom:23.925000px;}
.yc3{bottom:23.940000px;}
.yc6{bottom:24.660000px;}
.y152{bottom:25.020000px;}
.y154{bottom:25.185000px;}
.ybc{bottom:25.200000px;}
.y134{bottom:26.265000px;}
.y131{bottom:26.280000px;}
.y12e{bottom:26.475000px;}
.ye9{bottom:27.885000px;}
.y10f{bottom:28.800000px;}
.y110{bottom:28.980000px;}
.y77{bottom:29.520000px;}
.y63{bottom:29.700000px;}
.y6e{bottom:29.715000px;}
.y10d{bottom:30.780000px;}
.ye6{bottom:31.125000px;}
.y172{bottom:31.140000px;}
.y143{bottom:31.665000px;}
.y108{bottom:31.695000px;}
.ye0{bottom:31.860000px;}
.ye2{bottom:31.875000px;}
.y122{bottom:32.385000px;}
.y11c{bottom:32.415000px;}
.y123{bottom:32.565000px;}
.y120{bottom:32.595000px;}
.y1ab{bottom:33.285000px;}
.y1ac{bottom:33.465000px;}
.y1a7{bottom:33.495000px;}
.y150{bottom:33.645000px;}
.y13d{bottom:33.660000px;}
.y140{bottom:33.690000px;}
.y192{bottom:33.825000px;}
.y14b{bottom:33.870000px;}
.y193{bottom:34.005000px;}
.y1ae{bottom:34.200000px;}
.y1a2{bottom:34.365000px;}
.y1af{bottom:34.380000px;}
.y19d{bottom:34.395000px;}
.yb3{bottom:34.560000px;}
.y1bc{bottom:35.820000px;}
.y1bd{bottom:36.000000px;}
.y181{bottom:36.720000px;}
.y17e{bottom:36.735000px;}
.y184{bottom:36.750000px;}
.yf6{bottom:36.915000px;}
.yd7{bottom:37.065000px;}
.yfa{bottom:37.095000px;}
.y162{bottom:37.245000px;}
.y163{bottom:37.425000px;}
.yd3{bottom:37.440000px;}
.yfc{bottom:38.145000px;}
.y73{bottom:38.205000px;}
.yfd{bottom:38.325000px;}
.y60{bottom:38.340000px;}
.y16c{bottom:39.060000px;}
.y170{bottom:39.825000px;}
.y15b{bottom:39.960000px;}
.y15c{bottom:40.140000px;}
.ycf{bottom:42.120000px;}
.ybf{bottom:42.705000px;}
.y88{bottom:44.280000px;}
.y18a{bottom:44.460000px;}
.yc2{bottom:44.640000px;}
.y18e{bottom:44.670000px;}
.y18f{bottom:44.850000px;}
.yc5{bottom:45.360000px;}
.y6d{bottom:46.800000px;}
.y76{bottom:46.845000px;}
.y133{bottom:46.965000px;}
.y130{bottom:46.980000px;}
.y12c{bottom:47.160000px;}
.y10a{bottom:51.525000px;}
.y10c{bottom:51.690000px;}
.ye5{bottom:51.825000px;}
.y106{bottom:52.380000px;}
.ydf{bottom:52.560000px;}
.y119{bottom:53.100000px;}
.y11a{bottom:53.280000px;}
.y11e{bottom:53.460000px;}
.y1a9{bottom:53.985000px;}
.y1aa{bottom:54.165000px;}
.y1a5{bottom:54.180000px;}
.y14d{bottom:54.345000px;}
.y13c{bottom:54.360000px;}
.y13f{bottom:54.390000px;}
.y14f{bottom:54.540000px;}
.y149{bottom:54.570000px;}
.y14a{bottom:54.750000px;}
.y1a0{bottom:54.930000px;}
.y19a{bottom:55.080000px;}
.y1a1{bottom:55.110000px;}
.y19b{bottom:55.260000px;}
.y70{bottom:55.440000px;}
.ya9{bottom:55.470000px;}
.y75{bottom:55.485000px;}
.y89{bottom:56.910000px;}
.y17c{bottom:57.420000px;}
.y183{bottom:57.450000px;}
.yf3{bottom:57.600000px;}
.yf4{bottom:57.780000px;}
.yf8{bottom:57.960000px;}
.y3{bottom:58.536000px;}
.y8e{bottom:76.356000px;}
.y2{bottom:78.696000px;}
.y87{bottom:79.350000px;}
.yb1{bottom:79.530000px;}
.y8d{bottom:96.696000px;}
.y83{bottom:96.870000px;}
.yaa{bottom:97.095000px;}
.y2e{bottom:102.276000px;}
.y58{bottom:121.356000px;}
.y84{bottom:123.945000px;}
.y231{bottom:124.776000px;}
.y2d{bottom:126.036000px;}
.y1ed{bottom:126.936000px;}
.y1dd{bottom:130.176000px;}
.ya6{bottom:136.116000px;}
.y100{bottom:136.656000px;}
.y1f9{bottom:137.196000px;}
.yab{bottom:138.705000px;}
.y1b4{bottom:144.936000px;}
.y57{bottom:145.296000px;}
.y230{bottom:145.476000px;}
.y81{bottom:145.836000px;}
.y1a3{bottom:146.016000px;}
.y126{bottom:146.196000px;}
.y2c{bottom:149.976000px;}
.y1ec{bottom:150.870000px;}
.y85{bottom:151.020000px;}
.y186{bottom:153.930000px;}
.y202{bottom:155.190000px;}
.yd9{bottom:155.910000px;}
.y145{bottom:156.450000px;}
.yff{bottom:157.890000px;}
.ya5{bottom:159.870000px;}
.y80{bottom:162.210000px;}
.y82{bottom:163.080000px;}
.y22f{bottom:166.170000px;}
.y165{bottom:166.530000px;}
.y125{bottom:166.890000px;}
.y59{bottom:168.690000px;}
.y56{bottom:169.050000px;}
.yb2{bottom:169.560000px;}
.yd6{bottom:172.845000px;}
.y142{bottom:173.565000px;}
.y2b{bottom:173.730000px;}
.y1eb{bottom:174.630000px;}
.y185{bottom:174.810000px;}
.yfb{bottom:174.825000px;}
.y201{bottom:175.890000px;}
.y1dc{bottom:177.690000px;}
.y86{bottom:178.095000px;}
.y1f8{bottom:178.590000px;}
.yac{bottom:180.330000px;}
.y1b3{bottom:180.570000px;}
.y161{bottom:183.465000px;}
.ya4{bottom:183.630000px;}
.y121{bottom:183.825000px;}
.y22e{bottom:186.870000px;}
.y182{bottom:191.745000px;}
.y55{bottom:192.810000px;}
.y200{bottom:196.590000px;}
.y2a{bottom:197.490000px;}
.y1ea{bottom:198.390000px;}
.y1f7{bottom:199.290000px;}
.y1db{bottom:201.450000px;}
.y8b{bottom:206.460000px;}
.ya3{bottom:207.390000px;}
.y22d{bottom:207.570000px;}
.y1b2{bottom:216.210000px;}
.y54{bottom:216.570000px;}
.y1ff{bottom:217.290000px;}
.y1f6{bottom:219.990000px;}
.y29{bottom:221.250000px;}
.y13e{bottom:221.445000px;}
.yad{bottom:221.940000px;}
.y1e9{bottom:222.150000px;}
.y1da{bottom:225.390000px;}
.yd4{bottom:226.140000px;}
.yd2{bottom:226.155000px;}
.y8a{bottom:227.160000px;}
.y22c{bottom:228.270000px;}
.yf9{bottom:229.380000px;}
.yf7{bottom:229.395000px;}
.ya2{bottom:231.330000px;}
.y11f{bottom:232.620000px;}
.y11d{bottom:232.635000px;}
.y160{bottom:237.120000px;}
.y15f{bottom:237.135000px;}
.y1fe{bottom:237.990000px;}
.y53{bottom:240.510000px;}
.y1f5{bottom:240.690000px;}
.y28{bottom:245.190000px;}
.y1e8{bottom:246.090000px;}
.y22b{bottom:248.970000px;}
.y1d9{bottom:249.150000px;}
.ya1{bottom:255.090000px;}
.y19f{bottom:255.120000px;}
.y19e{bottom:255.135000px;}
.y1fd{bottom:258.690000px;}
.y1f4{bottom:261.390000px;}
.yae{bottom:263.550000px;}
.y52{bottom:264.270000px;}
.y180{bottom:265.380000px;}
.y17f{bottom:265.395000px;}
.y27{bottom:268.950000px;}
.y22a{bottom:269.490000px;}
.y1e7{bottom:269.850000px;}
.y1d8{bottom:272.910000px;}
.ya0{bottom:278.850000px;}
.y1fc{bottom:279.390000px;}
.yd0{bottom:279.780000px;}
.yce{bottom:279.795000px;}
.y1f3{bottom:282.135000px;}
.y51{bottom:288.075000px;}
.y229{bottom:290.235000px;}
.y13b{bottom:292.035000px;}
.y26{bottom:292.755000px;}
.y15d{bottom:293.460000px;}
.y15a{bottom:293.475000px;}
.y1e6{bottom:293.655000px;}
.y1d7{bottom:296.715000px;}
.y1fb{bottom:300.135000px;}
.y11b{bottom:302.280000px;}
.y118{bottom:302.295000px;}
.y9f{bottom:302.655000px;}
.yf5{bottom:303.540000px;}
.yf2{bottom:303.555000px;}
.yaf{bottom:305.175000px;}
.y228{bottom:310.935000px;}
.y50{bottom:311.835000px;}
.y25{bottom:316.515000px;}
.y1e5{bottom:317.415000px;}
.y1f2{bottom:320.295000px;}
.y1d6{bottom:320.655000px;}
.y1fa{bottom:320.835000px;}
.y19c{bottom:326.580000px;}
.y9e{bottom:326.595000px;}
.y227{bottom:331.635000px;}
.yb4{bottom:331.920000px;}
.y4f{bottom:335.595000px;}
.ycc{bottom:338.835000px;}
.y17d{bottom:339.000000px;}
.y17b{bottom:339.015000px;}
.y24{bottom:340.455000px;}
.y1e4{bottom:341.535000px;}
.y1d5{bottom:344.415000px;}
.yb0{bottom:346.785000px;}
.y239{bottom:348.555000px;}
.y9d{bottom:350.355000px;}
.y159{bottom:350.535000px;}
.y226{bottom:352.335000px;}
.y1f1{bottom:359.175000px;}
.y4e{bottom:359.535000px;}
.y139{bottom:363.315000px;}
.y23{bottom:364.215000px;}
.y1e3{bottom:366.555000px;}
.y1d4{bottom:368.175000px;}
.y238{bottom:369.435000px;}
.y117{bottom:372.495000px;}
.yca{bottom:372.855000px;}
.y225{bottom:373.035000px;}
.y9c{bottom:374.115000px;}
.yf0{bottom:378.435000px;}
.y4d{bottom:383.295000px;}
.y158{bottom:386.355000px;}
.y22{bottom:387.975000px;}
.y237{bottom:390.135000px;}
.y1e2{bottom:390.495000px;}
.y1d3{bottom:391.935000px;}
.y224{bottom:393.735000px;}
.y138{bottom:396.435000px;}
.y9b{bottom:397.875000px;}
.y199{bottom:398.775000px;}
.y4c{bottom:407.055000px;}
.y115{bottom:408.135000px;}
.y236{bottom:410.835000px;}
.y21{bottom:411.735000px;}
.yc9{bottom:412.455000px;}
.y179{bottom:413.535000px;}
.yee{bottom:414.075000px;}
.y1e1{bottom:414.255000px;}
.y223{bottom:414.435000px;}
.y1d2{bottom:415.875000px;}
.y7f{bottom:420.945000px;}
.y9a{bottom:421.815000px;}
.y157{bottom:428.685000px;}
.y4b{bottom:430.815000px;}
.y235{bottom:431.535000px;}
.y198{bottom:434.445000px;}
.y222{bottom:435.135000px;}
.y20{bottom:435.495000px;}
.y137{bottom:436.785000px;}
.y1e0{bottom:438.015000px;}
.y1d1{bottom:439.635000px;}
.y7e{bottom:441.645000px;}
.y99{bottom:445.575000px;}
.yc8{bottom:447.945000px;}
.y178{bottom:448.125000px;}
.y114{bottom:450.105000px;}
.y234{bottom:452.235000px;}
.yed{bottom:454.605000px;}
.y4a{bottom:454.755000px;}
.y221{bottom:455.835000px;}
.y136{bottom:458.025000px;}
.y1f{bottom:459.435000px;}
.y1df{bottom:461.775000px;}
.y7d{bottom:462.345000px;}
.y1d0{bottom:463.395000px;}
.y1f0{bottom:463.575000px;}
.y156{bottom:463.965000px;}
.yc7{bottom:469.185000px;}
.y98{bottom:469.335000px;}
.y233{bottom:472.935000px;}
.yec{bottom:475.665000px;}
.y1b1{bottom:476.205000px;}
.y197{bottom:476.385000px;}
.y220{bottom:476.535000px;}
.y49{bottom:478.515000px;}
.y135{bottom:478.725000px;}
.y7c{bottom:483.045000px;}
.y1e{bottom:483.195000px;}
.y155{bottom:485.205000px;}
.y1de{bottom:485.895000px;}
.y113{bottom:485.925000px;}
.yc4{bottom:486.105000px;}
.y1cf{bottom:487.155000px;}
.y1ef{bottom:487.335000px;}
.y177{bottom:490.245000px;}
.y97{bottom:493.095000px;}
.y232{bottom:495.435000px;}
.y132{bottom:495.660000px;}
.yeb{bottom:496.365000px;}
.y21f{bottom:497.235000px;}
.y196{bottom:497.265000px;}
.y1b0{bottom:497.445000px;}
.y151{bottom:502.125000px;}
.y153{bottom:502.140000px;}
.y48{bottom:502.275000px;}
.y7b{bottom:503.745000px;}
.y1d{bottom:506.595000px;}
.y112{bottom:507.165000px;}
.y1ce{bottom:511.095000px;}
.y176{bottom:511.125000px;}
.ye8{bottom:513.480000px;}
.y1ad{bottom:514.365000px;}
.y96{bottom:517.035000px;}
.y21e{bottom:517.935000px;}
.y195{bottom:518.325000px;}
.y10e{bottom:524.085000px;}
.y7a{bottom:524.445000px;}
.y47{bottom:526.035000px;}
.y175{bottom:531.825000px;}
.y1cd{bottom:534.855000px;}
.y191{bottom:535.260000px;}
.y21d{bottom:538.635000px;}
.y95{bottom:540.825000px;}
.y14e{bottom:543.525000px;}
.y14c{bottom:543.540000px;}
.y79{bottom:545.145000px;}
.y1c{bottom:545.865000px;}
.yc1{bottom:547.665000px;}
.y171{bottom:548.925000px;}
.y174{bottom:548.940000px;}
.y46{bottom:550.005000px;}
.ye4{bottom:557.580000px;}
.y1cc{bottom:558.645000px;}
.y12f{bottom:558.825000px;}
.y21c{bottom:559.365000px;}
.y94{bottom:564.585000px;}
.y1a8{bottom:564.960000px;}
.y78{bottom:565.845000px;}
.y1b{bottom:566.565000px;}
.y109{bottom:569.265000px;}
.y10b{bottom:569.280000px;}
.y45{bottom:573.765000px;}
.y21b{bottom:580.065000px;}
.y1cb{bottom:582.405000px;}
.y1ee{bottom:582.585000px;}
.y72{bottom:582.765000px;}
.y18d{bottom:585.480000px;}
.y1a{bottom:587.265000px;}
.y93{bottom:588.345000px;}
.y16f{bottom:596.265000px;}
.y44{bottom:597.525000px;}
.y21a{bottom:600.765000px;}
.y1ca{bottom:606.345000px;}
.y19{bottom:607.965000px;}
.ybe{bottom:608.505000px;}
.y92{bottom:611.925000px;}
.ya7{bottom:612.285000px;}
.y148{bottom:614.280000px;}
.y43{bottom:621.285000px;}
.y219{bottom:621.465000px;}
.y12d{bottom:622.035000px;}
.y12b{bottom:622.050000px;}
.ye1{bottom:625.635000px;}
.yde{bottom:625.650000px;}
.y18{bottom:628.665000px;}
.y1c9{bottom:630.105000px;}
.y1a6{bottom:635.355000px;}
.y1a4{bottom:635.370000px;}
.y107{bottom:637.155000px;}
.y105{bottom:637.170000px;}
.y218{bottom:642.165000px;}
.y42{bottom:645.225000px;}
.y18b{bottom:646.515000px;}
.y189{bottom:646.530000px;}
.y91{bottom:647.565000px;}
.y17{bottom:649.365000px;}
.y6b{bottom:651.735000px;}
.y6a{bottom:651.750000px;}
.y16d{bottom:652.275000px;}
.y16b{bottom:652.290000px;}
.y1c8{bottom:653.865000px;}
.y217{bottom:662.865000px;}
.ybb{bottom:668.130000px;}
.y41{bottom:668.985000px;}
.y16{bottom:670.065000px;}
.y1c7{bottom:677.625000px;}
.y90{bottom:683.565000px;}
.y147{bottom:685.950000px;}
.y129{bottom:686.130000px;}
.y15{bottom:690.765000px;}
.y40{bottom:692.745000px;}
.ydd{bottom:695.130000px;}
.y1c6{bottom:701.385000px;}
.y216{bottom:704.265000px;}
.y104{bottom:706.650000px;}
.y188{bottom:708.090000px;}
.y169{bottom:708.270000px;}
.yb9{bottom:709.530000px;}
.y14{bottom:711.465000px;}
.y8f{bottom:715.065000px;}
.y128{bottom:716.010000px;}
.ya8{bottom:716.220000px;}
.y3f{bottom:716.505000px;}
.y65{bottom:721.590000px;}
.y215{bottom:724.965000px;}
.y1c5{bottom:725.325000px;}
.y13{bottom:732.165000px;}
.ydb{bottom:737.250000px;}
.y3e{bottom:740.445000px;}
.y102{bottom:742.290000px;}
.y167{bottom:742.830000px;}
.yb8{bottom:743.010000px;}
.y187{bottom:743.910000px;}
.y214{bottom:745.665000px;}
.y12{bottom:752.865000px;}
.y1c4{bottom:760.965000px;}
.y5f{bottom:761.550000px;}
.y127{bottom:763.530000px;}
.yb7{bottom:763.710000px;}
.y146{bottom:763.890000px;}
.y3d{bottom:764.205000px;}
.y213{bottom:766.365000px;}
.y11{bottom:773.565000px;}
.y1c3{bottom:781.845000px;}
.y101{bottom:784.230000px;}
.yb6{bottom:784.410000px;}
.y166{bottom:784.590000px;}
.yda{bottom:784.770000px;}
.y212{bottom:787.065000px;}
.y3c{bottom:787.965000px;}
.y10{bottom:794.265000px;}
.y1c2{bottom:802.590000px;}
.y211{bottom:807.810000px;}
.y3b{bottom:811.770000px;}
.yf{bottom:815.010000px;}
.y1c1{bottom:819.495000px;}
.y1c0{bottom:819.510000px;}
.y5e{bottom:827.280000px;}
.y210{bottom:828.510000px;}
.y3a{bottom:835.530000px;}
.ye{bottom:835.710000px;}
.y5d{bottom:848.520000px;}
.y20f{bottom:849.210000px;}
.yd{bottom:856.050000px;}
.y39{bottom:859.470000px;}
.y1be{bottom:868.995000px;}
.y1bb{bottom:869.010000px;}
.y20e{bottom:869.910000px;}
.y38{bottom:883.230000px;}
.y20d{bottom:890.610000px;}
.yc{bottom:895.110000px;}
.y37{bottom:906.990000px;}
.y20c{bottom:911.310000px;}
.yb{bottom:915.990000px;}
.y1ba{bottom:919.230000px;}
.y36{bottom:930.750000px;}
.y20b{bottom:932.010000px;}
.ya{bottom:939.570000px;}
.y1b8{bottom:951.450000px;}
.y20a{bottom:952.710000px;}
.y35{bottom:954.690000px;}
.y9{bottom:963.330000px;}
.y209{bottom:973.410000px;}
.y5c{bottom:978.090000px;}
.y34{bottom:978.450000px;}
.y8{bottom:987.090000px;}
.y1b7{bottom:989.970000px;}
.y208{bottom:994.110000px;}
.y5b{bottom:1001.850000px;}
.y33{bottom:1002.210000px;}
.y7{bottom:1010.670000px;}
.y207{bottom:1014.810000px;}
.y5a{bottom:1025.610000px;}
.y32{bottom:1025.970000px;}
.y6{bottom:1034.430000px;}
.y206{bottom:1035.510000px;}
.y31{bottom:1049.910000px;}
.y205{bottom:1056.210000px;}
.y1b6{bottom:1061.460000px;}
.y5{bottom:1072.620000px;}
.y30{bottom:1073.700000px;}
.y204{bottom:1076.940000px;}
.y4{bottom:1092.960000px;}
.y1b5{bottom:1097.100000px;}
.y2f{bottom:1097.460000px;}
.y203{bottom:1097.640000px;}
.y1{bottom:1118.520000px;}
.h27{height:21.585000px;}
.h18{height:29.325000px;}
.h46{height:29.865000px;}
.h81{height:32.205000px;}
.h80{height:32.385000px;}
.h4f{height:33.105000px;}
.h1f{height:34.005000px;}
.h4e{height:34.050000px;}
.h64{height:34.545000px;}
.h6c{height:34.596000px;}
.h1e{height:34.725000px;}
.h63{height:35.265000px;}
.h31{height:35.625000px;}
.h6b{height:35.640000px;}
.h30{height:35.670000px;}
.h76{height:35.676000px;}
.h3a{height:35.805000px;}
.h5e{height:35.820000px;}
.h3e{height:35.850000px;}
.he{height:38.158594px;}
.hd{height:39.225000px;}
.h19{height:41.385000px;}
.h5d{height:41.395500px;}
.h5c{height:41.400000px;}
.h2d{height:44.085000px;}
.h2e{height:44.095500px;}
.h2f{height:44.100000px;}
.h3d{height:45.175500px;}
.h3c{height:45.180000px;}
.h6a{height:47.335500px;}
.h69{height:47.340000px;}
.h54{height:47.865000px;}
.h55{height:47.871000px;}
.h56{height:47.880000px;}
.h45{height:48.801000px;}
.h82{height:49.485000px;}
.h83{height:49.491000px;}
.h84{height:49.500000px;}
.h75{height:50.205000px;}
.h6{height:50.273438px;}
.h7f{height:50.580000px;}
.ha{height:51.825000px;}
.h26{height:53.301000px;}
.h23{height:53.625000px;}
.h24{height:53.635500px;}
.h25{height:53.640000px;}
.h62{height:53.661000px;}
.h14{height:53.709961px;}
.h38{height:54.561000px;}
.h39{height:54.562500px;}
.h65{height:55.245000px;}
.h66{height:55.251000px;}
.h67{height:55.260000px;}
.h68{height:56.002500px;}
.h5f{height:56.325000px;}
.h60{height:56.335500px;}
.h61{height:56.340000px;}
.h20{height:58.305000px;}
.h21{height:58.315500px;}
.h22{height:58.320000px;}
.hb{height:58.651172px;}
.h1a{height:58.882500px;}
.hc{height:59.038594px;}
.h15{height:59.439023px;}
.h71{height:60.825000px;}
.h72{height:60.831000px;}
.h1c{height:60.835500px;}
.h1b{height:60.840000px;}
.h73{height:61.041000px;}
.h74{height:61.042500px;}
.h1d{height:61.560000px;}
.h4b{height:63.165000px;}
.h4c{height:63.175500px;}
.h4d{height:63.180000px;}
.h4a{height:63.202500px;}
.h47{height:63.345000px;}
.h48{height:63.351000px;}
.h49{height:63.360000px;}
.h1{height:65.884219px;}
.h3{height:66.757500px;}
.h3b{height:67.882500px;}
.h2b{height:68.061000px;}
.h2c{height:68.062500px;}
.h28{height:68.745000px;}
.h29{height:68.751000px;}
.h2a{height:68.760000px;}
.hf{height:68.925000px;}
.h10{height:68.931000px;}
.h11{height:68.940000px;}
.h12{height:68.962500px;}
.h3f{height:69.465000px;}
.h40{height:69.475500px;}
.h41{height:69.480000px;}
.h42{height:69.645000px;}
.h43{height:69.655500px;}
.h44{height:69.660000px;}
.h7d{height:70.401000px;}
.h7e{height:70.402500px;}
.h7b{height:70.545000px;}
.h7c{height:70.551000px;}
.h51{height:70.555500px;}
.h50{height:70.560000px;}
.h52{height:70.581000px;}
.h53{height:70.582500px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.h59{height:70.725000px;}
.h5a{height:70.735500px;}
.h5b{height:70.740000px;}
.h16{height:70.805391px;}
.h57{height:70.941000px;}
.h58{height:70.942500px;}
.h7a{height:71.301000px;}
.h77{height:71.445000px;}
.h78{height:71.455500px;}
.h79{height:71.460000px;}
.h4{height:72.562500px;}
.h6d{height:73.605000px;}
.h6e{height:73.615500px;}
.h6f{height:73.620000px;}
.h70{height:73.641000px;}
.h32{height:73.965000px;}
.h33{height:73.975500px;}
.h34{height:73.980000px;}
.h35{height:74.145000px;}
.h36{height:74.155500px;}
.h37{height:74.160000px;}
.h8{height:74.704922px;}
.h2{height:90.703125px;}
.h13{height:253.440000px;}
.h17{height:358.920000px;}
.h9{height:918.000000px;}
.h0{height:1188.000000px;}
.w82{width:16.545000px;}
.w8b{width:27.705000px;}
.w68{width:32.385000px;}
.w7e{width:34.725000px;}
.wa4{width:35.265000px;}
.wd5{width:35.805000px;}
.wd7{width:35.985000px;}
.wd0{width:36.000000px;}
.wc8{width:38.685000px;}
.w76{width:44.805000px;}
.w7{width:45.345000px;}
.w15{width:45.351000px;}
.w16{width:45.355500px;}
.wd{width:45.360000px;}
.wb{width:45.381000px;}
.w14{width:45.382500px;}
.wf{width:45.396000px;}
.w18{width:45.405000px;}
.w4{width:45.525000px;}
.w12{width:45.531000px;}
.w13{width:45.535500px;}
.wc{width:45.540000px;}
.w2{width:47.376000px;}
.w8{width:48.585000px;}
.w19{width:48.595500px;}
.w1a{width:48.600000px;}
.w17{width:48.775500px;}
.we{width:48.780000px;}
.wd6{width:51.105000px;}
.wdf{width:51.111000px;}
.we0{width:51.120000px;}
.wd4{width:51.825000px;}
.wdd{width:51.835500px;}
.wde{width:51.840000px;}
.wdb{width:52.015500px;}
.wd2{width:52.020000px;}
.wcf{width:52.041000px;}
.wd9{width:52.042500px;}
.w3{width:54.705000px;}
.w10{width:54.711000px;}
.w11{width:54.720000px;}
.wce{width:57.045000px;}
.wd8{width:57.051000px;}
.wda{width:57.055500px;}
.wd1{width:57.060000px;}
.w3f{width:57.585000px;}
.w46{width:57.591000px;}
.w32{width:57.595500px;}
.w27{width:57.600000px;}
.w21{width:57.621000px;}
.w38{width:57.622500px;}
.w2a{width:57.765000px;}
.w35{width:57.775500px;}
.w36{width:57.780000px;}
.w9f{width:57.801000px;}
.wa0{width:57.802500px;}
.wd3{width:58.536000px;}
.wdc{width:58.545000px;}
.wa{width:59.205000px;}
.w25{width:59.241000px;}
.w30{width:59.242500px;}
.w7a{width:62.805000px;}
.w96{width:63.165000px;}
.w24{width:63.705000px;}
.w2e{width:63.711000px;}
.w5e{width:63.715500px;}
.w2f{width:63.720000px;}
.w58{width:63.756000px;}
.w61{width:63.765000px;}
.w59{width:63.885000px;}
.w5f{width:63.895500px;}
.w56{width:63.900000px;}
.w43{width:64.605000px;}
.w4a{width:64.615500px;}
.w4b{width:64.620000px;}
.w6c{width:64.785000px;}
.w71{width:64.795500px;}
.w6b{width:64.800000px;}
.w22{width:65.145000px;}
.w2b{width:65.151000px;}
.w37{width:65.155500px;}
.w2c{width:65.160000px;}
.w6a{width:65.181000px;}
.w70{width:65.182500px;}
.w8d{width:65.325000px;}
.w33{width:65.335500px;}
.w28{width:65.340000px;}
.w40{width:65.361000px;}
.w47{width:65.362500px;}
.wa5{width:65.376000px;}
.wa7{width:65.385000px;}
.w69{width:65.685000px;}
.w6e{width:65.691000px;}
.w91{width:65.695500px;}
.w6f{width:65.700000px;}
.w6d{width:65.721000px;}
.w72{width:65.722500px;}
.w84{width:65.736000px;}
.w87{width:65.745000px;}
.w52{width:66.405000px;}
.w9a{width:66.595500px;}
.w98{width:66.600000px;}
.w3e{width:67.125000px;}
.w45{width:67.131000px;}
.w48{width:67.135500px;}
.w41{width:67.140000px;}
.w8e{width:67.161000px;}
.w92{width:67.162500px;}
.w29{width:67.176000px;}
.w34{width:67.185000px;}
.w23{width:67.305000px;}
.w2d{width:67.311000px;}
.w31{width:67.315500px;}
.w26{width:67.320000px;}
.w44{width:67.341000px;}
.w4c{width:67.342500px;}
.w42{width:67.356000px;}
.w49{width:67.365000px;}
.w7b{width:72.741000px;}
.w7c{width:72.742500px;}
.w85{width:73.605000px;}
.w9b{width:73.611000px;}
.w86{width:73.615500px;}
.w83{width:73.620000px;}
.w8c{width:73.785000px;}
.w8f{width:73.791000px;}
.w90{width:73.800000px;}
.w97{width:73.821000px;}
.w99{width:73.822500px;}
.w54{width:74.325000px;}
.w64{width:74.331000px;}
.w60{width:74.335500px;}
.w57{width:74.340000px;}
.w53{width:74.505000px;}
.w5b{width:74.511000px;}
.w5c{width:74.520000px;}
.w55{width:74.541000px;}
.w5d{width:74.542500px;}
.wb5{width:74.916000px;}
.wbf{width:74.925000px;}
.wb7{width:75.405000px;}
.wc2{width:75.415500px;}
.wc3{width:75.420000px;}
.wb2{width:75.441000px;}
.wbc{width:75.442500px;}
.wb0{width:79.545000px;}
.wb9{width:79.551000px;}
.wba{width:79.560000px;}
.wb6{width:79.725000px;}
.wc0{width:79.735500px;}
.wc1{width:79.740000px;}
.wbd{width:79.915500px;}
.wb3{width:79.920000px;}
.wb8{width:79.941000px;}
.wc4{width:79.942500px;}
.wb1{width:80.805000px;}
.wbb{width:80.811000px;}
.wbe{width:80.815500px;}
.wb4{width:80.820000px;}
.w5a{width:85.305000px;}
.w62{width:85.311000px;}
.w63{width:85.320000px;}
.wc9{width:88.731000px;}
.w4d{width:90.036000px;}
.wa6{width:91.101000px;}
.wa8{width:91.102500px;}
.w3d{width:96.141000px;}
.w39{width:103.176000px;}
.w1d{width:103.356000px;}
.wac{width:104.256000px;}
.w9e{width:115.402500px;}
.w9{width:136.281000px;}
.wcc{width:142.365000px;}
.wcb{width:146.016000px;}
.wca{width:146.181000px;}
.wcd{width:146.541000px;}
.w9d{width:171.210000px;}
.w6{width:181.470000px;}
.w74{width:190.080000px;}
.w3c{width:197.130000px;}
.w50{width:201.990000px;}
.w4f{width:202.155000px;}
.waa{width:203.070000px;}
.w66{width:203.580000px;}
.w78{width:208.080000px;}
.wa2{width:210.990000px;}
.w89{width:213.870000px;}
.w4e{width:215.265000px;}
.w3b{width:222.480000px;}
.w3a{width:222.675000px;}
.w1e{width:222.825000px;}
.w80{width:222.870000px;}
.wc6{width:223.050000px;}
.w20{width:223.950000px;}
.w94{width:233.310000px;}
.w51{width:234.195000px;}
.w77{width:237.075000px;}
.wc5{width:239.955000px;}
.wa1{width:241.215000px;}
.w7f{width:247.515000px;}
.wa9{width:249.315000px;}
.w93{width:250.215000px;}
.w88{width:254.715000px;}
.w9c{width:255.255000px;}
.w73{width:255.615000px;}
.w1f{width:256.335000px;}
.w65{width:256.875000px;}
.w95{width:270.915000px;}
.wae{width:275.430000px;}
.wad{width:275.775000px;}
.w7d{width:284.835000px;}
.wa3{width:286.755000px;}
.wc7{width:293.955000px;}
.wab{width:298.635000px;}
.w79{width:302.835000px;}
.waf{width:303.315000px;}
.w8a{width:304.395000px;}
.w67{width:309.315000px;}
.w75{width:314.880000px;}
.w5{width:321.315000px;}
.w81{width:339.135000px;}
.w1c{width:684.000000px;}
.w1b{width:684.720000px;}
.w0{width:918.000000px;}
.w1{width:1188.000000px;}
.x2c{left:-6.675000px;}
.x0{left:0.000000px;}
.x38{left:2.268000px;}
.x39{left:6.408000px;}
.x2d{left:7.950000px;}
.xe{left:9.000000px;}
.x26{left:10.080000px;}
.x23{left:11.160000px;}
.x13{left:13.125000px;}
.x21{left:14.580000px;}
.x3b{left:16.488000px;}
.x11{left:18.165000px;}
.xf{left:20.016000px;}
.x1d{left:21.816000px;}
.x65{left:23.040000px;}
.x1c{left:24.120000px;}
.x49{left:25.545000px;}
.x5f{left:27.360000px;}
.x33{left:32.976000px;}
.x64{left:36.540000px;}
.x31{left:41.580000px;}
.x5d{left:45.000000px;}
.x3a{left:46.290000px;}
.x30{left:48.420000px;}
.x45{left:51.660000px;}
.x2f{left:55.260000px;}
.x1a{left:61.770000px;}
.x3e{left:66.930000px;}
.x16{left:84.450000px;}
.x32{left:87.195000px;}
.x3f{left:95.760000px;}
.x5a{left:98.625000px;}
.x41{left:102.405000px;}
.x5c{left:103.665000px;}
.x1{left:117.036000px;}
.x5{left:123.336000px;}
.x7{left:129.816000px;}
.x8{left:134.676000px;}
.x59{left:156.465000px;}
.x10{left:164.385000px;}
.x3{left:167.970000px;}
.xb5{left:170.130000px;}
.xa{left:186.510000px;}
.x50{left:198.945000px;}
.x98{left:200.025000px;}
.xa8{left:205.785000px;}
.x6{left:212.970000px;}
.x35{left:217.155000px;}
.x12{left:219.105000px;}
.x4{left:220.350000px;}
.x5e{left:222.885000px;}
.x68{left:229.185000px;}
.x46{left:230.445000px;}
.x3d{left:244.155000px;}
.xac{left:262.845000px;}
.x14{left:264.645000px;}
.x9c{left:279.585000px;}
.xb{left:293.610000px;}
.x69{left:296.505000px;}
.x47{left:297.765000px;}
.x3c{left:307.470000px;}
.x1e{left:310.005000px;}
.x36{left:315.390000px;}
.x52{left:331.245000px;}
.x9{left:335.235000px;}
.x34{left:336.450000px;}
.x84{left:338.445000px;}
.xad{left:350.895000px;}
.xa9{left:351.975000px;}
.x1f{left:355.545000px;}
.x9d{left:360.405000px;}
.x48{left:361.485000px;}
.x5b{left:371.745000px;}
.x42{left:388.125000px;}
.x7b{left:397.515000px;}
.x20{left:400.935000px;}
.x85{left:404.175000px;}
.x8e{left:405.615000px;}
.xae{left:407.955000px;}
.x4a{left:420.735000px;}
.x6a{left:427.395000px;}
.x75{left:436.035000px;}
.x2{left:439.455000px;}
.x22{left:446.475000px;}
.x8b{left:449.175000px;}
.x53{left:454.215000px;}
.xaf{left:459.975000px;}
.x7c{left:462.675000px;}
.x86{left:469.875000px;}
.x8f{left:472.215000px;}
.x99{left:475.815000px;}
.xc{left:478.875000px;}
.x4b{left:488.055000px;}
.x24{left:491.835000px;}
.x6b{left:494.535000px;}
.xb0{left:495.975000px;}
.xaa{left:498.000000px;}
.x60{left:510.015000px;}
.x9e{left:515.775000px;}
.x54{left:521.355000px;}
.x7d{left:529.995000px;}
.xb6{left:532.005000px;}
.x25{left:537.195000px;}
.x90{left:539.355000px;}
.x4c{left:545.655000px;}
.xb1{left:554.520000px;}
.x6c{left:559.335000px;}
.xd{left:574.455000px;}
.x55{left:578.955000px;}
.x15{left:585.975000px;}
.x9f{left:596.595000px;}
.x40{left:602.355000px;}
.x7e{left:603.615000px;}
.x91{left:605.055000px;}
.xb2{left:606.360000px;}
.x4d{left:610.995000px;}
.x66{left:624.495000px;}
.x27{left:631.335000px;}
.xab{left:640.380000px;}
.xb3{left:642.180000px;}
.x43{left:644.475000px;}
.x61{left:648.255000px;}
.x95{left:651.360000px;}
.xa3{left:661.980000px;}
.x82{left:667.560000px;}
.x79{left:669.360000px;}
.x92{left:670.800000px;}
.x28{left:676.740000px;}
.x4e{left:678.180000px;}
.x8c{left:682.500000px;}
.x6d{left:691.680000px;}
.xb4{left:699.810000px;}
.x56{left:711.480000px;}
.x97{left:718.500000px;}
.x29{left:722.100000px;}
.xa5{left:729.120000px;}
.x87{left:734.700000px;}
.x4f{left:735.960000px;}
.x93{left:738.120000px;}
.x9a{left:751.080000px;}
.x6e{left:756.480000px;}
.x17{left:767.460000px;}
.x72{left:769.440000px;}
.x57{left:776.100000px;}
.xa6{left:794.820000px;}
.x88{left:799.320000px;}
.x37{left:801.150000px;}
.x2e{left:803.265000px;}
.x7f{left:810.300000px;}
.x18{left:812.820000px;}
.x94{left:815.325000px;}
.xa0{left:818.400000px;}
.x6f{left:821.640000px;}
.x73{left:834.600000px;}
.x51{left:841.260000px;}
.x62{left:850.260000px;}
.x19{left:861.420000px;}
.x89{left:864.660000px;}
.x44{left:868.440000px;}
.x80{left:875.460000px;}
.x70{left:888.780000px;}
.xa1{left:893.820000px;}
.x74{left:901.920000px;}
.x2a{left:906.960000px;}
.x58{left:908.610000px;}
.x77{left:914.010000px;}
.x63{left:924.810000px;}
.xa7{left:927.690000px;}
.x78{left:928.950000px;}
.x8a{left:931.830000px;}
.x67{left:933.810000px;}
.x96{left:938.130000px;}
.x81{left:942.810000px;}
.x76{left:946.950000px;}
.x2b{left:952.350000px;}
.x8d{left:953.430000px;}
.xa4{left:955.950000px;}
.x71{left:959.550000px;}
.x83{left:971.970000px;}
.xa2{left:973.770000px;}
.x1b{left:997.710000px;}
.x7a{left:1008.510000px;}
.x9b{left:1054.590000px;}
@media print{
.v6{vertical-align:-21.120000pt;}
.v5{vertical-align:-18.560000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls21{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls23{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.135680pt;}
.ls19{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.239467pt;}
.lsc{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.348160pt;}
.ls10{letter-spacing:0.359040pt;}
.lsf{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls3{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.832000pt;}
.ls1f{letter-spacing:1.920000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls1{letter-spacing:5.120000pt;}
.ls22{letter-spacing:9.600000pt;}
.ls25{letter-spacing:12.800000pt;}
.ls26{letter-spacing:16.640000pt;}
.ls24{letter-spacing:19.840000pt;}
.ls28{letter-spacing:24.320000pt;}
.ls1e{letter-spacing:28.800000pt;}
.ls27{letter-spacing:48.640000pt;}
.ws1a{word-spacing:-16.832000pt;}
.ws0{word-spacing:-16.768000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.488000pt;}
.ws19{word-spacing:-15.360000pt;}
.wsb{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.416533pt;}
.wsf{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.049067pt;}
.ws14{word-spacing:-12.005120pt;}
.ws1{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.959467pt;}
.ws9{word-spacing:-10.720000pt;}
.wse{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
.ws13{word-spacing:122.048000pt;}
.ws16{word-spacing:130.154667pt;}
._14{margin-left:-4.480000pt;}
._4{margin-left:-3.456000pt;}
._2{margin-left:-2.165333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.146667pt;}
._3{width:2.693333pt;}
._13{width:3.701333pt;}
._b{width:4.608000pt;}
._c{width:5.504000pt;}
._d{width:7.098667pt;}
._10{width:8.026667pt;}
._9{width:9.536000pt;}
._a{width:10.624000pt;}
._e{width:11.776000pt;}
._5{width:13.312000pt;}
._6{width:14.549333pt;}
._25{width:17.344000pt;}
._26{width:18.368000pt;}
._2c{width:19.648000pt;}
._35{width:20.544000pt;}
._27{width:21.760000pt;}
._f{width:22.656000pt;}
._49{width:23.632000pt;}
._20{width:24.704000pt;}
._36{width:25.984000pt;}
._8{width:27.520000pt;}
._7{width:28.416000pt;}
._1a{width:30.144000pt;}
._34{width:31.232000pt;}
._48{width:32.432000pt;}
._4e{width:33.472000pt;}
._15{width:34.368000pt;}
._11{width:35.520000pt;}
._12{width:36.618667pt;}
._1c{width:38.016000pt;}
._1d{width:39.040000pt;}
._2d{width:40.640000pt;}
._1e{width:41.792000pt;}
._1f{width:43.013333pt;}
._23{width:44.730667pt;}
._32{width:45.952000pt;}
._59{width:46.848000pt;}
._22{width:48.064000pt;}
._16{width:49.216000pt;}
._17{width:50.560000pt;}
._21{width:52.288000pt;}
._4f{width:53.952000pt;}
._50{width:55.232000pt;}
._3d{width:56.192000pt;}
._3c{width:57.088000pt;}
._43{width:58.922667pt;}
._31{width:60.074667pt;}
._2a{width:61.184000pt;}
._2b{width:62.144000pt;}
._4a{width:63.424000pt;}
._18{width:64.576000pt;}
._19{width:65.781333pt;}
._3b{width:67.392000pt;}
._33{width:69.226667pt;}
._6a{width:70.741333pt;}
._29{width:72.234667pt;}
._5d{width:73.749333pt;}
._37{width:75.456000pt;}
._38{width:76.970667pt;}
._61{width:78.080000pt;}
._58{width:81.402667pt;}
._3f{width:82.368000pt;}
._39{width:83.392000pt;}
._3a{width:84.352000pt;}
._24{width:88.000000pt;}
._28{width:89.280000pt;}
._1b{width:90.560000pt;}
._40{width:92.096000pt;}
._57{width:93.002667pt;}
._5b{width:95.221333pt;}
._3e{width:96.192000pt;}
._68{width:97.280000pt;}
._4b{width:103.936000pt;}
._64{width:105.472000pt;}
._52{width:106.928000pt;}
._53{width:108.144000pt;}
._62{width:110.784000pt;}
._63{width:112.000000pt;}
._5a{width:114.746667pt;}
._56{width:115.696000pt;}
._2e{width:120.320000pt;}
._55{width:127.712000pt;}
._60{width:130.080000pt;}
._51{width:132.058667pt;}
._2f{width:133.226667pt;}
._30{width:134.144000pt;}
._42{width:137.600000pt;}
._41{width:138.624000pt;}
._54{width:140.112000pt;}
._47{width:151.296000pt;}
._44{width:152.234667pt;}
._45{width:153.536000pt;}
._67{width:159.296000pt;}
._5e{width:162.816000pt;}
._6b{width:169.152000pt;}
._6c{width:170.869333pt;}
._5c{width:175.978667pt;}
._5f{width:180.160000pt;}
._4c{width:217.728000pt;}
._4d{width:218.794667pt;}
._69{width:288.512000pt;}
._66{width:327.616000pt;}
._46{width:541.888000pt;}
._65{width:594.624000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.360000pt;}
.y71{bottom:3.373333pt;}
.ybd{bottom:4.000000pt;}
.ydc{bottom:4.800000pt;}
.y68{bottom:5.440000pt;}
.yea{bottom:6.386667pt;}
.y111{bottom:7.360000pt;}
.ye7{bottom:9.266667pt;}
.y173{bottom:9.280000pt;}
.y144{bottom:9.746667pt;}
.ye3{bottom:9.933333pt;}
.y69{bottom:10.080000pt;}
.y124{bottom:10.546667pt;}
.y64{bottom:11.040000pt;}
.y6f{bottom:11.053333pt;}
.y141{bottom:11.546667pt;}
.yba{bottom:11.680000pt;}
.y194{bottom:11.826667pt;}
.y12a{bottom:12.160000pt;}
.y66{bottom:13.120000pt;}
.yd8{bottom:14.546667pt;}
.y164{bottom:14.866667pt;}
.yd5{bottom:14.893333pt;}
.y13a{bottom:15.040000pt;}
.y8c{bottom:15.653333pt;}
.yfe{bottom:15.666667pt;}
.yb5{bottom:15.773333pt;}
.ycd{bottom:15.840000pt;}
.y16a{bottom:16.320000pt;}
.y16e{bottom:16.333333pt;}
.y17a{bottom:16.346667pt;}
.ycb{bottom:16.480000pt;}
.y1bf{bottom:16.493333pt;}
.y1b9{bottom:16.640000pt;}
.y168{bottom:16.960000pt;}
.yf1{bottom:17.120000pt;}
.y15e{bottom:17.133333pt;}
.yef{bottom:17.146667pt;}
.y103{bottom:17.280000pt;}
.y116{bottom:17.306667pt;}
.y74{bottom:18.560000pt;}
.y61{bottom:18.720000pt;}
.y6c{bottom:18.733333pt;}
.yd1{bottom:19.053333pt;}
.yc0{bottom:19.560000pt;}
.y67{bottom:20.800000pt;}
.y18c{bottom:21.133333pt;}
.y190{bottom:21.266667pt;}
.yc3{bottom:21.280000pt;}
.yc6{bottom:21.920000pt;}
.y152{bottom:22.240000pt;}
.y154{bottom:22.386667pt;}
.ybc{bottom:22.400000pt;}
.y134{bottom:23.346667pt;}
.y131{bottom:23.360000pt;}
.y12e{bottom:23.533333pt;}
.ye9{bottom:24.786667pt;}
.y10f{bottom:25.600000pt;}
.y110{bottom:25.760000pt;}
.y77{bottom:26.240000pt;}
.y63{bottom:26.400000pt;}
.y6e{bottom:26.413333pt;}
.y10d{bottom:27.360000pt;}
.ye6{bottom:27.666667pt;}
.y172{bottom:27.680000pt;}
.y143{bottom:28.146667pt;}
.y108{bottom:28.173333pt;}
.ye0{bottom:28.320000pt;}
.ye2{bottom:28.333333pt;}
.y122{bottom:28.786667pt;}
.y11c{bottom:28.813333pt;}
.y123{bottom:28.946667pt;}
.y120{bottom:28.973333pt;}
.y1ab{bottom:29.586667pt;}
.y1ac{bottom:29.746667pt;}
.y1a7{bottom:29.773333pt;}
.y150{bottom:29.906667pt;}
.y13d{bottom:29.920000pt;}
.y140{bottom:29.946667pt;}
.y192{bottom:30.066667pt;}
.y14b{bottom:30.106667pt;}
.y193{bottom:30.226667pt;}
.y1ae{bottom:30.400000pt;}
.y1a2{bottom:30.546667pt;}
.y1af{bottom:30.560000pt;}
.y19d{bottom:30.573333pt;}
.yb3{bottom:30.720000pt;}
.y1bc{bottom:31.840000pt;}
.y1bd{bottom:32.000000pt;}
.y181{bottom:32.640000pt;}
.y17e{bottom:32.653333pt;}
.y184{bottom:32.666667pt;}
.yf6{bottom:32.813333pt;}
.yd7{bottom:32.946667pt;}
.yfa{bottom:32.973333pt;}
.y162{bottom:33.106667pt;}
.y163{bottom:33.266667pt;}
.yd3{bottom:33.280000pt;}
.yfc{bottom:33.906667pt;}
.y73{bottom:33.960000pt;}
.yfd{bottom:34.066667pt;}
.y60{bottom:34.080000pt;}
.y16c{bottom:34.720000pt;}
.y170{bottom:35.400000pt;}
.y15b{bottom:35.520000pt;}
.y15c{bottom:35.680000pt;}
.ycf{bottom:37.440000pt;}
.ybf{bottom:37.960000pt;}
.y88{bottom:39.360000pt;}
.y18a{bottom:39.520000pt;}
.yc2{bottom:39.680000pt;}
.y18e{bottom:39.706667pt;}
.y18f{bottom:39.866667pt;}
.yc5{bottom:40.320000pt;}
.y6d{bottom:41.600000pt;}
.y76{bottom:41.640000pt;}
.y133{bottom:41.746667pt;}
.y130{bottom:41.760000pt;}
.y12c{bottom:41.920000pt;}
.y10a{bottom:45.800000pt;}
.y10c{bottom:45.946667pt;}
.ye5{bottom:46.066667pt;}
.y106{bottom:46.560000pt;}
.ydf{bottom:46.720000pt;}
.y119{bottom:47.200000pt;}
.y11a{bottom:47.360000pt;}
.y11e{bottom:47.520000pt;}
.y1a9{bottom:47.986667pt;}
.y1aa{bottom:48.146667pt;}
.y1a5{bottom:48.160000pt;}
.y14d{bottom:48.306667pt;}
.y13c{bottom:48.320000pt;}
.y13f{bottom:48.346667pt;}
.y14f{bottom:48.480000pt;}
.y149{bottom:48.506667pt;}
.y14a{bottom:48.666667pt;}
.y1a0{bottom:48.826667pt;}
.y19a{bottom:48.960000pt;}
.y1a1{bottom:48.986667pt;}
.y19b{bottom:49.120000pt;}
.y70{bottom:49.280000pt;}
.ya9{bottom:49.306667pt;}
.y75{bottom:49.320000pt;}
.y89{bottom:50.586667pt;}
.y17c{bottom:51.040000pt;}
.y183{bottom:51.066667pt;}
.yf3{bottom:51.200000pt;}
.yf4{bottom:51.360000pt;}
.yf8{bottom:51.520000pt;}
.y3{bottom:52.032000pt;}
.y8e{bottom:67.872000pt;}
.y2{bottom:69.952000pt;}
.y87{bottom:70.533333pt;}
.yb1{bottom:70.693333pt;}
.y8d{bottom:85.952000pt;}
.y83{bottom:86.106667pt;}
.yaa{bottom:86.306667pt;}
.y2e{bottom:90.912000pt;}
.y58{bottom:107.872000pt;}
.y84{bottom:110.173333pt;}
.y231{bottom:110.912000pt;}
.y2d{bottom:112.032000pt;}
.y1ed{bottom:112.832000pt;}
.y1dd{bottom:115.712000pt;}
.ya6{bottom:120.992000pt;}
.y100{bottom:121.472000pt;}
.y1f9{bottom:121.952000pt;}
.yab{bottom:123.293333pt;}
.y1b4{bottom:128.832000pt;}
.y57{bottom:129.152000pt;}
.y230{bottom:129.312000pt;}
.y81{bottom:129.632000pt;}
.y1a3{bottom:129.792000pt;}
.y126{bottom:129.952000pt;}
.y2c{bottom:133.312000pt;}
.y1ec{bottom:134.106667pt;}
.y85{bottom:134.240000pt;}
.y186{bottom:136.826667pt;}
.y202{bottom:137.946667pt;}
.yd9{bottom:138.586667pt;}
.y145{bottom:139.066667pt;}
.yff{bottom:140.346667pt;}
.ya5{bottom:142.106667pt;}
.y80{bottom:144.186667pt;}
.y82{bottom:144.960000pt;}
.y22f{bottom:147.706667pt;}
.y165{bottom:148.026667pt;}
.y125{bottom:148.346667pt;}
.y59{bottom:149.946667pt;}
.y56{bottom:150.266667pt;}
.yb2{bottom:150.720000pt;}
.yd6{bottom:153.640000pt;}
.y142{bottom:154.280000pt;}
.y2b{bottom:154.426667pt;}
.y1eb{bottom:155.226667pt;}
.y185{bottom:155.386667pt;}
.yfb{bottom:155.400000pt;}
.y201{bottom:156.346667pt;}
.y1dc{bottom:157.946667pt;}
.y86{bottom:158.306667pt;}
.y1f8{bottom:158.746667pt;}
.yac{bottom:160.293333pt;}
.y1b3{bottom:160.506667pt;}
.y161{bottom:163.080000pt;}
.ya4{bottom:163.226667pt;}
.y121{bottom:163.400000pt;}
.y22e{bottom:166.106667pt;}
.y182{bottom:170.440000pt;}
.y55{bottom:171.386667pt;}
.y200{bottom:174.746667pt;}
.y2a{bottom:175.546667pt;}
.y1ea{bottom:176.346667pt;}
.y1f7{bottom:177.146667pt;}
.y1db{bottom:179.066667pt;}
.y8b{bottom:183.520000pt;}
.ya3{bottom:184.346667pt;}
.y22d{bottom:184.506667pt;}
.y1b2{bottom:192.186667pt;}
.y54{bottom:192.506667pt;}
.y1ff{bottom:193.146667pt;}
.y1f6{bottom:195.546667pt;}
.y29{bottom:196.666667pt;}
.y13e{bottom:196.840000pt;}
.yad{bottom:197.280000pt;}
.y1e9{bottom:197.466667pt;}
.y1da{bottom:200.346667pt;}
.yd4{bottom:201.013333pt;}
.yd2{bottom:201.026667pt;}
.y8a{bottom:201.920000pt;}
.y22c{bottom:202.906667pt;}
.yf9{bottom:203.893333pt;}
.yf7{bottom:203.906667pt;}
.ya2{bottom:205.626667pt;}
.y11f{bottom:206.773333pt;}
.y11d{bottom:206.786667pt;}
.y160{bottom:210.773333pt;}
.y15f{bottom:210.786667pt;}
.y1fe{bottom:211.546667pt;}
.y53{bottom:213.786667pt;}
.y1f5{bottom:213.946667pt;}
.y28{bottom:217.946667pt;}
.y1e8{bottom:218.746667pt;}
.y22b{bottom:221.306667pt;}
.y1d9{bottom:221.466667pt;}
.ya1{bottom:226.746667pt;}
.y19f{bottom:226.773333pt;}
.y19e{bottom:226.786667pt;}
.y1fd{bottom:229.946667pt;}
.y1f4{bottom:232.346667pt;}
.yae{bottom:234.266667pt;}
.y52{bottom:234.906667pt;}
.y180{bottom:235.893333pt;}
.y17f{bottom:235.906667pt;}
.y27{bottom:239.066667pt;}
.y22a{bottom:239.546667pt;}
.y1e7{bottom:239.866667pt;}
.y1d8{bottom:242.586667pt;}
.ya0{bottom:247.866667pt;}
.y1fc{bottom:248.346667pt;}
.yd0{bottom:248.693333pt;}
.yce{bottom:248.706667pt;}
.y1f3{bottom:250.786667pt;}
.y51{bottom:256.066667pt;}
.y229{bottom:257.986667pt;}
.y13b{bottom:259.586667pt;}
.y26{bottom:260.226667pt;}
.y15d{bottom:260.853333pt;}
.y15a{bottom:260.866667pt;}
.y1e6{bottom:261.026667pt;}
.y1d7{bottom:263.746667pt;}
.y1fb{bottom:266.786667pt;}
.y11b{bottom:268.693333pt;}
.y118{bottom:268.706667pt;}
.y9f{bottom:269.026667pt;}
.yf5{bottom:269.813333pt;}
.yf2{bottom:269.826667pt;}
.yaf{bottom:271.266667pt;}
.y228{bottom:276.386667pt;}
.y50{bottom:277.186667pt;}
.y25{bottom:281.346667pt;}
.y1e5{bottom:282.146667pt;}
.y1f2{bottom:284.706667pt;}
.y1d6{bottom:285.026667pt;}
.y1fa{bottom:285.186667pt;}
.y19c{bottom:290.293333pt;}
.y9e{bottom:290.306667pt;}
.y227{bottom:294.786667pt;}
.yb4{bottom:295.040000pt;}
.y4f{bottom:298.306667pt;}
.ycc{bottom:301.186667pt;}
.y17d{bottom:301.333333pt;}
.y17b{bottom:301.346667pt;}
.y24{bottom:302.626667pt;}
.y1e4{bottom:303.586667pt;}
.y1d5{bottom:306.146667pt;}
.yb0{bottom:308.253333pt;}
.y239{bottom:309.826667pt;}
.y9d{bottom:311.426667pt;}
.y159{bottom:311.586667pt;}
.y226{bottom:313.186667pt;}
.y1f1{bottom:319.266667pt;}
.y4e{bottom:319.586667pt;}
.y139{bottom:322.946667pt;}
.y23{bottom:323.746667pt;}
.y1e3{bottom:325.826667pt;}
.y1d4{bottom:327.266667pt;}
.y238{bottom:328.386667pt;}
.y117{bottom:331.106667pt;}
.yca{bottom:331.426667pt;}
.y225{bottom:331.586667pt;}
.y9c{bottom:332.546667pt;}
.yf0{bottom:336.386667pt;}
.y4d{bottom:340.706667pt;}
.y158{bottom:343.426667pt;}
.y22{bottom:344.866667pt;}
.y237{bottom:346.786667pt;}
.y1e2{bottom:347.106667pt;}
.y1d3{bottom:348.386667pt;}
.y224{bottom:349.986667pt;}
.y138{bottom:352.386667pt;}
.y9b{bottom:353.666667pt;}
.y199{bottom:354.466667pt;}
.y4c{bottom:361.826667pt;}
.y115{bottom:362.786667pt;}
.y236{bottom:365.186667pt;}
.y21{bottom:365.986667pt;}
.yc9{bottom:366.626667pt;}
.y179{bottom:367.586667pt;}
.yee{bottom:368.066667pt;}
.y1e1{bottom:368.226667pt;}
.y223{bottom:368.386667pt;}
.y1d2{bottom:369.666667pt;}
.y7f{bottom:374.173333pt;}
.y9a{bottom:374.946667pt;}
.y157{bottom:381.053333pt;}
.y4b{bottom:382.946667pt;}
.y235{bottom:383.586667pt;}
.y198{bottom:386.173333pt;}
.y222{bottom:386.786667pt;}
.y20{bottom:387.106667pt;}
.y137{bottom:388.253333pt;}
.y1e0{bottom:389.346667pt;}
.y1d1{bottom:390.786667pt;}
.y7e{bottom:392.573333pt;}
.y99{bottom:396.066667pt;}
.yc8{bottom:398.173333pt;}
.y178{bottom:398.333333pt;}
.y114{bottom:400.093333pt;}
.y234{bottom:401.986667pt;}
.yed{bottom:404.093333pt;}
.y4a{bottom:404.226667pt;}
.y221{bottom:405.186667pt;}
.y136{bottom:407.133333pt;}
.y1f{bottom:408.386667pt;}
.y1df{bottom:410.466667pt;}
.y7d{bottom:410.973333pt;}
.y1d0{bottom:411.906667pt;}
.y1f0{bottom:412.066667pt;}
.y156{bottom:412.413333pt;}
.yc7{bottom:417.053333pt;}
.y98{bottom:417.186667pt;}
.y233{bottom:420.386667pt;}
.yec{bottom:422.813333pt;}
.y1b1{bottom:423.293333pt;}
.y197{bottom:423.453333pt;}
.y220{bottom:423.586667pt;}
.y49{bottom:425.346667pt;}
.y135{bottom:425.533333pt;}
.y7c{bottom:429.373333pt;}
.y1e{bottom:429.506667pt;}
.y155{bottom:431.293333pt;}
.y1de{bottom:431.906667pt;}
.y113{bottom:431.933333pt;}
.yc4{bottom:432.093333pt;}
.y1cf{bottom:433.026667pt;}
.y1ef{bottom:433.186667pt;}
.y177{bottom:435.773333pt;}
.y97{bottom:438.306667pt;}
.y232{bottom:440.386667pt;}
.y132{bottom:440.586667pt;}
.yeb{bottom:441.213333pt;}
.y21f{bottom:441.986667pt;}
.y196{bottom:442.013333pt;}
.y1b0{bottom:442.173333pt;}
.y151{bottom:446.333333pt;}
.y153{bottom:446.346667pt;}
.y48{bottom:446.466667pt;}
.y7b{bottom:447.773333pt;}
.y1d{bottom:450.306667pt;}
.y112{bottom:450.813333pt;}
.y1ce{bottom:454.306667pt;}
.y176{bottom:454.333333pt;}
.ye8{bottom:456.426667pt;}
.y1ad{bottom:457.213333pt;}
.y96{bottom:459.586667pt;}
.y21e{bottom:460.386667pt;}
.y195{bottom:460.733333pt;}
.y10e{bottom:465.853333pt;}
.y7a{bottom:466.173333pt;}
.y47{bottom:467.586667pt;}
.y175{bottom:472.733333pt;}
.y1cd{bottom:475.426667pt;}
.y191{bottom:475.786667pt;}
.y21d{bottom:478.786667pt;}
.y95{bottom:480.733333pt;}
.y14e{bottom:483.133333pt;}
.y14c{bottom:483.146667pt;}
.y79{bottom:484.573333pt;}
.y1c{bottom:485.213333pt;}
.yc1{bottom:486.813333pt;}
.y171{bottom:487.933333pt;}
.y174{bottom:487.946667pt;}
.y46{bottom:488.893333pt;}
.ye4{bottom:495.626667pt;}
.y1cc{bottom:496.573333pt;}
.y12f{bottom:496.733333pt;}
.y21c{bottom:497.213333pt;}
.y94{bottom:501.853333pt;}
.y1a8{bottom:502.186667pt;}
.y78{bottom:502.973333pt;}
.y1b{bottom:503.613333pt;}
.y109{bottom:506.013333pt;}
.y10b{bottom:506.026667pt;}
.y45{bottom:510.013333pt;}
.y21b{bottom:515.613333pt;}
.y1cb{bottom:517.693333pt;}
.y1ee{bottom:517.853333pt;}
.y72{bottom:518.013333pt;}
.y18d{bottom:520.426667pt;}
.y1a{bottom:522.013333pt;}
.y93{bottom:522.973333pt;}
.y16f{bottom:530.013333pt;}
.y44{bottom:531.133333pt;}
.y21a{bottom:534.013333pt;}
.y1ca{bottom:538.973333pt;}
.y19{bottom:540.413333pt;}
.ybe{bottom:540.893333pt;}
.y92{bottom:543.933333pt;}
.ya7{bottom:544.253333pt;}
.y148{bottom:546.026667pt;}
.y43{bottom:552.253333pt;}
.y219{bottom:552.413333pt;}
.y12d{bottom:552.920000pt;}
.y12b{bottom:552.933333pt;}
.ye1{bottom:556.120000pt;}
.yde{bottom:556.133333pt;}
.y18{bottom:558.813333pt;}
.y1c9{bottom:560.093333pt;}
.y1a6{bottom:564.760000pt;}
.y1a4{bottom:564.773333pt;}
.y107{bottom:566.360000pt;}
.y105{bottom:566.373333pt;}
.y218{bottom:570.813333pt;}
.y42{bottom:573.533333pt;}
.y18b{bottom:574.680000pt;}
.y189{bottom:574.693333pt;}
.y91{bottom:575.613333pt;}
.y17{bottom:577.213333pt;}
.y6b{bottom:579.320000pt;}
.y6a{bottom:579.333333pt;}
.y16d{bottom:579.800000pt;}
.y16b{bottom:579.813333pt;}
.y1c8{bottom:581.213333pt;}
.y217{bottom:589.213333pt;}
.ybb{bottom:593.893333pt;}
.y41{bottom:594.653333pt;}
.y16{bottom:595.613333pt;}
.y1c7{bottom:602.333333pt;}
.y90{bottom:607.613333pt;}
.y147{bottom:609.733333pt;}
.y129{bottom:609.893333pt;}
.y15{bottom:614.013333pt;}
.y40{bottom:615.773333pt;}
.ydd{bottom:617.893333pt;}
.y1c6{bottom:623.453333pt;}
.y216{bottom:626.013333pt;}
.y104{bottom:628.133333pt;}
.y188{bottom:629.413333pt;}
.y169{bottom:629.573333pt;}
.yb9{bottom:630.693333pt;}
.y14{bottom:632.413333pt;}
.y8f{bottom:635.613333pt;}
.y128{bottom:636.453333pt;}
.ya8{bottom:636.640000pt;}
.y3f{bottom:636.893333pt;}
.y65{bottom:641.413333pt;}
.y215{bottom:644.413333pt;}
.y1c5{bottom:644.733333pt;}
.y13{bottom:650.813333pt;}
.ydb{bottom:655.333333pt;}
.y3e{bottom:658.173333pt;}
.y102{bottom:659.813333pt;}
.y167{bottom:660.293333pt;}
.yb8{bottom:660.453333pt;}
.y187{bottom:661.253333pt;}
.y214{bottom:662.813333pt;}
.y12{bottom:669.213333pt;}
.y1c4{bottom:676.413333pt;}
.y5f{bottom:676.933333pt;}
.y127{bottom:678.693333pt;}
.yb7{bottom:678.853333pt;}
.y146{bottom:679.013333pt;}
.y3d{bottom:679.293333pt;}
.y213{bottom:681.213333pt;}
.y11{bottom:687.613333pt;}
.y1c3{bottom:694.973333pt;}
.y101{bottom:697.093333pt;}
.yb6{bottom:697.253333pt;}
.y166{bottom:697.413333pt;}
.yda{bottom:697.573333pt;}
.y212{bottom:699.613333pt;}
.y3c{bottom:700.413333pt;}
.y10{bottom:706.013333pt;}
.y1c2{bottom:713.413333pt;}
.y211{bottom:718.053333pt;}
.y3b{bottom:721.573333pt;}
.yf{bottom:724.453333pt;}
.y1c1{bottom:728.440000pt;}
.y1c0{bottom:728.453333pt;}
.y5e{bottom:735.360000pt;}
.y210{bottom:736.453333pt;}
.y3a{bottom:742.693333pt;}
.ye{bottom:742.853333pt;}
.y5d{bottom:754.240000pt;}
.y20f{bottom:754.853333pt;}
.yd{bottom:760.933333pt;}
.y39{bottom:763.973333pt;}
.y1be{bottom:772.440000pt;}
.y1bb{bottom:772.453333pt;}
.y20e{bottom:773.253333pt;}
.y38{bottom:785.093333pt;}
.y20d{bottom:791.653333pt;}
.yc{bottom:795.653333pt;}
.y37{bottom:806.213333pt;}
.y20c{bottom:810.053333pt;}
.yb{bottom:814.213333pt;}
.y1ba{bottom:817.093333pt;}
.y36{bottom:827.333333pt;}
.y20b{bottom:828.453333pt;}
.ya{bottom:835.173333pt;}
.y1b8{bottom:845.733333pt;}
.y20a{bottom:846.853333pt;}
.y35{bottom:848.613333pt;}
.y9{bottom:856.293333pt;}
.y209{bottom:865.253333pt;}
.y5c{bottom:869.413333pt;}
.y34{bottom:869.733333pt;}
.y8{bottom:877.413333pt;}
.y1b7{bottom:879.973333pt;}
.y208{bottom:883.653333pt;}
.y5b{bottom:890.533333pt;}
.y33{bottom:890.853333pt;}
.y7{bottom:898.373333pt;}
.y207{bottom:902.053333pt;}
.y5a{bottom:911.653333pt;}
.y32{bottom:911.973333pt;}
.y6{bottom:919.493333pt;}
.y206{bottom:920.453333pt;}
.y31{bottom:933.253333pt;}
.y205{bottom:938.853333pt;}
.y1b6{bottom:943.520000pt;}
.y5{bottom:953.440000pt;}
.y30{bottom:954.400000pt;}
.y204{bottom:957.280000pt;}
.y4{bottom:971.520000pt;}
.y1b5{bottom:975.200000pt;}
.y2f{bottom:975.520000pt;}
.y203{bottom:975.680000pt;}
.y1{bottom:994.240000pt;}
.h27{height:19.186667pt;}
.h18{height:26.066667pt;}
.h46{height:26.546667pt;}
.h81{height:28.626667pt;}
.h80{height:28.786667pt;}
.h4f{height:29.426667pt;}
.h1f{height:30.226667pt;}
.h4e{height:30.266667pt;}
.h64{height:30.706667pt;}
.h6c{height:30.752000pt;}
.h1e{height:30.866667pt;}
.h63{height:31.346667pt;}
.h31{height:31.666667pt;}
.h6b{height:31.680000pt;}
.h30{height:31.706667pt;}
.h76{height:31.712000pt;}
.h3a{height:31.826667pt;}
.h5e{height:31.840000pt;}
.h3e{height:31.866667pt;}
.he{height:33.918750pt;}
.hd{height:34.866667pt;}
.h19{height:36.786667pt;}
.h5d{height:36.796000pt;}
.h5c{height:36.800000pt;}
.h2d{height:39.186667pt;}
.h2e{height:39.196000pt;}
.h2f{height:39.200000pt;}
.h3d{height:40.156000pt;}
.h3c{height:40.160000pt;}
.h6a{height:42.076000pt;}
.h69{height:42.080000pt;}
.h54{height:42.546667pt;}
.h55{height:42.552000pt;}
.h56{height:42.560000pt;}
.h45{height:43.378667pt;}
.h82{height:43.986667pt;}
.h83{height:43.992000pt;}
.h84{height:44.000000pt;}
.h75{height:44.626667pt;}
.h6{height:44.687500pt;}
.h7f{height:44.960000pt;}
.ha{height:46.066667pt;}
.h26{height:47.378667pt;}
.h23{height:47.666667pt;}
.h24{height:47.676000pt;}
.h25{height:47.680000pt;}
.h62{height:47.698667pt;}
.h14{height:47.742188pt;}
.h38{height:48.498667pt;}
.h39{height:48.500000pt;}
.h65{height:49.106667pt;}
.h66{height:49.112000pt;}
.h67{height:49.120000pt;}
.h68{height:49.780000pt;}
.h5f{height:50.066667pt;}
.h60{height:50.076000pt;}
.h61{height:50.080000pt;}
.h20{height:51.826667pt;}
.h21{height:51.836000pt;}
.h22{height:51.840000pt;}
.hb{height:52.134375pt;}
.h1a{height:52.340000pt;}
.hc{height:52.478750pt;}
.h15{height:52.834688pt;}
.h71{height:54.066667pt;}
.h72{height:54.072000pt;}
.h1c{height:54.076000pt;}
.h1b{height:54.080000pt;}
.h73{height:54.258667pt;}
.h74{height:54.260000pt;}
.h1d{height:54.720000pt;}
.h4b{height:56.146667pt;}
.h4c{height:56.156000pt;}
.h4d{height:56.160000pt;}
.h4a{height:56.180000pt;}
.h47{height:56.306667pt;}
.h48{height:56.312000pt;}
.h49{height:56.320000pt;}
.h1{height:58.563750pt;}
.h3{height:59.340000pt;}
.h3b{height:60.340000pt;}
.h2b{height:60.498667pt;}
.h2c{height:60.500000pt;}
.h28{height:61.106667pt;}
.h29{height:61.112000pt;}
.h2a{height:61.120000pt;}
.hf{height:61.266667pt;}
.h10{height:61.272000pt;}
.h11{height:61.280000pt;}
.h12{height:61.300000pt;}
.h3f{height:61.746667pt;}
.h40{height:61.756000pt;}
.h41{height:61.760000pt;}
.h42{height:61.906667pt;}
.h43{height:61.916000pt;}
.h44{height:61.920000pt;}
.h7d{height:62.578667pt;}
.h7e{height:62.580000pt;}
.h7b{height:62.706667pt;}
.h7c{height:62.712000pt;}
.h51{height:62.716000pt;}
.h50{height:62.720000pt;}
.h52{height:62.738667pt;}
.h53{height:62.740000pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h59{height:62.866667pt;}
.h5a{height:62.876000pt;}
.h5b{height:62.880000pt;}
.h16{height:62.938125pt;}
.h57{height:63.058667pt;}
.h58{height:63.060000pt;}
.h7a{height:63.378667pt;}
.h77{height:63.506667pt;}
.h78{height:63.516000pt;}
.h79{height:63.520000pt;}
.h4{height:64.500000pt;}
.h6d{height:65.426667pt;}
.h6e{height:65.436000pt;}
.h6f{height:65.440000pt;}
.h70{height:65.458667pt;}
.h32{height:65.746667pt;}
.h33{height:65.756000pt;}
.h34{height:65.760000pt;}
.h35{height:65.906667pt;}
.h36{height:65.916000pt;}
.h37{height:65.920000pt;}
.h8{height:66.404375pt;}
.h2{height:80.625000pt;}
.h13{height:225.280000pt;}
.h17{height:319.040000pt;}
.h9{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w82{width:14.706667pt;}
.w8b{width:24.626667pt;}
.w68{width:28.786667pt;}
.w7e{width:30.866667pt;}
.wa4{width:31.346667pt;}
.wd5{width:31.826667pt;}
.wd7{width:31.986667pt;}
.wd0{width:32.000000pt;}
.wc8{width:34.386667pt;}
.w76{width:39.826667pt;}
.w7{width:40.306667pt;}
.w15{width:40.312000pt;}
.w16{width:40.316000pt;}
.wd{width:40.320000pt;}
.wb{width:40.338667pt;}
.w14{width:40.340000pt;}
.wf{width:40.352000pt;}
.w18{width:40.360000pt;}
.w4{width:40.466667pt;}
.w12{width:40.472000pt;}
.w13{width:40.476000pt;}
.wc{width:40.480000pt;}
.w2{width:42.112000pt;}
.w8{width:43.186667pt;}
.w19{width:43.196000pt;}
.w1a{width:43.200000pt;}
.w17{width:43.356000pt;}
.we{width:43.360000pt;}
.wd6{width:45.426667pt;}
.wdf{width:45.432000pt;}
.we0{width:45.440000pt;}
.wd4{width:46.066667pt;}
.wdd{width:46.076000pt;}
.wde{width:46.080000pt;}
.wdb{width:46.236000pt;}
.wd2{width:46.240000pt;}
.wcf{width:46.258667pt;}
.wd9{width:46.260000pt;}
.w3{width:48.626667pt;}
.w10{width:48.632000pt;}
.w11{width:48.640000pt;}
.wce{width:50.706667pt;}
.wd8{width:50.712000pt;}
.wda{width:50.716000pt;}
.wd1{width:50.720000pt;}
.w3f{width:51.186667pt;}
.w46{width:51.192000pt;}
.w32{width:51.196000pt;}
.w27{width:51.200000pt;}
.w21{width:51.218667pt;}
.w38{width:51.220000pt;}
.w2a{width:51.346667pt;}
.w35{width:51.356000pt;}
.w36{width:51.360000pt;}
.w9f{width:51.378667pt;}
.wa0{width:51.380000pt;}
.wd3{width:52.032000pt;}
.wdc{width:52.040000pt;}
.wa{width:52.626667pt;}
.w25{width:52.658667pt;}
.w30{width:52.660000pt;}
.w7a{width:55.826667pt;}
.w96{width:56.146667pt;}
.w24{width:56.626667pt;}
.w2e{width:56.632000pt;}
.w5e{width:56.636000pt;}
.w2f{width:56.640000pt;}
.w58{width:56.672000pt;}
.w61{width:56.680000pt;}
.w59{width:56.786667pt;}
.w5f{width:56.796000pt;}
.w56{width:56.800000pt;}
.w43{width:57.426667pt;}
.w4a{width:57.436000pt;}
.w4b{width:57.440000pt;}
.w6c{width:57.586667pt;}
.w71{width:57.596000pt;}
.w6b{width:57.600000pt;}
.w22{width:57.906667pt;}
.w2b{width:57.912000pt;}
.w37{width:57.916000pt;}
.w2c{width:57.920000pt;}
.w6a{width:57.938667pt;}
.w70{width:57.940000pt;}
.w8d{width:58.066667pt;}
.w33{width:58.076000pt;}
.w28{width:58.080000pt;}
.w40{width:58.098667pt;}
.w47{width:58.100000pt;}
.wa5{width:58.112000pt;}
.wa7{width:58.120000pt;}
.w69{width:58.386667pt;}
.w6e{width:58.392000pt;}
.w91{width:58.396000pt;}
.w6f{width:58.400000pt;}
.w6d{width:58.418667pt;}
.w72{width:58.420000pt;}
.w84{width:58.432000pt;}
.w87{width:58.440000pt;}
.w52{width:59.026667pt;}
.w9a{width:59.196000pt;}
.w98{width:59.200000pt;}
.w3e{width:59.666667pt;}
.w45{width:59.672000pt;}
.w48{width:59.676000pt;}
.w41{width:59.680000pt;}
.w8e{width:59.698667pt;}
.w92{width:59.700000pt;}
.w29{width:59.712000pt;}
.w34{width:59.720000pt;}
.w23{width:59.826667pt;}
.w2d{width:59.832000pt;}
.w31{width:59.836000pt;}
.w26{width:59.840000pt;}
.w44{width:59.858667pt;}
.w4c{width:59.860000pt;}
.w42{width:59.872000pt;}
.w49{width:59.880000pt;}
.w7b{width:64.658667pt;}
.w7c{width:64.660000pt;}
.w85{width:65.426667pt;}
.w9b{width:65.432000pt;}
.w86{width:65.436000pt;}
.w83{width:65.440000pt;}
.w8c{width:65.586667pt;}
.w8f{width:65.592000pt;}
.w90{width:65.600000pt;}
.w97{width:65.618667pt;}
.w99{width:65.620000pt;}
.w54{width:66.066667pt;}
.w64{width:66.072000pt;}
.w60{width:66.076000pt;}
.w57{width:66.080000pt;}
.w53{width:66.226667pt;}
.w5b{width:66.232000pt;}
.w5c{width:66.240000pt;}
.w55{width:66.258667pt;}
.w5d{width:66.260000pt;}
.wb5{width:66.592000pt;}
.wbf{width:66.600000pt;}
.wb7{width:67.026667pt;}
.wc2{width:67.036000pt;}
.wc3{width:67.040000pt;}
.wb2{width:67.058667pt;}
.wbc{width:67.060000pt;}
.wb0{width:70.706667pt;}
.wb9{width:70.712000pt;}
.wba{width:70.720000pt;}
.wb6{width:70.866667pt;}
.wc0{width:70.876000pt;}
.wc1{width:70.880000pt;}
.wbd{width:71.036000pt;}
.wb3{width:71.040000pt;}
.wb8{width:71.058667pt;}
.wc4{width:71.060000pt;}
.wb1{width:71.826667pt;}
.wbb{width:71.832000pt;}
.wbe{width:71.836000pt;}
.wb4{width:71.840000pt;}
.w5a{width:75.826667pt;}
.w62{width:75.832000pt;}
.w63{width:75.840000pt;}
.wc9{width:78.872000pt;}
.w4d{width:80.032000pt;}
.wa6{width:80.978667pt;}
.wa8{width:80.980000pt;}
.w3d{width:85.458667pt;}
.w39{width:91.712000pt;}
.w1d{width:91.872000pt;}
.wac{width:92.672000pt;}
.w9e{width:102.580000pt;}
.w9{width:121.138667pt;}
.wcc{width:126.546667pt;}
.wcb{width:129.792000pt;}
.wca{width:129.938667pt;}
.wcd{width:130.258667pt;}
.w9d{width:152.186667pt;}
.w6{width:161.306667pt;}
.w74{width:168.960000pt;}
.w3c{width:175.226667pt;}
.w50{width:179.546667pt;}
.w4f{width:179.693333pt;}
.waa{width:180.506667pt;}
.w66{width:180.960000pt;}
.w78{width:184.960000pt;}
.wa2{width:187.546667pt;}
.w89{width:190.106667pt;}
.w4e{width:191.346667pt;}
.w3b{width:197.760000pt;}
.w3a{width:197.933333pt;}
.w1e{width:198.066667pt;}
.w80{width:198.106667pt;}
.wc6{width:198.266667pt;}
.w20{width:199.066667pt;}
.w94{width:207.386667pt;}
.w51{width:208.173333pt;}
.w77{width:210.733333pt;}
.wc5{width:213.293333pt;}
.wa1{width:214.413333pt;}
.w7f{width:220.013333pt;}
.wa9{width:221.613333pt;}
.w93{width:222.413333pt;}
.w88{width:226.413333pt;}
.w9c{width:226.893333pt;}
.w73{width:227.213333pt;}
.w1f{width:227.853333pt;}
.w65{width:228.333333pt;}
.w95{width:240.813333pt;}
.wae{width:244.826667pt;}
.wad{width:245.133333pt;}
.w7d{width:253.186667pt;}
.wa3{width:254.893333pt;}
.wc7{width:261.293333pt;}
.wab{width:265.453333pt;}
.w79{width:269.186667pt;}
.waf{width:269.613333pt;}
.w8a{width:270.573333pt;}
.w67{width:274.946667pt;}
.w75{width:279.893333pt;}
.w5{width:285.613333pt;}
.w81{width:301.453333pt;}
.w1c{width:608.000000pt;}
.w1b{width:608.640000pt;}
.w0{width:816.000000pt;}
.w1{width:1056.000000pt;}
.x2c{left:-5.933333pt;}
.x0{left:0.000000pt;}
.x38{left:2.016000pt;}
.x39{left:5.696000pt;}
.x2d{left:7.066667pt;}
.xe{left:8.000000pt;}
.x26{left:8.960000pt;}
.x23{left:9.920000pt;}
.x13{left:11.666667pt;}
.x21{left:12.960000pt;}
.x3b{left:14.656000pt;}
.x11{left:16.146667pt;}
.xf{left:17.792000pt;}
.x1d{left:19.392000pt;}
.x65{left:20.480000pt;}
.x1c{left:21.440000pt;}
.x49{left:22.706667pt;}
.x5f{left:24.320000pt;}
.x33{left:29.312000pt;}
.x64{left:32.480000pt;}
.x31{left:36.960000pt;}
.x5d{left:40.000000pt;}
.x3a{left:41.146667pt;}
.x30{left:43.040000pt;}
.x45{left:45.920000pt;}
.x2f{left:49.120000pt;}
.x1a{left:54.906667pt;}
.x3e{left:59.493333pt;}
.x16{left:75.066667pt;}
.x32{left:77.506667pt;}
.x3f{left:85.120000pt;}
.x5a{left:87.666667pt;}
.x41{left:91.026667pt;}
.x5c{left:92.146667pt;}
.x1{left:104.032000pt;}
.x5{left:109.632000pt;}
.x7{left:115.392000pt;}
.x8{left:119.712000pt;}
.x59{left:139.080000pt;}
.x10{left:146.120000pt;}
.x3{left:149.306667pt;}
.xb5{left:151.226667pt;}
.xa{left:165.786667pt;}
.x50{left:176.840000pt;}
.x98{left:177.800000pt;}
.xa8{left:182.920000pt;}
.x6{left:189.306667pt;}
.x35{left:193.026667pt;}
.x12{left:194.760000pt;}
.x4{left:195.866667pt;}
.x5e{left:198.120000pt;}
.x68{left:203.720000pt;}
.x46{left:204.840000pt;}
.x3d{left:217.026667pt;}
.xac{left:233.640000pt;}
.x14{left:235.240000pt;}
.x9c{left:248.520000pt;}
.xb{left:260.986667pt;}
.x69{left:263.560000pt;}
.x47{left:264.680000pt;}
.x3c{left:273.306667pt;}
.x1e{left:275.560000pt;}
.x36{left:280.346667pt;}
.x52{left:294.440000pt;}
.x9{left:297.986667pt;}
.x34{left:299.066667pt;}
.x84{left:300.840000pt;}
.xad{left:311.906667pt;}
.xa9{left:312.866667pt;}
.x1f{left:316.040000pt;}
.x9d{left:320.360000pt;}
.x48{left:321.320000pt;}
.x5b{left:330.440000pt;}
.x42{left:345.000000pt;}
.x7b{left:353.346667pt;}
.x20{left:356.386667pt;}
.x85{left:359.266667pt;}
.x8e{left:360.546667pt;}
.xae{left:362.626667pt;}
.x4a{left:373.986667pt;}
.x6a{left:379.906667pt;}
.x75{left:387.586667pt;}
.x2{left:390.626667pt;}
.x22{left:396.866667pt;}
.x8b{left:399.266667pt;}
.x53{left:403.746667pt;}
.xaf{left:408.866667pt;}
.x7c{left:411.266667pt;}
.x86{left:417.666667pt;}
.x8f{left:419.746667pt;}
.x99{left:422.946667pt;}
.xc{left:425.666667pt;}
.x4b{left:433.826667pt;}
.x24{left:437.186667pt;}
.x6b{left:439.586667pt;}
.xb0{left:440.866667pt;}
.xaa{left:442.666667pt;}
.x60{left:453.346667pt;}
.x9e{left:458.466667pt;}
.x54{left:463.426667pt;}
.x7d{left:471.106667pt;}
.xb6{left:472.893333pt;}
.x25{left:477.506667pt;}
.x90{left:479.426667pt;}
.x4c{left:485.026667pt;}
.xb1{left:492.906667pt;}
.x6c{left:497.186667pt;}
.xd{left:510.626667pt;}
.x55{left:514.626667pt;}
.x15{left:520.866667pt;}
.x9f{left:530.306667pt;}
.x40{left:535.426667pt;}
.x7e{left:536.546667pt;}
.x91{left:537.826667pt;}
.xb2{left:538.986667pt;}
.x4d{left:543.106667pt;}
.x66{left:555.106667pt;}
.x27{left:561.186667pt;}
.xab{left:569.226667pt;}
.xb3{left:570.826667pt;}
.x43{left:572.866667pt;}
.x61{left:576.226667pt;}
.x95{left:578.986667pt;}
.xa3{left:588.426667pt;}
.x82{left:593.386667pt;}
.x79{left:594.986667pt;}
.x92{left:596.266667pt;}
.x28{left:601.546667pt;}
.x4e{left:602.826667pt;}
.x8c{left:606.666667pt;}
.x6d{left:614.826667pt;}
.xb4{left:622.053333pt;}
.x56{left:632.426667pt;}
.x97{left:638.666667pt;}
.x29{left:641.866667pt;}
.xa5{left:648.106667pt;}
.x87{left:653.066667pt;}
.x4f{left:654.186667pt;}
.x93{left:656.106667pt;}
.x9a{left:667.626667pt;}
.x6e{left:672.426667pt;}
.x17{left:682.186667pt;}
.x72{left:683.946667pt;}
.x57{left:689.866667pt;}
.xa6{left:706.506667pt;}
.x88{left:710.506667pt;}
.x37{left:712.133333pt;}
.x2e{left:714.013333pt;}
.x7f{left:720.266667pt;}
.x18{left:722.506667pt;}
.x94{left:724.733333pt;}
.xa0{left:727.466667pt;}
.x6f{left:730.346667pt;}
.x73{left:741.866667pt;}
.x51{left:747.786667pt;}
.x62{left:755.786667pt;}
.x19{left:765.706667pt;}
.x89{left:768.586667pt;}
.x44{left:771.946667pt;}
.x80{left:778.186667pt;}
.x70{left:790.026667pt;}
.xa1{left:794.506667pt;}
.x74{left:801.706667pt;}
.x2a{left:806.186667pt;}
.x58{left:807.653333pt;}
.x77{left:812.453333pt;}
.x63{left:822.053333pt;}
.xa7{left:824.613333pt;}
.x78{left:825.733333pt;}
.x8a{left:828.293333pt;}
.x67{left:830.053333pt;}
.x96{left:833.893333pt;}
.x81{left:838.053333pt;}
.x76{left:841.733333pt;}
.x2b{left:846.533333pt;}
.x8d{left:847.493333pt;}
.xa4{left:849.733333pt;}
.x71{left:852.933333pt;}
.x83{left:863.973333pt;}
.xa2{left:865.573333pt;}
.x1b{left:886.853333pt;}
.x7a{left:896.453333pt;}
.x9b{left:937.413333pt;}
}




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