
    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_2714b10ecef401505c6808e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_c75551d2db2e888286f1c4f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_81012d95669c223620a44bdd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_b38d54f4f9f97eccec8f6294.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_4a94185fea8510367ee3cc76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985318;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_1dbce6b0aa2d668f5b0fafa8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_f5232d34b4149696c332efde.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a69994f385ea4cfcf6c88b76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f37f4c2b04c42f976adefb14.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a168ff0e9cdfaa205378ed53.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f90d29c71bd60ee8a1e7e733.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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:ffc;src:url('chunks/assets/font_b5be70094cb06473a92647fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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:ffd;src:url('chunks/assets/font_eb15bed723ab9b40b1445276.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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:ffe;src:url('chunks/assets/font_399805a47d28daddfc2c0ff0.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_023a1b4146501ab56c0f04f8.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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:ff10;src:url('chunks/assets/font_f38850808b777266c59dbd4d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.034440px;}
.ls7{letter-spacing:0.063360px;}
.lsd{letter-spacing:0.068862px;}
.ls13{letter-spacing:0.068906px;}
.lsb{letter-spacing:0.069038px;}
.lse{letter-spacing:0.178740px;}
.ls2{letter-spacing:0.187920px;}
.ls1{letter-spacing:0.188076px;}
.ls5{letter-spacing:0.200602px;}
.ls11{letter-spacing:0.213540px;}
.ls4{letter-spacing:0.213546px;}
.ls3{letter-spacing:0.216462px;}
.ls9{letter-spacing:10.133756px;}
.lsa{letter-spacing:28.316329px;}
.ls10{letter-spacing:32.644547px;}
.lsc{letter-spacing:34.087306px;}
.ls12{letter-spacing:55.007378px;}
.lsf{letter-spacing:378.578849px;}
.ls0{letter-spacing:1374.407090px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-38.545185px;}
.ws4{word-spacing:-36.069532px;}
.wsa{word-spacing:-35.855986px;}
.wsd{word-spacing:-21.059992px;}
.wse{word-spacing:-18.068899px;}
.wsb{word-spacing:-18.068855px;}
.ws9{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.613273px;}
.ws10{word-spacing:-16.559993px;}
.wsf{word-spacing:-15.839994px;}
.ws0{word-spacing:-14.970234px;}
.ws2{word-spacing:-14.374074px;}
.ws6{word-spacing:-13.505755px;}
.ws5{word-spacing:-13.499995px;}
.ws7{word-spacing:-10.902236px;}
.wsc{word-spacing:-8.999996px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-82.050447px;}
._10{margin-left:-5.006948px;}
._7{margin-left:-3.768468px;}
._3{margin-left:-2.661290px;}
._1{margin-left:-1.237605px;}
._0{width:1.152887px;}
._c{width:2.871806px;}
._b{width:4.130148px;}
._a{width:5.486810px;}
._11{width:6.625859px;}
._5{width:7.661300px;}
._4{width:8.838232px;}
._9{width:9.861419px;}
._8{width:10.978735px;}
._e{width:12.232546px;}
._d{width:13.548791px;}
._6{width:15.198794px;}
._f{width:16.548597px;}
._14{width:19.386290px;}
._15{width:21.208935px;}
._16{width:22.708742px;}
._4e{width:23.795832px;}
._18{width:24.828228px;}
._4f{width:25.845205px;}
._13{width:27.491513px;}
._12{width:28.960321px;}
._52{width:30.816306px;}
._17{width:32.418903px;}
._49{width:33.917153px;}
._3e{width:39.928998px;}
._3a{width:55.203551px;}
._45{width:58.100998px;}
._44{width:76.196969px;}
._41{width:84.333053px;}
._42{width:86.589777px;}
._43{width:122.031959px;}
._3c{width:129.321209px;}
._51{width:134.390530px;}
._50{width:135.486482px;}
._33{width:143.360131px;}
._37{width:160.663075px;}
._48{width:173.401206px;}
._3f{width:175.685664px;}
._3d{width:193.203953px;}
._47{width:197.626156px;}
._4a{width:223.972982px;}
._2e{width:226.399737px;}
._39{width:234.290150px;}
._46{width:245.470031px;}
._31{width:275.634014px;}
._32{width:325.263221px;}
._22{width:341.479063px;}
._1a{width:345.807462px;}
._2f{width:430.281928px;}
._3b{width:466.641293px;}
._34{width:484.386825px;}
._21{width:524.430103px;}
._25{width:545.527005px;}
._38{width:563.820142px;}
._4d{width:576.621830px;}
._4b{width:583.365652px;}
._40{width:612.622073px;}
._4c{width:621.861591px;}
._1f{width:644.240455px;}
._2d{width:653.941011px;}
._2c{width:657.363904px;}
._2a{width:667.428887px;}
._2b{width:673.199685px;}
._29{width:679.692580px;}
._1b{width:729.484246px;}
._35{width:744.250316px;}
._28{width:745.542902px;}
._23{width:769.520205px;}
._26{width:773.479147px;}
._19{width:777.510289px;}
._1d{width:784.854693px;}
._27{width:789.257498px;}
._20{width:793.583496px;}
._36{width:794.682335px;}
._24{width:825.464659px;}
._1c{width:829.791858px;}
._30{width:835.364009px;}
._1e{width:865.787747px;}
.fcd{color:rgb(0,176,80);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(248,49,47);}
.fc7{color:rgb(187,29,128);}
.fc8{color:rgb(83,129,53);}
.fc3{color:rgb(68,84,106);}
.fc9{color:rgb(0,32,96);}
.fcc{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fs2{font-size:5.759998px;}
.fs7{font-size:35.999986px;}
.fs5{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs9{font-size:63.359975px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs8{font-size:81.359967px;}
.fs6{font-size:84.239966px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.y1e{bottom:2.699731px;}
.y48{bottom:3.239944px;}
.y4f{bottom:3.959599px;}
.y163{bottom:4.319695px;}
.y1a{bottom:4.319719px;}
.y169{bottom:4.319734px;}
.y16e{bottom:4.319759px;}
.y171{bottom:4.319772px;}
.y52{bottom:4.499577px;}
.y4a{bottom:4.499608px;}
.y1c{bottom:4.499719px;}
.y2b{bottom:4.499733px;}
.ya{bottom:4.499980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y8{bottom:51.659979px;}
.y19b{bottom:132.299947px;}
.ye2{bottom:133.919946px;}
.y10a{bottom:134.819946px;}
.y47{bottom:137.700000px;}
.ya2{bottom:140.579944px;}
.y13f{bottom:145.079942px;}
.yf8{bottom:146.879941px;}
.y1c7{bottom:148.859940px;}
.y15e{bottom:152.819939px;}
.y1aa{bottom:154.079938px;}
.y72{bottom:154.619938px;}
.y11b{bottom:155.879938px;}
.ybb{bottom:156.239938px;}
.y1b7{bottom:161.099936px;}
.y1dd{bottom:161.819935px;}
.y19a{bottom:163.259935px;}
.y109{bottom:165.959934px;}
.ya1{bottom:171.719931px;}
.y127{bottom:172.079931px;}
.y46{bottom:172.619931px;}
.y13e{bottom:176.039930px;}
.yba{bottom:176.939929px;}
.y1c6{bottom:179.999928px;}
.y17e{bottom:182.339927px;}
.y1f0{bottom:184.499926px;}
.y1a9{bottom:185.219926px;}
.y71{bottom:185.579926px;}
.y8c{bottom:185.939926px;}
.yd2{bottom:186.119926px;}
.y11a{bottom:187.019925px;}
.y1dc{bottom:192.959923px;}
.y199{bottom:194.399922px;}
.yb9{bottom:197.639921px;}
.yf7{bottom:198.899920px;}
.ya0{bottom:202.679919px;}
.y126{bottom:203.039919px;}
.y45{bottom:203.399919px;}
.y15d{bottom:207.359917px;}
.y13d{bottom:208.259917px;}
.y1b6{bottom:213.119915px;}
.y17d{bottom:213.299915px;}
.y1a8{bottom:216.179914px;}
.y70{bottom:216.719913px;}
.y8b{bottom:216.899913px;}
.yd1{bottom:217.079913px;}
.y108{bottom:217.979913px;}
.yb8{bottom:218.339913px;}
.y44{bottom:220.679912px;}
.y1db{bottom:223.919910px;}
.y1c5{bottom:232.559907px;}
.y9f{bottom:233.819906px;}
.y125{bottom:234.179906px;}
.y43{bottom:237.959905px;}
.yb7{bottom:239.039904px;}
.y13c{bottom:240.479904px;}
.y198{bottom:242.279903px;}
.y15c{bottom:242.999903px;}
.y1b5{bottom:244.259902px;}
.y17c{bottom:244.439902px;}
.y6f{bottom:247.679901px;}
.y8a{bottom:248.039901px;}
.ye1{bottom:248.219901px;}
.y107{bottom:249.119900px;}
.yf6{bottom:250.919900px;}
.y1da{bottom:255.059898px;}
.y203{bottom:257.759897px;}
.y29{bottom:262.979895px;}
.y9e{bottom:264.779894px;}
.y124{bottom:265.139894px;}
.y1a7{bottom:268.199893px;}
.y55{bottom:269.099892px;}
.y119{bottom:269.999892px;}
.y13b{bottom:272.699891px;}
.y197{bottom:273.239891px;}
.y1b4{bottom:275.219890px;}
.y17b{bottom:275.399890px;}
.y15b{bottom:278.639889px;}
.y6e{bottom:278.819888px;}
.y89{bottom:278.999888px;}
.y106{bottom:280.079888px;}
.yb6{bottom:280.799888px;}
.yf5{bottom:281.879887px;}
.y54{bottom:284.759886px;}
.y1c4{bottom:286.019886px;}
.y1ef{bottom:289.979884px;}
.y202{bottom:292.499883px;}
.y123{bottom:296.279881px;}
.ye0{bottom:300.239880px;}
.y53{bottom:300.599880px;}
.y118{bottom:301.139880px;}
.yb5{bottom:301.499879px;}
.y13a{bottom:304.739878px;}
.y1b3{bottom:306.179878px;}
.y17a{bottom:306.539877px;}
.y1d9{bottom:307.079877px;}
.y88{bottom:310.139876px;}
.y105{bottom:311.219876px;}
.yf4{bottom:313.019875px;}
.y15a{bottom:314.459874px;}
.y1c3{bottom:317.159873px;}
.yd0{bottom:321.119872px;}
.y6d{bottom:321.839871px;}
.yb4{bottom:322.199871px;}
.y1a6{bottom:322.559871px;}
.y196{bottom:327.059869px;}
.y42{bottom:329.759868px;}
.y117{bottom:332.099867px;}
.y201{bottom:333.179867px;}
.y139{bottom:336.959865px;}
.y1b2{bottom:337.319865px;}
.y179{bottom:337.499865px;}
.y1ee{bottom:337.859865px;}
.y1d8{bottom:338.039865px;}
.y87{bottom:341.099864px;}
.y104{bottom:342.179863px;}
.yb3{bottom:342.899863px;}
.yf3{bottom:343.979862px;}
.y41{bottom:345.419862px;}
.y1c2{bottom:348.119861px;}
.y122{bottom:348.299861px;}
.y159{bottom:350.099860px;}
.ydf{bottom:352.259859px;}
.y6c{bottom:352.799859px;}
.y195{bottom:354.059858px;}
.y40{bottom:360.899856px;}
.y200{bottom:361.619855px;}
.y116{bottom:363.239855px;}
.yb2{bottom:363.599855px;}
.y1ed{bottom:364.859854px;}
.y9d{bottom:365.039854px;}
.y178{bottom:368.639853px;}
.y138{bottom:369.179852px;}
.y28{bottom:370.799852px;}
.ycf{bottom:373.319851px;}
.y3f{bottom:376.379849px;}
.y1a5{bottom:377.459849px;}
.y121{bottom:379.259848px;}
.y194{bottom:380.879848px;}
.y6b{bottom:383.939846px;}
.y158{bottom:385.739846px;}
.y1b1{bottom:389.339844px;}
.y1ec{bottom:391.679843px;}
.y3e{bottom:391.859843px;}
.y86{bottom:393.119843px;}
.y1ff{bottom:395.819842px;}
.yf2{bottom:396.179842px;}
.y9c{bottom:396.539841px;}
.y177{bottom:399.599840px;}
.y1d7{bottom:400.139840px;}
.yce{bottom:404.279838px;}
.y3d{bottom:407.339837px;}
.y193{bottom:407.879837px;}
.y1a4{bottom:408.599837px;}
.y137{bottom:409.139836px;}
.y1c1{bottom:410.219836px;}
.y120{bottom:410.399836px;}
.y6a{bottom:414.899834px;}
.y115{bottom:417.599833px;}
.yb1{bottom:417.959833px;}
.y1eb{bottom:418.679833px;}
.y1b0{bottom:420.479832px;}
.y157{bottom:421.379831px;}
.y3c{bottom:422.999831px;}
.y85{bottom:424.259830px;}
.y103{bottom:425.339830px;}
.y1d6{bottom:431.279827px;}
.y192{bottom:434.699826px;}
.ycd{bottom:435.239826px;}
.y3b{bottom:438.479825px;}
.y1a3{bottom:439.559824px;}
.y136{bottom:440.279824px;}
.y11f{bottom:441.359823px;}
.y1ea{bottom:445.499822px;}
.y69{bottom:446.039822px;}
.y1fe{bottom:447.839821px;}
.yf1{bottom:448.199821px;}
.y9b{bottom:450.719820px;}
.y176{bottom:451.619819px;}
.y27{bottom:452.699819px;}
.y3a{bottom:453.959818px;}
.y84{bottom:455.219818px;}
.y102{bottom:456.299817px;}
.y156{bottom:457.199817px;}
.y1d5{bottom:462.239815px;}
.y1c0{bottom:462.959815px;}
.y191{bottom:465.839814px;}
.ycc{bottom:466.379813px;}
.y39{bottom:469.439812px;}
.y135{bottom:471.239812px;}
.y114{bottom:472.499811px;}
.yb0{bottom:472.859811px;}
.y68{bottom:476.999809px;}
.yf0{bottom:479.159808px;}
.y26{bottom:484.559806px;}
.y38{bottom:485.099806px;}
.y83{bottom:486.359805px;}
.y101{bottom:487.439805px;}
.y155{bottom:490.319804px;}
.y1a2{bottom:491.579803px;}
.y1d4{bottom:493.379803px;}
.yde{bottom:497.339801px;}
.y190{bottom:497.519801px;}
.y1fd{bottom:500.039800px;}
.y37{bottom:500.579800px;}
.y134{bottom:502.379799px;}
.y25{bottom:502.739799px;}
.y113{bottom:503.459799px;}
.yaf{bottom:503.819798px;}
.y9a{bottom:504.359798px;}
.y174{bottom:506.159798px;}
.y175{bottom:506.339797px;}
.y67{bottom:508.139797px;}
.yef{bottom:510.299796px;}
.y36{bottom:516.059794px;}
.y1bf{bottom:516.419793px;}
.y82{bottom:517.319793px;}
.ycb{bottom:518.399793px;}
.y1e9{bottom:520.379792px;}
.y24{bottom:521.099792px;}
.y154{bottom:521.459791px;}
.y1d3{bottom:524.339790px;}
.y18f{bottom:529.379788px;}
.y35{bottom:531.539787px;}
.y133{bottom:533.339787px;}
.y112{bottom:534.599786px;}
.yae{bottom:534.959786px;}
.y99{bottom:535.859786px;}
.y23{bottom:538.379785px;}
.y172{bottom:540.179784px;}
.y1a1{bottom:543.779782px;}
.y34{bottom:547.199781px;}
.y1be{bottom:547.379781px;}
.y100{bottom:549.539780px;}
.y66{bottom:551.159780px;}
.ydd{bottom:551.699779px;}
.y1fc{bottom:552.059779px;}
.y153{bottom:552.419779px;}
.y11e{bottom:555.479778px;}
.y173{bottom:555.659778px;}
.y18e{bottom:560.339776px;}
.yee{bottom:562.319775px;}
.y33{bottom:562.679775px;}
.y132{bottom:565.019774px;}
.y111{bottom:565.559774px;}
.yad{bottom:565.919774px;}
.y170{bottom:566.820000px;}
.y22{bottom:568.979772px;}
.y81{bottom:569.339772px;}
.yca{bottom:570.419772px;}
.y16f{bottom:571.139772px;}
.y1e8{bottom:574.199770px;}
.y1a0{bottom:574.739770px;}
.y32{bottom:578.159769px;}
.y1bd{bottom:578.519769px;}
.y1d2{bottom:578.699769px;}
.yff{bottom:580.499768px;}
.y65{bottom:582.119767px;}
.y152{bottom:583.379767px;}
.y11d{bottom:586.619765px;}
.y98{bottom:589.859764px;}
.y18d{bottom:591.479763px;}
.yed{bottom:593.279763px;}
.y31{bottom:593.639763px;}
.y131{bottom:595.979762px;}
.y110{bottom:596.699761px;}
.yac{bottom:597.059761px;}
.y16d{bottom:598.680000px;}
.y21{bottom:599.579760px;}
.y80{bottom:600.479760px;}
.y1e7{bottom:601.019760px;}
.yc9{bottom:601.559759px;}
.y16c{bottom:602.999759px;}
.y1fb{bottom:603.899758px;}
.ydc{bottom:606.779757px;}
.y30{bottom:609.299756px;}
.y1bc{bottom:609.479756px;}
.yfe{bottom:611.639755px;}
.y64{bottom:613.259755px;}
.y151{bottom:614.519754px;}
.y11c{bottom:617.579753px;}
.y18c{bottom:623.339751px;}
.yec{bottom:624.419750px;}
.y2f{bottom:624.779750px;}
.y19f{bottom:626.759749px;}
.y1af{bottom:627.659749px;}
.yab{bottom:628.019749px;}
.y130{bottom:628.199749px;}
.y20{bottom:630.179748px;}
.y7f{bottom:631.439747px;}
.yc8{bottom:632.519747px;}
.y1d1{bottom:633.599747px;}
.y16a{bottom:634.859746px;}
.y1fa{bottom:636.119746px;}
.ydb{bottom:637.739745px;}
.y2e{bottom:640.259744px;}
.yfd{bottom:642.599743px;}
.y63{bottom:644.219742px;}
.y150{bottom:645.479742px;}
.y97{bottom:645.839742px;}
.y1f{bottom:648.719741px;}
.y16b{bottom:650.339740px;}
.y18b{bottom:654.299738px;}
.y1e6{bottom:654.839738px;}
.yeb{bottom:655.379738px;}
.y2d{bottom:655.739738px;}
.y1ae{bottom:658.799736px;}
.yaa{bottom:659.159736px;}
.y12f{bottom:660.419736px;}
.y168{bottom:661.500000px;}
.y1bb{bottom:662.219735px;}
.y7e{bottom:662.579735px;}
.yc7{bottom:663.659735px;}
.y2a{bottom:663.840000px;}
.y1d0{bottom:664.739734px;}
.y167{bottom:665.819734px;}
.yda{bottom:668.699733px;}
.y1d{bottom:669.960000px;}
.y2c{bottom:671.399731px;}
.yfc{bottom:673.739731px;}
.y62{bottom:675.359730px;}
.y14f{bottom:676.619729px;}
.y19e{bottom:678.779728px;}
.y10f{bottom:679.679728px;}
.y1e5{bottom:681.839727px;}
.y18a{bottom:685.259726px;}
.yea{bottom:686.519725px;}
.y1ad{bottom:689.759724px;}
.ya9{bottom:690.119724px;}
.y12e{bottom:692.459723px;}
.y7d{bottom:693.539723px;}
.yc6{bottom:694.619722px;}
.y1cf{bottom:695.699722px;}
.y19{bottom:697.500000px;}
.y165{bottom:697.679721px;}
.yd9{bottom:699.839720px;}
.y96{bottom:700.739720px;}
.y1b{bottom:701.999719px;}
.y61{bottom:706.319717px;}
.y14e{bottom:708.839716px;}
.y19d{bottom:709.919716px;}
.y10e{bottom:710.819716px;}
.y166{bottom:713.159715px;}
.y189{bottom:717.119713px;}
.y1ba{bottom:718.019713px;}
.y1ac{bottom:720.899712px;}
.ya8{bottom:721.259711px;}
.y18{bottom:722.159711px;}
.y7c{bottom:724.679710px;}
.y1ce{bottom:726.839709px;}
.yfb{bottom:727.919709px;}
.y164{bottom:728.639709px;}
.y1e4{bottom:729.719708px;}
.yd8{bottom:730.799708px;}
.y95{bottom:731.699707px;}
.y60{bottom:737.459705px;}
.ye9{bottom:740.879704px;}
.y17{bottom:741.599703px;}
.y10d{bottom:741.779703px;}
.y14d{bottom:746.099702px;}
.y188{bottom:748.259701px;}
.yc5{bottom:748.979700px;}
.y1ab{bottom:751.859699px;}
.ya7{bottom:752.219699px;}
.y1e3{bottom:756.539697px;}
.y12d{bottom:756.899697px;}
.y162{bottom:757.800000px;}
.y16{bottom:758.879696px;}
.y19c{bottom:761.939695px;}
.y161{bottom:762.119695px;}
.y94{bottom:762.839695px;}
.y1f9{bottom:772.739691px;}
.y10c{bottom:772.919691px;}
.y14b{bottom:773.099691px;}
.y15{bottom:776.159690px;}
.y7b{bottom:776.699689px;}
.y14c{bottom:778.319689px;}
.y1cd{bottom:779.399688px;}
.y187{bottom:779.939688px;}
.y5f{bottom:780.479688px;}
.yd7{bottom:782.999687px;}
.ya6{bottom:783.359687px;}
.y1e2{bottom:783.539687px;}
.ye8{bottom:786.779685px;}
.y12c{bottom:789.119684px;}
.yc4{bottom:793.619683px;}
.y93{bottom:793.799682px;}
.y14{bottom:793.979682px;}
.y160{bottom:797.219681px;}
.y1b9{bottom:803.879678px;}
.y1f8{bottom:805.139678px;}
.y149{bottom:805.319678px;}
.y7a{bottom:807.839677px;}
.y1e1{bottom:810.359676px;}
.y14a{bottom:810.539676px;}
.y186{bottom:811.079676px;}
.y5e{bottom:811.439675px;}
.y13{bottom:813.239675px;}
.yfa{bottom:813.959674px;}
.ya5{bottom:814.319674px;}
.ye7{bottom:817.739673px;}
.y12b{bottom:821.159672px;}
.y92{bottom:824.939670px;}
.y12{bottom:830.519668px;}
.y1cc{bottom:832.859667px;}
.yc3{bottom:835.019666px;}
.y1f7{bottom:836.099666px;}
.y1e0{bottom:837.359665px;}
.y147{bottom:837.539665px;}
.y79{bottom:838.799664px;}
.y185{bottom:842.039663px;}
.y5d{bottom:842.579663px;}
.y148{bottom:842.759663px;}
.yf9{bottom:845.099662px;}
.ya4{bottom:845.999662px;}
.y11{bottom:847.799661px;}
.ye6{bottom:848.879660px;}
.y12a{bottom:852.119659px;}
.y15f{bottom:853.559659px;}
.yc2{bottom:855.719658px;}
.y91{bottom:855.899658px;}
.y1cb{bottom:863.999654px;}
.y1df{bottom:864.179654px;}
.y10{bottom:865.619654px;}
.yd6{bottom:865.979654px;}
.y1f6{bottom:868.319653px;}
.y146{bottom:869.579652px;}
.y78{bottom:869.759652px;}
.y5c{bottom:873.539651px;}
.y184{bottom:873.899650px;}
.ya3{bottom:876.959649px;}
.y129{bottom:881.819647px;}
.yf{bottom:885.059646px;}
.y10b{bottom:887.039645px;}
.y1de{bottom:891.179644px;}
.ye5{bottom:894.239642px;}
.y1ca{bottom:894.959642px;}
.yd5{bottom:897.119641px;}
.yc1{bottom:897.299641px;}
.y77{bottom:900.899640px;}
.y145{bottom:901.799639px;}
.ye{bottom:902.339639px;}
.y5b{bottom:904.679638px;}
.y183{bottom:904.859638px;}
.y90{bottom:908.099637px;}
.y128{bottom:915.119634px;}
.yc0{bottom:917.999633px;}
.yd{bottom:919.439632px;}
.y1f5{bottom:921.779631px;}
.y1c9{bottom:926.099630px;}
.yd4{bottom:928.079629px;}
.y144{bottom:928.799628px;}
.y76{bottom:931.859627px;}
.y5a{bottom:935.639626px;}
.y182{bottom:935.999626px;}
.ybf{bottom:938.699625px;}
.y8f{bottom:939.059624px;}
.yc{bottom:946.439621px;}
.ye4{bottom:949.139620px;}
.y143{bottom:955.619618px;}
.y1f4{bottom:955.799618px;}
.y1b8{bottom:959.219616px;}
.y59{bottom:966.779613px;}
.y181{bottom:969.479612px;}
.y8e{bottom:970.199612px;}
.y49{bottom:974.520000px;}
.y1c8{bottom:978.659609px;}
.yd3{bottom:980.099608px;}
.ybe{bottom:980.459608px;}
.y142{bottom:982.619607px;}
.y50{bottom:983.339607px;}
.y75{bottom:986.219606px;}
.y1f3{bottom:991.079604px;}
.y58{bottom:997.739601px;}
.y4e{bottom:999.180000px;}
.y8d{bottom:1001.159600px;}
.y4d{bottom:1003.139599px;}
.y180{bottom:1004.399598px;}
.y141{bottom:1009.439596px;}
.ye3{bottom:1011.239596px;}
.ybd{bottom:1021.859591px;}
.y4c{bottom:1024.919590px;}
.y1f2{bottom:1026.359589px;}
.y74{bottom:1032.299587px;}
.y140{bottom:1036.439585px;}
.ybc{bottom:1042.559583px;}
.y57{bottom:1043.099583px;}
.y4b{bottom:1052.639579px;}
.y51{bottom:1052.640000px;}
.y17f{bottom:1060.919576px;}
.y1f1{bottom:1061.819575px;}
.y73{bottom:1063.259575px;}
.y56{bottom:1065.959574px;}
.y4{bottom:1083.779566px;}
.y6{bottom:1097.999561px;}
.y3{bottom:1101.239560px;}
.y2{bottom:1118.519553px;}
.y1{bottom:1135.799546px;}
.h4{height:1.440000px;}
.h3{height:4.134373px;}
.he{height:14.040000px;}
.h13{height:16.560000px;}
.h15{height:18.180000px;}
.hb{height:20.160000px;}
.h7{height:20.340000px;}
.h24{height:21.060000px;}
.h23{height:22.860000px;}
.h20{height:25.013662px;}
.hf{height:33.706744px;}
.h17{height:34.625377px;}
.h16{height:35.025806px;}
.h5{height:36.703110px;}
.h1e{height:36.861313px;}
.h12{height:37.520493px;}
.h6{height:38.759750px;}
.h18{height:40.501390px;}
.h11{height:40.530570px;}
.h1{height:41.522679px;}
.h8{height:42.894123px;}
.h10{height:43.506897px;}
.hc{height:44.149201px;}
.h1f{height:46.025138px;}
.h25{height:46.127794px;}
.h2{height:47.545293px;}
.hd{height:48.095137px;}
.h9{height:48.796855px;}
.h1a{height:50.027324px;}
.ha{height:50.508006px;}
.h1b{height:50.747323px;}
.h1c{height:52.417948px;}
.h21{height:55.140447px;}
.h22{height:56.530876px;}
.h19{height:57.092321px;}
.h1d{height:58.531969px;}
.h14{height:61.164468px;}
.h0{height:1188.000000px;}
.wd{width:2.880000px;}
.w4{width:3.600000px;}
.w2{width:5.040000px;}
.wa{width:7.020000px;}
.wb{width:7.560000px;}
.wf{width:7.740000px;}
.w7{width:8.100000px;}
.w6{width:8.280000px;}
.w1{width:9.720000px;}
.we{width:10.080000px;}
.wc{width:15.660000px;}
.w5{width:33.840000px;}
.w3{width:58.500000px;}
.w8{width:70.380000px;}
.w9{width:113.760000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:63.719975px;}
.x1f{left:70.379972px;}
.x1e{left:73.259971px;}
.x22{left:87.119965px;}
.x1d{left:88.380013px;}
.x1c{left:89.639964px;}
.x1a{left:92.340000px;}
.x12{left:101.160000px;}
.x1{left:107.999957px;}
.x36{left:109.079956px;}
.x39{left:112.499955px;}
.x35{left:116.279953px;}
.x3b{left:118.079953px;}
.x3c{left:124.019950px;}
.xe{left:125.280042px;}
.x3d{left:127.079949px;}
.x21{left:131.219948px;}
.x4{left:133.199947px;}
.x31{left:134.999946px;}
.x7{left:142.559943px;}
.x9{left:145.259989px;}
.x13{left:159.660000px;}
.x2f{left:161.999935px;}
.x14{left:163.260000px;}
.x42{left:167.399933px;}
.x4e{left:188.999924px;}
.x10{left:193.320022px;}
.xd{left:195.120102px;}
.x15{left:197.099921px;}
.x16{left:199.980000px;}
.x1b{left:206.100000px;}
.x34{left:210.419916px;}
.x4f{left:215.999914px;}
.xa{left:217.260376px;}
.x23{left:218.879912px;}
.x24{left:219.959912px;}
.x49{left:232.920000px;}
.x27{left:246.600000px;}
.x17{left:253.260000px;}
.x2a{left:270.179892px;}
.x26{left:274.673487px;}
.x18{left:278.640000px;}
.x43{left:284.219886px;}
.xb{left:287.099885px;}
.xf{left:289.799884px;}
.x11{left:294.478072px;}
.x3e{left:299.879880px;}
.x2{left:302.579879px;}
.x28{left:308.159877px;}
.x4a{left:312.299875px;}
.x25{left:328.679869px;}
.x19{left:348.840000px;}
.x38{left:351.899859px;}
.x47{left:363.239855px;}
.x32{left:364.679854px;}
.x2c{left:371.159852px;}
.x29{left:377.459811px;}
.xc{left:394.919842px;}
.x8{left:406.799837px;}
.x5{left:432.899827px;}
.x30{left:442.259823px;}
.x4c{left:467.100641px;}
.x44{left:505.259798px;}
.x48{left:507.960000px;}
.x3f{left:524.159828px;}
.x33{left:538.739785px;}
.x45{left:542.159783px;}
.x4b{left:551.159780px;}
.x2d{left:588.779764px;}
.x40{left:639.360000px;}
.x4d{left:642.420801px;}
.x41{left:650.699740px;}
.x2b{left:657.000000px;}
.x37{left:658.799736px;}
.x2e{left:680.760000px;}
.x46{left:682.199727px;}
.x3{left:691.199724px;}
.x3a{left:706.319717px;}
.x6{left:804.600000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.030613pt;}
.ls7{letter-spacing:0.056320pt;}
.lsd{letter-spacing:0.061211pt;}
.ls13{letter-spacing:0.061250pt;}
.lsb{letter-spacing:0.061367pt;}
.lse{letter-spacing:0.158880pt;}
.ls2{letter-spacing:0.167040pt;}
.ls1{letter-spacing:0.167179pt;}
.ls5{letter-spacing:0.178313pt;}
.ls11{letter-spacing:0.189813pt;}
.ls4{letter-spacing:0.189819pt;}
.ls3{letter-spacing:0.192411pt;}
.ls9{letter-spacing:9.007783pt;}
.lsa{letter-spacing:25.170070pt;}
.ls10{letter-spacing:29.017375pt;}
.lsc{letter-spacing:30.299828pt;}
.ls12{letter-spacing:48.895447pt;}
.lsf{letter-spacing:336.514532pt;}
.ls0{letter-spacing:1221.695191pt;}
.ws1{word-spacing:-34.262386pt;}
.ws4{word-spacing:-32.061806pt;}
.wsa{word-spacing:-31.871987pt;}
.wsd{word-spacing:-18.719993pt;}
.wse{word-spacing:-16.061243pt;}
.wsb{word-spacing:-16.061204pt;}
.ws9{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.767354pt;}
.ws10{word-spacing:-14.719994pt;}
.wsf{word-spacing:-14.079994pt;}
.ws0{word-spacing:-13.306875pt;}
.ws2{word-spacing:-12.776955pt;}
.ws6{word-spacing:-12.005115pt;}
.ws5{word-spacing:-11.999995pt;}
.ws7{word-spacing:-9.690876pt;}
.wsc{word-spacing:-7.999997pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-72.933731pt;}
._10{margin-left:-4.450621pt;}
._7{margin-left:-3.349749pt;}
._3{margin-left:-2.365591pt;}
._1{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._c{width:2.552716pt;}
._b{width:3.671242pt;}
._a{width:4.877164pt;}
._11{width:5.889652pt;}
._5{width:6.810044pt;}
._4{width:7.856206pt;}
._9{width:8.765706pt;}
._8{width:9.758875pt;}
._e{width:10.873375pt;}
._d{width:12.043370pt;}
._6{width:13.510039pt;}
._f{width:14.709864pt;}
._14{width:17.232258pt;}
._15{width:18.852387pt;}
._16{width:20.185549pt;}
._4e{width:21.151851pt;}
._18{width:22.069536pt;}
._4f{width:22.973516pt;}
._13{width:24.436901pt;}
._12{width:25.742508pt;}
._52{width:27.392272pt;}
._17{width:28.816802pt;}
._49{width:30.148580pt;}
._3e{width:35.492443pt;}
._3a{width:49.069823pt;}
._45{width:51.645332pt;}
._44{width:67.730639pt;}
._41{width:74.962714pt;}
._42{width:76.968691pt;}
._43{width:108.472853pt;}
._3c{width:114.952185pt;}
._51{width:119.458249pt;}
._50{width:120.432428pt;}
._33{width:127.431228pt;}
._37{width:142.811622pt;}
._48{width:154.134405pt;}
._3f{width:156.165035pt;}
._3d{width:171.736847pt;}
._47{width:175.667694pt;}
._4a{width:199.087095pt;}
._2e{width:201.244210pt;}
._39{width:208.257911pt;}
._46{width:218.195583pt;}
._31{width:245.008012pt;}
._32{width:289.122863pt;}
._22{width:303.536945pt;}
._1a{width:307.384410pt;}
._2f{width:382.472825pt;}
._3b{width:414.792261pt;}
._34{width:430.566067pt;}
._21{width:466.160091pt;}
._25{width:484.912894pt;}
._38{width:501.173460pt;}
._4d{width:512.552738pt;}
._4b{width:518.547246pt;}
._40{width:544.552954pt;}
._4c{width:552.765859pt;}
._1f{width:572.658182pt;}
._2d{width:581.280898pt;}
._2c{width:584.323470pt;}
._2a{width:593.270122pt;}
._2b{width:598.399720pt;}
._29{width:604.171183pt;}
._1b{width:648.430441pt;}
._35{width:661.555836pt;}
._28{width:662.704802pt;}
._23{width:684.017960pt;}
._26{width:687.537019pt;}
._19{width:691.120257pt;}
._1d{width:697.648616pt;}
._27{width:701.562221pt;}
._20{width:705.407552pt;}
._36{width:706.384298pt;}
._24{width:733.746364pt;}
._1c{width:737.592762pt;}
._30{width:742.545785pt;}
._1e{width:769.589108pt;}
.fs2{font-size:5.119998pt;}
.fs7{font-size:31.999987pt;}
.fs5{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs9{font-size:56.319977pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs8{font-size:72.319971pt;}
.fs6{font-size:74.879970pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:2.399761pt;}
.y48{bottom:2.879950pt;}
.y4f{bottom:3.519643pt;}
.y163{bottom:3.839729pt;}
.y1a{bottom:3.839750pt;}
.y169{bottom:3.839763pt;}
.y16e{bottom:3.839786pt;}
.y171{bottom:3.839797pt;}
.y52{bottom:3.999624pt;}
.y4a{bottom:3.999652pt;}
.y1c{bottom:3.999750pt;}
.y2b{bottom:3.999762pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y8{bottom:45.919982pt;}
.y19b{bottom:117.599953pt;}
.ye2{bottom:119.039952pt;}
.y10a{bottom:119.839952pt;}
.y47{bottom:122.400000pt;}
.ya2{bottom:124.959950pt;}
.y13f{bottom:128.959948pt;}
.yf8{bottom:130.559948pt;}
.y1c7{bottom:132.319947pt;}
.y15e{bottom:135.839946pt;}
.y1aa{bottom:136.959945pt;}
.y72{bottom:137.439945pt;}
.y11b{bottom:138.559945pt;}
.ybb{bottom:138.879944pt;}
.y1b7{bottom:143.199943pt;}
.y1dd{bottom:143.839942pt;}
.y19a{bottom:145.119942pt;}
.y109{bottom:147.519941pt;}
.ya1{bottom:152.639939pt;}
.y127{bottom:152.959939pt;}
.y46{bottom:153.439939pt;}
.y13e{bottom:156.479937pt;}
.yba{bottom:157.279937pt;}
.y1c6{bottom:159.999936pt;}
.y17e{bottom:162.079935pt;}
.y1f0{bottom:163.999934pt;}
.y1a9{bottom:164.639934pt;}
.y71{bottom:164.959934pt;}
.y8c{bottom:165.279934pt;}
.yd2{bottom:165.439934pt;}
.y11a{bottom:166.239934pt;}
.y1dc{bottom:171.519931pt;}
.y199{bottom:172.799931pt;}
.yb9{bottom:175.679930pt;}
.yf7{bottom:176.799929pt;}
.ya0{bottom:180.159928pt;}
.y126{bottom:180.479928pt;}
.y45{bottom:180.799928pt;}
.y15d{bottom:184.319926pt;}
.y13d{bottom:185.119926pt;}
.y1b6{bottom:189.439924pt;}
.y17d{bottom:189.599924pt;}
.y1a8{bottom:192.159923pt;}
.y70{bottom:192.639923pt;}
.y8b{bottom:192.799923pt;}
.yd1{bottom:192.959923pt;}
.y108{bottom:193.759922pt;}
.yb8{bottom:194.079922pt;}
.y44{bottom:196.159922pt;}
.y1db{bottom:199.039920pt;}
.y1c5{bottom:206.719917pt;}
.y9f{bottom:207.839917pt;}
.y125{bottom:208.159917pt;}
.y43{bottom:211.519915pt;}
.yb7{bottom:212.479915pt;}
.y13c{bottom:213.759914pt;}
.y198{bottom:215.359914pt;}
.y15c{bottom:215.999914pt;}
.y1b5{bottom:217.119913pt;}
.y17c{bottom:217.279913pt;}
.y6f{bottom:220.159912pt;}
.y8a{bottom:220.479912pt;}
.ye1{bottom:220.639912pt;}
.y107{bottom:221.439911pt;}
.yf6{bottom:223.039911pt;}
.y1da{bottom:226.719909pt;}
.y203{bottom:229.119908pt;}
.y29{bottom:233.759906pt;}
.y9e{bottom:235.359906pt;}
.y124{bottom:235.679906pt;}
.y1a7{bottom:238.399905pt;}
.y55{bottom:239.199904pt;}
.y119{bottom:239.999904pt;}
.y13b{bottom:242.399903pt;}
.y197{bottom:242.879903pt;}
.y1b4{bottom:244.639902pt;}
.y17b{bottom:244.799902pt;}
.y15b{bottom:247.679901pt;}
.y6e{bottom:247.839901pt;}
.y89{bottom:247.999901pt;}
.y106{bottom:248.959900pt;}
.yb6{bottom:249.599900pt;}
.yf5{bottom:250.559900pt;}
.y54{bottom:253.119899pt;}
.y1c4{bottom:254.239898pt;}
.y1ef{bottom:257.759897pt;}
.y202{bottom:259.999896pt;}
.y123{bottom:263.359895pt;}
.ye0{bottom:266.879893pt;}
.y53{bottom:267.199893pt;}
.y118{bottom:267.679893pt;}
.yb5{bottom:267.999893pt;}
.y13a{bottom:270.879892pt;}
.y1b3{bottom:272.159891pt;}
.y17a{bottom:272.479891pt;}
.y1d9{bottom:272.959891pt;}
.y88{bottom:275.679890pt;}
.y105{bottom:276.639889pt;}
.yf4{bottom:278.239889pt;}
.y15a{bottom:279.519888pt;}
.y1c3{bottom:281.919887pt;}
.yd0{bottom:285.439886pt;}
.y6d{bottom:286.079886pt;}
.yb4{bottom:286.399885pt;}
.y1a6{bottom:286.719885pt;}
.y196{bottom:290.719884pt;}
.y42{bottom:293.119883pt;}
.y117{bottom:295.199882pt;}
.y201{bottom:296.159882pt;}
.y139{bottom:299.519880pt;}
.y1b2{bottom:299.839880pt;}
.y179{bottom:299.999880pt;}
.y1ee{bottom:300.319880pt;}
.y1d8{bottom:300.479880pt;}
.y87{bottom:303.199879pt;}
.y104{bottom:304.159878pt;}
.yb3{bottom:304.799878pt;}
.yf3{bottom:305.759878pt;}
.y41{bottom:307.039877pt;}
.y1c2{bottom:309.439876pt;}
.y122{bottom:309.599876pt;}
.y159{bottom:311.199876pt;}
.ydf{bottom:313.119875pt;}
.y6c{bottom:313.599875pt;}
.y195{bottom:314.719874pt;}
.y40{bottom:320.799872pt;}
.y200{bottom:321.439871pt;}
.y116{bottom:322.879871pt;}
.yb2{bottom:323.199871pt;}
.y1ed{bottom:324.319870pt;}
.y9d{bottom:324.479870pt;}
.y178{bottom:327.679869pt;}
.y138{bottom:328.159869pt;}
.y28{bottom:329.599868pt;}
.ycf{bottom:331.839867pt;}
.y3f{bottom:334.559866pt;}
.y1a5{bottom:335.519866pt;}
.y121{bottom:337.119865pt;}
.y194{bottom:338.559865pt;}
.y6b{bottom:341.279863pt;}
.y158{bottom:342.879863pt;}
.y1b1{bottom:346.079862pt;}
.y1ec{bottom:348.159861pt;}
.y3e{bottom:348.319861pt;}
.y86{bottom:349.439860pt;}
.y1ff{bottom:351.839859pt;}
.yf2{bottom:352.159859pt;}
.y9c{bottom:352.479859pt;}
.y177{bottom:355.199858pt;}
.y1d7{bottom:355.679858pt;}
.yce{bottom:359.359856pt;}
.y3d{bottom:362.079855pt;}
.y193{bottom:362.559855pt;}
.y1a4{bottom:363.199855pt;}
.y137{bottom:363.679855pt;}
.y1c1{bottom:364.639854pt;}
.y120{bottom:364.799854pt;}
.y6a{bottom:368.799852pt;}
.y115{bottom:371.199852pt;}
.yb1{bottom:371.519851pt;}
.y1eb{bottom:372.159851pt;}
.y1b0{bottom:373.759850pt;}
.y157{bottom:374.559850pt;}
.y3c{bottom:375.999850pt;}
.y85{bottom:377.119849pt;}
.y103{bottom:378.079849pt;}
.y1d6{bottom:383.359847pt;}
.y192{bottom:386.399845pt;}
.ycd{bottom:386.879845pt;}
.y3b{bottom:389.759844pt;}
.y1a3{bottom:390.719844pt;}
.y136{bottom:391.359843pt;}
.y11f{bottom:392.319843pt;}
.y1ea{bottom:395.999842pt;}
.y69{bottom:396.479841pt;}
.y1fe{bottom:398.079841pt;}
.yf1{bottom:398.399841pt;}
.y9b{bottom:400.639840pt;}
.y176{bottom:401.439839pt;}
.y27{bottom:402.399839pt;}
.y3a{bottom:403.519839pt;}
.y84{bottom:404.639838pt;}
.y102{bottom:405.599838pt;}
.y156{bottom:406.399837pt;}
.y1d5{bottom:410.879836pt;}
.y1c0{bottom:411.519835pt;}
.y191{bottom:414.079834pt;}
.ycc{bottom:414.559834pt;}
.y39{bottom:417.279833pt;}
.y135{bottom:418.879832pt;}
.y114{bottom:419.999832pt;}
.yb0{bottom:420.319832pt;}
.y68{bottom:423.999830pt;}
.yf0{bottom:425.919830pt;}
.y26{bottom:430.719828pt;}
.y38{bottom:431.199828pt;}
.y83{bottom:432.319827pt;}
.y101{bottom:433.279827pt;}
.y155{bottom:435.839826pt;}
.y1a2{bottom:436.959825pt;}
.y1d4{bottom:438.559825pt;}
.yde{bottom:442.079823pt;}
.y190{bottom:442.239823pt;}
.y1fd{bottom:444.479822pt;}
.y37{bottom:444.959822pt;}
.y134{bottom:446.559821pt;}
.y25{bottom:446.879821pt;}
.y113{bottom:447.519821pt;}
.yaf{bottom:447.839821pt;}
.y9a{bottom:448.319821pt;}
.y174{bottom:449.919820pt;}
.y175{bottom:450.079820pt;}
.y67{bottom:451.679819pt;}
.yef{bottom:453.599819pt;}
.y36{bottom:458.719817pt;}
.y1bf{bottom:459.039816pt;}
.y82{bottom:459.839816pt;}
.ycb{bottom:460.799816pt;}
.y1e9{bottom:462.559815pt;}
.y24{bottom:463.199815pt;}
.y154{bottom:463.519815pt;}
.y1d3{bottom:466.079814pt;}
.y18f{bottom:470.559812pt;}
.y35{bottom:472.479811pt;}
.y133{bottom:474.079810pt;}
.y112{bottom:475.199810pt;}
.yae{bottom:475.519810pt;}
.y99{bottom:476.319809pt;}
.y23{bottom:478.559809pt;}
.y172{bottom:480.159808pt;}
.y1a1{bottom:483.359807pt;}
.y34{bottom:486.399805pt;}
.y1be{bottom:486.559805pt;}
.y100{bottom:488.479805pt;}
.y66{bottom:489.919804pt;}
.ydd{bottom:490.399804pt;}
.y1fc{bottom:490.719804pt;}
.y153{bottom:491.039804pt;}
.y11e{bottom:493.759802pt;}
.y173{bottom:493.919802pt;}
.y18e{bottom:498.079801pt;}
.yee{bottom:499.839800pt;}
.y33{bottom:500.159800pt;}
.y132{bottom:502.239799pt;}
.y111{bottom:502.719799pt;}
.yad{bottom:503.039799pt;}
.y170{bottom:503.840000pt;}
.y22{bottom:505.759798pt;}
.y81{bottom:506.079798pt;}
.yca{bottom:507.039797pt;}
.y16f{bottom:507.679797pt;}
.y1e8{bottom:510.399796pt;}
.y1a0{bottom:510.879796pt;}
.y32{bottom:513.919794pt;}
.y1bd{bottom:514.239794pt;}
.y1d2{bottom:514.399794pt;}
.yff{bottom:515.999794pt;}
.y65{bottom:517.439793pt;}
.y152{bottom:518.559793pt;}
.y11d{bottom:521.439791pt;}
.y98{bottom:524.319790pt;}
.y18d{bottom:525.759790pt;}
.yed{bottom:527.359789pt;}
.y31{bottom:527.679789pt;}
.y131{bottom:529.759788pt;}
.y110{bottom:530.399788pt;}
.yac{bottom:530.719788pt;}
.y16d{bottom:532.160000pt;}
.y21{bottom:532.959787pt;}
.y80{bottom:533.759786pt;}
.y1e7{bottom:534.239786pt;}
.yc9{bottom:534.719786pt;}
.y16c{bottom:535.999786pt;}
.y1fb{bottom:536.799785pt;}
.ydc{bottom:539.359784pt;}
.y30{bottom:541.599783pt;}
.y1bc{bottom:541.759783pt;}
.yfe{bottom:543.679783pt;}
.y64{bottom:545.119782pt;}
.y151{bottom:546.239782pt;}
.y11c{bottom:548.959780pt;}
.y18c{bottom:554.079778pt;}
.yec{bottom:555.039778pt;}
.y2f{bottom:555.359778pt;}
.y19f{bottom:557.119777pt;}
.y1af{bottom:557.919777pt;}
.yab{bottom:558.239777pt;}
.y130{bottom:558.399777pt;}
.y20{bottom:560.159776pt;}
.y7f{bottom:561.279775pt;}
.yc8{bottom:562.239775pt;}
.y1d1{bottom:563.199775pt;}
.y16a{bottom:564.319774pt;}
.y1fa{bottom:565.439774pt;}
.ydb{bottom:566.879773pt;}
.y2e{bottom:569.119772pt;}
.yfd{bottom:571.199772pt;}
.y63{bottom:572.639771pt;}
.y150{bottom:573.759770pt;}
.y97{bottom:574.079770pt;}
.y1f{bottom:576.639769pt;}
.y16b{bottom:578.079769pt;}
.y18b{bottom:581.599767pt;}
.y1e6{bottom:582.079767pt;}
.yeb{bottom:582.559767pt;}
.y2d{bottom:582.879767pt;}
.y1ae{bottom:585.599766pt;}
.yaa{bottom:585.919766pt;}
.y12f{bottom:587.039765pt;}
.y168{bottom:588.000000pt;}
.y1bb{bottom:588.639765pt;}
.y7e{bottom:588.959764pt;}
.yc7{bottom:589.919764pt;}
.y2a{bottom:590.080000pt;}
.y1d0{bottom:590.879764pt;}
.y167{bottom:591.839763pt;}
.yda{bottom:594.399762pt;}
.y1d{bottom:595.520000pt;}
.y2c{bottom:596.799761pt;}
.yfc{bottom:598.879760pt;}
.y62{bottom:600.319760pt;}
.y14f{bottom:601.439759pt;}
.y19e{bottom:603.359759pt;}
.y10f{bottom:604.159758pt;}
.y1e5{bottom:606.079758pt;}
.y18a{bottom:609.119756pt;}
.yea{bottom:610.239756pt;}
.y1ad{bottom:613.119755pt;}
.ya9{bottom:613.439755pt;}
.y12e{bottom:615.519754pt;}
.y7d{bottom:616.479753pt;}
.yc6{bottom:617.439753pt;}
.y1cf{bottom:618.399753pt;}
.y19{bottom:620.000000pt;}
.y165{bottom:620.159752pt;}
.yd9{bottom:622.079751pt;}
.y96{bottom:622.879751pt;}
.y1b{bottom:623.999750pt;}
.y61{bottom:627.839749pt;}
.y14e{bottom:630.079748pt;}
.y19d{bottom:631.039748pt;}
.y10e{bottom:631.839747pt;}
.y166{bottom:633.919746pt;}
.y189{bottom:637.439745pt;}
.y1ba{bottom:638.239745pt;}
.y1ac{bottom:640.799744pt;}
.ya8{bottom:641.119744pt;}
.y18{bottom:641.919743pt;}
.y7c{bottom:644.159742pt;}
.y1ce{bottom:646.079742pt;}
.yfb{bottom:647.039741pt;}
.y164{bottom:647.679741pt;}
.y1e4{bottom:648.639741pt;}
.yd8{bottom:649.599740pt;}
.y95{bottom:650.399740pt;}
.y60{bottom:655.519738pt;}
.ye9{bottom:658.559737pt;}
.y17{bottom:659.199736pt;}
.y10d{bottom:659.359736pt;}
.y14d{bottom:663.199735pt;}
.y188{bottom:665.119734pt;}
.yc5{bottom:665.759734pt;}
.y1ab{bottom:668.319733pt;}
.ya7{bottom:668.639733pt;}
.y1e3{bottom:672.479731pt;}
.y12d{bottom:672.799731pt;}
.y162{bottom:673.600000pt;}
.y16{bottom:674.559730pt;}
.y19c{bottom:677.279729pt;}
.y161{bottom:677.439729pt;}
.y94{bottom:678.079729pt;}
.y1f9{bottom:686.879725pt;}
.y10c{bottom:687.039725pt;}
.y14b{bottom:687.199725pt;}
.y15{bottom:689.919724pt;}
.y7b{bottom:690.399724pt;}
.y14c{bottom:691.839723pt;}
.y1cd{bottom:692.799723pt;}
.y187{bottom:693.279723pt;}
.y5f{bottom:693.759722pt;}
.yd7{bottom:695.999722pt;}
.ya6{bottom:696.319721pt;}
.y1e2{bottom:696.479721pt;}
.ye8{bottom:699.359720pt;}
.y12c{bottom:701.439719pt;}
.yc4{bottom:705.439718pt;}
.y93{bottom:705.599718pt;}
.y14{bottom:705.759718pt;}
.y160{bottom:708.639717pt;}
.y1b9{bottom:714.559714pt;}
.y1f8{bottom:715.679714pt;}
.y149{bottom:715.839714pt;}
.y7a{bottom:718.079713pt;}
.y1e1{bottom:720.319712pt;}
.y14a{bottom:720.479712pt;}
.y186{bottom:720.959712pt;}
.y5e{bottom:721.279711pt;}
.y13{bottom:722.879711pt;}
.yfa{bottom:723.519711pt;}
.ya5{bottom:723.839710pt;}
.ye7{bottom:726.879709pt;}
.y12b{bottom:729.919708pt;}
.y92{bottom:733.279707pt;}
.y12{bottom:738.239705pt;}
.y1cc{bottom:740.319704pt;}
.yc3{bottom:742.239703pt;}
.y1f7{bottom:743.199703pt;}
.y1e0{bottom:744.319702pt;}
.y147{bottom:744.479702pt;}
.y79{bottom:745.599702pt;}
.y185{bottom:748.479701pt;}
.y5d{bottom:748.959700pt;}
.y148{bottom:749.119700pt;}
.yf9{bottom:751.199700pt;}
.ya4{bottom:751.999699pt;}
.y11{bottom:753.599699pt;}
.ye6{bottom:754.559698pt;}
.y12a{bottom:757.439697pt;}
.y15f{bottom:758.719697pt;}
.yc2{bottom:760.639696pt;}
.y91{bottom:760.799696pt;}
.y1cb{bottom:767.999693pt;}
.y1df{bottom:768.159693pt;}
.y10{bottom:769.439692pt;}
.yd6{bottom:769.759692pt;}
.y1f6{bottom:771.839691pt;}
.y146{bottom:772.959691pt;}
.y78{bottom:773.119691pt;}
.y5c{bottom:776.479689pt;}
.y184{bottom:776.799689pt;}
.ya3{bottom:779.519688pt;}
.y129{bottom:783.839686pt;}
.yf{bottom:786.719685pt;}
.y10b{bottom:788.479685pt;}
.y1de{bottom:792.159683pt;}
.ye5{bottom:794.879682pt;}
.y1ca{bottom:795.519682pt;}
.yd5{bottom:797.439681pt;}
.yc1{bottom:797.599681pt;}
.y77{bottom:800.799680pt;}
.y145{bottom:801.599679pt;}
.ye{bottom:802.079679pt;}
.y5b{bottom:804.159678pt;}
.y183{bottom:804.319678pt;}
.y90{bottom:807.199677pt;}
.y128{bottom:813.439675pt;}
.yc0{bottom:815.999674pt;}
.yd{bottom:817.279673pt;}
.y1f5{bottom:819.359672pt;}
.y1c9{bottom:823.199671pt;}
.yd4{bottom:824.959670pt;}
.y144{bottom:825.599670pt;}
.y76{bottom:828.319669pt;}
.y5a{bottom:831.679667pt;}
.y182{bottom:831.999667pt;}
.ybf{bottom:834.399666pt;}
.y8f{bottom:834.719666pt;}
.yc{bottom:841.279663pt;}
.ye4{bottom:843.679663pt;}
.y143{bottom:849.439660pt;}
.y1f4{bottom:849.599660pt;}
.y1b8{bottom:852.639659pt;}
.y59{bottom:859.359656pt;}
.y181{bottom:861.759655pt;}
.y8e{bottom:862.399655pt;}
.y49{bottom:866.240000pt;}
.y1c8{bottom:869.919652pt;}
.yd3{bottom:871.199652pt;}
.ybe{bottom:871.519651pt;}
.y142{bottom:873.439651pt;}
.y50{bottom:874.079650pt;}
.y75{bottom:876.639649pt;}
.y1f3{bottom:880.959648pt;}
.y58{bottom:886.879645pt;}
.y4e{bottom:888.160000pt;}
.y8d{bottom:889.919644pt;}
.y4d{bottom:891.679643pt;}
.y180{bottom:892.799643pt;}
.y141{bottom:897.279641pt;}
.ye3{bottom:898.879640pt;}
.ybd{bottom:908.319637pt;}
.y4c{bottom:911.039636pt;}
.y1f2{bottom:912.319635pt;}
.y74{bottom:917.599633pt;}
.y140{bottom:921.279631pt;}
.ybc{bottom:926.719629pt;}
.y57{bottom:927.199629pt;}
.y4b{bottom:935.679626pt;}
.y51{bottom:935.680000pt;}
.y17f{bottom:943.039623pt;}
.y1f1{bottom:943.839622pt;}
.y73{bottom:945.119622pt;}
.y56{bottom:947.519621pt;}
.y4{bottom:963.359615pt;}
.y6{bottom:975.999610pt;}
.y3{bottom:978.879608pt;}
.y2{bottom:994.239602pt;}
.y1{bottom:1009.599596pt;}
.h4{height:1.280000pt;}
.h3{height:3.674999pt;}
.he{height:12.480000pt;}
.h13{height:14.720000pt;}
.h15{height:16.160000pt;}
.hb{height:17.920000pt;}
.h7{height:18.080000pt;}
.h24{height:18.720000pt;}
.h23{height:20.320000pt;}
.h20{height:22.234366pt;}
.hf{height:29.961551pt;}
.h17{height:30.778113pt;}
.h16{height:31.134050pt;}
.h5{height:32.624987pt;}
.h1e{height:32.765612pt;}
.h12{height:33.351549pt;}
.h6{height:34.453111pt;}
.h18{height:36.001236pt;}
.h11{height:36.027173pt;}
.h1{height:36.909048pt;}
.h8{height:38.128110pt;}
.h10{height:38.672797pt;}
.hc{height:39.243734pt;}
.h1f{height:40.911234pt;}
.h25{height:41.002484pt;}
.h2{height:42.262483pt;}
.hd{height:42.751233pt;}
.h9{height:43.374983pt;}
.h1a{height:44.468732pt;}
.ha{height:44.896006pt;}
.h1b{height:45.108732pt;}
.h1c{height:46.593731pt;}
.h21{height:49.013730pt;}
.h22{height:50.249667pt;}
.h19{height:50.748730pt;}
.h1d{height:52.028417pt;}
.h14{height:54.368416pt;}
.h0{height:1056.000000pt;}
.wd{width:2.560000pt;}
.w4{width:3.200000pt;}
.w2{width:4.480000pt;}
.wa{width:6.240000pt;}
.wb{width:6.720000pt;}
.wf{width:6.880000pt;}
.w7{width:7.200000pt;}
.w6{width:7.360000pt;}
.w1{width:8.640000pt;}
.we{width:8.960000pt;}
.wc{width:13.920000pt;}
.w5{width:30.080000pt;}
.w3{width:52.000000pt;}
.w8{width:62.560000pt;}
.w9{width:101.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:56.639977pt;}
.x1f{left:62.559975pt;}
.x1e{left:65.119974pt;}
.x22{left:77.439969pt;}
.x1d{left:78.560011pt;}
.x1c{left:79.679968pt;}
.x1a{left:82.080000pt;}
.x12{left:89.920000pt;}
.x1{left:95.999962pt;}
.x36{left:96.959961pt;}
.x39{left:99.999960pt;}
.x35{left:103.359959pt;}
.x3b{left:104.959958pt;}
.x3c{left:110.239956pt;}
.xe{left:111.360037pt;}
.x3d{left:112.959955pt;}
.x21{left:116.639953pt;}
.x4{left:118.399953pt;}
.x31{left:119.999952pt;}
.x7{left:126.719949pt;}
.x9{left:129.119990pt;}
.x13{left:141.920000pt;}
.x2f{left:143.999942pt;}
.x14{left:145.120000pt;}
.x42{left:148.799940pt;}
.x4e{left:167.999933pt;}
.x10{left:171.840020pt;}
.xd{left:173.440091pt;}
.x15{left:175.199930pt;}
.x16{left:177.760000pt;}
.x1b{left:183.200000pt;}
.x34{left:187.039925pt;}
.x4f{left:191.999923pt;}
.xa{left:193.120334pt;}
.x23{left:194.559922pt;}
.x24{left:195.519922pt;}
.x49{left:207.040000pt;}
.x27{left:219.200000pt;}
.x17{left:225.120000pt;}
.x2a{left:240.159904pt;}
.x26{left:244.154210pt;}
.x18{left:247.680000pt;}
.x43{left:252.639899pt;}
.xb{left:255.199898pt;}
.xf{left:257.599897pt;}
.x11{left:261.758286pt;}
.x3e{left:266.559893pt;}
.x2{left:268.959892pt;}
.x28{left:273.919890pt;}
.x4a{left:277.599889pt;}
.x25{left:292.159883pt;}
.x19{left:310.080000pt;}
.x38{left:312.799875pt;}
.x47{left:322.879871pt;}
.x32{left:324.159870pt;}
.x2c{left:329.919868pt;}
.x29{left:335.519832pt;}
.xc{left:351.039860pt;}
.x8{left:361.599855pt;}
.x5{left:384.799846pt;}
.x30{left:393.119843pt;}
.x4c{left:415.200570pt;}
.x44{left:449.119820pt;}
.x48{left:451.520000pt;}
.x3f{left:465.919847pt;}
.x33{left:478.879808pt;}
.x45{left:481.919807pt;}
.x4b{left:489.919804pt;}
.x2d{left:523.359791pt;}
.x40{left:568.320000pt;}
.x4d{left:571.040712pt;}
.x41{left:578.399769pt;}
.x2b{left:584.000000pt;}
.x37{left:585.599766pt;}
.x2e{left:605.120000pt;}
.x46{left:606.399757pt;}
.x3{left:614.399754pt;}
.x3a{left:627.839749pt;}
.x6{left:715.200000pt;}
}




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