
    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_b4bc348287d562bd7b999c0c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_06e217f1af84dfcf053482a5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_fe9c060e0cfc968a042938bb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m8{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-1.566000px;}
.ls1a{letter-spacing:-1.211040px;}
.ls33{letter-spacing:-0.662400px;}
.ls23{letter-spacing:-0.450000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.334080px;}
.ls34{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.324000px;}
.ls1f{letter-spacing:-0.264960px;}
.ls18{letter-spacing:-0.250560px;}
.ls1b{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.198720px;}
.ls35{letter-spacing:-0.162000px;}
.ls1e{letter-spacing:-0.066240px;}
.ls17{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.066240px;}
.ls36{letter-spacing:0.132480px;}
.ls27{letter-spacing:0.198720px;}
.ls13{letter-spacing:0.264960px;}
.ls25{letter-spacing:0.331200px;}
.ls16{letter-spacing:0.397440px;}
.ls22{letter-spacing:0.463680px;}
.ls15{letter-spacing:0.662400px;}
.ls26{letter-spacing:0.861120px;}
.ls21{letter-spacing:0.927360px;}
.ls37{letter-spacing:1.059840px;}
.ls5{letter-spacing:32.734200px;}
.ls3a{letter-spacing:108.037440px;}
.ls4{letter-spacing:112.307160px;}
.ls10{letter-spacing:119.165760px;}
.ls38{letter-spacing:123.603840px;}
.ls9{letter-spacing:139.633920px;}
.ls2a{letter-spacing:178.516800px;}
.ls2d{letter-spacing:192.890880px;}
.lse{letter-spacing:196.600320px;}
.ls2f{letter-spacing:201.767040px;}
.ls0{letter-spacing:232.740000px;}
.ls2c{letter-spacing:287.945280px;}
.lsb{letter-spacing:291.257280px;}
.ls28{letter-spacing:404.461440px;}
.ls32{letter-spacing:411.747840px;}
.ls2{letter-spacing:421.683840px;}
.ls7{letter-spacing:429.897600px;}
.ls1{letter-spacing:444.205440px;}
.ls11{letter-spacing:462.885120px;}
.ls3{letter-spacing:479.511360px;}
.ls8{letter-spacing:604.771200px;}
.ls3b{letter-spacing:847.408320px;}
.ls2b{letter-spacing:928.022400px;}
.lsc{letter-spacing:986.313600px;}
.ls39{letter-spacing:990.023040px;}
.ls29{letter-spacing:1026.720000px;}
.lsa{letter-spacing:1074.412800px;}
.ls6{letter-spacing:1187.484480px;}
.lsd{letter-spacing:1274.258880px;}
.ls30{letter-spacing:1339.637760px;}
.ls2e{letter-spacing:1464.301440px;}
.ls12{letter-spacing:1476.754560px;}
.ls31{letter-spacing:1534.979520px;}
.lsf{letter-spacing:1882.673280px;}
.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;}
}
.ws2{word-spacing:-17.421120px;}
.ws0{word-spacing:-16.957440px;}
.ws27{word-spacing:-16.891200px;}
.ws29{word-spacing:-16.692480px;}
.ws28{word-spacing:-16.626240px;}
.ws1{word-spacing:-16.560000px;}
.ws38{word-spacing:-16.361280px;}
.ws39{word-spacing:-13.284000px;}
.ws31{word-spacing:-3.643200px;}
.ws1d{word-spacing:-2.782080px;}
.ws19{word-spacing:-2.252160px;}
.ws11{word-spacing:-2.119680px;}
.ws18{word-spacing:-1.987200px;}
.wsd{word-spacing:-1.523520px;}
.wse{word-spacing:-1.391040px;}
.ws21{word-spacing:-1.258560px;}
.ws35{word-spacing:-1.192320px;}
.ws2e{word-spacing:-1.059840px;}
.ws10{word-spacing:-0.794880px;}
.ws23{word-spacing:-0.662400px;}
.ws7{word-spacing:-0.596160px;}
.wsf{word-spacing:-0.463680px;}
.ws1f{word-spacing:-0.360000px;}
.ws12{word-spacing:-0.264960px;}
.ws15{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:0.066240px;}
.ws13{word-spacing:0.198720px;}
.ws24{word-spacing:0.264960px;}
.ws5{word-spacing:0.334080px;}
.ws2d{word-spacing:0.662400px;}
.wsb{word-spacing:0.794880px;}
.ws20{word-spacing:0.927360px;}
.ws2f{word-spacing:0.993600px;}
.ws6{word-spacing:1.188000px;}
.ws4{word-spacing:1.296000px;}
.ws33{word-spacing:1.324800px;}
.ws16{word-spacing:1.391040px;}
.ws22{word-spacing:1.523520px;}
.ws17{word-spacing:1.656000px;}
.ws37{word-spacing:1.722240px;}
.wsa{word-spacing:2.119680px;}
.wsc{word-spacing:2.252160px;}
.ws30{word-spacing:2.384640px;}
.ws25{word-spacing:2.914560px;}
.ws3b{word-spacing:2.980800px;}
.ws1c{word-spacing:3.510720px;}
.ws2a{word-spacing:3.775680px;}
.ws1b{word-spacing:3.841920px;}
.ws34{word-spacing:4.239360px;}
.ws9{word-spacing:4.371840px;}
.ws8{word-spacing:4.504320px;}
.ws3a{word-spacing:4.570560px;}
.ws26{word-spacing:4.703040px;}
.ws3e{word-spacing:4.835520px;}
.ws3d{word-spacing:4.968000px;}
.ws3c{word-spacing:5.232960px;}
.ws1a{word-spacing:5.696640px;}
.ws14{word-spacing:5.829120px;}
.ws2b{word-spacing:6.425280px;}
.ws2c{word-spacing:6.557760px;}
.ws32{word-spacing:8.809920px;}
.ws36{word-spacing:10.002240px;}
._31{margin-left:-6.973560px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._32{width:8.811360px;}
._1f{width:27.363744px;}
._4f{width:30.953952px;}
._39{width:33.120000px;}
._68{width:41.684832px;}
._61{width:48.904992px;}
._11{width:51.117408px;}
._65{width:60.450624px;}
._37{width:71.989632px;}
._66{width:73.387296px;}
._2e{width:83.508768px;}
._5b{width:92.841984px;}
._22{width:94.292640px;}
._58{width:97.160832px;}
._28{width:105.043392px;}
._5c{width:112.290048px;}
._59{width:122.345280px;}
._35{width:126.001728px;}
._26{width:130.294080px;}
._51{width:133.917408px;}
._63{width:145.363680px;}
._47{width:147.648960px;}
._9{width:150.444288px;}
._67{width:151.861824px;}
._23{width:157.618080px;}
._7{width:164.149344px;}
._46{width:166.726080px;}
._27{width:168.441696px;}
._16{width:176.397120px;}
._24{width:182.133504px;}
._c{width:185.736960px;}
._33{width:188.651520px;}
._5e{width:192.201984px;}
._3c{width:197.991360px;}
._19{width:202.250592px;}
._49{width:206.006400px;}
._3a{width:208.059840px;}
._57{width:210.206016px;}
._1c{width:215.975520px;}
._a{width:225.355104px;}
._2d{width:227.494656px;}
._62{width:231.773760px;}
._34{width:244.074528px;}
._5a{width:249.784416px;}
._5d{width:257.700096px;}
._17{width:264.244608px;}
._4a{width:271.451520px;}
._25{width:281.447136px;}
._13{width:297.404352px;}
._3b{width:309.605760px;}
._36{width:321.065280px;}
._29{width:400.235328px;}
._3d{width:411.151680px;}
._60{width:416.119680px;}
._1a{width:450.743328px;}
._21{width:453.611520px;}
._64{width:461.401344px;}
._18{width:463.017600px;}
._d{width:464.408640px;}
._2f{width:471.489696px;}
._20{width:474.477120px;}
._8{width:494.739936px;}
._15{width:503.556480px;}
._1b{width:527.005440px;}
._2c{width:535.616640px;}
._3e{width:545.022720px;}
._2b{width:555.091200px;}
._45{width:581.189760px;}
._40{width:627.822720px;}
._e{width:637.228800px;}
._1d{width:657.432000px;}
._38{width:661.817088px;}
._1e{width:681.013440px;}
._f{width:715.656960px;}
._52{width:740.185632px;}
._4c{width:757.454400px;}
._55{width:785.540160px;}
._2a{width:877.680000px;}
._50{width:893.577600px;}
._53{width:900.599040px;}
._43{width:904.374720px;}
._b{width:906.428160px;}
._3{width:913.750560px;}
._4e{width:939.614400px;}
._4d{width:957.697920px;}
._4{width:995.182560px;}
._3f{width:1002.873600px;}
._5f{width:1019.301120px;}
._14{width:1030.972608px;}
._10{width:1116.740160px;}
._4b{width:1122.436800px;}
._56{width:1124.424000px;}
._0{width:1141.551360px;}
._1{width:1193.876640px;}
._44{width:1208.747520px;}
._30{width:1251.207360px;}
._54{width:1276.047360px;}
._41{width:1316.718720px;}
._42{width:1440.918720px;}
._69{width:1447.012800px;}
._12{width:1450.675872px;}
._48{width:1487.419200px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs4{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yae{bottom:65.693520px;}
.y46{bottom:65.698560px;}
.y5{bottom:65.700000px;}
.y96{bottom:65.704320px;}
.y45{bottom:98.106480px;}
.y29{bottom:98.109360px;}
.y69{bottom:99.541440px;}
.y95{bottom:99.552960px;}
.y44{bottom:118.260000px;}
.y28{bottom:118.262880px;}
.y43{bottom:118.264320px;}
.y68{bottom:119.694960px;}
.y94{bottom:119.706480px;}
.y42{bottom:138.600000px;}
.y27{bottom:138.615120px;}
.y41{bottom:138.617280px;}
.y67{bottom:139.848480px;}
.y93{bottom:139.860000px;}
.y66{bottom:159.836400px;}
.y92{bottom:159.846480px;}
.y26{bottom:171.552960px;}
.y40{bottom:171.555120px;}
.y91{bottom:180.000000px;}
.y65{bottom:180.023040px;}
.y90{bottom:180.028080px;}
.y25{bottom:191.706480px;}
.y3f{bottom:191.708640px;}
.y64{bottom:200.176560px;}
.y8f{bottom:200.181600px;}
.y24{bottom:212.042160px;}
.y3e{bottom:212.044320px;}
.y63{bottom:220.164480px;}
.y8e{bottom:220.169520px;}
.y3d{bottom:232.380000px;}
.y3c{bottom:232.408080px;}
.y23{bottom:232.410960px;}
.y8d{bottom:240.323040px;}
.y62{bottom:260.471520px;}
.y8c{bottom:260.476560px;}
.y3b{bottom:265.345920px;}
.y22{bottom:265.348800px;}
.y3a{bottom:285.499440px;}
.y21{bottom:285.502320px;}
.y61{bottom:293.045040px;}
.y8b{bottom:293.050080px;}
.y39{bottom:305.835120px;}
.y20{bottom:305.838000px;}
.y60{bottom:313.198560px;}
.y8a{bottom:313.203600px;}
.y38{bottom:325.988640px;}
.y1f{bottom:325.991520px;}
.y5f{bottom:333.352080px;}
.y89{bottom:333.357120px;}
.y37{bottom:346.324320px;}
.y1e{bottom:346.327200px;}
.y5e{bottom:353.340000px;}
.y88{bottom:353.345040px;}
.y36{bottom:366.660000px;}
.y1d{bottom:366.679440px;}
.y5d{bottom:373.493520px;}
.y87{bottom:373.498560px;}
.y5c{bottom:393.647040px;}
.y86{bottom:393.652080px;}
.y1c{bottom:399.617280px;}
.y85{bottom:413.640000px;}
.y5b{bottom:413.651520px;}
.y84{bottom:413.652960px;}
.y1b{bottom:419.770800px;}
.y5a{bottom:433.805040px;}
.y83{bottom:433.806480px;}
.y1a{bottom:440.106480px;}
.y81{bottom:453.952080px;}
.y59{bottom:453.958560px;}
.y82{bottom:453.960000px;}
.y19{bottom:460.260000px;}
.y18{bottom:460.264320px;}
.y80{bottom:473.940000px;}
.y7f{bottom:473.946450px;}
.y58{bottom:473.946480px;}
.y17{bottom:480.600000px;}
.y35{bottom:480.612960px;}
.y57{bottom:494.100000px;}
.y7e{bottom:494.123040px;}
.y56{bottom:494.140320px;}
.y16{bottom:513.550800px;}
.y7d{bottom:514.276560px;}
.ya3{bottom:525.968640px;}
.y15{bottom:533.704320px;}
.y7c{bottom:534.264480px;}
.y55{bottom:534.281760px;}
.ya2{bottom:544.515840px;}
.y14{bottom:554.040000px;}
.y34{bottom:554.046480px;}
.y7b{bottom:554.418000px;}
.y54{bottom:554.435280px;}
.y13{bottom:574.200000px;}
.y33{bottom:574.204320px;}
.y12{bottom:574.215840px;}
.y7a{bottom:574.571520px;}
.ya1{bottom:578.347920px;}
.y32{bottom:594.540000px;}
.y31{bottom:594.546480px;}
.y11{bottom:594.551520px;}
.y79{bottom:594.559440px;}
.y53{bottom:594.576720px;}
.ya0{bottom:612.180000px;}
.y30{bottom:614.700000px;}
.y78{bottom:614.712960px;}
.y10{bottom:614.721600px;}
.y2f{bottom:614.725920px;}
.y52{bottom:614.730240px;}
.yf{bottom:635.057280px;}
.y2e{bottom:635.061600px;}
.yad{bottom:645.868080px;}
.y9f{bottom:645.879600px;}
.y77{bottom:647.468640px;}
.y51{bottom:647.485920px;}
.ye{bottom:655.210800px;}
.y2d{bottom:655.215120px;}
.yac{bottom:666.203760px;}
.y9e{bottom:666.215280px;}
.y76{bottom:667.456560px;}
.y50{bottom:667.473840px;}
.yd{bottom:675.546480px;}
.y2c{bottom:675.550800px;}
.yab{bottom:686.539440px;}
.y9d{bottom:686.550960px;}
.y75{bottom:687.610080px;}
.y4f{bottom:687.627360px;}
.y2b{bottom:695.704320px;}
.yc{bottom:695.710800px;}
.y74{bottom:707.763600px;}
.y4e{bottom:707.780880px;}
.y2a{bottom:716.040000px;}
.yb{bottom:716.046480px;}
.yaa{bottom:719.477280px;}
.y9c{bottom:719.488800px;}
.y73{bottom:727.751520px;}
.y4d{bottom:727.768800px;}
.ya{bottom:736.200000px;}
.ya9{bottom:739.630800px;}
.y9b{bottom:739.642320px;}
.y72{bottom:747.905040px;}
.y4c{bottom:747.922320px;}
.ya8{bottom:759.966480px;}
.y9a{bottom:759.978000px;}
.y71{bottom:768.058560px;}
.y4b{bottom:768.075840px;}
.y9{bottom:774.000000px;}
.ya7{bottom:780.120000px;}
.ya6{bottom:780.141600px;}
.y99{bottom:780.148080px;}
.y70{bottom:788.046480px;}
.y4a{bottom:788.063760px;}
.ya5{bottom:800.477280px;}
.y98{bottom:800.483760px;}
.y8{bottom:803.519850px;}
.y6f{bottom:808.200000px;}
.y6e{bottom:808.204320px;}
.y49{bottom:808.217280px;}
.ya4{bottom:820.630800px;}
.y97{bottom:820.637280px;}
.y7{bottom:832.680000px;}
.y6d{bottom:840.960000px;}
.y6c{bottom:840.966480px;}
.y48{bottom:840.972960px;}
.y6{bottom:858.060000px;}
.y6a{bottom:861.119280px;}
.y6b{bottom:861.120000px;}
.y47{bottom:861.126480px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.ha{height:30.445312px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.h6{height:55.469531px;}
.h8{height:55.501875px;}
.h9{height:56.019375px;}
.hb{height:65.010937px;}
.h7{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x4b{left:99.728700px;}
.x3e{left:104.403630px;}
.x22{left:105.463440px;}
.x55{left:108.540000px;}
.x37{left:109.980000px;}
.x54{left:111.800940px;}
.x23{left:117.717840px;}
.x21{left:120.052800px;}
.xb{left:124.382700px;}
.x47{left:125.467950px;}
.x24{left:127.438560px;}
.x4a{left:129.967260px;}
.x44{left:138.931230px;}
.x66{left:142.744350px;}
.xc{left:144.360000px;}
.x1d{left:145.439280px;}
.x18{left:148.860000px;}
.x4c{left:150.667260px;}
.x32{left:153.717600px;}
.x1{left:154.977000px;}
.x13{left:157.859310px;}
.x3f{left:159.117870px;}
.x38{left:163.264350px;}
.x14{left:165.062910px;}
.x2e{left:169.020000px;}
.x6{left:170.280000px;}
.x6a{left:173.541630px;}
.x61{left:174.960000px;}
.x4f{left:178.753020px;}
.x1f{left:180.894240px;}
.x17{left:189.002910px;}
.x68{left:191.542350px;}
.x48{left:205.014150px;}
.x50{left:207.550860px;}
.x52{left:220.666380px;}
.xd{left:223.726650px;}
.x1c{left:227.874960px;}
.x20{left:232.362720px;}
.x6b{left:233.460000px;}
.x41{left:236.469630px;}
.x53{left:239.909100px;}
.x31{left:244.800000px;}
.x16{left:246.946350px;}
.xa{left:257.577954px;}
.x27{left:260.216640px;}
.x19{left:261.865470px;}
.x3b{left:264.240000px;}
.x67{left:267.089070px;}
.x45{left:269.109390px;}
.x26{left:273.365280px;}
.x3c{left:285.300000px;}
.xf{left:289.983210px;}
.x65{left:298.437900px;}
.x6d{left:306.720000px;}
.x62{left:308.875650px;}
.x15{left:310.807470px;}
.x34{left:313.200000px;}
.x10{left:314.616270px;}
.x28{left:315.692640px;}
.x63{left:320.940000px;}
.x2f{left:332.457900px;}
.x4d{left:334.085820px;}
.x1a{left:338.582850px;}
.x25{left:348.282720px;}
.x3d{left:349.734960px;}
.x7{left:351.180000px;}
.x6c{left:353.516400px;}
.x6e{left:355.500000px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.x56{left:377.100000px;}
.x64{left:378.895650px;}
.x1b{left:382.860000px;}
.x35{left:386.453550px;}
.xe{left:388.614570px;}
.x2b{left:392.213550px;}
.x42{left:395.826510px;}
.x46{left:402.135870px;}
.x12{left:403.195710px;}
.x51{left:411.702540px;}
.x36{left:423.180000px;}
.x57{left:427.500000px;}
.x1e{left:433.450800px;}
.x58{left:438.660000px;}
.x2c{left:443.160000px;}
.x43{left:447.477150px;}
.x69{left:450.342030px;}
.x40{left:473.029230px;}
.x5c{left:477.720000px;}
.x39{left:483.660000px;}
.x59{left:487.437900px;}
.x5a{left:499.860000px;}
.x3{left:503.287500px;}
.x5f{left:510.300000px;}
.x29{left:514.800000px;}
.x3a{left:517.677900px;}
.x5d{left:531.184350px;}
.x5e{left:546.120000px;}
.x5b{left:556.017900px;}
.x2a{left:563.580000px;}
.x60{left:566.104350px;}
.x9{left:568.261650px;}
.x33{left:571.320000px;}
.x11{left:572.621070px;}
.x30{left:586.620000px;}
.x49{left:592.554300px;}
.x2d{left:598.497900px;}
.x4e{left:604.510620px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-1.392000pt;}
.ls1a{letter-spacing:-1.076480pt;}
.ls33{letter-spacing:-0.588800pt;}
.ls23{letter-spacing:-0.400000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.296960pt;}
.ls34{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls1f{letter-spacing:-0.235520pt;}
.ls18{letter-spacing:-0.222720pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.176640pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls1e{letter-spacing:-0.058880pt;}
.ls17{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.058880pt;}
.ls36{letter-spacing:0.117760pt;}
.ls27{letter-spacing:0.176640pt;}
.ls13{letter-spacing:0.235520pt;}
.ls25{letter-spacing:0.294400pt;}
.ls16{letter-spacing:0.353280pt;}
.ls22{letter-spacing:0.412160pt;}
.ls15{letter-spacing:0.588800pt;}
.ls26{letter-spacing:0.765440pt;}
.ls21{letter-spacing:0.824320pt;}
.ls37{letter-spacing:0.942080pt;}
.ls5{letter-spacing:29.097067pt;}
.ls3a{letter-spacing:96.033280pt;}
.ls4{letter-spacing:99.828587pt;}
.ls10{letter-spacing:105.925120pt;}
.ls38{letter-spacing:109.870080pt;}
.ls9{letter-spacing:124.119040pt;}
.ls2a{letter-spacing:158.681600pt;}
.ls2d{letter-spacing:171.458560pt;}
.lse{letter-spacing:174.755840pt;}
.ls2f{letter-spacing:179.348480pt;}
.ls0{letter-spacing:206.880000pt;}
.ls2c{letter-spacing:255.951360pt;}
.lsb{letter-spacing:258.895360pt;}
.ls28{letter-spacing:359.521280pt;}
.ls32{letter-spacing:365.998080pt;}
.ls2{letter-spacing:374.830080pt;}
.ls7{letter-spacing:382.131200pt;}
.ls1{letter-spacing:394.849280pt;}
.ls11{letter-spacing:411.453440pt;}
.ls3{letter-spacing:426.232320pt;}
.ls8{letter-spacing:537.574400pt;}
.ls3b{letter-spacing:753.251840pt;}
.ls2b{letter-spacing:824.908800pt;}
.lsc{letter-spacing:876.723200pt;}
.ls39{letter-spacing:880.020480pt;}
.ls29{letter-spacing:912.640000pt;}
.lsa{letter-spacing:955.033600pt;}
.ls6{letter-spacing:1055.541760pt;}
.lsd{letter-spacing:1132.674560pt;}
.ls30{letter-spacing:1190.789120pt;}
.ls2e{letter-spacing:1301.601280pt;}
.ls12{letter-spacing:1312.670720pt;}
.ls31{letter-spacing:1364.426240pt;}
.lsf{letter-spacing:1673.487360pt;}
.ws2{word-spacing:-15.485440pt;}
.ws0{word-spacing:-15.073280pt;}
.ws27{word-spacing:-15.014400pt;}
.ws29{word-spacing:-14.837760pt;}
.ws28{word-spacing:-14.778880pt;}
.ws1{word-spacing:-14.720000pt;}
.ws38{word-spacing:-14.543360pt;}
.ws39{word-spacing:-11.808000pt;}
.ws31{word-spacing:-3.238400pt;}
.ws1d{word-spacing:-2.472960pt;}
.ws19{word-spacing:-2.001920pt;}
.ws11{word-spacing:-1.884160pt;}
.ws18{word-spacing:-1.766400pt;}
.wsd{word-spacing:-1.354240pt;}
.wse{word-spacing:-1.236480pt;}
.ws21{word-spacing:-1.118720pt;}
.ws35{word-spacing:-1.059840pt;}
.ws2e{word-spacing:-0.942080pt;}
.ws10{word-spacing:-0.706560pt;}
.ws23{word-spacing:-0.588800pt;}
.ws7{word-spacing:-0.529920pt;}
.wsf{word-spacing:-0.412160pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws12{word-spacing:-0.235520pt;}
.ws15{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.058880pt;}
.ws13{word-spacing:0.176640pt;}
.ws24{word-spacing:0.235520pt;}
.ws5{word-spacing:0.296960pt;}
.ws2d{word-spacing:0.588800pt;}
.wsb{word-spacing:0.706560pt;}
.ws20{word-spacing:0.824320pt;}
.ws2f{word-spacing:0.883200pt;}
.ws6{word-spacing:1.056000pt;}
.ws4{word-spacing:1.152000pt;}
.ws33{word-spacing:1.177600pt;}
.ws16{word-spacing:1.236480pt;}
.ws22{word-spacing:1.354240pt;}
.ws17{word-spacing:1.472000pt;}
.ws37{word-spacing:1.530880pt;}
.wsa{word-spacing:1.884160pt;}
.wsc{word-spacing:2.001920pt;}
.ws30{word-spacing:2.119680pt;}
.ws25{word-spacing:2.590720pt;}
.ws3b{word-spacing:2.649600pt;}
.ws1c{word-spacing:3.120640pt;}
.ws2a{word-spacing:3.356160pt;}
.ws1b{word-spacing:3.415040pt;}
.ws34{word-spacing:3.768320pt;}
.ws9{word-spacing:3.886080pt;}
.ws8{word-spacing:4.003840pt;}
.ws3a{word-spacing:4.062720pt;}
.ws26{word-spacing:4.180480pt;}
.ws3e{word-spacing:4.298240pt;}
.ws3d{word-spacing:4.416000pt;}
.ws3c{word-spacing:4.651520pt;}
.ws1a{word-spacing:5.063680pt;}
.ws14{word-spacing:5.181440pt;}
.ws2b{word-spacing:5.711360pt;}
.ws2c{word-spacing:5.829120pt;}
.ws32{word-spacing:7.831040pt;}
.ws36{word-spacing:8.890880pt;}
._31{margin-left:-6.198720pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._32{width:7.832320pt;}
._1f{width:24.323328pt;}
._4f{width:27.514624pt;}
._39{width:29.440000pt;}
._68{width:37.053184pt;}
._61{width:43.471104pt;}
._11{width:45.437696pt;}
._65{width:53.733888pt;}
._37{width:63.990784pt;}
._66{width:65.233152pt;}
._2e{width:74.230016pt;}
._5b{width:82.526208pt;}
._22{width:83.815680pt;}
._58{width:86.365184pt;}
._28{width:93.371904pt;}
._5c{width:99.813376pt;}
._59{width:108.751360pt;}
._35{width:112.001536pt;}
._26{width:115.816960pt;}
._51{width:119.037696pt;}
._63{width:129.212160pt;}
._47{width:131.243520pt;}
._9{width:133.728256pt;}
._67{width:134.988288pt;}
._23{width:140.104960pt;}
._7{width:145.910528pt;}
._46{width:148.200960pt;}
._27{width:149.725952pt;}
._16{width:156.797440pt;}
._24{width:161.896448pt;}
._c{width:165.099520pt;}
._33{width:167.690240pt;}
._5e{width:170.846208pt;}
._3c{width:175.992320pt;}
._19{width:179.778304pt;}
._49{width:183.116800pt;}
._3a{width:184.942080pt;}
._57{width:186.849792pt;}
._1c{width:191.978240pt;}
._a{width:200.315648pt;}
._2d{width:202.217472pt;}
._62{width:206.021120pt;}
._34{width:216.955136pt;}
._5a{width:222.030592pt;}
._5d{width:229.066752pt;}
._17{width:234.884096pt;}
._4a{width:241.290240pt;}
._25{width:250.175232pt;}
._13{width:264.359424pt;}
._3b{width:275.205120pt;}
._36{width:285.391360pt;}
._29{width:355.764736pt;}
._3d{width:365.468160pt;}
._60{width:369.884160pt;}
._1a{width:400.660736pt;}
._21{width:403.210240pt;}
._64{width:410.134528pt;}
._18{width:411.571200pt;}
._d{width:412.807680pt;}
._2f{width:419.101952pt;}
._20{width:421.757440pt;}
._8{width:439.768832pt;}
._15{width:447.605760pt;}
._1b{width:468.449280pt;}
._2c{width:476.103680pt;}
._3e{width:484.464640pt;}
._2b{width:493.414400pt;}
._45{width:516.613120pt;}
._40{width:558.064640pt;}
._e{width:566.425600pt;}
._1d{width:584.384000pt;}
._38{width:588.281856pt;}
._1e{width:605.345280pt;}
._f{width:636.139520pt;}
._52{width:657.942784pt;}
._4c{width:673.292800pt;}
._55{width:698.257920pt;}
._2a{width:780.160000pt;}
._50{width:794.291200pt;}
._53{width:800.532480pt;}
._43{width:803.888640pt;}
._b{width:805.713920pt;}
._3{width:812.222720pt;}
._4e{width:835.212800pt;}
._4d{width:851.287040pt;}
._4{width:884.606720pt;}
._3f{width:891.443200pt;}
._5f{width:906.045440pt;}
._14{width:916.420096pt;}
._10{width:992.657920pt;}
._4b{width:997.721600pt;}
._56{width:999.488000pt;}
._0{width:1014.712320pt;}
._1{width:1061.223680pt;}
._44{width:1074.442240pt;}
._30{width:1112.184320pt;}
._54{width:1134.264320pt;}
._41{width:1170.416640pt;}
._42{width:1280.816640pt;}
._69{width:1286.233600pt;}
._12{width:1289.489664pt;}
._48{width:1322.150400pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:58.394240pt;}
.y46{bottom:58.398720pt;}
.y5{bottom:58.400000pt;}
.y96{bottom:58.403840pt;}
.y45{bottom:87.205760pt;}
.y29{bottom:87.208320pt;}
.y69{bottom:88.481280pt;}
.y95{bottom:88.491520pt;}
.y44{bottom:105.120000pt;}
.y28{bottom:105.122560pt;}
.y43{bottom:105.123840pt;}
.y68{bottom:106.395520pt;}
.y94{bottom:106.405760pt;}
.y42{bottom:123.200000pt;}
.y27{bottom:123.213440pt;}
.y41{bottom:123.215360pt;}
.y67{bottom:124.309760pt;}
.y93{bottom:124.320000pt;}
.y66{bottom:142.076800pt;}
.y92{bottom:142.085760pt;}
.y26{bottom:152.491520pt;}
.y40{bottom:152.493440pt;}
.y91{bottom:160.000000pt;}
.y65{bottom:160.020480pt;}
.y90{bottom:160.024960pt;}
.y25{bottom:170.405760pt;}
.y3f{bottom:170.407680pt;}
.y64{bottom:177.934720pt;}
.y8f{bottom:177.939200pt;}
.y24{bottom:188.481920pt;}
.y3e{bottom:188.483840pt;}
.y63{bottom:195.701760pt;}
.y8e{bottom:195.706240pt;}
.y3d{bottom:206.560000pt;}
.y3c{bottom:206.584960pt;}
.y23{bottom:206.587520pt;}
.y8d{bottom:213.620480pt;}
.y62{bottom:231.530240pt;}
.y8c{bottom:231.534720pt;}
.y3b{bottom:235.863040pt;}
.y22{bottom:235.865600pt;}
.y3a{bottom:253.777280pt;}
.y21{bottom:253.779840pt;}
.y61{bottom:260.484480pt;}
.y8b{bottom:260.488960pt;}
.y39{bottom:271.853440pt;}
.y20{bottom:271.856000pt;}
.y60{bottom:278.398720pt;}
.y8a{bottom:278.403200pt;}
.y38{bottom:289.767680pt;}
.y1f{bottom:289.770240pt;}
.y5f{bottom:296.312960pt;}
.y89{bottom:296.317440pt;}
.y37{bottom:307.843840pt;}
.y1e{bottom:307.846400pt;}
.y5e{bottom:314.080000pt;}
.y88{bottom:314.084480pt;}
.y36{bottom:325.920000pt;}
.y1d{bottom:325.937280pt;}
.y5d{bottom:331.994240pt;}
.y87{bottom:331.998720pt;}
.y5c{bottom:349.908480pt;}
.y86{bottom:349.912960pt;}
.y1c{bottom:355.215360pt;}
.y85{bottom:367.680000pt;}
.y5b{bottom:367.690240pt;}
.y84{bottom:367.691520pt;}
.y1b{bottom:373.129600pt;}
.y5a{bottom:385.604480pt;}
.y83{bottom:385.605760pt;}
.y1a{bottom:391.205760pt;}
.y81{bottom:403.512960pt;}
.y59{bottom:403.518720pt;}
.y82{bottom:403.520000pt;}
.y19{bottom:409.120000pt;}
.y18{bottom:409.123840pt;}
.y80{bottom:421.280000pt;}
.y7f{bottom:421.285733pt;}
.y58{bottom:421.285760pt;}
.y17{bottom:427.200000pt;}
.y35{bottom:427.211520pt;}
.y57{bottom:439.200000pt;}
.y7e{bottom:439.220480pt;}
.y56{bottom:439.235840pt;}
.y16{bottom:456.489600pt;}
.y7d{bottom:457.134720pt;}
.ya3{bottom:467.527680pt;}
.y15{bottom:474.403840pt;}
.y7c{bottom:474.901760pt;}
.y55{bottom:474.917120pt;}
.ya2{bottom:484.014080pt;}
.y14{bottom:492.480000pt;}
.y34{bottom:492.485760pt;}
.y7b{bottom:492.816000pt;}
.y54{bottom:492.831360pt;}
.y13{bottom:510.400000pt;}
.y33{bottom:510.403840pt;}
.y12{bottom:510.414080pt;}
.y7a{bottom:510.730240pt;}
.ya1{bottom:514.087040pt;}
.y32{bottom:528.480000pt;}
.y31{bottom:528.485760pt;}
.y11{bottom:528.490240pt;}
.y79{bottom:528.497280pt;}
.y53{bottom:528.512640pt;}
.ya0{bottom:544.160000pt;}
.y30{bottom:546.400000pt;}
.y78{bottom:546.411520pt;}
.y10{bottom:546.419200pt;}
.y2f{bottom:546.423040pt;}
.y52{bottom:546.426880pt;}
.yf{bottom:564.495360pt;}
.y2e{bottom:564.499200pt;}
.yad{bottom:574.104960pt;}
.y9f{bottom:574.115200pt;}
.y77{bottom:575.527680pt;}
.y51{bottom:575.543040pt;}
.ye{bottom:582.409600pt;}
.y2d{bottom:582.413440pt;}
.yac{bottom:592.181120pt;}
.y9e{bottom:592.191360pt;}
.y76{bottom:593.294720pt;}
.y50{bottom:593.310080pt;}
.yd{bottom:600.485760pt;}
.y2c{bottom:600.489600pt;}
.yab{bottom:610.257280pt;}
.y9d{bottom:610.267520pt;}
.y75{bottom:611.208960pt;}
.y4f{bottom:611.224320pt;}
.y2b{bottom:618.403840pt;}
.yc{bottom:618.409600pt;}
.y74{bottom:629.123200pt;}
.y4e{bottom:629.138560pt;}
.y2a{bottom:636.480000pt;}
.yb{bottom:636.485760pt;}
.yaa{bottom:639.535360pt;}
.y9c{bottom:639.545600pt;}
.y73{bottom:646.890240pt;}
.y4d{bottom:646.905600pt;}
.ya{bottom:654.400000pt;}
.ya9{bottom:657.449600pt;}
.y9b{bottom:657.459840pt;}
.y72{bottom:664.804480pt;}
.y4c{bottom:664.819840pt;}
.ya8{bottom:675.525760pt;}
.y9a{bottom:675.536000pt;}
.y71{bottom:682.718720pt;}
.y4b{bottom:682.734080pt;}
.y9{bottom:688.000000pt;}
.ya7{bottom:693.440000pt;}
.ya6{bottom:693.459200pt;}
.y99{bottom:693.464960pt;}
.y70{bottom:700.485760pt;}
.y4a{bottom:700.501120pt;}
.ya5{bottom:711.535360pt;}
.y98{bottom:711.541120pt;}
.y8{bottom:714.239867pt;}
.y6f{bottom:718.400000pt;}
.y6e{bottom:718.403840pt;}
.y49{bottom:718.415360pt;}
.ya4{bottom:729.449600pt;}
.y97{bottom:729.455360pt;}
.y7{bottom:740.160000pt;}
.y6d{bottom:747.520000pt;}
.y6c{bottom:747.525760pt;}
.y48{bottom:747.531520pt;}
.y6{bottom:762.720000pt;}
.y6a{bottom:765.439360pt;}
.y6b{bottom:765.440000pt;}
.y47{bottom:765.445760pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.ha{height:27.062500pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.h6{height:49.306250pt;}
.h8{height:49.335000pt;}
.h9{height:49.795000pt;}
.hb{height:57.787500pt;}
.h7{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x4b{left:88.647733pt;}
.x3e{left:92.803227pt;}
.x22{left:93.745280pt;}
.x55{left:96.480000pt;}
.x37{left:97.760000pt;}
.x54{left:99.378613pt;}
.x23{left:104.638080pt;}
.x21{left:106.713600pt;}
.xb{left:110.562400pt;}
.x47{left:111.527067pt;}
.x24{left:113.278720pt;}
.x4a{left:115.526453pt;}
.x44{left:123.494427pt;}
.x66{left:126.883867pt;}
.xc{left:128.320000pt;}
.x1d{left:129.279360pt;}
.x18{left:132.320000pt;}
.x4c{left:133.926453pt;}
.x32{left:136.637867pt;}
.x1{left:137.757333pt;}
.x13{left:140.319387pt;}
.x3f{left:141.438107pt;}
.x38{left:145.123867pt;}
.x14{left:146.722587pt;}
.x2e{left:150.240000pt;}
.x6{left:151.360000pt;}
.x6a{left:154.259227pt;}
.x61{left:155.520000pt;}
.x4f{left:158.891573pt;}
.x1f{left:160.794880pt;}
.x17{left:168.002587pt;}
.x68{left:170.259867pt;}
.x48{left:182.234800pt;}
.x50{left:184.489653pt;}
.x52{left:196.147893pt;}
.xd{left:198.868133pt;}
.x1c{left:202.555520pt;}
.x20{left:206.544640pt;}
.x6b{left:207.520000pt;}
.x41{left:210.195227pt;}
.x53{left:213.252533pt;}
.x31{left:217.600000pt;}
.x16{left:219.507867pt;}
.xa{left:228.958182pt;}
.x27{left:231.303680pt;}
.x19{left:232.769307pt;}
.x3b{left:234.880000pt;}
.x67{left:237.412507pt;}
.x45{left:239.208347pt;}
.x26{left:242.991360pt;}
.x3c{left:253.600000pt;}
.xf{left:257.762853pt;}
.x65{left:265.278133pt;}
.x6d{left:272.640000pt;}
.x62{left:274.556133pt;}
.x15{left:276.273307pt;}
.x34{left:278.400000pt;}
.x10{left:279.658907pt;}
.x28{left:280.615680pt;}
.x63{left:285.280000pt;}
.x2f{left:295.518133pt;}
.x4d{left:296.965173pt;}
.x1a{left:300.962533pt;}
.x25{left:309.584640pt;}
.x3d{left:310.875520pt;}
.x7{left:312.160000pt;}
.x6c{left:314.236800pt;}
.x6e{left:316.000000pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.x56{left:335.200000pt;}
.x64{left:336.796133pt;}
.x1b{left:340.320000pt;}
.x35{left:343.514267pt;}
.xe{left:345.435173pt;}
.x2b{left:348.634267pt;}
.x42{left:351.845787pt;}
.x46{left:357.454107pt;}
.x12{left:358.396187pt;}
.x51{left:365.957813pt;}
.x36{left:376.160000pt;}
.x57{left:380.000000pt;}
.x1e{left:385.289600pt;}
.x58{left:389.920000pt;}
.x2c{left:393.920000pt;}
.x43{left:397.757467pt;}
.x69{left:400.304027pt;}
.x40{left:420.470427pt;}
.x5c{left:424.640000pt;}
.x39{left:429.920000pt;}
.x59{left:433.278133pt;}
.x5a{left:444.320000pt;}
.x3{left:447.366667pt;}
.x5f{left:453.600000pt;}
.x29{left:457.600000pt;}
.x3a{left:460.158133pt;}
.x5d{left:472.163867pt;}
.x5e{left:485.440000pt;}
.x5b{left:494.238133pt;}
.x2a{left:500.960000pt;}
.x60{left:503.203867pt;}
.x9{left:505.121467pt;}
.x33{left:507.840000pt;}
.x11{left:508.996507pt;}
.x30{left:521.440000pt;}
.x49{left:526.714933pt;}
.x2d{left:531.998133pt;}
.x4e{left:537.342773pt;}
.x2{left:563.200000pt;}
}

