
    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_beb1205d29ece2ca6fb798cc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_254fd0d65a414d47a93fd14a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_c18aa0754318725d8722bccf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_d6495bd5d0cb107e1ac9859a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e772c5b2732d0e961e5bfd91.woff')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_329efbac138aa4cb15e5bfc2.woff')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.236160px;}
.lsa{letter-spacing:0.295200px;}
.ls0{letter-spacing:0.334080px;}
.ls6{letter-spacing:0.472320px;}
.ls2{letter-spacing:0.531360px;}
.ls1{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.649440px;}
.lsc{letter-spacing:0.708480px;}
.ls9{letter-spacing:3.365280px;}
.ls8{letter-spacing:3.542400px;}
.ls7{letter-spacing:4.135440px;}
.ls3{letter-spacing:6.612480px;}
.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;}
}
.ws6{word-spacing:-17.121600px;}
.ws5{word-spacing:-17.062560px;}
.ws2{word-spacing:-16.944480px;}
.ws3{word-spacing:-16.885440px;}
.ws1{word-spacing:-16.649280px;}
.ws0{word-spacing:-16.413120px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-5.693760px;}
._13{margin-left:-2.970720px;}
._0{margin-left:-1.002240px;}
._1{width:1.555200px;}
._8{width:2.852640px;}
._5{width:3.876480px;}
._7{width:5.175360px;}
._2{width:6.179040px;}
._3{width:7.812000px;}
._4{width:8.876160px;}
._9{width:10.568160px;}
._11{width:11.630880px;}
._d{width:12.890880px;}
._a{width:13.893120px;}
._16{width:15.053760px;}
._10{width:18.007200px;}
._c{width:19.186560px;}
._b{width:20.309760px;}
._12{width:21.667680px;}
._e{width:23.201280px;}
._f{width:24.461280px;}
._19{width:25.583040px;}
._18{width:28.239840px;}
._1a{width:33.475680px;}
._1b{width:34.516800px;}
._15{width:47.109600px;}
._14{width:52.704000px;}
._6{width:69.552000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs3{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.900000px;}
.y33{bottom:18.300000px;}
.y32{bottom:37.581586px;}
.y36{bottom:39.426110px;}
.y35{bottom:53.421665px;}
.y1{bottom:54.000000px;}
.ya8{bottom:59.158560px;}
.y142{bottom:70.308840px;}
.y31{bottom:70.668120px;}
.y89{bottom:72.056850px;}
.ya7{bottom:77.520000px;}
.y11d{bottom:85.028730px;}
.y141{bottom:87.592800px;}
.y30{bottom:87.952080px;}
.y88{bottom:89.340810px;}
.y191{bottom:98.737170px;}
.y11c{bottom:102.312690px;}
.y140{bottom:104.876760px;}
.y2f{bottom:105.236040px;}
.y87{bottom:106.624770px;}
.y190{bottom:116.021130px;}
.y11b{bottom:119.596650px;}
.ydd{bottom:121.053360px;}
.y13f{bottom:122.160720px;}
.y2e{bottom:122.499690px;}
.y86{bottom:123.908730px;}
.y18f{bottom:133.305090px;}
.y11a{bottom:136.880610px;}
.ydc{bottom:138.337320px;}
.y85{bottom:141.192690px;}
.y13e{bottom:148.433520px;}
.y2d{bottom:148.772490px;}
.y18e{bottom:150.589050px;}
.ydb{bottom:155.621280px;}
.y119{bottom:163.153410px;}
.y13d{bottom:165.717480px;}
.y2c{bottom:166.056450px;}
.y84{bottom:167.465490px;}
.y18d{bottom:167.873010px;}
.yda{bottom:172.905240px;}
.y171{bottom:173.561160px;}
.y118{bottom:180.437370px;}
.y13c{bottom:182.632440px;}
.y2b{bottom:183.340410px;}
.y83{bottom:184.749450px;}
.y18c{bottom:184.787970px;}
.yd9{bottom:190.189200px;}
.y170{bottom:190.845120px;}
.y117{bottom:197.721330px;}
.y13b{bottom:199.916400px;}
.y2a{bottom:200.255370px;}
.y82{bottom:202.033410px;}
.y18b{bottom:202.071930px;}
.yd8{bottom:207.473160px;}
.y16f{bottom:208.129080px;}
.y116{bottom:215.005290px;}
.y29{bottom:217.539330px;}
.y81{bottom:219.317370px;}
.y18a{bottom:219.355890px;}
.yd7{bottom:224.757120px;}
.y16e{bottom:225.413040px;}
.y13a{bottom:226.189200px;}
.y115{bottom:231.920250px;}
.y80{bottom:236.601330px;}
.y189{bottom:236.639850px;}
.yd6{bottom:241.672080px;}
.y16d{bottom:242.697000px;}
.y139{bottom:243.473160px;}
.y28{bottom:243.812130px;}
.y7f{bottom:253.516290px;}
.y114{bottom:258.193050px;}
.yd5{bottom:258.956040px;}
.y138{bottom:260.757120px;}
.y27{bottom:261.096090px;}
.y188{bottom:264.000000px;}
.yf9{bottom:266.796120px;}
.y16c{bottom:268.969800px;}
.y7e{bottom:270.800250px;}
.y113{bottom:275.477010px;}
.yd4{bottom:276.240000px;}
.y137{bottom:278.041080px;}
.y26{bottom:278.380050px;}
.yf8{bottom:284.080080px;}
.y16b{bottom:286.253760px;}
.y61{bottom:292.424520px;}
.y112{bottom:292.760970px;}
.y136{bottom:295.325040px;}
.y25{bottom:295.664010px;}
.y7d{bottom:297.073050px;}
.yf7{bottom:301.364040px;}
.yd3{bottom:302.880000px;}
.y16a{bottom:303.537720px;}
.y60{bottom:309.708480px;}
.y111{bottom:310.044930px;}
.y187{bottom:310.779330px;}
.y135{bottom:312.240000px;}
.y24{bottom:312.947970px;}
.y7c{bottom:314.357010px;}
.yf6{bottom:318.648000px;}
.y169{bottom:320.821680px;}
.y5f{bottom:326.992440px;}
.y110{bottom:327.328890px;}
.y186{bottom:327.694290px;}
.y23{bottom:330.231930px;}
.y7b{bottom:331.640970px;}
.yd2{bottom:334.842090px;}
.yf5{bottom:335.931960px;}
.y168{bottom:338.105640px;}
.y134{bottom:339.239850px;}
.y5e{bottom:344.276400px;}
.y10f{bottom:344.612850px;}
.y185{bottom:344.978250px;}
.y22{bottom:347.515890px;}
.y7a{bottom:348.924930px;}
.yd1{bottom:352.126050px;}
.yf4{bottom:353.215920px;}
.y167{bottom:355.389600px;}
.y5d{bottom:361.560360px;}
.y10e{bottom:361.896810px;}
.y184{bottom:362.262210px;}
.y79{bottom:366.208890px;}
.yd0{bottom:369.410010px;}
.yf3{bottom:370.499880px;}
.y133{bottom:371.193600px;}
.y21{bottom:373.788690px;}
.y10d{bottom:379.180770px;}
.y183{bottom:379.546170px;}
.y166{bottom:381.662400px;}
.y78{bottom:383.492850px;}
.ycf{bottom:386.693970px;}
.yf2{bottom:387.783840px;}
.y5c{bottom:387.833160px;}
.y132{bottom:388.477560px;}
.y20{bottom:391.072650px;}
.y10c{bottom:396.464730px;}
.y182{bottom:396.830130px;}
.y165{bottom:398.577360px;}
.y77{bottom:400.776810px;}
.yf1{bottom:405.067800px;}
.y5b{bottom:405.117120px;}
.y131{bottom:405.761520px;}
.y1f{bottom:407.987610px;}
.yce{bottom:412.966770px;}
.y164{bottom:415.861320px;}
.y76{bottom:418.060770px;}
.yf0{bottom:422.351760px;}
.y5a{bottom:422.401080px;}
.y10b{bottom:422.737530px;}
.y130{bottom:423.045480px;}
.y181{bottom:423.102930px;}
.y1e{bottom:425.271570px;}
.ya6{bottom:428.034360px;}
.ycd{bottom:430.250730px;}
.y163{bottom:433.145280px;}
.y75{bottom:435.344730px;}
.yef{bottom:439.635720px;}
.y59{bottom:439.685040px;}
.y10a{bottom:440.021490px;}
.y12f{bottom:440.329440px;}
.y180{bottom:440.386890px;}
.y1d{bottom:442.555530px;}
.ya5{bottom:445.318320px;}
.ycc{bottom:447.534690px;}
.y162{bottom:450.429240px;}
.y58{bottom:456.550680px;}
.y109{bottom:456.936450px;}
.y12e{bottom:457.613400px;}
.y17f{bottom:457.670850px;}
.y74{bottom:461.617530px;}
.ya4{bottom:462.602280px;}
.ycb{bottom:464.818650px;}
.yee{bottom:465.554280px;}
.y161{bottom:467.713200px;}
.y1c{bottom:468.828330px;}
.y57{bottom:473.834640px;}
.y108{bottom:474.220410px;}
.y17e{bottom:474.954810px;}
.y73{bottom:478.532490px;}
.ya3{bottom:479.886240px;}
.yca{bottom:482.102610px;}
.yed{bottom:482.838240px;}
.y12d{bottom:483.531960px;}
.y160{bottom:484.997160px;}
.y1b{bottom:486.112290px;}
.y107{bottom:491.504370px;}
.y72{bottom:495.816450px;}
.ya2{bottom:497.170200px;}
.yc9{bottom:499.386570px;}
.y56{bottom:500.107440px;}
.yec{bottom:500.122200px;}
.y12c{bottom:500.815920px;}
.y17d{bottom:501.227610px;}
.y1a{bottom:503.396250px;}
.y106{bottom:508.788330px;}
.y15f{bottom:511.269960px;}
.y71{bottom:513.100410px;}
.ya1{bottom:514.454160px;}
.yc8{bottom:516.670530px;}
.y55{bottom:517.391400px;}
.yeb{bottom:517.406160px;}
.y12b{bottom:518.099880px;}
.y17c{bottom:518.511570px;}
.y19{bottom:520.680210px;}
.y15e{bottom:528.553920px;}
.y70{bottom:530.384370px;}
.ya0{bottom:531.738120px;}
.yc7{bottom:533.585490px;}
.y54{bottom:534.675360px;}
.yea{bottom:534.690120px;}
.y105{bottom:535.061130px;}
.y12a{bottom:535.383840px;}
.y17b{bottom:535.795530px;}
.y15d{bottom:545.837880px;}
.y18{bottom:546.953010px;}
.y6f{bottom:547.668330px;}
.y9f{bottom:549.022080px;}
.yc6{bottom:550.869450px;}
.y53{bottom:551.959320px;}
.y104{bottom:552.345090px;}
.y17a{bottom:552.710490px;}
.ye9{bottom:560.962920px;}
.y129{bottom:561.656640px;}
.y15c{bottom:563.121840px;}
.y17{bottom:564.236970px;}
.y9e{bottom:566.306040px;}
.y103{bottom:569.629050px;}
.y179{bottom:569.994450px;}
.y6e{bottom:573.941130px;}
.yc5{bottom:577.142250px;}
.y52{bottom:578.232120px;}
.y128{bottom:578.940600px;}
.y15b{bottom:580.405800px;}
.y16{bottom:581.520930px;}
.y9d{bottom:583.590000px;}
.y102{bottom:586.913010px;}
.ye8{bottom:587.235720px;}
.y178{bottom:587.278410px;}
.y6d{bottom:591.225090px;}
.yc4{bottom:594.426210px;}
.y51{bottom:595.516080px;}
.y127{bottom:596.224560px;}
.y15a{bottom:597.320760px;}
.y15{bottom:598.804890px;}
.y9c{bottom:600.504960px;}
.y101{bottom:604.196970px;}
.ye7{bottom:604.519680px;}
.y177{bottom:604.562370px;}
.y6c{bottom:608.509050px;}
.yc3{bottom:611.710170px;}
.y50{bottom:612.800040px;}
.y126{bottom:613.508520px;}
.y159{bottom:614.604720px;}
.y14{bottom:615.719850px;}
.y100{bottom:621.480930px;}
.ye6{bottom:621.803640px;}
.y9b{bottom:625.346040px;}
.y6b{bottom:625.793010px;}
.yc2{bottom:628.994130px;}
.y125{bottom:630.792480px;}
.y176{bottom:630.835170px;}
.yff{bottom:638.764890px;}
.y4f{bottom:639.072840px;}
.ye5{bottom:639.087600px;}
.y158{bottom:640.877520px;}
.y9a{bottom:642.630000px;}
.y6a{bottom:643.076970px;}
.y13{bottom:643.079850px;}
.yc1{bottom:646.278090px;}
.y124{bottom:648.076440px;}
.y175{bottom:648.119130px;}
.yfe{bottom:655.679850px;}
.y4e{bottom:656.356800px;}
.ye4{bottom:656.371560px;}
.y157{bottom:658.161480px;}
.y99{bottom:659.913960px;}
.y69{bottom:660.360930px;}
.yc0{bottom:663.562050px;}
.y123{bottom:665.360400px;}
.y174{bottom:665.403090px;}
.y4d{bottom:673.640760px;}
.y156{bottom:675.445440px;}
.y98{bottom:677.197920px;}
.y68{bottom:677.275890px;}
.ybf{bottom:680.846010px;}
.yfd{bottom:682.319850px;}
.ye3{bottom:682.644360px;}
.y12{bottom:689.882730px;}
.y155{bottom:692.729400px;}
.y97{bottom:694.481880px;}
.y67{bottom:694.559850px;}
.ybe{bottom:698.129970px;}
.y4c{bottom:699.559320px;}
.y173{bottom:700.679490px;}
.y154{bottom:710.013360px;}
.y96{bottom:711.765840px;}
.ybd{bottom:715.413930px;}
.yfc{bottom:715.440000px;}
.y11{bottom:716.155530px;}
.y4b{bottom:716.843280px;}
.y66{bottom:721.199850px;}
.y172{bottom:723.719850px;}
.y153{bottom:727.297320px;}
.y95{bottom:729.049800px;}
.ybc{bottom:732.328890px;}
.y10{bottom:733.439490px;}
.y4a{bottom:734.127240px;}
.y152{bottom:744.581280px;}
.y94{bottom:746.333760px;}
.yf{bottom:750.723450px;}
.y49{bottom:751.411200px;}
.yfb{bottom:753.239640px;}
.y65{bottom:754.319850px;}
.ybb{bottom:758.601690px;}
.ye2{bottom:760.400040px;}
.y151{bottom:761.865240px;}
.y93{bottom:763.248720px;}
.ye{bottom:768.007410px;}
.y48{bottom:768.695160px;}
.yba{bottom:775.885650px;}
.yfa{bottom:776.280000px;}
.ye1{bottom:777.684000px;}
.y150{bottom:779.149200px;}
.y92{bottom:780.532680px;}
.yd{bottom:784.922370px;}
.yb9{bottom:793.169610px;}
.y64{bottom:793.199850px;}
.y47{bottom:794.967960px;}
.y91{bottom:805.373760px;}
.y14f{bottom:805.422000px;}
.yb8{bottom:810.453570px;}
.yc{bottom:811.195170px;}
.y46{bottom:812.251920px;}
.y14e{bottom:822.336960px;}
.y90{bottom:822.657720px;}
.yb7{bottom:827.737530px;}
.yb{bottom:828.479130px;}
.y45{bottom:829.535880px;}
.y14d{bottom:839.620920px;}
.y63{bottom:839.639490px;}
.y8f{bottom:839.941680px;}
.yb6{bottom:845.021490px;}
.y44{bottom:846.819840px;}
.ya{bottom:854.751930px;}
.y14c{bottom:856.904880px;}
.y8e{bottom:857.225640px;}
.yb5{bottom:862.305450px;}
.y62{bottom:862.679850px;}
.ye0{bottom:864.103800px;}
.y9{bottom:872.035890px;}
.y43{bottom:873.092640px;}
.y14b{bottom:874.188840px;}
.y8d{bottom:874.509600px;}
.yb4{bottom:879.589410px;}
.y8{bottom:889.319850px;}
.y42{bottom:890.376600px;}
.y8c{bottom:891.793560px;}
.y14a{bottom:900.461640px;}
.yb3{bottom:905.862210px;}
.y41{bottom:907.291560px;}
.y8b{bottom:909.077520px;}
.y7{bottom:916.319850px;}
.y149{bottom:917.745600px;}
.yb2{bottom:923.146170px;}
.y40{bottom:924.575520px;}
.y8a{bottom:933.564360px;}
.y148{bottom:935.029560px;}
.yb1{bottom:940.061130px;}
.ydf{bottom:941.859480px;}
.y3f{bottom:950.848320px;}
.y147{bottom:952.313520px;}
.yb0{bottom:957.345090px;}
.yde{bottom:959.143440px;}
.y192{bottom:967.438560px;}
.y3e{bottom:968.132280px;}
.y146{bottom:969.597480px;}
.y6{bottom:972.476250px;}
.yaf{bottom:974.629050px;}
.y122{bottom:976.427400px;}
.y3d{bottom:985.416240px;}
.y145{bottom:986.881440px;}
.y5{bottom:991.559850px;}
.yae{bottom:991.913010px;}
.y121{bottom:993.711360px;}
.y3c{bottom:1002.700200px;}
.yad{bottom:1009.196970px;}
.y120{bottom:1010.995320px;}
.y144{bottom:1012.800000px;}
.y4{bottom:1019.639850px;}
.y3b{bottom:1019.984160px;}
.yac{bottom:1026.480930px;}
.y11f{bottom:1028.279280px;}
.y3a{bottom:1037.268120px;}
.y143{bottom:1039.800000px;}
.yab{bottom:1043.764890px;}
.y11e{bottom:1045.563240px;}
.y39{bottom:1054.552080px;}
.y3{bottom:1058.883450px;}
.yaa{bottom:1060.679850px;}
.y38{bottom:1071.836040px;}
.y2{bottom:1082.999850px;}
.ya9{bottom:1087.679850px;}
.y37{bottom:1089.120000px;}
.ha{height:15.876000px;}
.hb{height:15.971985px;}
.h8{height:30.276000px;}
.hc{height:34.500000px;}
.h9{height:34.945312px;}
.h5{height:43.011562px;}
.he{height:43.040391px;}
.h7{height:43.092803px;}
.hd{height:43.208842px;}
.h6{height:47.196892px;}
.h4{height:47.239453px;}
.h3{height:52.417969px;}
.h2{height:60.804844px;}
.h1{height:1155.000000px;}
.h0{height:1263.000000px;}
.w4{width:26.688000px;}
.w3{width:137.399989px;}
.w2{width:234.120000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:27.000000px;}
.x8{left:79.200150px;}
.x9{left:108.000366px;}
.x2{left:150.360000px;}
.x3{left:290.381280px;}
.x5{left:314.798250px;}
.x12{left:320.093880px;}
.x4{left:325.818300px;}
.x10{left:360.955920px;}
.x6{left:368.274450px;}
.xd{left:376.795620px;}
.x7{left:382.810950px;}
.xb{left:432.902252px;}
.xa{left:644.681717px;}
.x11{left:646.614600px;}
.xc{left:710.120700px;}
.xe{left:718.502550px;}
.xf{left:762.841200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.209920pt;}
.lsa{letter-spacing:0.262400pt;}
.ls0{letter-spacing:0.296960pt;}
.ls6{letter-spacing:0.419840pt;}
.ls2{letter-spacing:0.472320pt;}
.ls1{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.577280pt;}
.lsc{letter-spacing:0.629760pt;}
.ls9{letter-spacing:2.991360pt;}
.ls8{letter-spacing:3.148800pt;}
.ls7{letter-spacing:3.675947pt;}
.ls3{letter-spacing:5.877760pt;}
.ws6{word-spacing:-15.219200pt;}
.ws5{word-spacing:-15.166720pt;}
.ws2{word-spacing:-15.061760pt;}
.ws3{word-spacing:-15.009280pt;}
.ws1{word-spacing:-14.799360pt;}
.ws0{word-spacing:-14.589440pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-5.061120pt;}
._13{margin-left:-2.640640pt;}
._0{margin-left:-0.890880pt;}
._1{width:1.382400pt;}
._8{width:2.535680pt;}
._5{width:3.445760pt;}
._7{width:4.600320pt;}
._2{width:5.492480pt;}
._3{width:6.944000pt;}
._4{width:7.889920pt;}
._9{width:9.393920pt;}
._11{width:10.338560pt;}
._d{width:11.458560pt;}
._a{width:12.349440pt;}
._16{width:13.381120pt;}
._10{width:16.006400pt;}
._c{width:17.054720pt;}
._b{width:18.053120pt;}
._12{width:19.260160pt;}
._e{width:20.623360pt;}
._f{width:21.743360pt;}
._19{width:22.740480pt;}
._18{width:25.102080pt;}
._1a{width:29.756160pt;}
._1b{width:30.681600pt;}
._15{width:41.875200pt;}
._14{width:46.848000pt;}
._6{width:61.824000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.466667pt;}
.y33{bottom:16.266667pt;}
.y32{bottom:33.405855pt;}
.y36{bottom:35.045431pt;}
.y35{bottom:47.485925pt;}
.y1{bottom:48.000000pt;}
.ya8{bottom:52.585387pt;}
.y142{bottom:62.496747pt;}
.y31{bottom:62.816107pt;}
.y89{bottom:64.050533pt;}
.ya7{bottom:68.906667pt;}
.y11d{bottom:75.581093pt;}
.y141{bottom:77.860267pt;}
.y30{bottom:78.179627pt;}
.y88{bottom:79.414053pt;}
.y191{bottom:87.766373pt;}
.y11c{bottom:90.944613pt;}
.y140{bottom:93.223787pt;}
.y2f{bottom:93.543147pt;}
.y87{bottom:94.777573pt;}
.y190{bottom:103.129893pt;}
.y11b{bottom:106.308133pt;}
.ydd{bottom:107.602987pt;}
.y13f{bottom:108.587307pt;}
.y2e{bottom:108.888613pt;}
.y86{bottom:110.141093pt;}
.y18f{bottom:118.493413pt;}
.y11a{bottom:121.671653pt;}
.ydc{bottom:122.966507pt;}
.y85{bottom:125.504613pt;}
.y13e{bottom:131.940907pt;}
.y2d{bottom:132.242213pt;}
.y18e{bottom:133.856933pt;}
.ydb{bottom:138.330027pt;}
.y119{bottom:145.025253pt;}
.y13d{bottom:147.304427pt;}
.y2c{bottom:147.605733pt;}
.y84{bottom:148.858213pt;}
.y18d{bottom:149.220453pt;}
.yda{bottom:153.693547pt;}
.y171{bottom:154.276587pt;}
.y118{bottom:160.388773pt;}
.y13c{bottom:162.339947pt;}
.y2b{bottom:162.969253pt;}
.y83{bottom:164.221733pt;}
.y18c{bottom:164.255973pt;}
.yd9{bottom:169.057067pt;}
.y170{bottom:169.640107pt;}
.y117{bottom:175.752293pt;}
.y13b{bottom:177.703467pt;}
.y2a{bottom:178.004773pt;}
.y82{bottom:179.585253pt;}
.y18b{bottom:179.619493pt;}
.yd8{bottom:184.420587pt;}
.y16f{bottom:185.003627pt;}
.y116{bottom:191.115813pt;}
.y29{bottom:193.368293pt;}
.y81{bottom:194.948773pt;}
.y18a{bottom:194.983013pt;}
.yd7{bottom:199.784107pt;}
.y16e{bottom:200.367147pt;}
.y13a{bottom:201.057067pt;}
.y115{bottom:206.151333pt;}
.y80{bottom:210.312293pt;}
.y189{bottom:210.346533pt;}
.yd6{bottom:214.819627pt;}
.y16d{bottom:215.730667pt;}
.y139{bottom:216.420587pt;}
.y28{bottom:216.721893pt;}
.y7f{bottom:225.347813pt;}
.y114{bottom:229.504933pt;}
.yd5{bottom:230.183147pt;}
.y138{bottom:231.784107pt;}
.y27{bottom:232.085413pt;}
.y188{bottom:234.666667pt;}
.yf9{bottom:237.152107pt;}
.y16c{bottom:239.084267pt;}
.y7e{bottom:240.711333pt;}
.y113{bottom:244.868453pt;}
.yd4{bottom:245.546667pt;}
.y137{bottom:247.147627pt;}
.y26{bottom:247.448933pt;}
.yf8{bottom:252.515627pt;}
.y16b{bottom:254.447787pt;}
.y61{bottom:259.932907pt;}
.y112{bottom:260.231973pt;}
.y136{bottom:262.511147pt;}
.y25{bottom:262.812453pt;}
.y7d{bottom:264.064933pt;}
.yf7{bottom:267.879147pt;}
.yd3{bottom:269.226667pt;}
.y16a{bottom:269.811307pt;}
.y60{bottom:275.296427pt;}
.y111{bottom:275.595493pt;}
.y187{bottom:276.248293pt;}
.y135{bottom:277.546667pt;}
.y24{bottom:278.175973pt;}
.y7c{bottom:279.428453pt;}
.yf6{bottom:283.242667pt;}
.y169{bottom:285.174827pt;}
.y5f{bottom:290.659947pt;}
.y110{bottom:290.959013pt;}
.y186{bottom:291.283813pt;}
.y23{bottom:293.539493pt;}
.y7b{bottom:294.791973pt;}
.yd2{bottom:297.637413pt;}
.yf5{bottom:298.606187pt;}
.y168{bottom:300.538347pt;}
.y134{bottom:301.546533pt;}
.y5e{bottom:306.023467pt;}
.y10f{bottom:306.322533pt;}
.y185{bottom:306.647333pt;}
.y22{bottom:308.903013pt;}
.y7a{bottom:310.155493pt;}
.yd1{bottom:313.000933pt;}
.yf4{bottom:313.969707pt;}
.y167{bottom:315.901867pt;}
.y5d{bottom:321.386987pt;}
.y10e{bottom:321.686053pt;}
.y184{bottom:322.010853pt;}
.y79{bottom:325.519013pt;}
.yd0{bottom:328.364453pt;}
.yf3{bottom:329.333227pt;}
.y133{bottom:329.949867pt;}
.y21{bottom:332.256613pt;}
.y10d{bottom:337.049573pt;}
.y183{bottom:337.374373pt;}
.y166{bottom:339.255467pt;}
.y78{bottom:340.882533pt;}
.ycf{bottom:343.727973pt;}
.yf2{bottom:344.696747pt;}
.y5c{bottom:344.740587pt;}
.y132{bottom:345.313387pt;}
.y20{bottom:347.620133pt;}
.y10c{bottom:352.413093pt;}
.y182{bottom:352.737893pt;}
.y165{bottom:354.290987pt;}
.y77{bottom:356.246053pt;}
.yf1{bottom:360.060267pt;}
.y5b{bottom:360.104107pt;}
.y131{bottom:360.676907pt;}
.y1f{bottom:362.655653pt;}
.yce{bottom:367.081573pt;}
.y164{bottom:369.654507pt;}
.y76{bottom:371.609573pt;}
.yf0{bottom:375.423787pt;}
.y5a{bottom:375.467627pt;}
.y10b{bottom:375.766693pt;}
.y130{bottom:376.040427pt;}
.y181{bottom:376.091493pt;}
.y1e{bottom:378.019173pt;}
.ya6{bottom:380.474987pt;}
.ycd{bottom:382.445093pt;}
.y163{bottom:385.018027pt;}
.y75{bottom:386.973093pt;}
.yef{bottom:390.787307pt;}
.y59{bottom:390.831147pt;}
.y10a{bottom:391.130213pt;}
.y12f{bottom:391.403947pt;}
.y180{bottom:391.455013pt;}
.y1d{bottom:393.382693pt;}
.ya5{bottom:395.838507pt;}
.ycc{bottom:397.808613pt;}
.y162{bottom:400.381547pt;}
.y58{bottom:405.822827pt;}
.y109{bottom:406.165733pt;}
.y12e{bottom:406.767467pt;}
.y17f{bottom:406.818533pt;}
.y74{bottom:410.326693pt;}
.ya4{bottom:411.202027pt;}
.ycb{bottom:413.172133pt;}
.yee{bottom:413.826027pt;}
.y161{bottom:415.745067pt;}
.y1c{bottom:416.736293pt;}
.y57{bottom:421.186347pt;}
.y108{bottom:421.529253pt;}
.y17e{bottom:422.182053pt;}
.y73{bottom:425.362213pt;}
.ya3{bottom:426.565547pt;}
.yca{bottom:428.535653pt;}
.yed{bottom:429.189547pt;}
.y12d{bottom:429.806187pt;}
.y160{bottom:431.108587pt;}
.y1b{bottom:432.099813pt;}
.y107{bottom:436.892773pt;}
.y72{bottom:440.725733pt;}
.ya2{bottom:441.929067pt;}
.yc9{bottom:443.899173pt;}
.y56{bottom:444.539947pt;}
.yec{bottom:444.553067pt;}
.y12c{bottom:445.169707pt;}
.y17d{bottom:445.535653pt;}
.y1a{bottom:447.463333pt;}
.y106{bottom:452.256293pt;}
.y15f{bottom:454.462187pt;}
.y71{bottom:456.089253pt;}
.ya1{bottom:457.292587pt;}
.yc8{bottom:459.262693pt;}
.y55{bottom:459.903467pt;}
.yeb{bottom:459.916587pt;}
.y12b{bottom:460.533227pt;}
.y17c{bottom:460.899173pt;}
.y19{bottom:462.826853pt;}
.y15e{bottom:469.825707pt;}
.y70{bottom:471.452773pt;}
.ya0{bottom:472.656107pt;}
.yc7{bottom:474.298213pt;}
.y54{bottom:475.266987pt;}
.yea{bottom:475.280107pt;}
.y105{bottom:475.609893pt;}
.y12a{bottom:475.896747pt;}
.y17b{bottom:476.262693pt;}
.y15d{bottom:485.189227pt;}
.y18{bottom:486.180453pt;}
.y6f{bottom:486.816293pt;}
.y9f{bottom:488.019627pt;}
.yc6{bottom:489.661733pt;}
.y53{bottom:490.630507pt;}
.y104{bottom:490.973413pt;}
.y17a{bottom:491.298213pt;}
.ye9{bottom:498.633707pt;}
.y129{bottom:499.250347pt;}
.y15c{bottom:500.552747pt;}
.y17{bottom:501.543973pt;}
.y9e{bottom:503.383147pt;}
.y103{bottom:506.336933pt;}
.y179{bottom:506.661733pt;}
.y6e{bottom:510.169893pt;}
.yc5{bottom:513.015333pt;}
.y52{bottom:513.984107pt;}
.y128{bottom:514.613867pt;}
.y15b{bottom:515.916267pt;}
.y16{bottom:516.907493pt;}
.y9d{bottom:518.746667pt;}
.y102{bottom:521.700453pt;}
.ye8{bottom:521.987307pt;}
.y178{bottom:522.025253pt;}
.y6d{bottom:525.533413pt;}
.yc4{bottom:528.378853pt;}
.y51{bottom:529.347627pt;}
.y127{bottom:529.977387pt;}
.y15a{bottom:530.951787pt;}
.y15{bottom:532.271013pt;}
.y9c{bottom:533.782187pt;}
.y101{bottom:537.063973pt;}
.ye7{bottom:537.350827pt;}
.y177{bottom:537.388773pt;}
.y6c{bottom:540.896933pt;}
.yc3{bottom:543.742373pt;}
.y50{bottom:544.711147pt;}
.y126{bottom:545.340907pt;}
.y159{bottom:546.315307pt;}
.y14{bottom:547.306533pt;}
.y100{bottom:552.427493pt;}
.ye6{bottom:552.714347pt;}
.y9b{bottom:555.863147pt;}
.y6b{bottom:556.260453pt;}
.yc2{bottom:559.105893pt;}
.y125{bottom:560.704427pt;}
.y176{bottom:560.742373pt;}
.yff{bottom:567.791013pt;}
.y4f{bottom:568.064747pt;}
.ye5{bottom:568.077867pt;}
.y158{bottom:569.668907pt;}
.y9a{bottom:571.226667pt;}
.y6a{bottom:571.623973pt;}
.y13{bottom:571.626533pt;}
.yc1{bottom:574.469413pt;}
.y124{bottom:576.067947pt;}
.y175{bottom:576.105893pt;}
.yfe{bottom:582.826533pt;}
.y4e{bottom:583.428267pt;}
.ye4{bottom:583.441387pt;}
.y157{bottom:585.032427pt;}
.y99{bottom:586.590187pt;}
.y69{bottom:586.987493pt;}
.yc0{bottom:589.832933pt;}
.y123{bottom:591.431467pt;}
.y174{bottom:591.469413pt;}
.y4d{bottom:598.791787pt;}
.y156{bottom:600.395947pt;}
.y98{bottom:601.953707pt;}
.y68{bottom:602.023013pt;}
.ybf{bottom:605.196453pt;}
.yfd{bottom:606.506533pt;}
.ye3{bottom:606.794987pt;}
.y12{bottom:613.229093pt;}
.y155{bottom:615.759467pt;}
.y97{bottom:617.317227pt;}
.y67{bottom:617.386533pt;}
.ybe{bottom:620.559973pt;}
.y4c{bottom:621.830507pt;}
.y173{bottom:622.826213pt;}
.y154{bottom:631.122987pt;}
.y96{bottom:632.680747pt;}
.ybd{bottom:635.923493pt;}
.yfc{bottom:635.946667pt;}
.y11{bottom:636.582693pt;}
.y4b{bottom:637.194027pt;}
.y66{bottom:641.066533pt;}
.y172{bottom:643.306533pt;}
.y153{bottom:646.486507pt;}
.y95{bottom:648.044267pt;}
.ybc{bottom:650.959013pt;}
.y10{bottom:651.946213pt;}
.y4a{bottom:652.557547pt;}
.y152{bottom:661.850027pt;}
.y94{bottom:663.407787pt;}
.yf{bottom:667.309733pt;}
.y49{bottom:667.921067pt;}
.yfb{bottom:669.546347pt;}
.y65{bottom:670.506533pt;}
.ybb{bottom:674.312613pt;}
.ye2{bottom:675.911147pt;}
.y151{bottom:677.213547pt;}
.y93{bottom:678.443307pt;}
.ye{bottom:682.673253pt;}
.y48{bottom:683.284587pt;}
.yba{bottom:689.676133pt;}
.yfa{bottom:690.026667pt;}
.ye1{bottom:691.274667pt;}
.y150{bottom:692.577067pt;}
.y92{bottom:693.806827pt;}
.yd{bottom:697.708773pt;}
.yb9{bottom:705.039653pt;}
.y64{bottom:705.066533pt;}
.y47{bottom:706.638187pt;}
.y91{bottom:715.887787pt;}
.y14f{bottom:715.930667pt;}
.yb8{bottom:720.403173pt;}
.yc{bottom:721.062373pt;}
.y46{bottom:722.001707pt;}
.y14e{bottom:730.966187pt;}
.y90{bottom:731.251307pt;}
.yb7{bottom:735.766693pt;}
.yb{bottom:736.425893pt;}
.y45{bottom:737.365227pt;}
.y14d{bottom:746.329707pt;}
.y63{bottom:746.346213pt;}
.y8f{bottom:746.614827pt;}
.yb6{bottom:751.130213pt;}
.y44{bottom:752.728747pt;}
.ya{bottom:759.779493pt;}
.y14c{bottom:761.693227pt;}
.y8e{bottom:761.978347pt;}
.yb5{bottom:766.493733pt;}
.y62{bottom:766.826533pt;}
.ye0{bottom:768.092267pt;}
.y9{bottom:775.143013pt;}
.y43{bottom:776.082347pt;}
.y14b{bottom:777.056747pt;}
.y8d{bottom:777.341867pt;}
.yb4{bottom:781.857253pt;}
.y8{bottom:790.506533pt;}
.y42{bottom:791.445867pt;}
.y8c{bottom:792.705387pt;}
.y14a{bottom:800.410347pt;}
.yb3{bottom:805.210853pt;}
.y41{bottom:806.481387pt;}
.y8b{bottom:808.068907pt;}
.y7{bottom:814.506533pt;}
.y149{bottom:815.773867pt;}
.yb2{bottom:820.574373pt;}
.y40{bottom:821.844907pt;}
.y8a{bottom:829.834987pt;}
.y148{bottom:831.137387pt;}
.yb1{bottom:835.609893pt;}
.ydf{bottom:837.208427pt;}
.y3f{bottom:845.198507pt;}
.y147{bottom:846.500907pt;}
.yb0{bottom:850.973413pt;}
.yde{bottom:852.571947pt;}
.y192{bottom:859.945387pt;}
.y3e{bottom:860.562027pt;}
.y146{bottom:861.864427pt;}
.y6{bottom:864.423333pt;}
.yaf{bottom:866.336933pt;}
.y122{bottom:867.935467pt;}
.y3d{bottom:875.925547pt;}
.y145{bottom:877.227947pt;}
.y5{bottom:881.386533pt;}
.yae{bottom:881.700453pt;}
.y121{bottom:883.298987pt;}
.y3c{bottom:891.289067pt;}
.yad{bottom:897.063973pt;}
.y120{bottom:898.662507pt;}
.y144{bottom:900.266667pt;}
.y4{bottom:906.346533pt;}
.y3b{bottom:906.652587pt;}
.yac{bottom:912.427493pt;}
.y11f{bottom:914.026027pt;}
.y3a{bottom:922.016107pt;}
.y143{bottom:924.266667pt;}
.yab{bottom:927.791013pt;}
.y11e{bottom:929.389547pt;}
.y39{bottom:937.379627pt;}
.y3{bottom:941.229733pt;}
.yaa{bottom:942.826533pt;}
.y38{bottom:952.743147pt;}
.y2{bottom:962.666533pt;}
.ya9{bottom:966.826533pt;}
.y37{bottom:968.106667pt;}
.ha{height:14.112000pt;}
.hb{height:14.197320pt;}
.h8{height:26.912000pt;}
.hc{height:30.666667pt;}
.h9{height:31.062500pt;}
.h5{height:38.232500pt;}
.he{height:38.258125pt;}
.h7{height:38.304713pt;}
.hd{height:38.407860pt;}
.h6{height:41.952793pt;}
.h4{height:41.990625pt;}
.h3{height:46.593750pt;}
.h2{height:54.048750pt;}
.h1{height:1026.666667pt;}
.h0{height:1122.666667pt;}
.w4{width:23.722667pt;}
.w3{width:122.133324pt;}
.w2{width:208.106667pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:24.000000pt;}
.x8{left:70.400133pt;}
.x9{left:96.000325pt;}
.x2{left:133.653333pt;}
.x3{left:258.116693pt;}
.x5{left:279.820667pt;}
.x12{left:284.527893pt;}
.x4{left:289.616267pt;}
.x10{left:320.849707pt;}
.x6{left:327.355067pt;}
.xd{left:334.929440pt;}
.x7{left:340.276400pt;}
.xb{left:384.802002pt;}
.xa{left:573.050415pt;}
.x11{left:574.768533pt;}
.xc{left:631.218400pt;}
.xe{left:638.668933pt;}
.xf{left:678.081067pt;}
}

