
    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_df2affa68ad95e04c3d8091d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_c9b7c3576c5c801d5f6c1956.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062500;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_f07a5d86f8845ac5248f5294.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_539f5d93bc7b3de6ae41a948.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_4266a752bb952a7912cbbc20.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a61d4fa8d10d5b54abc45653.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d96c59efd355bf3ed00a8f11.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.693359;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:18.000000px;}
.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;}
}
.ws53{word-spacing:-40.605468px;}
.ws19{word-spacing:-37.221680px;}
.ws60{word-spacing:-30.454101px;}
.ws78{word-spacing:-27.070313px;}
.ws52{word-spacing:-22.605503px;}
.ws45{word-spacing:-22.605492px;}
.ws24{word-spacing:-22.605491px;}
.ws5d{word-spacing:-22.605483px;}
.ws46{word-spacing:-22.605481px;}
.ws23{word-spacing:-22.605480px;}
.ws4d{word-spacing:-22.605472px;}
.ws47{word-spacing:-22.605471px;}
.ws22{word-spacing:-22.605469px;}
.ws65{word-spacing:-22.605467px;}
.ws42{word-spacing:-22.605466px;}
.ws48{word-spacing:-22.605458px;}
.ws61{word-spacing:-22.605447px;}
.ws3f{word-spacing:-22.605446px;}
.ws57{word-spacing:-22.605435px;}
.ws17{word-spacing:-20.756878px;}
.ws18{word-spacing:-20.756836px;}
.ws15{word-spacing:-20.756800px;}
.ws12{word-spacing:-20.754206px;}
.ws6a{word-spacing:-18.105480px;}
.ws5f{word-spacing:-16.954101px;}
.wsf{word-spacing:-16.256901px;}
.ws13{word-spacing:-16.256836px;}
.wsd{word-spacing:-16.256811px;}
.ws16{word-spacing:-16.256746px;}
.ws1b{word-spacing:-16.254207px;}
.ws5b{word-spacing:-15.105481px;}
.ws73{word-spacing:-15.105472px;}
.ws5e{word-spacing:-15.105471px;}
.ws5c{word-spacing:-15.105469px;}
.ws51{word-spacing:-15.102836px;}
.ws77{word-spacing:-15.095055px;}
.ws68{word-spacing:-13.605447px;}
.ws11{word-spacing:-11.754204px;}
.ws6c{word-spacing:-9.105469px;}
.ws6b{word-spacing:-9.105466px;}
.ws10{word-spacing:-7.256840px;}
.ws69{word-spacing:-4.605469px;}
.wsb{word-spacing:-2.756887px;}
.ws1c{word-spacing:-2.754209px;}
.wsc{word-spacing:-2.751642px;}
.ws1f{word-spacing:-2.751603px;}
.ws28{word-spacing:-0.120000px;}
.ws55{word-spacing:-0.084000px;}
.ws41{word-spacing:-0.072000px;}
.ws20{word-spacing:-0.066000px;}
.ws27{word-spacing:0.000000px;}
.ws76{word-spacing:13.394532px;}
.ws14{word-spacing:16.398829px;}
.ws1d{word-spacing:16.401486px;}
.ws6e{word-spacing:17.927964px;}
.ws71{word-spacing:17.927967px;}
.ws6f{word-spacing:17.927977px;}
.ws50{word-spacing:17.927986px;}
.ws4e{word-spacing:17.927988px;}
.ws43{word-spacing:17.927997px;}
.ws40{word-spacing:17.928000px;}
.ws72{word-spacing:17.928001px;}
.ws21{word-spacing:17.928002px;}
.ws70{word-spacing:17.928003px;}
.ws4b{word-spacing:17.928009px;}
.ws49{word-spacing:17.928011px;}
.ws35{word-spacing:18.221429px;}
.ws30{word-spacing:18.221451px;}
.ws2d{word-spacing:18.223939px;}
.ws39{word-spacing:18.224019px;}
.ws3a{word-spacing:18.224028px;}
.ws37{word-spacing:18.224037px;}
.ws2e{word-spacing:18.224050px;}
.ws2c{word-spacing:18.226624px;}
.ws33{word-spacing:18.226625px;}
.ws3d{word-spacing:18.226627px;}
.ws34{word-spacing:18.231770px;}
.ws2f{word-spacing:18.231799px;}
.ws32{word-spacing:18.231815px;}
.ws3c{word-spacing:18.231820px;}
.ws38{word-spacing:18.231822px;}
.ws31{word-spacing:18.231823px;}
.ws3b{word-spacing:18.234452px;}
.ws36{word-spacing:18.234453px;}
.ws2a{word-spacing:18.244867px;}
.ws2b{word-spacing:18.244868px;}
.ws9{word-spacing:19.931918px;}
.ws6d{word-spacing:20.867818px;}
.ws63{word-spacing:20.867820px;}
.ws54{word-spacing:20.867888px;}
.ws59{word-spacing:20.870360px;}
.ws4f{word-spacing:20.870379px;}
.ws62{word-spacing:20.870438px;}
.ws58{word-spacing:20.872965px;}
.ws4a{word-spacing:20.872997px;}
.ws5a{word-spacing:20.878235px;}
.ws44{word-spacing:20.892566px;}
.ws1a{word-spacing:20.896210px;}
.wse{word-spacing:20.898768px;}
.ws8{word-spacing:23.214750px;}
.ws7{word-spacing:23.214765px;}
.ws1{word-spacing:24.914848px;}
.ws0{word-spacing:24.914866px;}
.ws26{word-spacing:28.743193px;}
.ws4c{word-spacing:29.834376px;}
.ws64{word-spacing:29.834387px;}
.ws66{word-spacing:29.834404px;}
.ws67{word-spacing:29.837074px;}
.ws56{word-spacing:29.842199px;}
.ws75{word-spacing:29.842257px;}
.ws74{word-spacing:29.856563px;}
.ws5{word-spacing:29.897830px;}
.ws6{word-spacing:29.897846px;}
.ws4{word-spacing:29.897848px;}
.ws2{word-spacing:29.897856px;}
.ws3{word-spacing:29.897865px;}
.ws1e{word-spacing:38.904037px;}
.wsa{word-spacing:38.906672px;}
.ws3e{word-spacing:47.891731px;}
.ws25{word-spacing:70.406671px;}
.ws29{word-spacing:2290.878120px;}
._38{margin-left:-14.859345px;}
._37{margin-left:-9.704518px;}
._2{margin-left:-8.015614px;}
._1{margin-left:-6.679689px;}
._0{margin-left:-4.965820px;}
._3{margin-left:-3.145796px;}
._36{margin-left:-2.068057px;}
._5{margin-left:-1.000634px;}
._a{width:15.894806px;}
._3b{width:18.000156px;}
._7{width:20.384322px;}
._8{width:21.762817px;}
._35{width:23.649711px;}
._6{width:25.306064px;}
._3c{width:27.262966px;}
._39{width:31.499998px;}
._34{width:36.000011px;}
._4{width:38.735703px;}
._3a{width:40.500000px;}
._9{width:42.930478px;}
._33{width:54.000000px;}
._b{width:70.083415px;}
._11{width:179.961821px;}
._17{width:193.529712px;}
._13{width:356.843273px;}
._1b{width:484.837199px;}
._30{width:597.991981px;}
._22{width:614.156046px;}
._19{width:663.988228px;}
._12{width:704.303764px;}
._10{width:825.276068px;}
._f{width:996.529150px;}
._23{width:1010.355197px;}
._16{width:1021.020941px;}
._1c{width:1053.952525px;}
._26{width:1093.038126px;}
._14{width:1206.966807px;}
._31{width:1344.823617px;}
._1a{width:1391.312246px;}
._1d{width:1448.485686px;}
._2d{width:1485.744944px;}
._15{width:1494.167376px;}
._20{width:1533.408024px;}
._28{width:1540.704459px;}
._2a{width:1559.271194px;}
._18{width:1566.626740px;}
._29{width:1592.138053px;}
._25{width:1599.485712px;}
._2c{width:1710.192733px;}
._e{width:1718.766758px;}
._24{width:1804.850948px;}
._27{width:1823.123410px;}
._2b{width:1848.872433px;}
._21{width:1856.187863px;}
._1f{width:1859.034196px;}
._2e{width:1863.503293px;}
._2f{width:1872.761101px;}
._d{width:1887.430443px;}
._c{width:1927.842554px;}
._1e{width:1979.012079px;}
._32{width:2125.739622px;}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000002px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.999997px;}
.fs0{font-size:90.000000px;}
.fs1{font-size:108.000000px;}
.fs5{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y384{bottom:11.765617px;}
.y278{bottom:11.765625px;}
.y27c{bottom:11.765627px;}
.y435{bottom:11.765630px;}
.y43d{bottom:11.765634px;}
.y16e{bottom:11.768547px;}
.y100{bottom:11.768548px;}
.yf3{bottom:11.768551px;}
.yed{bottom:11.768555px;}
.y2c9{bottom:11.768560px;}
.yfd{bottom:11.768562px;}
.y182{bottom:11.768563px;}
.yf6{bottom:11.768567px;}
.y291{bottom:11.771476px;}
.y276{bottom:11.771484px;}
.y381{bottom:11.771487px;}
.y3b6{bottom:11.771492px;}
.y438{bottom:11.771495px;}
.y30f{bottom:14.871090px;}
.y2d9{bottom:14.871095px;}
.y2c5{bottom:14.874019px;}
.y2c2{bottom:14.874035px;}
.y2be{bottom:14.876949px;}
.y342{bottom:22.113274px;}
.y337{bottom:22.113277px;}
.y2e8{bottom:22.113280px;}
.y37d{bottom:22.113282px;}
.y32f{bottom:22.113287px;}
.y3af{bottom:22.113292px;}
.y303{bottom:22.119127px;}
.y39f{bottom:22.119135px;}
.y2d6{bottom:22.119139px;}
.y2ef{bottom:22.119141px;}
.y2e5{bottom:22.119143px;}
.y309{bottom:22.119144px;}
.y388{bottom:22.119145px;}
.y35d{bottom:22.119147px;}
.y34a{bottom:22.119148px;}
.y369{bottom:22.119158px;}
.y383{bottom:32.460937px;}
.y43c{bottom:32.460939px;}
.yff{bottom:32.466793px;}
.yef{bottom:32.466796px;}
.y172{bottom:32.466800px;}
.y43a{bottom:32.466804px;}
.yfc{bottom:32.466807px;}
.y432{bottom:32.472654px;}
.y380{bottom:32.472657px;}
.y437{bottom:32.472665px;}
.y30e{bottom:38.671875px;}
.y2c1{bottom:38.674805px;}
.y2bd{bottom:38.677734px;}
.y39a{bottom:53.162092px;}
.y341{bottom:53.162104px;}
.y2ee{bottom:53.162106px;}
.y336{bottom:53.162107px;}
.y2e7{bottom:53.162109px;}
.y37c{bottom:53.162112px;}
.y32e{bottom:53.162117px;}
.y31b{bottom:53.162122px;}
.yfb{bottom:53.165037px;}
.yf2{bottom:53.165038px;}
.y171{bottom:53.165045px;}
.y302{bottom:53.167957px;}
.y39e{bottom:53.167965px;}
.y2d5{bottom:53.167970px;}
.y38d{bottom:53.167971px;}
.y2e4{bottom:53.167973px;}
.y308{bottom:53.167974px;}
.y349{bottom:53.167979px;}
.y368{bottom:53.167988px;}
.y40e{bottom:67.863278px;}
.y2a{bottom:67.867673px;}
.y1ba{bottom:67.869142px;}
.y170{bottom:73.863274px;}
.yfa{bottom:73.863282px;}
.y399{bottom:84.210922px;}
.y32d{bottom:84.210932px;}
.y340{bottom:84.210934px;}
.y2ed{bottom:84.210936px;}
.y320{bottom:84.210938px;}
.y37b{bottom:84.210942px;}
.y348{bottom:84.210943px;}
.y31a{bottom:84.210953px;}
.y301{bottom:84.216787px;}
.y307{bottom:84.216796px;}
.y387{bottom:84.216798px;}
.y2e3{bottom:84.216803px;}
.y434{bottom:94.558595px;}
.y2ad{bottom:111.339847px;}
.y290{bottom:112.822266px;}
.ye6{bottom:114.266602px;}
.y335{bottom:115.253902px;}
.y37a{bottom:115.253907px;}
.y32c{bottom:115.253912px;}
.y35b{bottom:115.259752px;}
.y33f{bottom:115.259764px;}
.y2ec{bottom:115.259766px;}
.y319{bottom:115.259767px;}
.y347{bottom:115.259774px;}
.y367{bottom:115.259783px;}
.y300{bottom:115.265617px;}
.y3b2{bottom:115.265625px;}
.y2e2{bottom:115.265633px;}
.y54{bottom:115.286863px;}
.y6d{bottom:116.068358px;}
.y392{bottom:116.437500px;}
.y1fb{bottom:117.410152px;}
.y1e3{bottom:117.638678px;}
.y11c{bottom:117.870113px;}
.y217{bottom:119.932613px;}
.y1b9{bottom:119.994142px;}
.y26b{bottom:120.782227px;}
.y385{bottom:122.296875px;}
.y254{bottom:122.812492px;}
.y1cf{bottom:122.815433px;}
.yc4{bottom:126.417487px;}
.y33d{bottom:128.812503px;}
.y2dd{bottom:129.023430px;}
.y27b{bottom:129.041016px;}
.y40d{bottom:131.367187px;}
.y8b{bottom:131.592038px;}
.y150{bottom:134.964848px;}
.y31f{bottom:136.640625px;}
.yeb{bottom:136.766602px;}
.y20f{bottom:137.124023px;}
.y240{bottom:138.339847px;}
.y3e3{bottom:138.568358px;}
.y53{bottom:138.760258px;}
.y2c4{bottom:139.658208px;}
.y404{bottom:141.708983px;}
.y2ac{bottom:142.385738px;}
.y29{bottom:142.556218px;}
.ye5{bottom:145.313963px;}
.y200{bottom:145.315433px;}
.y334{bottom:146.302732px;}
.y32b{bottom:146.302742px;}
.y318{bottom:146.302748px;}
.y2ff{bottom:146.308582px;}
.y33e{bottom:146.308595px;}
.y2e1{bottom:146.308598px;}
.y346{bottom:146.308604px;}
.y366{bottom:146.308613px;}
.y6c{bottom:147.115717px;}
.y1fa{bottom:148.456058px;}
.y1e2{bottom:148.687492px;}
.y11b{bottom:148.917487px;}
.y168{bottom:149.501947px;}
.y216{bottom:150.978517px;}
.y1b8{bottom:151.040033px;}
.y26a{bottom:151.828117px;}
.y19d{bottom:153.861323px;}
.y420{bottom:153.867187px;}
.yc3{bottom:157.464848px;}
.y9f{bottom:159.266602px;}
.y52{bottom:162.233638px;}
.y40c{bottom:162.410152px;}
.y8a{bottom:162.639398px;}
.y110{bottom:163.081058px;}
.y3f1{bottom:166.007812px;}
.y14f{bottom:166.013678px;}
.y2c3{bottom:166.564458px;}
.yea{bottom:167.813963px;}
.y20e{bottom:168.169927px;}
.y353{bottom:168.949215px;}
.y23f{bottom:169.385738px;}
.y3e2{bottom:169.617187px;}
.y370{bottom:169.980471px;}
.y28{bottom:171.016303px;}
.y1c6{bottom:171.187492px;}
.y18a{bottom:171.621098px;}
.y403{bottom:172.757812px;}
.y2ab{bottom:173.431642px;}
.ye4{bottom:176.361323px;}
.y32a{bottom:177.351557px;}
.y333{bottom:177.351562px;}
.y376{bottom:177.351568px;}
.y317{bottom:177.351578px;}
.y2fe{bottom:177.357412px;}
.y2e0{bottom:177.357428px;}
.y6b{bottom:178.163092px;}
.y1e1{bottom:179.736323px;}
.y11a{bottom:179.964848px;}
.y167{bottom:180.550778px;}
.y215{bottom:182.027348px;}
.y269{bottom:182.876947px;}
.y253{bottom:184.907227px;}
.y19c{bottom:184.910152px;}
.y51{bottom:185.707033px;}
.y27a{bottom:187.312492px;}
.yc2{bottom:188.512207px;}
.y137{bottom:190.083983px;}
.y9e{bottom:190.313963px;}
.y36f{bottom:190.675783px;}
.y40b{bottom:193.453117px;}
.y41a{bottom:193.458983px;}
.yd3{bottom:193.686037px;}
.y89{bottom:193.686772px;}
.y10f{bottom:194.128418px;}
.y3f0{bottom:197.056642px;}
.ye9{bottom:198.861323px;}
.y20d{bottom:199.218742px;}
.y23e{bottom:200.431642px;}
.y3e1{bottom:200.660152px;}
.y1c5{bottom:202.236323px;}
.y189{bottom:202.666988px;}
.y402{bottom:203.800778px;}
.y2c0{bottom:204.137688px;}
.y1f9{bottom:204.377936px;}
.y2aa{bottom:204.480473px;}
.y1b7{bottom:204.588863px;}
.y1ff{bottom:207.410152px;}
.y28f{bottom:207.837892px;}
.y31e{bottom:207.960938px;}
.y35a{bottom:208.400377px;}
.y329{bottom:208.400387px;}
.y316{bottom:208.400393px;}
.y375{bottom:208.400399px;}
.y365{bottom:208.400408px;}
.y2fd{bottom:208.406242px;}
.y345{bottom:208.406256px;}
.y2df{bottom:208.406258px;}
.y50{bottom:209.180413px;}
.y6a{bottom:209.210452px;}
.y119{bottom:211.012207px;}
.y166{bottom:211.596683px;}
.y214{bottom:213.073238px;}
.y268{bottom:213.925777px;}
.y221{bottom:214.201178px;}
.y393{bottom:214.306650px;}
.y252{bottom:215.953117px;}
.y19b{bottom:215.956058px;}
.y41f{bottom:215.958983px;}
.y3ca{bottom:218.841795px;}
.yc1{bottom:219.559567px;}
.y136{bottom:221.131342px;}
.y9d{bottom:221.361323px;}
.y27{bottom:223.163092px;}
.y419{bottom:224.501947px;}
.yd2{bottom:224.733398px;}
.y88{bottom:224.734132px;}
.y279{bottom:224.882818px;}
.y10e{bottom:225.175777px;}
.y3ef{bottom:228.105473px;}
.ye3{bottom:229.908698px;}
.y20c{bottom:230.264648px;}
.y2bf{bottom:231.046867px;}
.y3c9{bottom:231.169927px;}
.y3e0{bottom:231.708983px;}
.y4f{bottom:232.653808px;}
.y1c4{bottom:233.282227px;}
.y188{bottom:233.715817px;}
.y401{bottom:234.849607px;}
.y2a9{bottom:235.529302px;}
.y1b6{bottom:235.634767px;}
.y36e{bottom:235.675783px;}
.y9{bottom:237.694066px;}
.y1fe{bottom:238.456058px;}
.y28e{bottom:238.886723px;}
.y2fc{bottom:239.449207px;}
.y328{bottom:239.449217px;}
.y2de{bottom:239.449223px;}
.y344{bottom:239.449224px;}
.y374{bottom:239.449229px;}
.y364{bottom:239.449238px;}
.y118{bottom:242.059567px;}
.y165{bottom:242.645512px;}
.y267{bottom:244.971683px;}
.y220{bottom:245.249992px;}
.y40a{bottom:247.001947px;}
.y1ce{bottom:247.004887px;}
.y3a3{bottom:247.921860px;}
.y14e{bottom:250.608398px;}
.y135{bottom:252.178717px;}
.y9c{bottom:252.408698px;}
.y23d{bottom:253.980473px;}
.y26{bottom:254.210453px;}
.yd1{bottom:255.780757px;}
.y87{bottom:255.781492px;}
.y4e{bottom:256.127203px;}
.y10d{bottom:256.223138px;}
.y1f8{bottom:260.724607px;}
.ye2{bottom:260.956058px;}
.y277{bottom:262.458982px;}
.y69{bottom:262.757812px;}
.y33c{bottom:263.349614px;}
.y1e0{bottom:264.328117px;}
.y187{bottom:264.761722px;}
.y2a8{bottom:266.575192px;}
.y213{bottom:266.622067px;}
.y1b5{bottom:266.683598px;}
.y2bc{bottom:268.617193px;}
.y3c8{bottom:268.740239px;}
.y251{bottom:269.501947px;}
.y19a{bottom:269.504887px;}
.y327{bottom:270.492182px;}
.y3ae{bottom:270.492202px;}
.y2fb{bottom:270.498037px;}
.y315{bottom:270.498052px;}
.yc0{bottom:273.106927px;}
.y36d{bottom:273.251955px;}
.y266{bottom:276.017572px;}
.y21f{bottom:276.295898px;}
.y2f5{bottom:276.398445px;}
.y409{bottom:278.050778px;}
.y4d{bottom:279.600583px;}
.y14d{bottom:281.654303px;}
.y134{bottom:283.226077px;}
.y31d{bottom:283.400393px;}
.y9b{bottom:283.456058px;}
.y20b{bottom:283.813477px;}
.y25{bottom:285.257812px;}
.yd0{bottom:286.828117px;}
.y10c{bottom:287.270512px;}
.y28d{bottom:287.862303px;}
.y400{bottom:288.398438px;}
.y8{bottom:289.102025px;}
.y1f7{bottom:291.773438px;}
.ye1{bottom:292.003418px;}
.y1fd{bottom:292.004887px;}
.y3df{bottom:293.800778px;}
.y68{bottom:293.805173px;}
.y1df{bottom:295.376947px;}
.y2bb{bottom:295.526373px;}
.y186{bottom:295.810552px;}
.y164{bottom:296.191403px;}
.y2a7{bottom:297.621098px;}
.y212{bottom:297.667973px;}
.y1b4{bottom:297.729488px;}
.y199{bottom:300.550778px;}
.y275{bottom:301.154293px;}
.y398{bottom:301.541002px;}
.y314{bottom:301.541017px;}
.y3ad{bottom:301.541033px;}
.y2fa{bottom:301.546867px;}
.y373{bottom:301.546881px;}
.y33b{bottom:301.875003px;}
.y4c{bottom:303.073978px;}
.ybf{bottom:304.154303px;}
.y33a{bottom:304.974614px;}
.y3c7{bottom:306.316403px;}
.y265{bottom:307.066402px;}
.y21e{bottom:307.341803px;}
.y358{bottom:307.447275px;}
.y23c{bottom:307.529302px;}
.y408{bottom:309.093742px;}
.y86{bottom:309.328853px;}
.y14c{bottom:312.703117px;}
.y133{bottom:314.273438px;}
.y9a{bottom:314.503418px;}
.y20a{bottom:314.859367px;}
.y24{bottom:316.305173px;}
.ycf{bottom:317.875492px;}
.y1c3{bottom:317.876947px;}
.y441{bottom:318.691398px;}
.y3ff{bottom:319.447268px;}
.ye0{bottom:323.050778px;}
.y3de{bottom:324.849607px;}
.y67{bottom:324.852533px;}
.y28c{bottom:325.435548px;}
.y1de{bottom:326.425777px;}
.y4b{bottom:326.547358px;}
.y185{bottom:326.856443px;}
.y163{bottom:327.240233px;}
.y2a6{bottom:328.669927px;}
.y211{bottom:328.716803px;}
.y1b3{bottom:328.778317px;}
.y41e{bottom:331.593742px;}
.y198{bottom:331.599607px;}
.y397{bottom:332.589832px;}
.y313{bottom:332.589848px;}
.y372{bottom:332.589849px;}
.y3ac{bottom:332.589862px;}
.y2f9{bottom:332.595697px;}
.y2ba{bottom:333.099603px;}
.ybe{bottom:335.201663px;}
.y31c{bottom:336.949223px;}
.y264{bottom:338.115233px;}
.y21d{bottom:338.390617px;}
.y23b{bottom:338.575192px;}
.y418{bottom:340.148438px;}
.y85{bottom:340.376227px;}
.y10b{bottom:340.817873px;}
.y7{bottom:343.323950px;}
.y3ee{bottom:343.746098px;}
.y14b{bottom:343.749023px;}
.y3c6{bottom:343.886714px;}
.y36c{bottom:344.566408px;}
.y1f6{bottom:345.322267px;}
.y99{bottom:345.550778px;}
.y209{bottom:345.908197px;}
.y339{bottom:346.875003px;}
.y23{bottom:347.352533px;}
.yce{bottom:348.922852px;}
.y1c2{bottom:348.925777px;}
.y338{bottom:349.974614px;}
.y4a{bottom:350.020753px;}
.y3fe{bottom:350.496098px;}
.y250{bottom:354.096683px;}
.ydf{bottom:354.098138px;}
.y205{bottom:354.099607px;}
.y3dd{bottom:355.898438px;}
.y66{bottom:355.899908px;}
.y2dc{bottom:356.707027px;}
.y184{bottom:357.905272px;}
.y162{bottom:358.286137px;}
.y2a5{bottom:359.718742px;}
.y210{bottom:359.762693px;}
.y1b2{bottom:359.824223px;}
.y407{bottom:362.642573px;}
.y197{bottom:362.645512px;}
.y41d{bottom:362.648438px;}
.y28b{bottom:363.008793px;}
.y359{bottom:363.638663px;}
.y312{bottom:363.638677px;}
.y3ab{bottom:363.638692px;}
.y2f8{bottom:363.644527px;}
.y228{bottom:364.494142px;}
.ybd{bottom:366.249023px;}
.y132{bottom:367.820797px;}
.y21c{bottom:369.439447px;}
.y23a{bottom:369.621098px;}
.y84{bottom:371.423587px;}
.y2b9{bottom:371.797848px;}
.y10a{bottom:371.865233px;}
.y49{bottom:373.494133px;}
.y3ed{bottom:374.794928px;}
.y14a{bottom:374.797853px;}
.y274{bottom:376.596683px;}
.y98{bottom:376.598138px;}
.y1e8{bottom:376.599607px;}
.y208{bottom:376.954102px;}
.y22{bottom:378.399908px;}
.ycd{bottom:379.970212px;}
.y1c1{bottom:379.971683px;}
.y3c5{bottom:381.462892px;}
.y3fd{bottom:381.539063px;}
.y24f{bottom:385.142573px;}
.yde{bottom:385.145512px;}
.y65{bottom:386.947268px;}
.y332{bottom:387.550785px;}
.y2a4{bottom:390.764648px;}
.y263{bottom:391.661137px;}
.y406{bottom:393.691403px;}
.y196{bottom:393.694342px;}
.y2f7{bottom:394.687492px;}
.y3aa{bottom:394.687507px;}
.y2db{bottom:395.226558px;}
.y227{bottom:395.542973px;}
.y48{bottom:396.967528px;}
.ybc{bottom:397.296383px;}
.y2da{bottom:398.332027px;}
.y131{bottom:398.868157px;}
.ye8{bottom:399.098138px;}
.y440{bottom:399.468750px;}
.y21b{bottom:400.485353px;}
.y28a{bottom:400.582038px;}
.y239{bottom:400.669927px;}
.y83{bottom:402.470948px;}
.y109{bottom:402.912592px;}
.y149{bottom:405.843742px;}
.y183{bottom:406.705080px;}
.y161{bottom:407.085930px;}
.y273{bottom:407.642573px;}
.y97{bottom:407.645512px;}
.y207{bottom:408.002932px;}
.y382{bottom:408.246098px;}
.y311{bottom:408.427725px;}
.y21{bottom:409.447268px;}
.ycc{bottom:411.017572px;}
.y1b1{bottom:413.373052px;}
.y24e{bottom:416.191403px;}
.ydd{bottom:416.192873px;}
.y204{bottom:416.194342px;}
.y64{bottom:417.994627px;}
.y181{bottom:419.033199px;}
.y3c4{bottom:419.033203px;}
.y36b{bottom:420.011722px;}
.y47{bottom:420.440923px;}
.y160{bottom:420.884760px;}
.y2a3{bottom:421.810552px;}
.y1cd{bottom:424.740233px;}
.y417{bottom:424.746098px;}
.y3a9{bottom:425.730488px;}
.y2f6{bottom:425.736322px;}
.y226{bottom:426.588863px;}
.y352{bottom:427.675783px;}
.y117{bottom:428.343742px;}
.y1f5{bottom:429.914062px;}
.y130{bottom:429.915533px;}
.ye7{bottom:430.145512px;}
.y21a{bottom:431.531242px;}
.y238{bottom:431.718742px;}
.y82{bottom:433.518307px;}
.y108{bottom:433.959967px;}
.y15f{bottom:434.337888px;}
.y3fc{bottom:435.087892px;}
.y148{bottom:436.892573px;}
.y289{bottom:438.155268px;}
.y272{bottom:438.691403px;}
.y123{bottom:438.692873px;}
.y1e7{bottom:438.694342px;}
.y2d8{bottom:440.226558px;}
.y20{bottom:440.494627px;}
.y3dc{bottom:440.496098px;}
.ycb{bottom:442.064948px;}
.y1c0{bottom:442.066402px;}
.y2d7{bottom:443.332027px;}
.y46{bottom:443.914303px;}
.y262{bottom:445.207028px;}
.y37f{bottom:445.816406px;}
.ydc{bottom:447.240233px;}
.y41c{bottom:447.246098px;}
.y63{bottom:449.041988px;}
.ybb{bottom:450.843742px;}
.y6{bottom:451.314421px;}
.y2a2{bottom:452.859367px;}
.y416{bottom:455.789063px;}
.y3c3{bottom:456.609367px;}
.y396{bottom:456.779288px;}
.y3a8{bottom:456.779318px;}
.y225{bottom:457.634767px;}
.y3ec{bottom:459.386723px;}
.y116{bottom:459.391118px;}
.y43f{bottom:459.539061px;}
.y180{bottom:460.429683px;}
.y12f{bottom:460.962892px;}
.y96{bottom:461.192873px;}
.y237{bottom:462.764648px;}
.y81{bottom:464.565667px;}
.y351{bottom:465.251954px;}
.y3fb{bottom:466.136723px;}
.y37e{bottom:466.517578px;}
.y1b0{bottom:466.918943px;}
.y45{bottom:467.387698px;}
.y147{bottom:467.938478px;}
.y122{bottom:469.740233px;}
.y3db{bottom:471.539063px;}
.y1f{bottom:471.541988px;}
.y15e{bottom:473.036133px;}
.y1dd{bottom:473.115233px;}
.y36a{bottom:473.554687px;}
.y288{bottom:475.728516px;}
.y261{bottom:476.255857px;}
.y2b8{bottom:478.286137px;}
.ydb{bottom:478.287593px;}
.y195{bottom:478.289063px;}
.y42c{bottom:480.087893px;}
.y2d4{bottom:480.902343px;}
.yba{bottom:481.891118px;}
.y2a1{bottom:483.908198px;}
.y1f4{bottom:485.835941px;}
.y107{bottom:487.507328px;}
.y395{bottom:487.828118px;}
.y3a7{bottom:487.828132px;}
.y224{bottom:488.683598px;}
.y3eb{bottom:490.435552px;}
.y44{bottom:490.861078px;}
.y12e{bottom:492.010252px;}
.y350{bottom:492.158204px;}
.y95{bottom:492.240233px;}
.y3c2{bottom:494.179693px;}
.yca{bottom:495.612308px;}
.y80{bottom:495.613043px;}
.y3fa{bottom:497.179688px;}
.y5{bottom:497.885461px;}
.y1af{bottom:497.967773px;}
.y1bf{bottom:497.988281px;}
.y146{bottom:498.987308px;}
.y24d{bottom:500.786137px;}
.y121{bottom:500.787593px;}
.y1e6{bottom:500.789063px;}
.y3da{bottom:502.587893px;}
.y1e{bottom:502.589363px;}
.y17f{bottom:503.856441px;}
.y379{bottom:504.093745px;}
.y1dc{bottom:504.161137px;}
.y260{bottom:507.304688px;}
.y2b7{bottom:509.332027px;}
.yda{bottom:509.334967px;}
.y415{bottom:509.337893px;}
.y15d{bottom:511.734378px;}
.yb9{bottom:512.938477px;}
.y43{bottom:514.334473px;}
.y2a0{bottom:514.954103px;}
.y236{bottom:516.310552px;}
.y106{bottom:518.554688px;}
.y3a6{bottom:518.871112px;}
.y394{bottom:518.876948px;}
.y43e{bottom:519.609371px;}
.y223{bottom:519.732428px;}
.y2d3{bottom:521.179688px;}
.y3ea{bottom:521.484367px;}
.y94{bottom:523.287593px;}
.y1fc{bottom:523.289063px;}
.y17e{bottom:524.554683px;}
.yc9{bottom:526.659668px;}
.y7f{bottom:526.660402px;}
.y1ae{bottom:529.013678px;}
.y145{bottom:530.033198px;}
.y391{bottom:530.402338px;}
.y3c1{bottom:531.755857px;}
.y24c{bottom:531.832027px;}
.y120{bottom:531.834967px;}
.y1d{bottom:533.636723px;}
.y287{bottom:534.000006px;}
.y1db{bottom:535.207028px;}
.y34f{bottom:537.158204px;}
.y42{bottom:537.807868px;}
.y25f{bottom:538.350592px;}
.y2b6{bottom:540.380857px;}
.y194{bottom:540.383783px;}
.y1f3{bottom:542.185552px;}
.yb8{bottom:543.985838px;}
.y4{bottom:544.456516px;}
.y363{bottom:545.033190px;}
.y12d{bottom:545.557613px;}
.y42e{bottom:545.671867px;}
.y29f{bottom:545.999992px;}
.y235{bottom:547.359367px;}
.y105{bottom:549.602048px;}
.y3a5{bottom:549.919943px;}
.y15c{bottom:550.432623px;}
.y3f9{bottom:550.728517px;}
.y222{bottom:550.778318px;}
.y331{bottom:552.011723px;}
.y3e9{bottom:552.533198px;}
.y93{bottom:554.334967px;}
.yc8{bottom:557.707028px;}
.y7e{bottom:557.707763px;}
.y1ad{bottom:560.062492px;}
.y144{bottom:561.082027px;}
.y41{bottom:561.281248px;}
.y24b{bottom:562.880857px;}
.yd9{bottom:562.882327px;}
.y203{bottom:562.883783px;}
.y17c{bottom:564.606441px;}
.y3d9{bottom:564.679688px;}
.y1c{bottom:564.684082px;}
.y1da{bottom:566.255858px;}
.y3c0{bottom:569.326168px;}
.y25e{bottom:569.396482px;}
.y1cc{bottom:571.429688px;}
.y390{bottom:572.027338px;}
.y1f2{bottom:573.231442px;}
.y34e{bottom:574.734375px;}
.yb7{bottom:575.033198px;}
.y12c{bottom:576.604988px;}
.y29e{bottom:577.048822px;}
.y234{bottom:578.408198px;}
.y3b8{bottom:578.560545px;}
.y43b{bottom:579.011713px;}
.y104{bottom:580.649408px;}
.y3a4{bottom:580.968758px;}
.y3f8{bottom:581.777348px;}
.y3e8{bottom:583.582027px;}
.y40{bottom:584.754643px;}
.y17d{bottom:585.304683px;}
.y3cc{bottom:585.380857px;}
.y92{bottom:585.382327px;}
.y1be{bottom:585.383783px;}
.yc7{bottom:588.754388px;}
.y7d{bottom:588.755122px;}
.y15b{bottom:589.130853px;}
.y1ac{bottom:591.108398px;}
.y286{bottom:592.271478px;}
.yd8{bottom:593.929688px;}
.y42d{bottom:594.468750px;}
.y3d8{bottom:595.728517px;}
.y1b{bottom:595.731442px;}
.y42b{bottom:595.734367px;}
.y2d2{bottom:596.619142px;}
.y1d9{bottom:597.304688px;}
.y448{bottom:598.347660px;}
.y1cb{bottom:602.478517px;}
.y1f1{bottom:604.280273px;}
.yb6{bottom:606.080573px;}
.y378{bottom:606.457027px;}
.y3bf{bottom:606.902348px;}
.y12b{bottom:607.652348px;}
.y3f{bottom:608.228023px;}
.y233{bottom:609.454103px;}
.y38f{bottom:609.603516px;}
.y103{bottom:611.696783px;}
.y3f7{bottom:612.826178px;}
.y3e7{bottom:614.624992px;}
.y143{bottom:614.627932px;}
.y91{bottom:616.429688px;}
.yc6{bottom:619.801762px;}
.y1ab{bottom:622.157228px;}
.y17a{bottom:622.877934px;}
.y3ce{bottom:624.972652px;}
.y24a{bottom:624.975592px;}
.yd7{bottom:624.977048px;}
.y193{bottom:624.978517px;}
.y25d{bottom:625.318361px;}
.y3d7{bottom:626.777348px;}
.y1a{bottom:626.778802px;}
.y330{bottom:627.451178px;}
.y159{bottom:627.829101px;}
.y38e{bottom:630.304688px;}
.y29d{bottom:630.597652px;}
.y285{bottom:630.969723px;}
.y3e{bottom:631.701418px;}
.y1ca{bottom:633.524408px;}
.y1f0{bottom:635.326178px;}
.yb5{bottom:637.127932px;}
.y12a{bottom:638.699708px;}
.y232{bottom:640.499992px;}
.y3{bottom:641.597619px;}
.y17b{bottom:643.576176px;}
.y3be{bottom:644.472658px;}
.y7c{bottom:644.676266px;}
.y3e6{bottom:645.673822px;}
.y142{bottom:645.676762px;}
.y34d{bottom:646.054688px;}
.y3cb{bottom:647.472652px;}
.y90{bottom:647.477048px;}
.y1bd{bottom:647.478517px;}
.y15a{bottom:648.527343px;}
.y2d1{bottom:650.165033px;}
.y1d8{bottom:650.850592px;}
.y1aa{bottom:653.203118px;}
.y3d{bottom:655.174798px;}
.y2b5{bottom:656.021482px;}
.yd6{bottom:656.024408px;}
.y414{bottom:656.027348px;}
.y447{bottom:657.738273px;}
.y62{bottom:657.826178px;}
.y42a{bottom:657.832027px;}
.y439{bottom:659.103509px;}
.y102{bottom:660.496575px;}
.y29c{bottom:661.643558px;}
.y179{bottom:664.274418px;}
.y1c9{bottom:664.573238px;}
.y1ef{bottom:666.374992px;}
.y38c{bottom:667.875002px;}
.yb4{bottom:668.175292px;}
.y129{bottom:669.745612px;}
.y271{bottom:669.975592px;}
.y231{bottom:671.548822px;}
.yfe{bottom:671.699709px;}
.yc5{bottom:675.723626px;}
.y141{bottom:676.722652px;}
.y249{bottom:678.521482px;}
.y1e5{bottom:678.524408px;}
.y41b{bottom:678.527348px;}
.y3c{bottom:678.648193px;}
.y19{bottom:679.139278px;}
.y25c{bottom:681.665033px;}
.y377{bottom:681.896482px;}
.y3bd{bottom:682.048823px;}
.y1a9{bottom:684.251948px;}
.y2b4{bottom:687.070312px;}
.y192{bottom:687.073238px;}
.y158{bottom:687.225588px;}
.y61{bottom:688.873537px;}
.y3d6{bottom:688.874992px;}
.y2f4{bottom:690.363284px;}
.y101{bottom:692.397951px;}
.y29b{bottom:692.689448px;}
.y3f6{bottom:697.417973px;}
.y326{bottom:698.929686px;}
.yb3{bottom:699.222652px;}
.y270{bottom:701.021482px;}
.y7b{bottom:701.024408px;}
.y3e5{bottom:701.595701px;}
.y178{bottom:701.847651px;}
.y3b{bottom:702.121588px;}
.y2d0{bottom:703.710938px;}
.y1d7{bottom:704.396482px;}
.y18{bottom:707.599363px;}
.y140{bottom:707.771482px;}
.y248{bottom:709.570312px;}
.yd5{bottom:709.571782px;}
.y1e4{bottom:709.573238px;}
.y1a8{bottom:715.297853px;}
.y191{bottom:718.119142px;}
.y422{bottom:718.124992px;}
.y3bc{bottom:719.619134px;}
.y3d5{bottom:719.917973px;}
.y60{bottom:719.920897px;}
.y429{bottom:719.923822px;}
.y357{bottom:721.412114px;}
.y34c{bottom:721.494142px;}
.y177{bottom:722.545893px;}
.y29a{bottom:723.738277px;}
.y284{bottom:724.341801px;}
.y3a{bottom:725.594968px;}
.y128{bottom:725.667476px;}
.y156{bottom:725.923821px;}
.y230{bottom:727.467776px;}
.y3f5{bottom:728.466802px;}
.y2f3{bottom:728.888673px;}
.yb2{bottom:730.270013px;}
.y2f2{bottom:731.988284px;}
.y26f{bottom:732.070312px;}
.y7a{bottom:732.071782px;}
.y1bc{bottom:732.073238px;}
.y2cf{bottom:734.759768px;}
.y25b{bottom:735.210938px;}
.y1d6{bottom:735.445312px;}
.y3e4{bottom:737.818361px;}
.y13f{bottom:738.817387px;}
.y436{bottom:739.195308px;}
.yd4{bottom:740.619142px;}
.y413{bottom:740.624992px;}
.y2{bottom:745.762940px;}
.y157{bottom:746.622063px;}
.y39{bottom:749.068543px;}
.y2b3{bottom:749.165033px;}
.y190{bottom:749.167973px;}
.yf9{bottom:750.669430px;}
.y3d4{bottom:750.966802px;}
.y5f{bottom:750.968258px;}
.y1ee{bottom:750.969727px;}
.y371{bottom:753.374994px;}
.y299{bottom:754.787107px;}
.y3bb{bottom:758.320312px;}
.y17{bottom:758.559448px;}
.y446{bottom:759.210938px;}
.y176{bottom:760.119141px;}
.y310{bottom:760.294918px;}
.y115{bottom:761.317387px;}
.y356{bottom:763.037114px;}
.y79{bottom:763.119142px;}
.y1a7{bottom:765.287109px;}
.y2ce{bottom:765.808598px;}
.y25a{bottom:766.259768px;}
.y1d5{bottom:766.494142px;}
.y38b{bottom:770.238284px;}
.y247{bottom:771.665033px;}
.y11f{bottom:771.666502px;}
.y1c8{bottom:771.667973px;}
.y38{bottom:772.541938px;}
.y2f1{bottom:773.888673px;}
.y34b{bottom:775.042973px;}
.y2f0{bottom:776.988284px;}
.y1a6{bottom:779.015631px;}
.y2b2{bottom:780.210938px;}
.y175{bottom:780.817383px;}
.y5e{bottom:782.015618px;}
.y283{bottom:782.613277px;}
.ya8{bottom:783.586673px;}
.y22f{bottom:783.814448px;}
.yb1{bottom:783.817387px;}
.y154{bottom:785.320311px;}
.y298{bottom:785.833012px;}
.y16{bottom:787.019533px;}
.yf8{bottom:792.065916px;}
.y114{bottom:792.364748px;}
.y13e{bottom:792.366217px;}
.y26e{bottom:794.165033px;}
.y78{bottom:794.166502px;}
.y1bb{bottom:794.167973px;}
.y37{bottom:796.015318px;}
.y2cd{bottom:796.854488px;}
.y1d4{bottom:797.540033px;}
.y30d{bottom:797.871098px;}
.y445{bottom:798.585936px;}
.y1a5{bottom:799.713873px;}
.y3cd{bottom:802.710938px;}
.y11e{bottom:802.713863px;}
.y412{bottom:802.716802px;}
.y362{bottom:803.765617px;}
.y155{bottom:806.018553px;}
.y3b7{bottom:806.238284px;}
.y355{bottom:808.037114px;}
.y2b1{bottom:811.259768px;}
.y3f4{bottom:813.058598px;}
.y127{bottom:813.062992px;}
.y1ed{bottom:813.064448px;}
.y2eb{bottom:814.564457px;}
.ya7{bottom:814.634032px;}
.y22e{bottom:814.863277px;}
.yb0{bottom:814.864748px;}
.y15{bottom:815.479618px;}
.y297{bottom:816.878902px;}
.y3a2{bottom:817.124993px;}
.y174{bottom:818.390621px;}
.y433{bottom:819.292968px;}
.y36{bottom:819.488713px;}
.y259{bottom:819.808598px;}
.y282{bottom:820.183589px;}
.y113{bottom:823.412107px;}
.y1{bottom:823.828173px;}
.y30c{bottom:824.777348px;}
.y246{bottom:825.210938px;}
.y77{bottom:825.213863px;}
.y1d3{bottom:828.585938px;}
.y3ba{bottom:833.759768px;}
.y11d{bottom:833.761238px;}
.y1c7{bottom:833.762692px;}
.y3d3{bottom:835.558598px;}
.y5d{bottom:835.562992px;}
.y1a4{bottom:837.287106px;}
.y361{bottom:841.335936px;}
.y35{bottom:842.962093px;}
.y3b5{bottom:843.814446px;}
.y14{bottom:843.939703px;}
.y3f3{bottom:844.107428px;}
.y126{bottom:844.110352px;}
.y428{bottom:844.113277px;}
.y153{bottom:844.716801px;}
.y354{bottom:845.613285px;}
.ya6{bottom:845.681392px;}
.y38a{bottom:845.683598px;}
.yaf{bottom:845.912107px;}
.y343{bottom:846.515619px;}
.y296{bottom:847.927733px;}
.yf7{bottom:850.337406px;}
.y2cc{bottom:850.400392px;}
.y13d{bottom:854.460938px;}
.y245{bottom:856.259768px;}
.y76{bottom:856.261238px;}
.y18f{bottom:856.262692px;}
.y281{bottom:857.759766px;}
.y1a3{bottom:857.985348px;}
.y444{bottom:858.656246px;}
.y3a1{bottom:858.749992px;}
.y1d2{bottom:859.634768px;}
.y173{bottom:859.787106px;}
.y360{bottom:862.031248px;}
.y30b{bottom:862.347658px;}
.y3b4{bottom:864.515617px;}
.y202{bottom:864.808598px;}
.y34{bottom:866.435488px;}
.y3d2{bottom:866.607427px;}
.y5c{bottom:866.610352px;}
.y13{bottom:872.399773px;}
.y258{bottom:873.354488px;}
.y3f2{bottom:875.156242px;}
.y125{bottom:875.157712px;}
.y1ec{bottom:875.159182px;}
.y22d{bottom:876.958012px;}
.yae{bottom:876.959467px;}
.y13c{bottom:885.506842px;}
.y75{bottom:887.308598px;}
.y30a{bottom:889.259767px;}
.y33{bottom:889.908868px;}
.y1d1{bottom:890.683598px;}
.y1a2{bottom:895.558596px;}
.y405{bottom:895.851562px;}
.y2b0{bottom:895.854488px;}
.y201{bottom:895.857427px;}
.y3d1{bottom:897.656242px;}
.y5b{bottom:897.657712px;}
.y389{bottom:899.226562px;}
.ya5{bottom:899.228752px;}
.y35f{bottom:899.607426px;}
.y12{bottom:900.859858px;}
.y295{bottom:901.476562px;}
.y2cb{bottom:901.573248px;}
.y3b3{bottom:903.210938px;}
.y3a0{bottom:903.749992px;}
.y257{bottom:904.400392px;}
.y124{bottom:906.205073px;}
.y427{bottom:906.210938px;}
.y22c{bottom:908.003902px;}
.yad{bottom:908.006842px;}
.yf5{bottom:908.608881px;}
.y8f{bottom:909.808598px;}
.y32{bottom:913.382263px;}
.y1a1{bottom:916.256838px;}
.y2ca{bottom:916.702143px;}
.y2ea{bottom:916.933598px;}
.y280{bottom:917.156242px;}
.y16f{bottom:918.058593px;}
.y3b9{bottom:918.351562px;}
.y244{bottom:918.354488px;}
.y74{bottom:918.355958px;}
.y18e{bottom:918.357427px;}
.y443{bottom:918.732426px;}
.y35e{bottom:920.308598px;}
.y306{bottom:926.830079px;}
.y2af{bottom:926.900392px;}
.y423{bottom:926.906242px;}
.y5a{bottom:928.705073px;}
.yf4{bottom:929.307123px;}
.y11{bottom:929.319943px;}
.ya4{bottom:930.276128px;}
.y31{bottom:936.855658px;}
.y426{bottom:937.253902px;}
.y22b{bottom:939.052733px;}
.yac{bottom:939.054202px;}
.y431{bottom:940.781248px;}
.y3b1{bottom:940.781250px;}
.y26d{bottom:940.854488px;}
.y8e{bottom:940.855958px;}
.y152{bottom:940.857427px;}
.y39d{bottom:941.320312px;}
.y13b{bottom:941.428706px;}
.y1d0{bottom:946.602536px;}
.y243{bottom:949.400392px;}
.y73{bottom:949.403317px;}
.y411{bottom:949.406242px;}
.y1a0{bottom:953.830071px;}
.y10{bottom:957.780028px;}
.y35c{bottom:957.878905px;}
.y256{bottom:957.949223px;}
.y59{bottom:959.752448px;}
.y1eb{bottom:959.753902px;}
.y30{bottom:960.329038px;}
.yf1{bottom:966.880371px;}
.y425{bottom:968.302733px;}
.y2c8{bottom:969.128907px;}
.yab{bottom:970.101562px;}
.y386{bottom:970.705077px;}
.y26c{bottom:971.900392px;}
.y8d{bottom:971.903317px;}
.y294{bottom:972.952143px;}
.y19f{bottom:974.528313px;}
.y13a{bottom:977.651366px;}
.y16d{bottom:980.153321px;}
.y2ae{bottom:980.449223px;}
.y72{bottom:980.450677px;}
.y18d{bottom:980.452147px;}
.y442{bottom:982.183593px;}
.y2f{bottom:983.802433px;}
.ya3{bottom:983.823488px;}
.yf{bottom:986.240113px;}
.y325{bottom:988.699220px;}
.y2c7{bottom:989.827149px;}
.y3d0{bottom:990.796867px;}
.y58{bottom:990.799808px;}
.y2e9{bottom:992.373053px;}
.y305{bottom:998.150391px;}
.y424{bottom:999.345703px;}
.y22a{bottom:1001.147461px;}
.yaa{bottom:1001.148926px;}
.y242{bottom:1002.949218px;}
.y8c{bottom:1002.950683px;}
.y151{bottom:1002.952149px;}
.y2e{bottom:1007.275817px;}
.yf0{bottom:1008.276855px;}
.y27f{bottom:1010.525391px;}
.y18c{bottom:1011.498046px;}
.y410{bottom:1011.503905px;}
.y39c{bottom:1012.640625px;}
.ye{bottom:1014.700195px;}
.y16b{bottom:1017.726562px;}
.y19e{bottom:1020.653321px;}
.y3cf{bottom:1021.845703px;}
.y57{bottom:1021.847168px;}
.y1ea{bottom:1021.848633px;}
.y324{bottom:1026.275391px;}
.y2c6{bottom:1027.400391px;}
.y2d{bottom:1030.749206px;}
.y112{bottom:1032.196289px;}
.y71{bottom:1033.998046px;}
.y421{bottom:1034.003905px;}
.ya2{bottom:1037.370849px;}
.y16c{bottom:1038.424804px;}
.y255{bottom:1042.543946px;}
.y18b{bottom:1042.546875px;}
.y3b0{bottom:1043.150391px;}
.yd{bottom:1043.160279px;}
.y430{bottom:1044.949220px;}
.yee{bottom:1045.850099px;}
.y323{bottom:1046.976562px;}
.y293{bottom:1048.098633px;}
.y42f{bottom:1049.449220px;}
.y56{bottom:1052.894530px;}
.y2c{bottom:1054.222596px;}
.y16a{bottom:1059.123046px;}
.y2e6{bottom:1063.851562px;}
.ya9{bottom:1064.191404px;}
.y241{bottom:1065.043946px;}
.y70{bottom:1065.045410px;}
.y139{bottom:1065.046875px;}
.ya1{bottom:1068.418214px;}
.y27e{bottom:1068.796875px;}
.yc{bottom:1071.620361px;}
.y304{bottom:1073.589843px;}
.y206{bottom:1073.592774px;}
.y39b{bottom:1080.837891px;}
.y322{bottom:1084.546875px;}
.y292{bottom:1085.671875px;}
.y111{bottom:1088.116698px;}
.y219{bottom:1096.089843px;}
.y6f{bottom:1096.092774px;}
.y40f{bottom:1096.095704px;}
.yb{bottom:1100.080444px;}
.y321{bottom:1105.242188px;}
.yec{bottom:1105.246582px;}
.y169{bottom:1105.248046px;}
.y27d{bottom:1106.370117px;}
.y229{bottom:1115.935545px;}
.y55{bottom:1115.937011px;}
.y2b{bottom:1115.937194px;}
.y1e9{bottom:1115.938475px;}
.ya0{bottom:1124.339355px;}
.y218{bottom:1127.138672px;}
.y6e{bottom:1127.140137px;}
.y138{bottom:1127.141601px;}
.ya{bottom:1128.540528px;}
.h16{height:36.445312px;}
.hc{height:36.448242px;}
.h15{height:36.451172px;}
.h1a{height:39.550782px;}
.h10{height:43.031251px;}
.h11{height:48.410156px;}
.h14{height:49.992188px;}
.h29{height:57.140625px;}
.hd{height:57.146484px;}
.h28{height:57.152344px;}
.h5{height:59.167970px;}
.h9{height:59.586915px;}
.h20{height:63.351562px;}
.h18{height:63.354492px;}
.h17{height:63.357422px;}
.hb{height:63.949219px;}
.h6{height:64.546875px;}
.h4{height:65.003906px;}
.ha{height:74.607419px;}
.h3{height:75.304685px;}
.h1c{height:77.841797px;}
.he{height:77.844726px;}
.h19{height:77.847657px;}
.h1{height:80.683594px;}
.h13{height:81.328123px;}
.h2{height:97.505859px;}
.hf{height:98.542970px;}
.h2d{height:105.919920px;}
.h7{height:105.924315px;}
.h12{height:105.925785px;}
.h8{height:106.582029px;}
.h22{height:108.890625px;}
.h1f{height:108.896484px;}
.h2e{height:119.238282px;}
.h27{height:139.933594px;}
.h1d{height:139.939454px;}
.h2c{height:139.945312px;}
.h25{height:170.988282px;}
.h24{height:202.031250px;}
.h1b{height:264.128910px;}
.h26{height:295.177740px;}
.h23{height:326.220705px;}
.h21{height:388.318365px;}
.h1e{height:450.416010px;}
.h2a{height:543.556635px;}
.h2b{height:605.648445px;}
.h0{height:1263.000000px;}
.w15{width:87.750000px;}
.w18{width:88.875000px;}
.w16{width:91.125000px;}
.w19{width:92.250000px;}
.w7{width:94.500000px;}
.wc{width:95.625000px;}
.w14{width:102.375000px;}
.wa{width:108.000000px;}
.w22{width:113.625000px;}
.w24{width:114.750000px;}
.w6{width:126.000000px;}
.wb{width:127.125000px;}
.w10{width:133.875000px;}
.w12{width:135.000000px;}
.w8{width:135.000046px;}
.wd{width:136.125046px;}
.w9{width:154.125000px;}
.we{width:155.250000px;}
.w28{width:168.750000px;}
.w30{width:169.875000px;}
.w2a{width:171.000000px;}
.w26{width:172.125000px;}
.w33{width:173.250000px;}
.wf{width:174.375000px;}
.w2b{width:175.500000px;}
.w3e{width:177.750000px;}
.w36{width:195.750047px;}
.w39{width:196.875047px;}
.w3c{width:204.750000px;}
.w35{width:209.250000px;}
.w38{width:210.375000px;}
.w34{width:216.000000px;}
.w37{width:218.250000px;}
.w3f{width:223.875091px;}
.w3b{width:229.500046px;}
.w3d{width:246.375000px;}
.w3a{width:247.500000px;}
.w3{width:306.000045px;}
.w5{width:307.125045px;}
.w11{width:315.000045px;}
.w13{width:316.125045px;}
.w2{width:317.250000px;}
.w4{width:319.500000px;}
.w17{width:349.875045px;}
.w1a{width:351.000045px;}
.w32{width:439.875045px;}
.w2c{width:442.125045px;}
.w2d{width:443.250045px;}
.w27{width:444.375045px;}
.w2f{width:445.500045px;}
.w31{width:446.625045px;}
.w29{width:447.750045px;}
.w2e{width:448.875045px;}
.w23{width:519.750090px;}
.w25{width:520.875090px;}
.w1f{width:623.250000px;}
.w20{width:625.500000px;}
.w1d{width:626.625000px;}
.w1b{width:627.750000px;}
.w1e{width:628.875000px;}
.w1c{width:630.000000px;}
.w21{width:636.750000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1c{left:6.750000px;}
.x1b{left:7.875000px;}
.x60{left:11.052246px;}
.x41{left:12.788086px;}
.x37{left:15.547852px;}
.x39{left:18.057129px;}
.x19{left:19.907227px;}
.x27{left:23.053711px;}
.x22{left:24.750000px;}
.x17{left:27.527344px;}
.x24{left:30.502441px;}
.x26{left:33.578613px;}
.x2e{left:36.250488px;}
.x21{left:38.680665px;}
.x2a{left:39.744141px;}
.x29{left:45.000000px;}
.x31{left:46.999512px;}
.x2d{left:49.500000px;}
.x58{left:52.374024px;}
.x30{left:54.000000px;}
.x53{left:55.125000px;}
.x2b{left:59.994141px;}
.x55{left:64.858887px;}
.x2c{left:66.062988px;}
.x57{left:67.122071px;}
.x2f{left:69.556641px;}
.x5c{left:73.797363px;}
.x40{left:99.716309px;}
.x34{left:112.007812px;}
.x35{left:119.684052px;}
.x56{left:120.809052px;}
.x3f{left:121.934052px;}
.x3d{left:123.059052px;}
.x1a{left:124.184052px;}
.x16{left:125.309052px;}
.x28{left:126.434052px;}
.xa{left:127.559052px;}
.x32{left:128.684052px;}
.x4{left:144.717188px;}
.xd{left:154.559052px;}
.x44{left:157.547333px;}
.x3b{left:165.392571px;}
.xf{left:174.809052px;}
.x6{left:182.184959px;}
.x1d{left:186.059052px;}
.x3e{left:189.738281px;}
.x5a{left:196.470542px;}
.x43{left:200.030276px;}
.x10{left:201.809052px;}
.x5{left:204.959622px;}
.x4b{left:207.082180px;}
.x1e{left:213.059052px;}
.x13{left:214.184052px;}
.x11{left:217.902503px;}
.x36{left:224.309052px;}
.x50{left:228.013333px;}
.x1f{left:233.707848px;}
.x20{left:236.684052px;}
.x1{left:243.094266px;}
.x42{left:244.559052px;}
.x14{left:254.684052px;}
.x4f{left:260.264798px;}
.x4d{left:261.675442px;}
.x7{left:266.770154px;}
.x8{left:268.953233px;}
.x48{left:276.441067px;}
.x45{left:289.853177px;}
.x47{left:299.684055px;}
.x4c{left:300.809055px;}
.x49{left:301.934055px;}
.x46{left:303.059055px;}
.x51{left:304.184055px;}
.x33{left:305.309055px;}
.x4a{left:306.434055px;}
.x2{left:307.616970px;}
.x3{left:310.193264px;}
.x38{left:314.309055px;}
.xe{left:316.288068px;}
.x59{left:321.609537px;}
.x4e{left:325.954253px;}
.x52{left:340.184055px;}
.x9{left:343.559052px;}
.x3c{left:346.611964px;}
.x12{left:365.361968px;}
.x5f{left:376.184055px;}
.x5d{left:377.309055px;}
.x5b{left:379.104147px;}
.xc{left:392.300600px;}
.x3a{left:407.684055px;}
.x15{left:437.456693px;}
.xb{left:441.956693px;}
.x18{left:444.809055px;}
.x23{left:461.684055px;}
.x54{left:551.684055px;}
.x61{left:555.059055px;}
.x25{left:598.934055px;}
.x5e{left:607.934055px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:16.000000pt;}
.ws53{word-spacing:-36.093750pt;}
.ws19{word-spacing:-33.085938pt;}
.ws60{word-spacing:-27.070312pt;}
.ws78{word-spacing:-24.062501pt;}
.ws52{word-spacing:-20.093780pt;}
.ws45{word-spacing:-20.093771pt;}
.ws24{word-spacing:-20.093770pt;}
.ws5d{word-spacing:-20.093762pt;}
.ws46{word-spacing:-20.093761pt;}
.ws23{word-spacing:-20.093760pt;}
.ws4d{word-spacing:-20.093753pt;}
.ws47{word-spacing:-20.093752pt;}
.ws22{word-spacing:-20.093750pt;}
.ws65{word-spacing:-20.093749pt;}
.ws42{word-spacing:-20.093748pt;}
.ws48{word-spacing:-20.093740pt;}
.ws61{word-spacing:-20.093730pt;}
.ws3f{word-spacing:-20.093729pt;}
.ws57{word-spacing:-20.093720pt;}
.ws17{word-spacing:-18.450558pt;}
.ws18{word-spacing:-18.450521pt;}
.ws15{word-spacing:-18.450489pt;}
.ws12{word-spacing:-18.448183pt;}
.ws6a{word-spacing:-16.093760pt;}
.ws5f{word-spacing:-15.070312pt;}
.wsf{word-spacing:-14.450579pt;}
.ws13{word-spacing:-14.450521pt;}
.wsd{word-spacing:-14.450498pt;}
.ws16{word-spacing:-14.450441pt;}
.ws1b{word-spacing:-14.448184pt;}
.ws5b{word-spacing:-13.427095pt;}
.ws73{word-spacing:-13.427087pt;}
.ws5e{word-spacing:-13.427085pt;}
.ws5c{word-spacing:-13.427084pt;}
.ws51{word-spacing:-13.424743pt;}
.ws77{word-spacing:-13.417826pt;}
.ws68{word-spacing:-12.093730pt;}
.ws11{word-spacing:-10.448181pt;}
.ws6c{word-spacing:-8.093750pt;}
.ws6b{word-spacing:-8.093748pt;}
.ws10{word-spacing:-6.450524pt;}
.ws69{word-spacing:-4.093750pt;}
.wsb{word-spacing:-2.450566pt;}
.ws1c{word-spacing:-2.448185pt;}
.wsc{word-spacing:-2.445904pt;}
.ws1f{word-spacing:-2.445869pt;}
.ws28{word-spacing:-0.106667pt;}
.ws55{word-spacing:-0.074667pt;}
.ws41{word-spacing:-0.064000pt;}
.ws20{word-spacing:-0.058667pt;}
.ws27{word-spacing:0.000000pt;}
.ws76{word-spacing:11.906250pt;}
.ws14{word-spacing:14.576737pt;}
.ws1d{word-spacing:14.579099pt;}
.ws6e{word-spacing:15.935968pt;}
.ws71{word-spacing:15.935970pt;}
.ws6f{word-spacing:15.935980pt;}
.ws50{word-spacing:15.935988pt;}
.ws4e{word-spacing:15.935990pt;}
.ws43{word-spacing:15.935998pt;}
.ws40{word-spacing:15.936000pt;}
.ws72{word-spacing:15.936001pt;}
.ws21{word-spacing:15.936002pt;}
.ws70{word-spacing:15.936003pt;}
.ws4b{word-spacing:15.936008pt;}
.ws49{word-spacing:15.936010pt;}
.ws35{word-spacing:16.196826pt;}
.ws30{word-spacing:16.196845pt;}
.ws2d{word-spacing:16.199057pt;}
.ws39{word-spacing:16.199128pt;}
.ws3a{word-spacing:16.199136pt;}
.ws37{word-spacing:16.199144pt;}
.ws2e{word-spacing:16.199156pt;}
.ws2c{word-spacing:16.201443pt;}
.ws33{word-spacing:16.201444pt;}
.ws3d{word-spacing:16.201446pt;}
.ws34{word-spacing:16.206017pt;}
.ws2f{word-spacing:16.206044pt;}
.ws32{word-spacing:16.206057pt;}
.ws3c{word-spacing:16.206062pt;}
.ws38{word-spacing:16.206064pt;}
.ws31{word-spacing:16.206065pt;}
.ws3b{word-spacing:16.208402pt;}
.ws36{word-spacing:16.208403pt;}
.ws2a{word-spacing:16.217659pt;}
.ws2b{word-spacing:16.217661pt;}
.ws9{word-spacing:17.717260pt;}
.ws6d{word-spacing:18.549171pt;}
.ws63{word-spacing:18.549173pt;}
.ws54{word-spacing:18.549234pt;}
.ws59{word-spacing:18.551431pt;}
.ws4f{word-spacing:18.551448pt;}
.ws62{word-spacing:18.551500pt;}
.ws58{word-spacing:18.553747pt;}
.ws4a{word-spacing:18.553775pt;}
.ws5a{word-spacing:18.558431pt;}
.ws44{word-spacing:18.571169pt;}
.ws1a{word-spacing:18.574409pt;}
.wse{word-spacing:18.576683pt;}
.ws8{word-spacing:20.635333pt;}
.ws7{word-spacing:20.635346pt;}
.ws1{word-spacing:22.146531pt;}
.ws0{word-spacing:22.146547pt;}
.ws26{word-spacing:25.549505pt;}
.ws4c{word-spacing:26.519445pt;}
.ws64{word-spacing:26.519456pt;}
.ws66{word-spacing:26.519470pt;}
.ws67{word-spacing:26.521843pt;}
.ws56{word-spacing:26.526399pt;}
.ws75{word-spacing:26.526451pt;}
.ws74{word-spacing:26.539167pt;}
.ws5{word-spacing:26.575849pt;}
.ws6{word-spacing:26.575863pt;}
.ws4{word-spacing:26.575865pt;}
.ws2{word-spacing:26.575872pt;}
.ws3{word-spacing:26.575880pt;}
.ws1e{word-spacing:34.581367pt;}
.wsa{word-spacing:34.583708pt;}
.ws3e{word-spacing:42.570427pt;}
.ws25{word-spacing:62.583708pt;}
.ws29{word-spacing:2036.336107pt;}
._38{margin-left:-13.208306pt;}
._37{margin-left:-8.626238pt;}
._2{margin-left:-7.124990pt;}
._1{margin-left:-5.937502pt;}
._0{margin-left:-4.414062pt;}
._3{margin-left:-2.796263pt;}
._36{margin-left:-1.838273pt;}
._5{margin-left:-0.889453pt;}
._a{width:14.128717pt;}
._3b{width:16.000139pt;}
._7{width:18.119398pt;}
._8{width:19.344726pt;}
._35{width:21.021965pt;}
._6{width:22.494279pt;}
._3c{width:24.233748pt;}
._39{width:27.999999pt;}
._34{width:32.000010pt;}
._4{width:34.431736pt;}
._3a{width:36.000000pt;}
._9{width:38.160425pt;}
._33{width:48.000000pt;}
._b{width:62.296369pt;}
._11{width:159.966063pt;}
._17{width:172.026410pt;}
._13{width:317.194020pt;}
._1b{width:430.966399pt;}
._30{width:531.548427pt;}
._22{width:545.916486pt;}
._19{width:590.211758pt;}
._12{width:626.047791pt;}
._10{width:733.578727pt;}
._f{width:885.803689pt;}
._23{width:898.093509pt;}
._16{width:907.574170pt;}
._1c{width:936.846689pt;}
._26{width:971.589445pt;}
._14{width:1072.859384pt;}
._31{width:1195.398771pt;}
._1a{width:1236.721997pt;}
._1d{width:1287.542832pt;}
._2d{width:1320.662173pt;}
._15{width:1328.148779pt;}
._20{width:1363.029355pt;}
._28{width:1369.515074pt;}
._2a{width:1386.018839pt;}
._18{width:1392.557102pt;}
._29{width:1415.233825pt;}
._25{width:1421.765077pt;}
._2c{width:1520.171318pt;}
._e{width:1527.792674pt;}
._24{width:1604.311954pt;}
._27{width:1620.554142pt;}
._2b{width:1643.442163pt;}
._21{width:1649.944767pt;}
._1f{width:1652.474841pt;}
._2e{width:1656.447372pt;}
._2f{width:1664.676534pt;}
._d{width:1677.715949pt;}
._c{width:1713.637826pt;}
._1e{width:1759.121848pt;}
._32{width:1889.546331pt;}
.fs6{font-size:42.666668pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666664pt;}
.fs0{font-size:80.000000pt;}
.fs1{font-size:96.000000pt;}
.fs5{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y384{bottom:10.458327pt;}
.y278{bottom:10.458333pt;}
.y27c{bottom:10.458335pt;}
.y435{bottom:10.458337pt;}
.y43d{bottom:10.458341pt;}
.y16e{bottom:10.460931pt;}
.y100{bottom:10.460932pt;}
.yf3{bottom:10.460935pt;}
.yed{bottom:10.460937pt;}
.y2c9{bottom:10.460943pt;}
.yfd{bottom:10.460944pt;}
.y182{bottom:10.460945pt;}
.yf6{bottom:10.460948pt;}
.y291{bottom:10.463535pt;}
.y276{bottom:10.463541pt;}
.y381{bottom:10.463544pt;}
.y3b6{bottom:10.463548pt;}
.y438{bottom:10.463551pt;}
.y30f{bottom:13.218747pt;}
.y2d9{bottom:13.218751pt;}
.y2c5{bottom:13.221351pt;}
.y2c2{bottom:13.221364pt;}
.y2be{bottom:13.223955pt;}
.y342{bottom:19.656244pt;}
.y337{bottom:19.656247pt;}
.y2e8{bottom:19.656249pt;}
.y37d{bottom:19.656251pt;}
.y32f{bottom:19.656255pt;}
.y3af{bottom:19.656260pt;}
.y303{bottom:19.661447pt;}
.y39f{bottom:19.661453pt;}
.y2d6{bottom:19.661457pt;}
.y2ef{bottom:19.661459pt;}
.y2e5{bottom:19.661460pt;}
.y309{bottom:19.661461pt;}
.y388{bottom:19.661463pt;}
.y35d{bottom:19.661464pt;}
.y34a{bottom:19.661465pt;}
.y369{bottom:19.661473pt;}
.y383{bottom:28.854167pt;}
.y43c{bottom:28.854168pt;}
.yff{bottom:28.859372pt;}
.yef{bottom:28.859375pt;}
.y172{bottom:28.859377pt;}
.y43a{bottom:28.859381pt;}
.yfc{bottom:28.859384pt;}
.y432{bottom:28.864581pt;}
.y380{bottom:28.864584pt;}
.y437{bottom:28.864591pt;}
.y30e{bottom:34.375000pt;}
.y2c1{bottom:34.377604pt;}
.y2bd{bottom:34.380208pt;}
.y39a{bottom:47.255193pt;}
.y341{bottom:47.255204pt;}
.y2ee{bottom:47.255205pt;}
.y336{bottom:47.255207pt;}
.y2e7{bottom:47.255208pt;}
.y37c{bottom:47.255211pt;}
.y32e{bottom:47.255215pt;}
.y31b{bottom:47.255220pt;}
.yfb{bottom:47.257811pt;}
.yf2{bottom:47.257812pt;}
.y171{bottom:47.257817pt;}
.y302{bottom:47.260407pt;}
.y39e{bottom:47.260413pt;}
.y2d5{bottom:47.260417pt;}
.y38d{bottom:47.260419pt;}
.y2e4{bottom:47.260420pt;}
.y308{bottom:47.260421pt;}
.y349{bottom:47.260425pt;}
.y368{bottom:47.260433pt;}
.y40e{bottom:60.322913pt;}
.y2a{bottom:60.326820pt;}
.y1ba{bottom:60.328127pt;}
.y170{bottom:65.656244pt;}
.yfa{bottom:65.656251pt;}
.y399{bottom:74.854153pt;}
.y32d{bottom:74.854161pt;}
.y340{bottom:74.854164pt;}
.y2ed{bottom:74.854165pt;}
.y320{bottom:74.854167pt;}
.y37b{bottom:74.854171pt;}
.y348{bottom:74.854172pt;}
.y31a{bottom:74.854180pt;}
.y301{bottom:74.859367pt;}
.y307{bottom:74.859375pt;}
.y387{bottom:74.859376pt;}
.y2e3{bottom:74.859380pt;}
.y434{bottom:84.052084pt;}
.y2ad{bottom:98.968753pt;}
.y290{bottom:100.286459pt;}
.ye6{bottom:101.570313pt;}
.y335{bottom:102.447913pt;}
.y37a{bottom:102.447917pt;}
.y32c{bottom:102.447921pt;}
.y35b{bottom:102.453113pt;}
.y33f{bottom:102.453124pt;}
.y2ec{bottom:102.453125pt;}
.y319{bottom:102.453127pt;}
.y347{bottom:102.453132pt;}
.y367{bottom:102.453140pt;}
.y300{bottom:102.458327pt;}
.y3b2{bottom:102.458333pt;}
.y2e2{bottom:102.458340pt;}
.y54{bottom:102.477211pt;}
.y6d{bottom:103.171873pt;}
.y392{bottom:103.500000pt;}
.y1fb{bottom:104.364580pt;}
.y1e3{bottom:104.567713pt;}
.y11c{bottom:104.773433pt;}
.y217{bottom:106.606767pt;}
.y1b9{bottom:106.661460pt;}
.y26b{bottom:107.361980pt;}
.y385{bottom:108.708333pt;}
.y254{bottom:109.166660pt;}
.y1cf{bottom:109.169273pt;}
.yc4{bottom:112.371100pt;}
.y33d{bottom:114.500003pt;}
.y2dd{bottom:114.687493pt;}
.y27b{bottom:114.703125pt;}
.y40d{bottom:116.770833pt;}
.y8b{bottom:116.970700pt;}
.y150{bottom:119.968753pt;}
.y31f{bottom:121.458333pt;}
.yeb{bottom:121.570313pt;}
.y20f{bottom:121.888020pt;}
.y240{bottom:122.968753pt;}
.y3e3{bottom:123.171873pt;}
.y53{bottom:123.342451pt;}
.y2c4{bottom:124.140629pt;}
.y404{bottom:125.963540pt;}
.y2ac{bottom:126.565100pt;}
.y29{bottom:126.716639pt;}
.ye5{bottom:129.167967pt;}
.y200{bottom:129.169273pt;}
.y334{bottom:130.046873pt;}
.y32b{bottom:130.046881pt;}
.y318{bottom:130.046887pt;}
.y2ff{bottom:130.052073pt;}
.y33e{bottom:130.052084pt;}
.y2e1{bottom:130.052087pt;}
.y346{bottom:130.052092pt;}
.y366{bottom:130.052100pt;}
.y6c{bottom:130.769527pt;}
.y1fa{bottom:131.960940pt;}
.y1e2{bottom:132.166660pt;}
.y11b{bottom:132.371100pt;}
.y168{bottom:132.890620pt;}
.y216{bottom:134.203127pt;}
.y1b8{bottom:134.257807pt;}
.y26a{bottom:134.958327pt;}
.y19d{bottom:136.765620pt;}
.y420{bottom:136.770833pt;}
.yc3{bottom:139.968753pt;}
.y9f{bottom:141.570313pt;}
.y52{bottom:144.207678pt;}
.y40c{bottom:144.364580pt;}
.y8a{bottom:144.568353pt;}
.y110{bottom:144.960940pt;}
.y3f1{bottom:147.562500pt;}
.y14f{bottom:147.567713pt;}
.y2c3{bottom:148.057296pt;}
.yea{bottom:149.167967pt;}
.y20e{bottom:149.484380pt;}
.y353{bottom:150.177080pt;}
.y23f{bottom:150.565100pt;}
.y3e2{bottom:150.770833pt;}
.y370{bottom:151.093752pt;}
.y28{bottom:152.014492pt;}
.y1c6{bottom:152.166660pt;}
.y18a{bottom:152.552087pt;}
.y403{bottom:153.562500pt;}
.y2ab{bottom:154.161460pt;}
.ye4{bottom:156.765620pt;}
.y32a{bottom:157.645828pt;}
.y333{bottom:157.645833pt;}
.y376{bottom:157.645839pt;}
.y317{bottom:157.645847pt;}
.y2fe{bottom:157.651033pt;}
.y2e0{bottom:157.651047pt;}
.y6b{bottom:158.367193pt;}
.y1e1{bottom:159.765620pt;}
.y11a{bottom:159.968753pt;}
.y167{bottom:160.489580pt;}
.y215{bottom:161.802087pt;}
.y269{bottom:162.557287pt;}
.y253{bottom:164.361980pt;}
.y19c{bottom:164.364580pt;}
.y51{bottom:165.072918pt;}
.y27a{bottom:166.499993pt;}
.yc2{bottom:167.566407pt;}
.y137{bottom:168.963540pt;}
.y9e{bottom:169.167967pt;}
.y36f{bottom:169.489585pt;}
.y40b{bottom:171.958327pt;}
.y41a{bottom:171.963540pt;}
.yd3{bottom:172.165367pt;}
.y89{bottom:172.166020pt;}
.y10f{bottom:172.558593pt;}
.y3f0{bottom:175.161460pt;}
.ye9{bottom:176.765620pt;}
.y20d{bottom:177.083327pt;}
.y23e{bottom:178.161460pt;}
.y3e1{bottom:178.364580pt;}
.y1c5{bottom:179.765620pt;}
.y189{bottom:180.148433pt;}
.y402{bottom:181.156247pt;}
.y2c0{bottom:181.455723pt;}
.y1f9{bottom:181.669276pt;}
.y2aa{bottom:181.760420pt;}
.y1b7{bottom:181.856767pt;}
.y1ff{bottom:184.364580pt;}
.y28f{bottom:184.744793pt;}
.y31e{bottom:184.854167pt;}
.y35a{bottom:185.244780pt;}
.y329{bottom:185.244788pt;}
.y316{bottom:185.244793pt;}
.y375{bottom:185.244799pt;}
.y365{bottom:185.244807pt;}
.y2fd{bottom:185.249993pt;}
.y345{bottom:185.250005pt;}
.y2df{bottom:185.250007pt;}
.y50{bottom:185.938145pt;}
.y6a{bottom:185.964847pt;}
.y119{bottom:187.566407pt;}
.y166{bottom:188.085940pt;}
.y214{bottom:189.398433pt;}
.y268{bottom:190.156247pt;}
.y221{bottom:190.401047pt;}
.y393{bottom:190.494800pt;}
.y252{bottom:191.958327pt;}
.y19b{bottom:191.960940pt;}
.y41f{bottom:191.963540pt;}
.y3ca{bottom:194.526040pt;}
.yc1{bottom:195.164060pt;}
.y136{bottom:196.561193pt;}
.y9d{bottom:196.765620pt;}
.y27{bottom:198.367193pt;}
.y419{bottom:199.557287pt;}
.yd2{bottom:199.763020pt;}
.y88{bottom:199.763673pt;}
.y279{bottom:199.895839pt;}
.y10e{bottom:200.156247pt;}
.y3ef{bottom:202.760420pt;}
.ye3{bottom:204.363287pt;}
.y20c{bottom:204.679687pt;}
.y2bf{bottom:205.374993pt;}
.y3c9{bottom:205.484380pt;}
.y3e0{bottom:205.963540pt;}
.y4f{bottom:206.803385pt;}
.y1c4{bottom:207.361980pt;}
.y188{bottom:207.747393pt;}
.y401{bottom:208.755207pt;}
.y2a9{bottom:209.359380pt;}
.y1b6{bottom:209.453127pt;}
.y36e{bottom:209.489585pt;}
.y9{bottom:211.283614pt;}
.y1fe{bottom:211.960940pt;}
.y28e{bottom:212.343753pt;}
.y2fc{bottom:212.843740pt;}
.y328{bottom:212.843748pt;}
.y2de{bottom:212.843753pt;}
.y344{bottom:212.843755pt;}
.y374{bottom:212.843759pt;}
.y364{bottom:212.843767pt;}
.y118{bottom:215.164060pt;}
.y165{bottom:215.684900pt;}
.y267{bottom:217.752607pt;}
.y220{bottom:217.999993pt;}
.y40a{bottom:219.557287pt;}
.y1ce{bottom:219.559900pt;}
.y3a3{bottom:220.374987pt;}
.y14e{bottom:222.763020pt;}
.y135{bottom:224.158860pt;}
.y9c{bottom:224.363287pt;}
.y23d{bottom:225.760420pt;}
.y26{bottom:225.964847pt;}
.yd1{bottom:227.360673pt;}
.y87{bottom:227.361327pt;}
.y4e{bottom:227.668625pt;}
.y10d{bottom:227.753900pt;}
.y1f8{bottom:231.755207pt;}
.ye2{bottom:231.960940pt;}
.y277{bottom:233.296873pt;}
.y69{bottom:233.562500pt;}
.y33c{bottom:234.088545pt;}
.y1e0{bottom:234.958327pt;}
.y187{bottom:235.343753pt;}
.y2a8{bottom:236.955727pt;}
.y213{bottom:236.997393pt;}
.y1b5{bottom:237.052087pt;}
.y2bc{bottom:238.770839pt;}
.y3c8{bottom:238.880212pt;}
.y251{bottom:239.557287pt;}
.y19a{bottom:239.559900pt;}
.y327{bottom:240.437495pt;}
.y3ae{bottom:240.437513pt;}
.y2fb{bottom:240.442700pt;}
.y315{bottom:240.442713pt;}
.yc0{bottom:242.761713pt;}
.y36d{bottom:242.890627pt;}
.y266{bottom:245.348953pt;}
.y21f{bottom:245.596353pt;}
.y2f5{bottom:245.687507pt;}
.y409{bottom:247.156247pt;}
.y4d{bottom:248.533851pt;}
.y14d{bottom:250.359380pt;}
.y134{bottom:251.756513pt;}
.y31d{bottom:251.911460pt;}
.y9b{bottom:251.960940pt;}
.y20b{bottom:252.278647pt;}
.y25{bottom:253.562500pt;}
.yd0{bottom:254.958327pt;}
.y10c{bottom:255.351567pt;}
.y28d{bottom:255.877603pt;}
.y400{bottom:256.354167pt;}
.y8{bottom:256.979578pt;}
.y1f7{bottom:259.354167pt;}
.ye1{bottom:259.558593pt;}
.y1fd{bottom:259.559900pt;}
.y3df{bottom:261.156247pt;}
.y68{bottom:261.160153pt;}
.y1df{bottom:262.557287pt;}
.y2bb{bottom:262.690109pt;}
.y186{bottom:262.942713pt;}
.y164{bottom:263.281247pt;}
.y2a7{bottom:264.552087pt;}
.y212{bottom:264.593753pt;}
.y1b4{bottom:264.648433pt;}
.y199{bottom:267.156247pt;}
.y275{bottom:267.692705pt;}
.y398{bottom:268.036447pt;}
.y314{bottom:268.036460pt;}
.y3ad{bottom:268.036473pt;}
.y2fa{bottom:268.041660pt;}
.y373{bottom:268.041672pt;}
.y33b{bottom:268.333336pt;}
.y4c{bottom:269.399091pt;}
.ybf{bottom:270.359380pt;}
.y33a{bottom:271.088545pt;}
.y3c7{bottom:272.281247pt;}
.y265{bottom:272.947913pt;}
.y21e{bottom:273.192713pt;}
.y358{bottom:273.286467pt;}
.y23c{bottom:273.359380pt;}
.y408{bottom:274.749993pt;}
.y86{bottom:274.958980pt;}
.y14c{bottom:277.958327pt;}
.y133{bottom:279.354167pt;}
.y9a{bottom:279.558593pt;}
.y20a{bottom:279.874993pt;}
.y24{bottom:281.160153pt;}
.ycf{bottom:282.555993pt;}
.y1c3{bottom:282.557287pt;}
.y441{bottom:283.281243pt;}
.y3ff{bottom:283.953127pt;}
.ye0{bottom:287.156247pt;}
.y3de{bottom:288.755207pt;}
.y67{bottom:288.757807pt;}
.y28c{bottom:289.276043pt;}
.y1de{bottom:290.156247pt;}
.y4b{bottom:290.264318pt;}
.y185{bottom:290.539060pt;}
.y163{bottom:290.880207pt;}
.y2a6{bottom:292.151047pt;}
.y211{bottom:292.192713pt;}
.y1b3{bottom:292.247393pt;}
.y41e{bottom:294.749993pt;}
.y198{bottom:294.755207pt;}
.y397{bottom:295.635407pt;}
.y313{bottom:295.635420pt;}
.y372{bottom:295.635421pt;}
.y3ac{bottom:295.635433pt;}
.y2f9{bottom:295.640620pt;}
.y2ba{bottom:296.088536pt;}
.ybe{bottom:297.957033pt;}
.y31c{bottom:299.510420pt;}
.y264{bottom:300.546873pt;}
.y21d{bottom:300.791660pt;}
.y23b{bottom:300.955727pt;}
.y418{bottom:302.354167pt;}
.y85{bottom:302.556647pt;}
.y10b{bottom:302.949220pt;}
.y7{bottom:305.176844pt;}
.y3ee{bottom:305.552087pt;}
.y14b{bottom:305.554687pt;}
.y3c6{bottom:305.677079pt;}
.y36c{bottom:306.281252pt;}
.y1f6{bottom:306.953127pt;}
.y99{bottom:307.156247pt;}
.y209{bottom:307.473953pt;}
.y339{bottom:308.333336pt;}
.y23{bottom:308.757807pt;}
.yce{bottom:310.153647pt;}
.y1c2{bottom:310.156247pt;}
.y338{bottom:311.088545pt;}
.y4a{bottom:311.129558pt;}
.y3fe{bottom:311.552087pt;}
.y250{bottom:314.752607pt;}
.ydf{bottom:314.753900pt;}
.y205{bottom:314.755207pt;}
.y3dd{bottom:316.354167pt;}
.y66{bottom:316.355473pt;}
.y2dc{bottom:317.072913pt;}
.y184{bottom:318.138020pt;}
.y162{bottom:318.476567pt;}
.y2a5{bottom:319.749993pt;}
.y210{bottom:319.789060pt;}
.y1b2{bottom:319.843753pt;}
.y407{bottom:322.348953pt;}
.y197{bottom:322.351567pt;}
.y41d{bottom:322.354167pt;}
.y28b{bottom:322.674483pt;}
.y359{bottom:323.234367pt;}
.y312{bottom:323.234380pt;}
.y3ab{bottom:323.234393pt;}
.y2f8{bottom:323.239580pt;}
.y228{bottom:323.994793pt;}
.ybd{bottom:325.554687pt;}
.y132{bottom:326.951820pt;}
.y21c{bottom:328.390620pt;}
.y23a{bottom:328.552087pt;}
.y84{bottom:330.154300pt;}
.y2b9{bottom:330.486976pt;}
.y10a{bottom:330.546873pt;}
.y49{bottom:331.994785pt;}
.y3ed{bottom:333.151047pt;}
.y14a{bottom:333.153647pt;}
.y274{bottom:334.752607pt;}
.y98{bottom:334.753900pt;}
.y1e8{bottom:334.755207pt;}
.y208{bottom:335.070313pt;}
.y22{bottom:336.355473pt;}
.ycd{bottom:337.751300pt;}
.y1c1{bottom:337.752607pt;}
.y3c5{bottom:339.078127pt;}
.y3fd{bottom:339.145833pt;}
.y24f{bottom:342.348953pt;}
.yde{bottom:342.351567pt;}
.y65{bottom:343.953127pt;}
.y332{bottom:344.489587pt;}
.y2a4{bottom:347.346353pt;}
.y263{bottom:348.143233pt;}
.y406{bottom:349.947913pt;}
.y196{bottom:349.950527pt;}
.y2f7{bottom:350.833327pt;}
.y3aa{bottom:350.833340pt;}
.y2db{bottom:351.312496pt;}
.y227{bottom:351.593753pt;}
.y48{bottom:352.860025pt;}
.ybc{bottom:353.152340pt;}
.y2da{bottom:354.072913pt;}
.y131{bottom:354.549473pt;}
.ye8{bottom:354.753900pt;}
.y440{bottom:355.083333pt;}
.y21b{bottom:355.986980pt;}
.y28a{bottom:356.072923pt;}
.y239{bottom:356.151047pt;}
.y83{bottom:357.751953pt;}
.y109{bottom:358.144527pt;}
.y149{bottom:360.749993pt;}
.y183{bottom:361.515627pt;}
.y161{bottom:361.854160pt;}
.y273{bottom:362.348953pt;}
.y97{bottom:362.351567pt;}
.y207{bottom:362.669273pt;}
.y382{bottom:362.885420pt;}
.y311{bottom:363.046867pt;}
.y21{bottom:363.953127pt;}
.ycc{bottom:365.348953pt;}
.y1b1{bottom:367.442713pt;}
.y24e{bottom:369.947913pt;}
.ydd{bottom:369.949220pt;}
.y204{bottom:369.950527pt;}
.y64{bottom:371.550780pt;}
.y181{bottom:372.473955pt;}
.y3c4{bottom:372.473959pt;}
.y36b{bottom:373.343753pt;}
.y47{bottom:373.725265pt;}
.y160{bottom:374.119787pt;}
.y2a3{bottom:374.942713pt;}
.y1cd{bottom:377.546873pt;}
.y417{bottom:377.552087pt;}
.y3a9{bottom:378.427100pt;}
.y2f6{bottom:378.432287pt;}
.y226{bottom:379.190100pt;}
.y352{bottom:380.156252pt;}
.y117{bottom:380.749993pt;}
.y1f5{bottom:382.145833pt;}
.y130{bottom:382.147140pt;}
.ye7{bottom:382.351567pt;}
.y21a{bottom:383.583327pt;}
.y238{bottom:383.749993pt;}
.y82{bottom:385.349607pt;}
.y108{bottom:385.742193pt;}
.y15f{bottom:386.078123pt;}
.y3fc{bottom:386.744793pt;}
.y148{bottom:388.348953pt;}
.y289{bottom:389.471349pt;}
.y272{bottom:389.947913pt;}
.y123{bottom:389.949220pt;}
.y1e7{bottom:389.950527pt;}
.y2d8{bottom:391.312496pt;}
.y20{bottom:391.550780pt;}
.y3dc{bottom:391.552087pt;}
.ycb{bottom:392.946620pt;}
.y1c0{bottom:392.947913pt;}
.y2d7{bottom:394.072913pt;}
.y46{bottom:394.590491pt;}
.y262{bottom:395.739580pt;}
.y37f{bottom:396.281249pt;}
.ydc{bottom:397.546873pt;}
.y41c{bottom:397.552087pt;}
.y63{bottom:399.148433pt;}
.ybb{bottom:400.749993pt;}
.y6{bottom:401.168374pt;}
.y2a2{bottom:402.541660pt;}
.y416{bottom:405.145833pt;}
.y3c3{bottom:405.874993pt;}
.y396{bottom:406.026033pt;}
.y3a8{bottom:406.026060pt;}
.y225{bottom:406.786460pt;}
.y3ec{bottom:408.343753pt;}
.y116{bottom:408.347660pt;}
.y43f{bottom:408.479165pt;}
.y180{bottom:409.270829pt;}
.y12f{bottom:409.744793pt;}
.y96{bottom:409.949220pt;}
.y237{bottom:411.346353pt;}
.y81{bottom:412.947260pt;}
.y351{bottom:413.557292pt;}
.y3fb{bottom:414.343753pt;}
.y37e{bottom:414.682292pt;}
.y1b0{bottom:415.039060pt;}
.y45{bottom:415.455731pt;}
.y147{bottom:415.945313pt;}
.y122{bottom:417.546873pt;}
.y3db{bottom:419.145833pt;}
.y1f{bottom:419.148433pt;}
.y15e{bottom:420.476563pt;}
.y1dd{bottom:420.546873pt;}
.y36a{bottom:420.937500pt;}
.y288{bottom:422.869792pt;}
.y261{bottom:423.338540pt;}
.y2b8{bottom:425.143233pt;}
.ydb{bottom:425.144527pt;}
.y195{bottom:425.145833pt;}
.y42c{bottom:426.744793pt;}
.y2d4{bottom:427.468749pt;}
.yba{bottom:428.347660pt;}
.y2a1{bottom:430.140620pt;}
.y1f4{bottom:431.854169pt;}
.y107{bottom:433.339847pt;}
.y395{bottom:433.624993pt;}
.y3a7{bottom:433.625007pt;}
.y224{bottom:434.385420pt;}
.y3eb{bottom:435.942713pt;}
.y44{bottom:436.320958pt;}
.y12e{bottom:437.342447pt;}
.y350{bottom:437.473959pt;}
.y95{bottom:437.546873pt;}
.y3c2{bottom:439.270839pt;}
.yca{bottom:440.544273pt;}
.y80{bottom:440.544927pt;}
.y3fa{bottom:441.937500pt;}
.y5{bottom:442.564854pt;}
.y1af{bottom:442.638020pt;}
.y1bf{bottom:442.656249pt;}
.y146{bottom:443.544273pt;}
.y24d{bottom:445.143233pt;}
.y121{bottom:445.144527pt;}
.y1e6{bottom:445.145833pt;}
.y3da{bottom:446.744793pt;}
.y1e{bottom:446.746100pt;}
.y17f{bottom:447.872392pt;}
.y379{bottom:448.083329pt;}
.y1dc{bottom:448.143233pt;}
.y260{bottom:450.937500pt;}
.y2b7{bottom:452.739580pt;}
.yda{bottom:452.742193pt;}
.y415{bottom:452.744793pt;}
.y15d{bottom:454.875003pt;}
.yb9{bottom:455.945313pt;}
.y43{bottom:457.186198pt;}
.y2a0{bottom:457.736980pt;}
.y236{bottom:458.942713pt;}
.y106{bottom:460.937500pt;}
.y3a6{bottom:461.218767pt;}
.y394{bottom:461.223953pt;}
.y43e{bottom:461.874996pt;}
.y223{bottom:461.984380pt;}
.y2d3{bottom:463.270833pt;}
.y3ea{bottom:463.541660pt;}
.y94{bottom:465.144527pt;}
.y1fc{bottom:465.145833pt;}
.y17e{bottom:466.270829pt;}
.yc9{bottom:468.141927pt;}
.y7f{bottom:468.142580pt;}
.y1ae{bottom:470.234380pt;}
.y145{bottom:471.140620pt;}
.y391{bottom:471.468745pt;}
.y3c1{bottom:472.671873pt;}
.y24c{bottom:472.739580pt;}
.y120{bottom:472.742193pt;}
.y1d{bottom:474.343753pt;}
.y287{bottom:474.666672pt;}
.y1db{bottom:475.739580pt;}
.y34f{bottom:477.473959pt;}
.y42{bottom:478.051438pt;}
.y25f{bottom:478.533860pt;}
.y2b6{bottom:480.338540pt;}
.y194{bottom:480.341140pt;}
.y1f3{bottom:481.942713pt;}
.yb8{bottom:483.542967pt;}
.y4{bottom:483.961347pt;}
.y363{bottom:484.473947pt;}
.y12d{bottom:484.940100pt;}
.y42e{bottom:485.041660pt;}
.y29f{bottom:485.333327pt;}
.y235{bottom:486.541660pt;}
.y105{bottom:488.535153pt;}
.y3a5{bottom:488.817727pt;}
.y15c{bottom:489.273443pt;}
.y3f9{bottom:489.536460pt;}
.y222{bottom:489.580727pt;}
.y331{bottom:490.677087pt;}
.y3e9{bottom:491.140620pt;}
.y93{bottom:492.742193pt;}
.yc8{bottom:495.739580pt;}
.y7e{bottom:495.740233pt;}
.y1ad{bottom:497.833327pt;}
.y144{bottom:498.739580pt;}
.y41{bottom:498.916665pt;}
.y24b{bottom:500.338540pt;}
.yd9{bottom:500.339847pt;}
.y203{bottom:500.341140pt;}
.y17c{bottom:501.872392pt;}
.y3d9{bottom:501.937500pt;}
.y1c{bottom:501.941407pt;}
.y1da{bottom:503.338540pt;}
.y3c0{bottom:506.067705pt;}
.y25e{bottom:506.130207pt;}
.y1cc{bottom:507.937500pt;}
.y390{bottom:508.468745pt;}
.y1f2{bottom:509.539060pt;}
.y34e{bottom:510.875000pt;}
.yb7{bottom:511.140620pt;}
.y12c{bottom:512.537767pt;}
.y29e{bottom:512.932287pt;}
.y234{bottom:514.140620pt;}
.y3b8{bottom:514.276040pt;}
.y43b{bottom:514.677079pt;}
.y104{bottom:516.132807pt;}
.y3a4{bottom:516.416673pt;}
.y3f8{bottom:517.135420pt;}
.y3e8{bottom:518.739580pt;}
.y40{bottom:519.781905pt;}
.y17d{bottom:520.270829pt;}
.y3cc{bottom:520.338540pt;}
.y92{bottom:520.339847pt;}
.y1be{bottom:520.341140pt;}
.yc7{bottom:523.337233pt;}
.y7d{bottom:523.337887pt;}
.y15b{bottom:523.671869pt;}
.y1ac{bottom:525.429687pt;}
.y286{bottom:526.463536pt;}
.yd8{bottom:527.937500pt;}
.y42d{bottom:528.416667pt;}
.y3d8{bottom:529.536460pt;}
.y1b{bottom:529.539060pt;}
.y42b{bottom:529.541660pt;}
.y2d2{bottom:530.328127pt;}
.y1d9{bottom:530.937500pt;}
.y448{bottom:531.864587pt;}
.y1cb{bottom:535.536460pt;}
.y1f1{bottom:537.138020pt;}
.yb6{bottom:538.738287pt;}
.y378{bottom:539.072913pt;}
.y3bf{bottom:539.468753pt;}
.y12b{bottom:540.135420pt;}
.y3f{bottom:540.647131pt;}
.y233{bottom:541.736980pt;}
.y38f{bottom:541.869792pt;}
.y103{bottom:543.730473pt;}
.y3f7{bottom:544.734380pt;}
.y3e7{bottom:546.333327pt;}
.y143{bottom:546.335940pt;}
.y91{bottom:547.937500pt;}
.yc6{bottom:550.934900pt;}
.y1ab{bottom:553.028647pt;}
.y17a{bottom:553.669275pt;}
.y3ce{bottom:555.531247pt;}
.y24a{bottom:555.533860pt;}
.yd7{bottom:555.535153pt;}
.y193{bottom:555.536460pt;}
.y25d{bottom:555.838543pt;}
.y3d7{bottom:557.135420pt;}
.y1a{bottom:557.136713pt;}
.y330{bottom:557.734380pt;}
.y159{bottom:558.070312pt;}
.y38e{bottom:560.270833pt;}
.y29d{bottom:560.531247pt;}
.y285{bottom:560.861976pt;}
.y3e{bottom:561.512371pt;}
.y1ca{bottom:563.132807pt;}
.y1f0{bottom:564.734380pt;}
.yb5{bottom:566.335940pt;}
.y12a{bottom:567.733073pt;}
.y232{bottom:569.333327pt;}
.y3{bottom:570.308995pt;}
.y17b{bottom:572.067712pt;}
.y3be{bottom:572.864585pt;}
.y7c{bottom:573.045569pt;}
.y3e6{bottom:573.932287pt;}
.y142{bottom:573.934900pt;}
.y34d{bottom:574.270833pt;}
.y3cb{bottom:575.531247pt;}
.y90{bottom:575.535153pt;}
.y1bd{bottom:575.536460pt;}
.y15a{bottom:576.468749pt;}
.y2d1{bottom:577.924473pt;}
.y1d8{bottom:578.533860pt;}
.y1aa{bottom:580.624993pt;}
.y3d{bottom:582.377598pt;}
.y2b5{bottom:583.130207pt;}
.yd6{bottom:583.132807pt;}
.y414{bottom:583.135420pt;}
.y447{bottom:584.656243pt;}
.y62{bottom:584.734380pt;}
.y42a{bottom:584.739580pt;}
.y439{bottom:585.869785pt;}
.y102{bottom:587.108067pt;}
.y29c{bottom:588.127607pt;}
.y179{bottom:590.466149pt;}
.y1c9{bottom:590.731767pt;}
.y1ef{bottom:592.333327pt;}
.y38c{bottom:593.666668pt;}
.yb4{bottom:593.933593pt;}
.y129{bottom:595.329433pt;}
.y271{bottom:595.533860pt;}
.y231{bottom:596.932287pt;}
.yfe{bottom:597.066408pt;}
.yc5{bottom:600.643223pt;}
.y141{bottom:601.531247pt;}
.y249{bottom:603.130207pt;}
.y1e5{bottom:603.132807pt;}
.y41b{bottom:603.135420pt;}
.y3c{bottom:603.242838pt;}
.y19{bottom:603.679359pt;}
.y25c{bottom:605.924473pt;}
.y377{bottom:606.130207pt;}
.y3bd{bottom:606.265620pt;}
.y1a9{bottom:608.223953pt;}
.y2b4{bottom:610.729167pt;}
.y192{bottom:610.731767pt;}
.y158{bottom:610.867189pt;}
.y61{bottom:612.332033pt;}
.y3d6{bottom:612.333327pt;}
.y2f4{bottom:613.656252pt;}
.y101{bottom:615.464845pt;}
.y29b{bottom:615.723953pt;}
.y3f6{bottom:619.927087pt;}
.y326{bottom:621.270832pt;}
.yb3{bottom:621.531247pt;}
.y270{bottom:623.130207pt;}
.y7b{bottom:623.132807pt;}
.y3e5{bottom:623.640623pt;}
.y178{bottom:623.864579pt;}
.y3b{bottom:624.108078pt;}
.y2d0{bottom:625.520833pt;}
.y1d7{bottom:626.130207pt;}
.y18{bottom:628.977212pt;}
.y140{bottom:629.130207pt;}
.y248{bottom:630.729167pt;}
.yd5{bottom:630.730473pt;}
.y1e4{bottom:630.731767pt;}
.y1a8{bottom:635.820313pt;}
.y191{bottom:638.328127pt;}
.y422{bottom:638.333327pt;}
.y3bc{bottom:639.661452pt;}
.y3d5{bottom:639.927087pt;}
.y60{bottom:639.929687pt;}
.y429{bottom:639.932287pt;}
.y357{bottom:641.255212pt;}
.y34c{bottom:641.328127pt;}
.y177{bottom:642.263016pt;}
.y29a{bottom:643.322913pt;}
.y284{bottom:643.859379pt;}
.y3a{bottom:644.973305pt;}
.y128{bottom:645.037756pt;}
.y156{bottom:645.265619pt;}
.y230{bottom:646.638023pt;}
.y3f5{bottom:647.526047pt;}
.y2f3{bottom:647.901043pt;}
.yb2{bottom:649.128900pt;}
.y2f2{bottom:650.656252pt;}
.y26f{bottom:650.729167pt;}
.y7a{bottom:650.730473pt;}
.y1bc{bottom:650.731767pt;}
.y2cf{bottom:653.119793pt;}
.y25b{bottom:653.520833pt;}
.y1d6{bottom:653.729167pt;}
.y3e4{bottom:655.838543pt;}
.y13f{bottom:656.726567pt;}
.y436{bottom:657.062496pt;}
.yd4{bottom:658.328127pt;}
.y413{bottom:658.333327pt;}
.y2{bottom:662.900391pt;}
.y157{bottom:663.664056pt;}
.y39{bottom:665.838705pt;}
.y2b3{bottom:665.924473pt;}
.y190{bottom:665.927087pt;}
.yf9{bottom:667.261716pt;}
.y3d4{bottom:667.526047pt;}
.y5f{bottom:667.527340pt;}
.y1ee{bottom:667.528647pt;}
.y371{bottom:669.666661pt;}
.y299{bottom:670.921873pt;}
.y3bb{bottom:674.062500pt;}
.y17{bottom:674.275065pt;}
.y446{bottom:674.854167pt;}
.y176{bottom:675.661459pt;}
.y310{bottom:675.817705pt;}
.y115{bottom:676.726567pt;}
.y356{bottom:678.255212pt;}
.y79{bottom:678.328127pt;}
.y1a7{bottom:680.255208pt;}
.y2ce{bottom:680.718753pt;}
.y25a{bottom:681.119793pt;}
.y1d5{bottom:681.328127pt;}
.y38b{bottom:684.656252pt;}
.y247{bottom:685.924473pt;}
.y11f{bottom:685.925780pt;}
.y1c8{bottom:685.927087pt;}
.y38{bottom:686.703945pt;}
.y2f1{bottom:687.901043pt;}
.y34b{bottom:688.927087pt;}
.y2f0{bottom:690.656252pt;}
.y1a6{bottom:692.458339pt;}
.y2b2{bottom:693.520833pt;}
.y175{bottom:694.059896pt;}
.y5e{bottom:695.124993pt;}
.y283{bottom:695.656247pt;}
.ya8{bottom:696.521487pt;}
.y22f{bottom:696.723953pt;}
.yb1{bottom:696.726567pt;}
.y154{bottom:698.062499pt;}
.y298{bottom:698.518233pt;}
.y16{bottom:699.572919pt;}
.yf8{bottom:704.058592pt;}
.y114{bottom:704.324220pt;}
.y13e{bottom:704.325527pt;}
.y26e{bottom:705.924473pt;}
.y78{bottom:705.925780pt;}
.y1bb{bottom:705.927087pt;}
.y37{bottom:707.569171pt;}
.y2cd{bottom:708.315100pt;}
.y1d4{bottom:708.924473pt;}
.y30d{bottom:709.218753pt;}
.y445{bottom:709.854165pt;}
.y1a5{bottom:710.856776pt;}
.y3cd{bottom:713.520833pt;}
.y11e{bottom:713.523433pt;}
.y412{bottom:713.526047pt;}
.y362{bottom:714.458327pt;}
.y155{bottom:716.460936pt;}
.y3b7{bottom:716.656252pt;}
.y355{bottom:718.255212pt;}
.y2b1{bottom:721.119793pt;}
.y3f4{bottom:722.718753pt;}
.y127{bottom:722.722660pt;}
.y1ed{bottom:722.723953pt;}
.y2eb{bottom:724.057295pt;}
.ya7{bottom:724.119140pt;}
.y22e{bottom:724.322913pt;}
.yb0{bottom:724.324220pt;}
.y15{bottom:724.870772pt;}
.y297{bottom:726.114580pt;}
.y3a2{bottom:726.333327pt;}
.y174{bottom:727.458329pt;}
.y433{bottom:728.260416pt;}
.y36{bottom:728.434411pt;}
.y259{bottom:728.718753pt;}
.y282{bottom:729.052079pt;}
.y113{bottom:731.921873pt;}
.y1{bottom:732.291710pt;}
.y30c{bottom:733.135420pt;}
.y246{bottom:733.520833pt;}
.y77{bottom:733.523433pt;}
.y1d3{bottom:736.520833pt;}
.y3ba{bottom:741.119793pt;}
.y11d{bottom:741.121100pt;}
.y1c7{bottom:741.122393pt;}
.y3d3{bottom:742.718753pt;}
.y5d{bottom:742.722660pt;}
.y1a4{bottom:744.255205pt;}
.y361{bottom:747.854165pt;}
.y35{bottom:749.299638pt;}
.y3b5{bottom:750.057285pt;}
.y14{bottom:750.168625pt;}
.y3f3{bottom:750.317713pt;}
.y126{bottom:750.320313pt;}
.y428{bottom:750.322913pt;}
.y153{bottom:750.859379pt;}
.y354{bottom:751.656253pt;}
.ya6{bottom:751.716793pt;}
.y38a{bottom:751.718753pt;}
.yaf{bottom:751.921873pt;}
.y343{bottom:752.458328pt;}
.y296{bottom:753.713540pt;}
.yf7{bottom:755.855472pt;}
.y2cc{bottom:755.911460pt;}
.y13d{bottom:759.520833pt;}
.y245{bottom:761.119793pt;}
.y76{bottom:761.121100pt;}
.y18f{bottom:761.122393pt;}
.y281{bottom:762.453125pt;}
.y1a3{bottom:762.653643pt;}
.y444{bottom:763.249996pt;}
.y3a1{bottom:763.333327pt;}
.y1d2{bottom:764.119793pt;}
.y173{bottom:764.255205pt;}
.y360{bottom:766.249999pt;}
.y30b{bottom:766.531252pt;}
.y3b4{bottom:768.458327pt;}
.y202{bottom:768.718753pt;}
.y34{bottom:770.164878pt;}
.y3d2{bottom:770.317713pt;}
.y5c{bottom:770.320313pt;}
.y13{bottom:775.466465pt;}
.y258{bottom:776.315100pt;}
.y3f2{bottom:777.916660pt;}
.y125{bottom:777.917967pt;}
.y1ec{bottom:777.919273pt;}
.y22d{bottom:779.518233pt;}
.yae{bottom:779.519527pt;}
.y13c{bottom:787.117193pt;}
.y75{bottom:788.718753pt;}
.y30a{bottom:790.453127pt;}
.y33{bottom:791.030105pt;}
.y1d1{bottom:791.718753pt;}
.y1a2{bottom:796.052085pt;}
.y405{bottom:796.312500pt;}
.y2b0{bottom:796.315100pt;}
.y201{bottom:796.317713pt;}
.y3d1{bottom:797.916660pt;}
.y5b{bottom:797.917967pt;}
.y389{bottom:799.312500pt;}
.ya5{bottom:799.314447pt;}
.y35f{bottom:799.651045pt;}
.y12{bottom:800.764319pt;}
.y295{bottom:801.312500pt;}
.y2cb{bottom:801.398443pt;}
.y3b3{bottom:802.854167pt;}
.y3a0{bottom:803.333327pt;}
.y257{bottom:803.911460pt;}
.y124{bottom:805.515620pt;}
.y427{bottom:805.520833pt;}
.y22c{bottom:807.114580pt;}
.yad{bottom:807.117193pt;}
.yf5{bottom:807.652339pt;}
.y8f{bottom:808.718753pt;}
.y32{bottom:811.895345pt;}
.y1a1{bottom:814.450523pt;}
.y2ca{bottom:814.846349pt;}
.y2ea{bottom:815.052087pt;}
.y280{bottom:815.249993pt;}
.y16f{bottom:816.052083pt;}
.y3b9{bottom:816.312500pt;}
.y244{bottom:816.315100pt;}
.y74{bottom:816.316407pt;}
.y18e{bottom:816.317713pt;}
.y443{bottom:816.651045pt;}
.y35e{bottom:818.052087pt;}
.y306{bottom:823.848959pt;}
.y2af{bottom:823.911460pt;}
.y423{bottom:823.916660pt;}
.y5a{bottom:825.515620pt;}
.yf4{bottom:826.050776pt;}
.y11{bottom:826.062172pt;}
.ya4{bottom:826.912113pt;}
.y31{bottom:832.760585pt;}
.y426{bottom:833.114580pt;}
.y22b{bottom:834.713540pt;}
.yac{bottom:834.714847pt;}
.y431{bottom:836.249999pt;}
.y3b1{bottom:836.250000pt;}
.y26d{bottom:836.315100pt;}
.y8e{bottom:836.316407pt;}
.y152{bottom:836.317713pt;}
.y39d{bottom:836.729167pt;}
.y13b{bottom:836.825516pt;}
.y1d0{bottom:841.424476pt;}
.y243{bottom:843.911460pt;}
.y73{bottom:843.914060pt;}
.y411{bottom:843.916660pt;}
.y1a0{bottom:847.848952pt;}
.y10{bottom:851.360025pt;}
.y35c{bottom:851.447916pt;}
.y256{bottom:851.510420pt;}
.y59{bottom:853.113287pt;}
.y1eb{bottom:853.114580pt;}
.y30{bottom:853.625811pt;}
.yf1{bottom:859.449219pt;}
.y425{bottom:860.713540pt;}
.y2c8{bottom:861.447917pt;}
.yab{bottom:862.312500pt;}
.y386{bottom:862.848957pt;}
.y26c{bottom:863.911460pt;}
.y8d{bottom:863.914060pt;}
.y294{bottom:864.846349pt;}
.y19f{bottom:866.247389pt;}
.y13a{bottom:869.023436pt;}
.y16d{bottom:871.247396pt;}
.y2ae{bottom:871.510420pt;}
.y72{bottom:871.511713pt;}
.y18d{bottom:871.513020pt;}
.y442{bottom:873.052083pt;}
.y2f{bottom:874.491051pt;}
.ya3{bottom:874.509767pt;}
.yf{bottom:876.657879pt;}
.y325{bottom:878.843751pt;}
.y2c7{bottom:879.846355pt;}
.y3d0{bottom:880.708327pt;}
.y58{bottom:880.710940pt;}
.y2e9{bottom:882.109380pt;}
.y305{bottom:887.244792pt;}
.y424{bottom:888.307292pt;}
.y22a{bottom:889.908855pt;}
.yaa{bottom:889.910156pt;}
.y242{bottom:891.510416pt;}
.y8c{bottom:891.511719pt;}
.y151{bottom:891.513021pt;}
.y2e{bottom:895.356282pt;}
.yf0{bottom:896.246093pt;}
.y27f{bottom:898.244792pt;}
.y18c{bottom:899.109375pt;}
.y410{bottom:899.114583pt;}
.y39c{bottom:900.125000pt;}
.ye{bottom:901.955729pt;}
.y16b{bottom:904.645833pt;}
.y19e{bottom:907.247396pt;}
.y3cf{bottom:908.307292pt;}
.y57{bottom:908.308593pt;}
.y1ea{bottom:908.309896pt;}
.y324{bottom:912.244792pt;}
.y2c6{bottom:913.244792pt;}
.y2d{bottom:916.221517pt;}
.y112{bottom:917.507812pt;}
.y71{bottom:919.109375pt;}
.y421{bottom:919.114583pt;}
.ya2{bottom:922.107421pt;}
.y16c{bottom:923.044271pt;}
.y255{bottom:926.705729pt;}
.y18b{bottom:926.708333pt;}
.y3b0{bottom:927.244792pt;}
.yd{bottom:927.253581pt;}
.y430{bottom:928.843751pt;}
.yee{bottom:929.644532pt;}
.y323{bottom:930.645833pt;}
.y293{bottom:931.643229pt;}
.y42f{bottom:932.843751pt;}
.y56{bottom:935.906249pt;}
.y2c{bottom:937.086752pt;}
.y16a{bottom:941.442708pt;}
.y2e6{bottom:945.645833pt;}
.ya9{bottom:945.947915pt;}
.y241{bottom:946.705729pt;}
.y70{bottom:946.707031pt;}
.y139{bottom:946.708333pt;}
.ya1{bottom:949.705079pt;}
.y27e{bottom:950.041667pt;}
.yc{bottom:952.551432pt;}
.y304{bottom:954.302083pt;}
.y206{bottom:954.304688pt;}
.y39b{bottom:960.744792pt;}
.y322{bottom:964.041667pt;}
.y292{bottom:965.041667pt;}
.y111{bottom:967.214843pt;}
.y219{bottom:974.302083pt;}
.y6f{bottom:974.304688pt;}
.y40f{bottom:974.307292pt;}
.yb{bottom:977.849284pt;}
.y321{bottom:982.437500pt;}
.yec{bottom:982.441407pt;}
.y169{bottom:982.442708pt;}
.y27d{bottom:983.440104pt;}
.y229{bottom:991.942707pt;}
.y55{bottom:991.944010pt;}
.y2b{bottom:991.944172pt;}
.y1e9{bottom:991.945311pt;}
.ya0{bottom:999.412760pt;}
.y218{bottom:1001.901041pt;}
.y6e{bottom:1001.902344pt;}
.y138{bottom:1001.903645pt;}
.ya{bottom:1003.147136pt;}
.h16{height:32.395833pt;}
.hc{height:32.398437pt;}
.h15{height:32.401041pt;}
.h1a{height:35.156251pt;}
.h10{height:38.250001pt;}
.h11{height:43.031250pt;}
.h14{height:44.437500pt;}
.h29{height:50.791667pt;}
.hd{height:50.796875pt;}
.h28{height:50.802084pt;}
.h5{height:52.593751pt;}
.h9{height:52.966147pt;}
.h20{height:56.312500pt;}
.h18{height:56.315104pt;}
.h17{height:56.317708pt;}
.hb{height:56.843750pt;}
.h6{height:57.375000pt;}
.h4{height:57.781250pt;}
.ha{height:66.317706pt;}
.h3{height:66.937498pt;}
.h1c{height:69.192708pt;}
.he{height:69.195312pt;}
.h19{height:69.197917pt;}
.h1{height:71.718750pt;}
.h13{height:72.291665pt;}
.h2{height:86.671875pt;}
.hf{height:87.593751pt;}
.h2d{height:94.151040pt;}
.h7{height:94.154947pt;}
.h12{height:94.156253pt;}
.h8{height:94.739581pt;}
.h22{height:96.791667pt;}
.h1f{height:96.796875pt;}
.h2e{height:105.989584pt;}
.h27{height:124.385417pt;}
.h1d{height:124.390625pt;}
.h2c{height:124.395833pt;}
.h25{height:151.989584pt;}
.h24{height:179.583333pt;}
.h1b{height:234.781253pt;}
.h26{height:262.380213pt;}
.h23{height:289.973960pt;}
.h21{height:345.171880pt;}
.h1e{height:400.369787pt;}
.h2a{height:483.161453pt;}
.h2b{height:538.354173pt;}
.h0{height:1122.666667pt;}
.w15{width:78.000000pt;}
.w18{width:79.000000pt;}
.w16{width:81.000000pt;}
.w19{width:82.000000pt;}
.w7{width:84.000000pt;}
.wc{width:85.000000pt;}
.w14{width:91.000000pt;}
.wa{width:96.000000pt;}
.w22{width:101.000000pt;}
.w24{width:102.000000pt;}
.w6{width:112.000000pt;}
.wb{width:113.000000pt;}
.w10{width:119.000000pt;}
.w12{width:120.000000pt;}
.w8{width:120.000041pt;}
.wd{width:121.000041pt;}
.w9{width:137.000000pt;}
.we{width:138.000000pt;}
.w28{width:150.000000pt;}
.w30{width:151.000000pt;}
.w2a{width:152.000000pt;}
.w26{width:153.000000pt;}
.w33{width:154.000000pt;}
.wf{width:155.000000pt;}
.w2b{width:156.000000pt;}
.w3e{width:158.000000pt;}
.w36{width:174.000041pt;}
.w39{width:175.000041pt;}
.w3c{width:182.000000pt;}
.w35{width:186.000000pt;}
.w38{width:187.000000pt;}
.w34{width:192.000000pt;}
.w37{width:194.000000pt;}
.w3f{width:199.000081pt;}
.w3b{width:204.000041pt;}
.w3d{width:219.000000pt;}
.w3a{width:220.000000pt;}
.w3{width:272.000040pt;}
.w5{width:273.000040pt;}
.w11{width:280.000040pt;}
.w13{width:281.000040pt;}
.w2{width:282.000000pt;}
.w4{width:284.000000pt;}
.w17{width:311.000040pt;}
.w1a{width:312.000040pt;}
.w32{width:391.000040pt;}
.w2c{width:393.000040pt;}
.w2d{width:394.000040pt;}
.w27{width:395.000040pt;}
.w2f{width:396.000040pt;}
.w31{width:397.000040pt;}
.w29{width:398.000040pt;}
.w2e{width:399.000040pt;}
.w23{width:462.000080pt;}
.w25{width:463.000080pt;}
.w1f{width:554.000000pt;}
.w20{width:556.000000pt;}
.w1d{width:557.000000pt;}
.w1b{width:558.000000pt;}
.w1e{width:559.000000pt;}
.w1c{width:560.000000pt;}
.w21{width:566.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:6.000000pt;}
.x1b{left:7.000000pt;}
.x60{left:9.824219pt;}
.x41{left:11.367188pt;}
.x37{left:13.820312pt;}
.x39{left:16.050781pt;}
.x19{left:17.695312pt;}
.x27{left:20.492188pt;}
.x22{left:22.000000pt;}
.x17{left:24.468750pt;}
.x24{left:27.113281pt;}
.x26{left:29.847656pt;}
.x2e{left:32.222656pt;}
.x21{left:34.382813pt;}
.x2a{left:35.328125pt;}
.x29{left:40.000000pt;}
.x31{left:41.777344pt;}
.x2d{left:44.000000pt;}
.x58{left:46.554688pt;}
.x30{left:48.000000pt;}
.x53{left:49.000000pt;}
.x2b{left:53.328125pt;}
.x55{left:57.652344pt;}
.x2c{left:58.722656pt;}
.x57{left:59.664063pt;}
.x2f{left:61.828125pt;}
.x5c{left:65.597656pt;}
.x40{left:88.636719pt;}
.x34{left:99.562500pt;}
.x35{left:106.385824pt;}
.x56{left:107.385824pt;}
.x3f{left:108.385824pt;}
.x3d{left:109.385824pt;}
.x1a{left:110.385824pt;}
.x16{left:111.385824pt;}
.x28{left:112.385824pt;}
.xa{left:113.385824pt;}
.x32{left:114.385824pt;}
.x4{left:128.637501pt;}
.xd{left:137.385824pt;}
.x44{left:140.042074pt;}
.x3b{left:147.015619pt;}
.xf{left:155.385824pt;}
.x6{left:161.942186pt;}
.x1d{left:165.385824pt;}
.x3e{left:168.656250pt;}
.x5a{left:174.640482pt;}
.x43{left:177.804690pt;}
.x10{left:179.385824pt;}
.x5{left:182.186331pt;}
.x4b{left:184.073049pt;}
.x1e{left:189.385824pt;}
.x13{left:190.385824pt;}
.x11{left:193.691114pt;}
.x36{left:199.385824pt;}
.x50{left:202.678518pt;}
.x1f{left:207.740309pt;}
.x20{left:210.385824pt;}
.x1{left:216.083792pt;}
.x42{left:217.385824pt;}
.x14{left:226.385824pt;}
.x4f{left:231.346487pt;}
.x4d{left:232.600393pt;}
.x7{left:237.129026pt;}
.x8{left:239.069540pt;}
.x48{left:245.725393pt;}
.x45{left:257.647268pt;}
.x47{left:266.385827pt;}
.x4c{left:267.385827pt;}
.x49{left:268.385827pt;}
.x46{left:269.385827pt;}
.x51{left:270.385827pt;}
.x33{left:271.385827pt;}
.x4a{left:272.385827pt;}
.x2{left:273.437307pt;}
.x3{left:275.727346pt;}
.x38{left:279.385827pt;}
.xe{left:281.144949pt;}
.x59{left:285.875144pt;}
.x4e{left:289.737114pt;}
.x52{left:302.385827pt;}
.x9{left:305.385824pt;}
.x3c{left:308.099524pt;}
.x12{left:324.766194pt;}
.x5f{left:334.385827pt;}
.x5d{left:335.385827pt;}
.x5b{left:336.981464pt;}
.xc{left:348.711644pt;}
.x3a{left:362.385827pt;}
.x15{left:388.850394pt;}
.xb{left:392.850394pt;}
.x18{left:395.385827pt;}
.x23{left:410.385827pt;}
.x54{left:490.385827pt;}
.x61{left:493.385827pt;}
.x25{left:532.385827pt;}
.x5e{left:540.385827pt;}
}




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