
    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_2d2768d6f44d07bf424c9cf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_da8dc36974bc242c3d6da28e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;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_70738c7a8d7c2c4a46c3d80f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7a92778f1e15e29aacbfa5b1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b564ec8d65edb03dd3baf279.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.742000;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_c2dbdf92310af4d4102d1348.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_852c745f4131b6e0a483d2fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.007324;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_6932fc803851a86a4325b6a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.775000;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_004c135648894f0bd41e4586.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7a493d0d8182af950f4ec7b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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;}
.m9{transform:matrix(0.170157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170157,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.236421,0.000000,-0.080864,0.236561,0,0);-ms-transform:matrix(0.236421,0.000000,-0.080864,0.236561,0,0);-webkit-transform:matrix(0.236421,0.000000,-0.080864,0.236561,0,0);}
.m3{transform:matrix(0.236422,0.000000,-0.080862,0.236561,0,0);-ms-transform:matrix(0.236422,0.000000,-0.080862,0.236561,0,0);-webkit-transform:matrix(0.236422,0.000000,-0.080862,0.236561,0,0);}
.m2{transform:matrix(0.236429,0.000000,-0.080858,0.236563,0,0);-ms-transform:matrix(0.236429,0.000000,-0.080858,0.236563,0,0);-webkit-transform:matrix(0.236429,0.000000,-0.080858,0.236563,0,0);}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-41.759983px;}
.v3{vertical-align:-6.479997px;}
.v1{vertical-align:-3.599999px;}
.v5{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.159999px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.018715px;}
.ls12{letter-spacing:0.020961px;}
.lsa{letter-spacing:0.083761px;}
.lse{letter-spacing:0.162387px;}
.ls3{letter-spacing:0.162660px;}
.lsb{letter-spacing:0.162670px;}
.ls4{letter-spacing:0.162694px;}
.ls9{letter-spacing:0.243300px;}
.ls11{letter-spacing:0.252354px;}
.ls8{letter-spacing:0.375720px;}
.ls18{letter-spacing:0.388333px;}
.ls5{letter-spacing:0.548040px;}
.lsd{letter-spacing:0.807376px;}
.lsf{letter-spacing:0.877091px;}
.lsc{letter-spacing:1.597656px;}
.ls16{letter-spacing:7.037817px;}
.ls15{letter-spacing:9.919316px;}
.ls0{letter-spacing:22.301665px;}
.ls14{letter-spacing:23.022084px;}
.ls2{letter-spacing:52.558873px;}
.ls6{letter-spacing:170.093079px;}
.ls17{letter-spacing:354.938784px;}
.ls10{letter-spacing:431.344447px;}
.ls7{letter-spacing:556.715177px;}
.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;}
}
.wsc{word-spacing:-36.481627px;}
.ws3{word-spacing:-31.698681px;}
.ws4{word-spacing:-31.535987px;}
.wsd{word-spacing:-28.171141px;}
.ws0{word-spacing:-17.519693px;}
.wsa{word-spacing:-13.208935px;}
.ws2{word-spacing:-13.139995px;}
.ws8{word-spacing:-13.132975px;}
.ws5{word-spacing:-13.089415px;}
.ws6{word-spacing:-13.084375px;}
.wsb{word-spacing:-8.759516px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:293.005679px;}
.ws9{word-spacing:357.533317px;}
._2c{margin-left:-193.395283px;}
._28{margin-left:-155.627762px;}
._2d{margin-left:-153.053699px;}
._2a{margin-left:-133.807036px;}
._2b{margin-left:-129.484638px;}
._22{margin-left:-103.264399px;}
._29{margin-left:-98.717185px;}
._2e{margin-left:-83.704595px;}
._25{margin-left:-81.641402px;}
._2f{margin-left:-72.972554px;}
._24{margin-left:-38.299378px;}
._23{margin-left:-34.813858px;}
._26{margin-left:-27.295262px;}
._30{margin-left:-4.213291px;}
._2{margin-left:-2.838917px;}
._1{margin-left:-1.002279px;}
._0{width:1.565420px;}
._8{width:2.998374px;}
._d{width:4.556565px;}
._a{width:6.351721px;}
._9{width:7.905631px;}
._5{width:9.509592px;}
._4{width:10.898914px;}
._12{width:11.924649px;}
._19{width:14.299616px;}
._7{width:15.839976px;}
._6{width:17.073170px;}
._14{width:18.270617px;}
._1d{width:19.298177px;}
._1a{width:20.728635px;}
._11{width:21.956932px;}
._e{width:23.225556px;}
._f{width:24.902647px;}
._18{width:26.121225px;}
._16{width:28.068483px;}
._13{width:29.340213px;}
._15{width:30.375585px;}
._10{width:31.992370px;}
._b{width:33.888867px;}
._c{width:35.554807px;}
._17{width:36.806973px;}
._27{width:38.173184px;}
._1c{width:45.215733px;}
._1b{width:46.619691px;}
._1e{width:47.727907px;}
._1f{width:48.895070px;}
._21{width:130.997590px;}
._20{width:132.078485px;}
._35{width:354.218397px;}
._36{width:355.659170px;}
._33{width:539.530108px;}
._31{width:544.697242px;}
._34{width:558.093982px;}
._32{width:561.697665px;}
._37{width:720.174769px;}
._3{width:2189.285218px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.021506px;}
.fsa{font-size:35.038066px;}
.fs5{font-size:40.722464px;}
.fs4{font-size:43.035533px;}
.fsf{font-size:46.951901px;}
.fs8{font-size:52.337499px;}
.fs3{font-size:52.357659px;}
.fsb{font-size:52.531899px;}
.fs2{font-size:52.559979px;}
.fse{font-size:52.835739px;}
.fs9{font-size:55.310821px;}
.fs6{font-size:55.545761px;}
.fs1{font-size:70.078772px;}
.fs7{font-size:75.053970px;}
.fsd{font-size:75.768570px;}
.fs0{font-size:105.119958px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.240729px;}
.ye7{bottom:4.140694px;}
.ybb{bottom:4.140763px;}
.y12d{bottom:5.940517px;}
.y12f{bottom:5.940575px;}
.y131{bottom:5.940632px;}
.y133{bottom:5.940690px;}
.y135{bottom:5.940748px;}
.y1b0{bottom:5.940752px;}
.y1b2{bottom:5.940802px;}
.y137{bottom:5.940806px;}
.y13c{bottom:165.361434px;}
.y35{bottom:168.061433px;}
.y9c{bottom:169.681432px;}
.y13b{bottom:180.841428px;}
.y1e3{bottom:181.381427px;}
.y34{bottom:183.541427px;}
.y12b{bottom:184.261426px;}
.y9b{bottom:185.161426px;}
.y199{bottom:193.441423px;}
.y68{bottom:194.701422px;}
.y13a{bottom:196.141422px;}
.y1e2{bottom:196.861421px;}
.yf9{bottom:197.041421px;}
.y33{bottom:199.021420px;}
.y9a{bottom:200.641420px;}
.y16d{bottom:201.361419px;}
.y1b5{bottom:208.021417px;}
.y12a{bottom:208.381417px;}
.y67{bottom:210.181416px;}
.y139{bottom:211.621415px;}
.yf8{bottom:212.521415px;}
.y32{bottom:214.321414px;}
.y1e1{bottom:218.101413px;}
.yc3{bottom:223.141411px;}
.y1b4{bottom:223.501411px;}
.y129{bottom:223.861410px;}
.y66{bottom:225.661410px;}
.y99{bottom:225.841410px;}
.y198{bottom:226.381409px;}
.y138{bottom:227.640600px;}
.yf7{bottom:227.821409px;}
.y136{bottom:228.000600px;}
.y31{bottom:229.801408px;}
.y1e0{bottom:233.581407px;}
.yc2{bottom:238.621405px;}
.y128{bottom:239.341404px;}
.y1b1{bottom:239.700600px;}
.y65{bottom:240.961404px;}
.y98{bottom:241.141404px;}
.y30{bottom:245.281402px;}
.y1b3{bottom:245.641402px;}
.y1df{bottom:248.881400px;}
.y16c{bottom:249.781400px;}
.y197{bottom:250.501400px;}
.yf6{bottom:252.121399px;}
.yc1{bottom:253.921398px;}
.y127{bottom:254.641398px;}
.y64{bottom:256.441397px;}
.y97{bottom:256.621397px;}
.y1de{bottom:264.361394px;}
.y16b{bottom:265.261394px;}
.y196{bottom:265.981394px;}
.yf5{bottom:268.321393px;}
.y2f{bottom:269.401392px;}
.y126{bottom:270.121392px;}
.y63{bottom:271.921391px;}
.y96{bottom:272.461391px;}
.yc0{bottom:278.221389px;}
.y16a{bottom:280.561388px;}
.y195{bottom:281.281387px;}
.yf4{bottom:283.801386px;}
.y2e{bottom:284.881386px;}
.y125{bottom:285.601386px;}
.y95{bottom:288.121385px;}
.ybf{bottom:293.521383px;}
.y62{bottom:296.041382px;}
.y194{bottom:296.761381px;}
.yf3{bottom:300.001380px;}
.y2d{bottom:300.181380px;}
.y124{bottom:300.901380px;}
.y94{bottom:304.861378px;}
.ybe{bottom:309.001376px;}
.y61{bottom:311.521375px;}
.y1a2{bottom:313.321375px;}
.y2c{bottom:315.661374px;}
.yf2{bottom:316.381373px;}
.y93{bottom:320.161372px;}
.y18d{bottom:322.141371px;}
.y193{bottom:323.581371px;}
.ybd{bottom:324.481370px;}
.y191{bottom:325.201370px;}
.y60{bottom:326.821369px;}
.y2b{bottom:331.141368px;}
.yf1{bottom:331.861367px;}
.y18c{bottom:335.101366px;}
.y92{bottom:335.641366px;}
.y192{bottom:335.821366px;}
.y190{bottom:336.901365px;}
.yba{bottom:338.520600px;}
.y5f{bottom:342.301363px;}
.ybc{bottom:342.481363px;}
.y1a1{bottom:345.901362px;}
.y2a{bottom:346.441361px;}
.yf0{bottom:347.161361px;}
.y18b{bottom:348.241361px;}
.y18f{bottom:349.321360px;}
.y91{bottom:351.121360px;}
.y1dd{bottom:356.701357px;}
.y5e{bottom:357.781357px;}
.yb9{bottom:358.681357px;}
.y18a{bottom:361.201356px;}
.y1a0{bottom:361.381355px;}
.y18e{bottom:361.741355px;}
.y123{bottom:362.641355px;}
.y1af{bottom:364.800600px;}
.y169{bottom:366.061354px;}
.y90{bottom:366.421353px;}
.y29{bottom:370.741352px;}
.yef{bottom:371.461351px;}
.y134{bottom:373.080600px;}
.y5d{bottom:373.081351px;}
.y189{bottom:373.441351px;}
.yb8{bottom:374.161350px;}
.y19f{bottom:376.861349px;}
.y122{bottom:378.121349px;}
.y168{bottom:381.541347px;}
.y188{bottom:385.861346px;}
.y28{bottom:386.041346px;}
.yee{bottom:386.761345px;}
.y5c{bottom:388.561345px;}
.yb7{bottom:389.641344px;}
.y8f{bottom:391.441343px;}
.y19e{bottom:392.161343px;}
.y121{bottom:393.421343px;}
.y1dc{bottom:394.141342px;}
.y167{bottom:397.021341px;}
.y187{bottom:399.001340px;}
.y27{bottom:401.521339px;}
.y5b{bottom:404.041338px;}
.yb6{bottom:404.941338px;}
.y8e{bottom:406.921337px;}
.y120{bottom:408.901336px;}
.y1db{bottom:409.621336px;}
.yed{bottom:410.881336px;}
.y186{bottom:412.141335px;}
.y166{bottom:412.321335px;}
.y19d{bottom:414.841334px;}
.y26{bottom:417.001333px;}
.y5a{bottom:419.341332px;}
.yb5{bottom:421.321331px;}
.y11f{bottom:424.201330px;}
.y1da{bottom:424.921330px;}
.y8c{bottom:425.100600px;}
.y17e{bottom:426.001330px;}
.yec{bottom:426.361329px;}
.y185{bottom:428.161329px;}
.y25{bottom:432.301327px;}
.y165{bottom:433.741327px;}
.y59{bottom:434.821326px;}
.y17d{bottom:439.141324px;}
.y11e{bottom:439.681324px;}
.y1d9{bottom:440.401324px;}
.y184{bottom:441.301323px;}
.yeb{bottom:441.841323px;}
.yb1{bottom:446.341321px;}
.y24{bottom:447.781321px;}
.y17c{bottom:452.281319px;}
.y183{bottom:454.441318px;}
.y11d{bottom:455.161318px;}
.y1d8{bottom:455.881318px;}
.yb3{bottom:456.961317px;}
.y58{bottom:458.941316px;}
.yb4{bottom:462.721315px;}
.y23{bottom:463.261315px;}
.yb2{bottom:465.421314px;}
.yea{bottom:465.961314px;}
.y182{bottom:467.581313px;}
.y11c{bottom:470.461312px;}
.y1d7{bottom:471.181312px;}
.y57{bottom:474.421310px;}
.y22{bottom:478.561309px;}
.y181{bottom:480.901308px;}
.ye9{bottom:481.441307px;}
.y11b{bottom:485.941306px;}
.y56{bottom:489.721304px;}
.yb0{bottom:490.621304px;}
.y17b{bottom:491.521303px;}
.y180{bottom:493.141303px;}
.y21{bottom:494.041302px;}
.y1ae{bottom:495.841302px;}
.y1d6{bottom:496.201302px;}
.ye8{bottom:496.741301px;}
.y11a{bottom:501.421299px;}
.y8b{bottom:502.321299px;}
.y17a{bottom:504.301298px;}
.y17f{bottom:504.841298px;}
.y55{bottom:505.201298px;}
.yaf{bottom:506.101298px;}
.y20{bottom:509.521296px;}
.ye6{bottom:510.780600px;}
.ye5{bottom:514.921294px;}
.y179{bottom:516.541293px;}
.y119{bottom:516.721293px;}
.y132{bottom:517.980600px;}
.y54{bottom:520.681292px;}
.yae{bottom:521.581291px;}
.y8a{bottom:526.801289px;}
.ye4{bottom:531.121288px;}
.y118{bottom:532.201287px;}
.y1d5{bottom:533.641287px;}
.y1f{bottom:534.361286px;}
.y53{bottom:535.981286px;}
.y178{bottom:536.521285px;}
.yad{bottom:545.701282px;}
.ydd{bottom:548.221281px;}
.y1d4{bottom:548.941280px;}
.y89{bottom:549.661280px;}
.ydf{bottom:550.381280px;}
.y52{bottom:551.461279px;}
.ydb{bottom:556.501277px;}
.y117{bottom:557.041277px;}
.ye3{bottom:557.581277px;}
.y177{bottom:559.381276px;}
.ydc{bottom:560.641276px;}
.ye1{bottom:560.821276px;}
.yac{bottom:561.181276px;}
.y1d3{bottom:564.421274px;}
.ye2{bottom:566.401273px;}
.y51{bottom:566.941273px;}
.yde{bottom:569.101272px;}
.ye0{bottom:569.641272px;}
.y1e{bottom:571.801271px;}
.y176{bottom:574.861270px;}
.y88{bottom:575.221270px;}
.yab{bottom:576.481269px;}
.y116{bottom:577.741269px;}
.y1d2{bottom:579.901268px;}
.y50{bottom:582.241267px;}
.y1d{bottom:587.281265px;}
.y19c{bottom:587.641265px;}
.y175{bottom:590.161264px;}
.y87{bottom:591.061264px;}
.yaa{bottom:591.961263px;}
.y1d1{bottom:595.201262px;}
.yda{bottom:596.101262px;}
.y4f{bottom:597.721261px;}
.y1c{bottom:602.581259px;}
.y174{bottom:605.641258px;}
.y86{bottom:607.441257px;}
.y1d0{bottom:610.681256px;}
.yd9{bottom:611.581255px;}
.y115{bottom:615.721254px;}
.ya9{bottom:616.621253px;}
.y1b{bottom:618.781252px;}
.y4e{bottom:621.841251px;}
.y85{bottom:623.101251px;}
.y1ad{bottom:624.001250px;}
.yd8{bottom:624.721250px;}
.yd7{bottom:627.061249px;}
.y114{bottom:631.201248px;}
.y1cf{bottom:634.801246px;}
.y4d{bottom:637.321245px;}
.y84{bottom:638.581245px;}
.y173{bottom:638.941244px;}
.yd6{bottom:640.201244px;}
.yd5{bottom:642.361243px;}
.y113{bottom:646.681241px;}
.y1ac{bottom:648.121241px;}
.y1ce{bottom:650.281240px;}
.y4c{bottom:652.801239px;}
.y83{bottom:654.241238px;}
.y1a{bottom:656.221238px;}
.yd4{bottom:657.841237px;}
.y111{bottom:661.981235px;}
.y130{bottom:662.880600px;}
.y1ab{bottom:663.601235px;}
.y1cd{bottom:665.761234px;}
.y112{bottom:667.741233px;}
.y4b{bottom:668.101233px;}
.y82{bottom:669.721232px;}
.y19{bottom:671.701231px;}
.y110{bottom:677.461229px;}
.y1aa{bottom:679.081228px;}
.y1cc{bottom:681.061228px;}
.yd3{bottom:681.961227px;}
.y4a{bottom:683.581227px;}
.y81{bottom:685.201226px;}
.y18{bottom:687.001225px;}
.y10f{bottom:692.941223px;}
.y1a9{bottom:694.381222px;}
.y1cb{bottom:696.541221px;}
.yd2{bottom:697.441221px;}
.y49{bottom:699.061220px;}
.y172{bottom:700.501220px;}
.y17{bottom:702.481219px;}
.y164{bottom:708.241217px;}
.y10e{bottom:709.141216px;}
.y80{bottom:709.321216px;}
.y1a8{bottom:709.861216px;}
.y1ca{bottom:712.021215px;}
.yd1{bottom:712.921215px;}
.y48{bottom:714.361214px;}
.y16{bottom:717.961213px;}
.y163{bottom:723.721211px;}
.y7f{bottom:724.801210px;}
.y1a7{bottom:725.341210px;}
.y10d{bottom:725.521210px;}
.yd0{bottom:728.221209px;}
.y47{bottom:729.841208px;}
.y15{bottom:733.261207px;}
.y1c9{bottom:736.321205px;}
.y162{bottom:739.201204px;}
.y7e{bottom:740.101204px;}
.y10c{bottom:741.181204px;}
.y46{bottom:745.321202px;}
.y14{bottom:748.741201px;}
.y1a6{bottom:750.181200px;}
.y1c8{bottom:751.801199px;}
.ycf{bottom:752.701199px;}
.y161{bottom:754.501198px;}
.y7d{bottom:755.581198px;}
.y10b{bottom:757.021197px;}
.y19b{bottom:759.721196px;}
.y13{bottom:764.221194px;}
.y1c7{bottom:767.101193px;}
.yce{bottom:768.181193px;}
.y45{bottom:769.441192px;}
.y7c{bottom:771.061192px;}
.y10a{bottom:773.581191px;}
.y12{bottom:779.521188px;}
.y151{bottom:782.941187px;}
.ycd{bottom:783.661187px;}
.y44{bottom:784.921186px;}
.y7b{bottom:786.361185px;}
.y109{bottom:789.061184px;}
.y160{bottom:790.861184px;}
.y11{bottom:795.001182px;}
.y150{bottom:795.721182px;}
.y1a5{bottom:796.081182px;}
.y1c6{bottom:798.421181px;}
.ycc{bottom:798.961180px;}
.y43{bottom:800.221180px;}
.y15f{bottom:801.661179px;}
.y7a{bottom:801.841179px;}
.y108{bottom:804.541178px;}
.y12e{bottom:807.780600px;}
.y14f{bottom:807.961177px;}
.y10{bottom:810.481176px;}
.y1a4{bottom:811.561175px;}
.y15e{bottom:813.541175px;}
.y1c5{bottom:813.721175px;}
.ycb{bottom:814.441174px;}
.y42{bottom:815.701174px;}
.y79{bottom:817.321173px;}
.y107{bottom:819.841172px;}
.y14e{bottom:820.381172px;}
.yf{bottom:825.781170px;}
.y15d{bottom:826.141170px;}
.y1c4{bottom:829.201168px;}
.yca{bottom:829.921168px;}
.y41{bottom:831.181168px;}
.y78{bottom:832.621167px;}
.y14d{bottom:833.521167px;}
.y15c{bottom:839.461164px;}
.y1f9{bottom:841.081164px;}
.ye{bottom:841.261163px;}
.y1a3{bottom:841.621163px;}
.y1c3{bottom:844.501162px;}
.y106{bottom:844.681162px;}
.yc9{bottom:845.221162px;}
.y40{bottom:846.481161px;}
.y14c{bottom:846.661161px;}
.y77{bottom:848.101161px;}
.y15b{bottom:852.781159px;}
.yd{bottom:856.741157px;}
.y14b{bottom:859.801156px;}
.yc8{bottom:860.701156px;}
.y3f{bottom:861.961155px;}
.y1f8{bottom:862.321155px;}
.y76{bottom:863.581155px;}
.y15a{bottom:866.101154px;}
.y1c2{bottom:868.801152px;}
.yc{bottom:872.041151px;}
.y14a{bottom:872.761151px;}
.y105{bottom:873.481151px;}
.yc7{bottom:876.541853px;}
.yc6{bottom:876.901149px;}
.y3e{bottom:877.441149px;}
.y1f7{bottom:877.621149px;}
.y159{bottom:878.521149px;}
.y75{bottom:878.881148px;}
.y1c1{bottom:884.101146px;}
.y149{bottom:885.541146px;}
.yb{bottom:887.521145px;}
.y171{bottom:887.701145px;}
.y104{bottom:888.961144px;}
.y158{bottom:890.401144px;}
.y3d{bottom:892.741143px;}
.yc5{bottom:893.461143px;}
.y74{bottom:894.361142px;}
.y148{bottom:898.321141px;}
.y1f6{bottom:898.861140px;}
.y1c0{bottom:899.581140px;}
.y157{bottom:902.101139px;}
.ya{bottom:903.001139px;}
.y170{bottom:903.181139px;}
.y103{bottom:904.261138px;}
.y3c{bottom:908.221137px;}
.y73{bottom:909.841136px;}
.y147{bottom:910.561136px;}
.ya8{bottom:913.261135px;}
.y156{bottom:913.801134px;}
.y1f5{bottom:914.701134px;}
.y1bf{bottom:915.061134px;}
.y9{bottom:918.301133px;}
.y16f{bottom:918.481133px;}
.y1ec{bottom:919.201132px;}
.y102{bottom:919.741132px;}
.y146{bottom:923.161131px;}
.y3b{bottom:923.521131px;}
.y72{bottom:925.141130px;}
.y155{bottom:926.221130px;}
.ya7{bottom:928.741129px;}
.y1be{bottom:930.361128px;}
.y19a{bottom:932.701127px;}
.y8{bottom:933.781126px;}
.y16e{bottom:933.961126px;}
.y1eb{bottom:935.041126px;}
.y101{bottom:935.221126px;}
.y1f4{bottom:935.941126px;}
.y145{bottom:936.301125px;}
.y3a{bottom:939.001124px;}
.y154{bottom:939.361124px;}
.yc4{bottom:940.621124px;}
.ya6{bottom:944.401122px;}
.y1bd{bottom:945.841122px;}
.y7{bottom:949.261120px;}
.y71{bottom:949.441120px;}
.y1ea{bottom:950.341120px;}
.y100{bottom:950.521120px;}
.y1f3{bottom:951.241120px;}
.y153{bottom:951.781119px;}
.y12c{bottom:952.680600px;}
.y39{bottom:954.481118px;}
.ya5{bottom:959.881116px;}
.y1bc{bottom:961.321115px;}
.y144{bottom:962.041115px;}
.y152{bottom:963.481115px;}
.y6{bottom:964.561114px;}
.y70{bottom:964.741114px;}
.y38{bottom:969.781112px;}
.y1e9{bottom:971.581111px;}
.y1f2{bottom:972.481111px;}
.yff{bottom:974.821110px;}
.ya4{bottom:975.361110px;}
.y1bb{bottom:976.621109px;}
.y5{bottom:980.041108px;}
.y6f{bottom:980.221108px;}
.y37{bottom:985.261106px;}
.y143{bottom:987.061105px;}
.yfe{bottom:990.121104px;}
.ya3{bottom:990.661104px;}
.y1f1{bottom:993.721103px;}
.y6e{bottom:995.701102px;}
.y4{bottom:996.061102px;}
.y36{bottom:1000.741100px;}
.y1ba{bottom:1000.921100px;}
.yfd{bottom:1005.601098px;}
.y142{bottom:1007.041097px;}
.y1e8{bottom:1008.301097px;}
.y1f0{bottom:1009.021096px;}
.y6d{bottom:1011.001096px;}
.ya2{bottom:1014.961094px;}
.y1b9{bottom:1016.221094px;}
.yfc{bottom:1021.081092px;}
.y3{bottom:1021.261091px;}
.y1e7{bottom:1023.601091px;}
.y1ef{bottom:1024.501090px;}
.y6c{bottom:1026.481089px;}
.y141{bottom:1029.901088px;}
.ya1{bottom:1030.261088px;}
.y1b8{bottom:1031.701087px;}
.yfb{bottom:1036.561085px;}
.y1e6{bottom:1039.081084px;}
.y1ee{bottom:1039.981084px;}
.y6b{bottom:1041.781083px;}
.y140{bottom:1045.381082px;}
.ya0{bottom:1045.741082px;}
.y1b7{bottom:1047.181081px;}
.y2{bottom:1047.901081px;}
.yfa{bottom:1052.401079px;}
.y1ed{bottom:1055.281078px;}
.y1e5{bottom:1060.321076px;}
.y13f{bottom:1060.861076px;}
.y9f{bottom:1061.221076px;}
.y1b6{bottom:1062.481075px;}
.y6a{bottom:1066.801073px;}
.y1e4{bottom:1075.621070px;}
.y13e{bottom:1076.161070px;}
.y9e{bottom:1076.521069px;}
.y1{bottom:1079.041068px;}
.y69{bottom:1087.501065px;}
.y13d{bottom:1091.641063px;}
.y9d{bottom:1092.001063px;}
.h2{height:0.000000px;}
.h8{height:14.940000px;}
.he{height:17.100000px;}
.h1b{height:17.280000px;}
.h18{height:24.316690px;}
.h14{height:24.328188px;}
.h1e{height:24.345297px;}
.hc{height:27.406218px;}
.hb{height:28.962913px;}
.h21{height:29.016275px;}
.h22{height:29.438842px;}
.h1f{height:30.240000px;}
.h23{height:31.820917px;}
.h7{height:32.482067px;}
.h20{height:32.540917px;}
.h24{height:32.623318px;}
.h25{height:34.783317px;}
.h12{height:35.223137px;}
.h16{height:35.353968px;}
.h9{height:35.621705px;}
.ha{height:36.353804px;}
.h10{height:36.365362px;}
.h17{height:36.474785px;}
.h13{height:36.494282px;}
.h1a{height:36.500436px;}
.h4{height:36.519946px;}
.h1d{height:36.711551px;}
.h19{height:37.220435px;}
.h11{height:37.224183px;}
.hd{height:37.382297px;}
.h3{height:47.494793px;}
.h15{height:48.658697px;}
.h6{height:48.684707px;}
.hf{height:50.511322px;}
.h1c{height:50.992247px;}
.h5{height:51.928370px;}
.h1{height:77.893889px;}
.h0{height:1263.000000px;}
.w2{width:0.900000px;}
.w3{width:1.080000px;}
.w1{width:1.260000px;}
.w4{width:4.320000px;}
.w7{width:8.460000px;}
.w5{width:10.440000px;}
.w6{width:10.800000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:79.379218px;}
.xb{left:81.359217px;}
.x49{left:82.799217px;}
.x2e{left:84.599539px;}
.x4a{left:85.859216px;}
.x2f{left:88.919214px;}
.x57{left:94.679212px;}
.x1b{left:99.539193px;}
.x51{left:105.119208px;}
.x4b{left:108.539156px;}
.x6{left:109.979227px;}
.x43{left:131.399721px;}
.x4f{left:141.119239px;}
.x4{left:154.619938px;}
.x7{left:161.279280px;}
.xc{left:165.599037px;}
.x3{left:174.239930px;}
.x29{left:181.439883px;}
.x1c{left:205.559121px;}
.x27{left:217.980090px;}
.x23{left:224.819947px;}
.x2c{left:228.779908px;}
.x2a{left:229.859908px;}
.x2b{left:234.540000px;}
.x25{left:238.139961px;}
.x2d{left:241.019904px;}
.x41{left:243.180000px;}
.x50{left:245.339902px;}
.x2{left:248.220145px;}
.x8{left:253.080000px;}
.x28{left:256.319897px;}
.x24{left:262.439932px;}
.x58{left:268.925892px;}
.x26{left:273.419997px;}
.x22{left:288.899884px;}
.x9{left:344.520000px;}
.x1d{left:383.219050px;}
.x1e{left:398.339044px;}
.x21{left:399.779840px;}
.x4c{left:406.259837px;}
.x1f{left:422.459831px;}
.x20{left:424.799830px;}
.x42{left:426.240000px;}
.x4e{left:428.939828px;}
.xa{left:436.140000px;}
.x5{left:464.038698px;}
.x19{left:465.659814px;}
.x45{left:468.179813px;}
.x30{left:469.978107px;}
.x46{left:471.059812px;}
.x31{left:474.299810px;}
.xe{left:475.379957px;}
.x55{left:479.879808px;}
.x32{left:485.099806px;}
.x16{left:487.440000px;}
.x56{left:490.319804px;}
.x37{left:492.479803px;}
.x47{left:493.919805px;}
.x40{left:495.179748px;}
.x18{left:499.319800px;}
.x38{left:500.399800px;}
.x17{left:504.900000px;}
.x39{left:507.419797px;}
.x1a{left:510.659796px;}
.x3a{left:515.339794px;}
.x44{left:516.600550px;}
.x14{left:524.879790px;}
.x15{left:532.979787px;}
.x4d{left:539.279784px;}
.x13{left:601.559759px;}
.x10{left:611.999803px;}
.x12{left:619.379752px;}
.x11{left:624.959750px;}
.x3e{left:626.759749px;}
.x3d{left:632.519747px;}
.x3f{left:634.139746px;}
.xf{left:637.739745px;}
.x59{left:661.859735px;}
.x5a{left:675.179730px;}
.x3b{left:699.839720px;}
.x3c{left:707.759717px;}
.x33{left:718.559713px;}
.x34{left:734.219706px;}
.x52{left:775.619690px;}
.x53{left:791.459683px;}
.x48{left:793.440618px;}
.x54{left:798.839680px;}
.x35{left:803.519679px;}
.x36{left:811.439675px;}
.xd{left:814.139674px;}
@media print{
.v2{vertical-align:-37.119985pt;}
.v3{vertical-align:-5.759998pt;}
.v1{vertical-align:-3.199999pt;}
.v5{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.919999pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.016636pt;}
.ls12{letter-spacing:0.018632pt;}
.lsa{letter-spacing:0.074454pt;}
.lse{letter-spacing:0.144344pt;}
.ls3{letter-spacing:0.144587pt;}
.lsb{letter-spacing:0.144596pt;}
.ls4{letter-spacing:0.144617pt;}
.ls9{letter-spacing:0.216267pt;}
.ls11{letter-spacing:0.224314pt;}
.ls8{letter-spacing:0.333973pt;}
.ls18{letter-spacing:0.345185pt;}
.ls5{letter-spacing:0.487146pt;}
.lsd{letter-spacing:0.717668pt;}
.lsf{letter-spacing:0.779636pt;}
.lsc{letter-spacing:1.420139pt;}
.ls16{letter-spacing:6.255837pt;}
.ls15{letter-spacing:8.817170pt;}
.ls0{letter-spacing:19.823702pt;}
.ls14{letter-spacing:20.464075pt;}
.ls2{letter-spacing:46.718998pt;}
.ls6{letter-spacing:151.193848pt;}
.ls17{letter-spacing:315.501141pt;}
.ls10{letter-spacing:383.417287pt;}
.ls7{letter-spacing:494.857935pt;}
.wsc{word-spacing:-32.428113pt;}
.ws3{word-spacing:-28.176605pt;}
.ws4{word-spacing:-28.031989pt;}
.wsd{word-spacing:-25.041014pt;}
.ws0{word-spacing:-15.573060pt;}
.wsa{word-spacing:-11.741275pt;}
.ws2{word-spacing:-11.679995pt;}
.ws8{word-spacing:-11.673755pt;}
.ws5{word-spacing:-11.635035pt;}
.ws6{word-spacing:-11.630555pt;}
.wsb{word-spacing:-7.786237pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:260.449492pt;}
.ws9{word-spacing:317.807393pt;}
._2c{margin-left:-171.906918pt;}
._28{margin-left:-138.335788pt;}
._2d{margin-left:-136.047732pt;}
._2a{margin-left:-118.939587pt;}
._2b{margin-left:-115.097456pt;}
._22{margin-left:-91.790577pt;}
._29{margin-left:-87.748609pt;}
._2e{margin-left:-74.404084pt;}
._25{margin-left:-72.570135pt;}
._2f{margin-left:-64.864492pt;}
._24{margin-left:-34.043892pt;}
._23{margin-left:-30.945651pt;}
._26{margin-left:-24.262455pt;}
._30{margin-left:-3.745148pt;}
._2{margin-left:-2.523482pt;}
._1{margin-left:-0.890915pt;}
._0{width:1.391485pt;}
._8{width:2.665221pt;}
._d{width:4.050280pt;}
._a{width:5.645974pt;}
._9{width:7.027228pt;}
._5{width:8.452971pt;}
._4{width:9.687924pt;}
._12{width:10.599688pt;}
._19{width:12.710770pt;}
._7{width:14.079979pt;}
._6{width:15.176152pt;}
._14{width:16.240549pt;}
._1d{width:17.153935pt;}
._1a{width:18.425454pt;}
._11{width:19.517273pt;}
._e{width:20.644938pt;}
._f{width:22.135687pt;}
._18{width:23.218867pt;}
._16{width:24.949762pt;}
._13{width:26.080190pt;}
._15{width:27.000520pt;}
._10{width:28.437662pt;}
._b{width:30.123438pt;}
._c{width:31.604273pt;}
._17{width:32.717309pt;}
._27{width:33.931719pt;}
._1c{width:40.191762pt;}
._1b{width:41.439725pt;}
._1e{width:42.424806pt;}
._1f{width:43.462284pt;}
._21{width:116.442302pt;}
._20{width:117.403097pt;}
._35{width:314.860797pt;}
._36{width:316.141485pt;}
._33{width:479.582318pt;}
._31{width:484.175326pt;}
._34{width:496.083540pt;}
._32{width:499.286814pt;}
._37{width:640.155350pt;}
._3{width:1946.031305pt;}
.fsc{font-size:31.130228pt;}
.fsa{font-size:31.144948pt;}
.fs5{font-size:36.197746pt;}
.fs4{font-size:38.253807pt;}
.fsf{font-size:41.735023pt;}
.fs8{font-size:46.522221pt;}
.fs3{font-size:46.540141pt;}
.fsb{font-size:46.695021pt;}
.fs2{font-size:46.719981pt;}
.fse{font-size:46.965101pt;}
.fs9{font-size:49.165174pt;}
.fs6{font-size:49.374009pt;}
.fs1{font-size:62.292242pt;}
.fs7{font-size:66.714640pt;}
.fsd{font-size:67.349840pt;}
.fs0{font-size:93.439963pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.880648pt;}
.ye7{bottom:3.680617pt;}
.ybb{bottom:3.680678pt;}
.y12d{bottom:5.280459pt;}
.y12f{bottom:5.280511pt;}
.y131{bottom:5.280562pt;}
.y133{bottom:5.280614pt;}
.y135{bottom:5.280665pt;}
.y1b0{bottom:5.280668pt;}
.y1b2{bottom:5.280713pt;}
.y137{bottom:5.280717pt;}
.y13c{bottom:146.987941pt;}
.y35{bottom:149.387940pt;}
.y9c{bottom:150.827940pt;}
.y13b{bottom:160.747936pt;}
.y1e3{bottom:161.227936pt;}
.y34{bottom:163.147935pt;}
.y12b{bottom:163.787934pt;}
.y9b{bottom:164.587934pt;}
.y199{bottom:171.947931pt;}
.y68{bottom:173.067931pt;}
.y13a{bottom:174.347930pt;}
.y1e2{bottom:174.987930pt;}
.yf9{bottom:175.147930pt;}
.y33{bottom:176.907929pt;}
.y9a{bottom:178.347929pt;}
.y16d{bottom:178.987928pt;}
.y1b5{bottom:184.907926pt;}
.y12a{bottom:185.227926pt;}
.y67{bottom:186.827925pt;}
.y139{bottom:188.107925pt;}
.yf8{bottom:188.907924pt;}
.y32{bottom:190.507924pt;}
.y1e1{bottom:193.867922pt;}
.yc3{bottom:198.347921pt;}
.y1b4{bottom:198.667921pt;}
.y129{bottom:198.987920pt;}
.y66{bottom:200.587920pt;}
.y99{bottom:200.747920pt;}
.y198{bottom:201.227920pt;}
.y138{bottom:202.347200pt;}
.yf7{bottom:202.507919pt;}
.y136{bottom:202.667200pt;}
.y31{bottom:204.267918pt;}
.y1e0{bottom:207.627917pt;}
.yc2{bottom:212.107915pt;}
.y128{bottom:212.747915pt;}
.y1b1{bottom:213.067200pt;}
.y65{bottom:214.187914pt;}
.y98{bottom:214.347914pt;}
.y30{bottom:218.027913pt;}
.y1b3{bottom:218.347913pt;}
.y1df{bottom:221.227912pt;}
.y16c{bottom:222.027911pt;}
.y197{bottom:222.667911pt;}
.yf6{bottom:224.107910pt;}
.yc1{bottom:225.707910pt;}
.y127{bottom:226.347909pt;}
.y64{bottom:227.947909pt;}
.y97{bottom:228.107909pt;}
.y1de{bottom:234.987906pt;}
.y16b{bottom:235.787906pt;}
.y196{bottom:236.427905pt;}
.yf5{bottom:238.507905pt;}
.y2f{bottom:239.467904pt;}
.y126{bottom:240.107904pt;}
.y63{bottom:241.707903pt;}
.y96{bottom:242.187903pt;}
.yc0{bottom:247.307901pt;}
.y16a{bottom:249.387900pt;}
.y195{bottom:250.027900pt;}
.yf4{bottom:252.267899pt;}
.y2e{bottom:253.227899pt;}
.y125{bottom:253.867898pt;}
.y95{bottom:256.107898pt;}
.ybf{bottom:260.907896pt;}
.y62{bottom:263.147895pt;}
.y194{bottom:263.787894pt;}
.yf3{bottom:266.667893pt;}
.y2d{bottom:266.827893pt;}
.y124{bottom:267.467893pt;}
.y94{bottom:270.987892pt;}
.ybe{bottom:274.667890pt;}
.y61{bottom:276.907889pt;}
.y1a2{bottom:278.507889pt;}
.y2c{bottom:280.587888pt;}
.yf2{bottom:281.227888pt;}
.y93{bottom:284.587886pt;}
.y18d{bottom:286.347885pt;}
.y193{bottom:287.627885pt;}
.ybd{bottom:288.427885pt;}
.y191{bottom:289.067884pt;}
.y60{bottom:290.507884pt;}
.y2b{bottom:294.347882pt;}
.yf1{bottom:294.987882pt;}
.y18c{bottom:297.867881pt;}
.y92{bottom:298.347881pt;}
.y192{bottom:298.507881pt;}
.y190{bottom:299.467880pt;}
.yba{bottom:300.907200pt;}
.y5f{bottom:304.267878pt;}
.ybc{bottom:304.427878pt;}
.y1a1{bottom:307.467877pt;}
.y2a{bottom:307.947877pt;}
.yf0{bottom:308.587877pt;}
.y18b{bottom:309.547876pt;}
.y18f{bottom:310.507876pt;}
.y91{bottom:312.107875pt;}
.y1dd{bottom:317.067873pt;}
.y5e{bottom:318.027873pt;}
.yb9{bottom:318.827872pt;}
.y18a{bottom:321.067872pt;}
.y1a0{bottom:321.227872pt;}
.y18e{bottom:321.547871pt;}
.y123{bottom:322.347871pt;}
.y1af{bottom:324.267200pt;}
.y169{bottom:325.387870pt;}
.y90{bottom:325.707870pt;}
.y29{bottom:329.547868pt;}
.yef{bottom:330.187868pt;}
.y134{bottom:331.627200pt;}
.y5d{bottom:331.627867pt;}
.y189{bottom:331.947867pt;}
.yb8{bottom:332.587867pt;}
.y19f{bottom:334.987866pt;}
.y122{bottom:336.107866pt;}
.y168{bottom:339.147864pt;}
.y188{bottom:342.987863pt;}
.y28{bottom:343.147863pt;}
.yee{bottom:343.787862pt;}
.y5c{bottom:345.387862pt;}
.yb7{bottom:346.347861pt;}
.y8f{bottom:347.947861pt;}
.y19e{bottom:348.587861pt;}
.y121{bottom:349.707860pt;}
.y1dc{bottom:350.347860pt;}
.y167{bottom:352.907859pt;}
.y187{bottom:354.667858pt;}
.y27{bottom:356.907857pt;}
.y5b{bottom:359.147856pt;}
.yb6{bottom:359.947856pt;}
.y8e{bottom:361.707855pt;}
.y120{bottom:363.467855pt;}
.y1db{bottom:364.107854pt;}
.yed{bottom:365.227854pt;}
.y186{bottom:366.347853pt;}
.y166{bottom:366.507853pt;}
.y19d{bottom:368.747853pt;}
.y26{bottom:370.667852pt;}
.y5a{bottom:372.747851pt;}
.yb5{bottom:374.507850pt;}
.y11f{bottom:377.067849pt;}
.y1da{bottom:377.707849pt;}
.y8c{bottom:377.867200pt;}
.y17e{bottom:378.667849pt;}
.yec{bottom:378.987848pt;}
.y185{bottom:380.587848pt;}
.y25{bottom:384.267846pt;}
.y165{bottom:385.547846pt;}
.y59{bottom:386.507845pt;}
.y17d{bottom:390.347844pt;}
.y11e{bottom:390.827844pt;}
.y1d9{bottom:391.467843pt;}
.y184{bottom:392.267843pt;}
.yeb{bottom:392.747843pt;}
.yb1{bottom:396.747841pt;}
.y24{bottom:398.027841pt;}
.y17c{bottom:402.027839pt;}
.y183{bottom:403.947838pt;}
.y11d{bottom:404.587838pt;}
.y1d8{bottom:405.227838pt;}
.yb3{bottom:406.187838pt;}
.y58{bottom:407.947837pt;}
.yb4{bottom:411.307835pt;}
.y23{bottom:411.787835pt;}
.yb2{bottom:413.707835pt;}
.yea{bottom:414.187834pt;}
.y182{bottom:415.627834pt;}
.y11c{bottom:418.187833pt;}
.y1d7{bottom:418.827832pt;}
.y57{bottom:421.707831pt;}
.y22{bottom:425.387830pt;}
.y181{bottom:427.467829pt;}
.ye9{bottom:427.947829pt;}
.y11b{bottom:431.947827pt;}
.y56{bottom:435.307826pt;}
.yb0{bottom:436.107826pt;}
.y17b{bottom:436.907825pt;}
.y180{bottom:438.347825pt;}
.y21{bottom:439.147824pt;}
.y1ae{bottom:440.747824pt;}
.y1d6{bottom:441.067824pt;}
.ye8{bottom:441.547823pt;}
.y11a{bottom:445.707822pt;}
.y8b{bottom:446.507821pt;}
.y17a{bottom:448.267821pt;}
.y17f{bottom:448.747821pt;}
.y55{bottom:449.067820pt;}
.yaf{bottom:449.867820pt;}
.y20{bottom:452.907819pt;}
.ye6{bottom:454.027200pt;}
.ye5{bottom:457.707817pt;}
.y179{bottom:459.147816pt;}
.y119{bottom:459.307816pt;}
.y132{bottom:460.427200pt;}
.y54{bottom:462.827815pt;}
.yae{bottom:463.627815pt;}
.y8a{bottom:468.267813pt;}
.ye4{bottom:472.107811pt;}
.y118{bottom:473.067811pt;}
.y1d5{bottom:474.347810pt;}
.y1f{bottom:474.987810pt;}
.y53{bottom:476.427809pt;}
.y178{bottom:476.907809pt;}
.yad{bottom:485.067806pt;}
.ydd{bottom:487.307805pt;}
.y1d4{bottom:487.947805pt;}
.y89{bottom:488.587805pt;}
.ydf{bottom:489.227804pt;}
.y52{bottom:490.187804pt;}
.ydb{bottom:494.667802pt;}
.y117{bottom:495.147802pt;}
.ye3{bottom:495.627802pt;}
.y177{bottom:497.227801pt;}
.ydc{bottom:498.347801pt;}
.ye1{bottom:498.507801pt;}
.yac{bottom:498.827800pt;}
.y1d3{bottom:501.707799pt;}
.ye2{bottom:503.467799pt;}
.y51{bottom:503.947798pt;}
.yde{bottom:505.867798pt;}
.ye0{bottom:506.347797pt;}
.y1e{bottom:508.267797pt;}
.y176{bottom:510.987796pt;}
.y88{bottom:511.307795pt;}
.yab{bottom:512.427795pt;}
.y116{bottom:513.547795pt;}
.y1d2{bottom:515.467794pt;}
.y50{bottom:517.547793pt;}
.y1d{bottom:522.027791pt;}
.y19c{bottom:522.347791pt;}
.y175{bottom:524.587790pt;}
.y87{bottom:525.387790pt;}
.yaa{bottom:526.187790pt;}
.y1d1{bottom:529.067788pt;}
.yda{bottom:529.867788pt;}
.y4f{bottom:531.307787pt;}
.y1c{bottom:535.627786pt;}
.y174{bottom:538.347785pt;}
.y86{bottom:539.947784pt;}
.y1d0{bottom:542.827783pt;}
.yd9{bottom:543.627783pt;}
.y115{bottom:547.307781pt;}
.ya9{bottom:548.107781pt;}
.y1b{bottom:550.027780pt;}
.y4e{bottom:552.747779pt;}
.y85{bottom:553.867778pt;}
.y1ad{bottom:554.667778pt;}
.yd8{bottom:555.307778pt;}
.yd7{bottom:557.387777pt;}
.y114{bottom:561.067776pt;}
.y1cf{bottom:564.267774pt;}
.y4d{bottom:566.507773pt;}
.y84{bottom:567.627773pt;}
.y173{bottom:567.947773pt;}
.yd6{bottom:569.067772pt;}
.yd5{bottom:570.987772pt;}
.y113{bottom:574.827770pt;}
.y1ac{bottom:576.107770pt;}
.y1ce{bottom:578.027769pt;}
.y4c{bottom:580.267768pt;}
.y83{bottom:581.547767pt;}
.y1a{bottom:583.307767pt;}
.yd4{bottom:584.747766pt;}
.y111{bottom:588.427765pt;}
.y130{bottom:589.227200pt;}
.y1ab{bottom:589.867764pt;}
.y1cd{bottom:591.787763pt;}
.y112{bottom:593.547763pt;}
.y4b{bottom:593.867762pt;}
.y82{bottom:595.307762pt;}
.y19{bottom:597.067761pt;}
.y110{bottom:602.187759pt;}
.y1aa{bottom:603.627759pt;}
.y1cc{bottom:605.387758pt;}
.yd3{bottom:606.187758pt;}
.y4a{bottom:607.627757pt;}
.y81{bottom:609.067756pt;}
.y18{bottom:610.667756pt;}
.y10f{bottom:615.947754pt;}
.y1a9{bottom:617.227753pt;}
.y1cb{bottom:619.147752pt;}
.yd2{bottom:619.947752pt;}
.y49{bottom:621.387751pt;}
.y172{bottom:622.667751pt;}
.y17{bottom:624.427750pt;}
.y164{bottom:629.547748pt;}
.y10e{bottom:630.347748pt;}
.y80{bottom:630.507748pt;}
.y1a8{bottom:630.987748pt;}
.y1ca{bottom:632.907747pt;}
.yd1{bottom:633.707747pt;}
.y48{bottom:634.987746pt;}
.y16{bottom:638.187745pt;}
.y163{bottom:643.307743pt;}
.y7f{bottom:644.267742pt;}
.y1a7{bottom:644.747742pt;}
.y10d{bottom:644.907742pt;}
.yd0{bottom:647.307741pt;}
.y47{bottom:648.747741pt;}
.y15{bottom:651.787739pt;}
.y1c9{bottom:654.507738pt;}
.y162{bottom:657.067737pt;}
.y7e{bottom:657.867737pt;}
.y10c{bottom:658.827736pt;}
.y46{bottom:662.507735pt;}
.y14{bottom:665.547734pt;}
.y1a6{bottom:666.827733pt;}
.y1c8{bottom:668.267733pt;}
.ycf{bottom:669.067732pt;}
.y161{bottom:670.667732pt;}
.y7d{bottom:671.627731pt;}
.y10b{bottom:672.907731pt;}
.y19b{bottom:675.307730pt;}
.y13{bottom:679.307728pt;}
.y1c7{bottom:681.867727pt;}
.yce{bottom:682.827727pt;}
.y45{bottom:683.947726pt;}
.y7c{bottom:685.387726pt;}
.y10a{bottom:687.627725pt;}
.y12{bottom:692.907723pt;}
.y151{bottom:695.947722pt;}
.ycd{bottom:696.587721pt;}
.y44{bottom:697.707721pt;}
.y7b{bottom:698.987720pt;}
.y109{bottom:701.387719pt;}
.y160{bottom:702.987719pt;}
.y11{bottom:706.667717pt;}
.y150{bottom:707.307717pt;}
.y1a5{bottom:707.627717pt;}
.y1c6{bottom:709.707716pt;}
.ycc{bottom:710.187716pt;}
.y43{bottom:711.307715pt;}
.y15f{bottom:712.587715pt;}
.y7a{bottom:712.747715pt;}
.y108{bottom:715.147714pt;}
.y12e{bottom:718.027200pt;}
.y14f{bottom:718.187713pt;}
.y10{bottom:720.427712pt;}
.y1a4{bottom:721.387711pt;}
.y15e{bottom:723.147711pt;}
.y1c5{bottom:723.307711pt;}
.ycb{bottom:723.947710pt;}
.y42{bottom:725.067710pt;}
.y79{bottom:726.507709pt;}
.y107{bottom:728.747709pt;}
.y14e{bottom:729.227708pt;}
.yf{bottom:734.027706pt;}
.y15d{bottom:734.347706pt;}
.y1c4{bottom:737.067705pt;}
.yca{bottom:737.707705pt;}
.y41{bottom:738.827704pt;}
.y78{bottom:740.107704pt;}
.y14d{bottom:740.907704pt;}
.y15c{bottom:746.187702pt;}
.y1f9{bottom:747.627701pt;}
.ye{bottom:747.787701pt;}
.y1a3{bottom:748.107701pt;}
.y1c3{bottom:750.667700pt;}
.y106{bottom:750.827700pt;}
.yc9{bottom:751.307699pt;}
.y40{bottom:752.427699pt;}
.y14c{bottom:752.587699pt;}
.y77{bottom:753.867698pt;}
.y15b{bottom:758.027697pt;}
.yd{bottom:761.547695pt;}
.y14b{bottom:764.267694pt;}
.yc8{bottom:765.067694pt;}
.y3f{bottom:766.187694pt;}
.y1f8{bottom:766.507693pt;}
.y76{bottom:767.627693pt;}
.y15a{bottom:769.867692pt;}
.y1c2{bottom:772.267691pt;}
.yc{bottom:775.147690pt;}
.y14a{bottom:775.787690pt;}
.y105{bottom:776.427689pt;}
.yc7{bottom:779.148314pt;}
.yc6{bottom:779.467688pt;}
.y3e{bottom:779.947688pt;}
.y1f7{bottom:780.107688pt;}
.y159{bottom:780.907688pt;}
.y75{bottom:781.227688pt;}
.y1c1{bottom:785.867686pt;}
.y149{bottom:787.147685pt;}
.yb{bottom:788.907684pt;}
.y171{bottom:789.067684pt;}
.y104{bottom:790.187684pt;}
.y158{bottom:791.467683pt;}
.y3d{bottom:793.547683pt;}
.yc5{bottom:794.187682pt;}
.y74{bottom:794.987682pt;}
.y148{bottom:798.507681pt;}
.y1f6{bottom:798.987680pt;}
.y1c0{bottom:799.627680pt;}
.y157{bottom:801.867679pt;}
.ya{bottom:802.667679pt;}
.y170{bottom:802.827679pt;}
.y103{bottom:803.787678pt;}
.y3c{bottom:807.307677pt;}
.y73{bottom:808.747677pt;}
.y147{bottom:809.387676pt;}
.ya8{bottom:811.787675pt;}
.y156{bottom:812.267675pt;}
.y1f5{bottom:813.067675pt;}
.y1bf{bottom:813.387675pt;}
.y9{bottom:816.267673pt;}
.y16f{bottom:816.427673pt;}
.y1ec{bottom:817.067673pt;}
.y102{bottom:817.547673pt;}
.y146{bottom:820.587672pt;}
.y3b{bottom:820.907672pt;}
.y72{bottom:822.347671pt;}
.y155{bottom:823.307671pt;}
.ya7{bottom:825.547670pt;}
.y1be{bottom:826.987669pt;}
.y19a{bottom:829.067668pt;}
.y8{bottom:830.027668pt;}
.y16e{bottom:830.187668pt;}
.y1eb{bottom:831.147668pt;}
.y101{bottom:831.307667pt;}
.y1f4{bottom:831.947667pt;}
.y145{bottom:832.267667pt;}
.y3a{bottom:834.667666pt;}
.y154{bottom:834.987666pt;}
.yc4{bottom:836.107666pt;}
.ya6{bottom:839.467664pt;}
.y1bd{bottom:840.747664pt;}
.y7{bottom:843.787662pt;}
.y71{bottom:843.947662pt;}
.y1ea{bottom:844.747662pt;}
.y100{bottom:844.907662pt;}
.y1f3{bottom:845.547662pt;}
.y153{bottom:846.027662pt;}
.y12c{bottom:846.827200pt;}
.y39{bottom:848.427661pt;}
.ya5{bottom:853.227659pt;}
.y1bc{bottom:854.507658pt;}
.y144{bottom:855.147658pt;}
.y152{bottom:856.427657pt;}
.y6{bottom:857.387657pt;}
.y70{bottom:857.547657pt;}
.y38{bottom:862.027655pt;}
.y1e9{bottom:863.627655pt;}
.y1f2{bottom:864.427654pt;}
.yff{bottom:866.507653pt;}
.ya4{bottom:866.987653pt;}
.y1bb{bottom:868.107653pt;}
.y5{bottom:871.147652pt;}
.y6f{bottom:871.307651pt;}
.y37{bottom:875.787650pt;}
.y143{bottom:877.387649pt;}
.yfe{bottom:880.107648pt;}
.ya3{bottom:880.587648pt;}
.y1f1{bottom:883.307647pt;}
.y6e{bottom:885.067646pt;}
.y4{bottom:885.387646pt;}
.y36{bottom:889.547644pt;}
.y1ba{bottom:889.707644pt;}
.yfd{bottom:893.867642pt;}
.y142{bottom:895.147642pt;}
.y1e8{bottom:896.267641pt;}
.y1f0{bottom:896.907641pt;}
.y6d{bottom:898.667641pt;}
.ya2{bottom:902.187639pt;}
.y1b9{bottom:903.307639pt;}
.yfc{bottom:907.627637pt;}
.y3{bottom:907.787637pt;}
.y1e7{bottom:909.867636pt;}
.y1ef{bottom:910.667636pt;}
.y6c{bottom:912.427635pt;}
.y141{bottom:915.467634pt;}
.ya1{bottom:915.787634pt;}
.y1b8{bottom:917.067633pt;}
.yfb{bottom:921.387631pt;}
.y1e6{bottom:923.627631pt;}
.y1ee{bottom:924.427630pt;}
.y6b{bottom:926.027630pt;}
.y140{bottom:929.227628pt;}
.ya0{bottom:929.547628pt;}
.y1b7{bottom:930.827628pt;}
.y2{bottom:931.467627pt;}
.yfa{bottom:935.467626pt;}
.y1ed{bottom:938.027625pt;}
.y1e5{bottom:942.507623pt;}
.y13f{bottom:942.987623pt;}
.y9f{bottom:943.307623pt;}
.y1b6{bottom:944.427622pt;}
.y6a{bottom:948.267621pt;}
.y1e4{bottom:956.107618pt;}
.y13e{bottom:956.587617pt;}
.y9e{bottom:956.907617pt;}
.y1{bottom:959.147616pt;}
.y69{bottom:966.667613pt;}
.y13d{bottom:970.347612pt;}
.y9d{bottom:970.667612pt;}
.h2{height:0.000000pt;}
.h8{height:13.280000pt;}
.he{height:15.200000pt;}
.h1b{height:15.360000pt;}
.h18{height:21.614836pt;}
.h14{height:21.625056pt;}
.h1e{height:21.640264pt;}
.hc{height:24.361083pt;}
.hb{height:25.744812pt;}
.h21{height:25.792244pt;}
.h22{height:26.167860pt;}
.h1f{height:26.880000pt;}
.h23{height:28.285260pt;}
.h7{height:28.872948pt;}
.h20{height:28.925260pt;}
.h24{height:28.998505pt;}
.h25{height:30.918504pt;}
.h12{height:31.309455pt;}
.h16{height:31.425749pt;}
.h9{height:31.663737pt;}
.ha{height:32.314493pt;}
.h10{height:32.324766pt;}
.h17{height:32.422031pt;}
.h13{height:32.439362pt;}
.h1a{height:32.444832pt;}
.h4{height:32.462175pt;}
.h1d{height:32.632490pt;}
.h19{height:33.084831pt;}
.h11{height:33.088162pt;}
.hd{height:33.228708pt;}
.h3{height:42.217594pt;}
.h15{height:43.252176pt;}
.h6{height:43.275295pt;}
.hf{height:44.898953pt;}
.h1c{height:45.326442pt;}
.h5{height:46.158551pt;}
.h1{height:69.239012pt;}
.h0{height:1122.666667pt;}
.w2{width:0.800000pt;}
.w3{width:0.960000pt;}
.w1{width:1.120000pt;}
.w4{width:3.840000pt;}
.w7{width:7.520000pt;}
.w5{width:9.280000pt;}
.w6{width:9.600000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:70.559305pt;}
.xb{left:72.319304pt;}
.x49{left:73.599304pt;}
.x2e{left:75.199590pt;}
.x4a{left:76.319303pt;}
.x2f{left:79.039302pt;}
.x57{left:84.159300pt;}
.x1b{left:88.479283pt;}
.x51{left:93.439296pt;}
.x4b{left:96.479250pt;}
.x6{left:97.759313pt;}
.x43{left:116.799752pt;}
.x4f{left:125.439324pt;}
.x4{left:137.439945pt;}
.x7{left:143.359360pt;}
.xc{left:147.199144pt;}
.x3{left:154.879938pt;}
.x29{left:161.279896pt;}
.x1c{left:182.719219pt;}
.x27{left:193.760080pt;}
.x23{left:199.839953pt;}
.x2c{left:203.359919pt;}
.x2a{left:204.319918pt;}
.x2b{left:208.480000pt;}
.x25{left:211.679965pt;}
.x2d{left:214.239914pt;}
.x41{left:216.160000pt;}
.x50{left:218.079913pt;}
.x2{left:220.640129pt;}
.x8{left:224.960000pt;}
.x28{left:227.839909pt;}
.x24{left:233.279940pt;}
.x58{left:239.045238pt;}
.x26{left:243.039997pt;}
.x22{left:256.799897pt;}
.x9{left:306.240000pt;}
.x1d{left:340.639156pt;}
.x1e{left:354.079150pt;}
.x21{left:355.359858pt;}
.x4c{left:361.119856pt;}
.x1f{left:375.519850pt;}
.x20{left:377.599849pt;}
.x42{left:378.880000pt;}
.x4e{left:381.279847pt;}
.xa{left:387.680000pt;}
.x5{left:412.478843pt;}
.x19{left:413.919834pt;}
.x45{left:416.159834pt;}
.x30{left:417.758317pt;}
.x46{left:418.719833pt;}
.x31{left:421.599831pt;}
.xe{left:422.559962pt;}
.x55{left:426.559829pt;}
.x32{left:431.199828pt;}
.x16{left:433.280000pt;}
.x56{left:435.839826pt;}
.x37{left:437.759825pt;}
.x47{left:439.039827pt;}
.x40{left:440.159776pt;}
.x18{left:443.839822pt;}
.x38{left:444.799822pt;}
.x17{left:448.800000pt;}
.x39{left:451.039820pt;}
.x1a{left:453.919818pt;}
.x3a{left:458.079817pt;}
.x44{left:459.200489pt;}
.x14{left:466.559813pt;}
.x15{left:473.759810pt;}
.x4d{left:479.359808pt;}
.x13{left:534.719786pt;}
.x10{left:543.999824pt;}
.x12{left:550.559780pt;}
.x11{left:555.519778pt;}
.x3e{left:557.119777pt;}
.x3d{left:562.239775pt;}
.x3f{left:563.679775pt;}
.xf{left:566.879773pt;}
.x59{left:588.319765pt;}
.x5a{left:600.159760pt;}
.x3b{left:622.079751pt;}
.x3c{left:629.119748pt;}
.x33{left:638.719745pt;}
.x34{left:652.639739pt;}
.x52{left:689.439724pt;}
.x53{left:703.519719pt;}
.x48{left:705.280550pt;}
.x54{left:710.079716pt;}
.x35{left:714.239714pt;}
.x36{left:721.279711pt;}
.xd{left:723.679711pt;}
}




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