
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_2a543f59d9e9.woff")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("fonts/font_0001_5c7131d63dd9.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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("fonts/font_0002_de613d557475.woff")format("woff");}.ff3{font-family:ff3;line-height:0.898000;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("fonts/font_0003_4523c7226cd4.woff")format("woff");}.ff4{font-family:ff4;line-height:1.053000;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("fonts/font_0004_de4c455f4315.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_ad018dbe47d6.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_2c729ba34bda.woff")format("woff");}.ff7{font-family:ff7;line-height:0.893066;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("fonts/font_0007_0cb813487cfa.woff")format("woff");}.ff8{font-family:ff8;line-height:0.689941;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("fonts/font_0008_b28bb99a0bad.woff")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;}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.759982px;}
.v4{vertical-align:-5.760093px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.759986px;}
.v1{vertical-align:27.359976px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000003px;}
.ls4{letter-spacing:0.000007px;}
.lsb{letter-spacing:0.179280px;}
.ls6{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.360006px;}
.lsd{letter-spacing:0.418320px;}
.lse{letter-spacing:0.717119px;}
.ls5{letter-spacing:9.561593px;}
.lsa{letter-spacing:39.859892px;}
.ls7{letter-spacing:257.399824px;}
.ls8{letter-spacing:270.359818px;}
.ls9{letter-spacing:284.039806px;}
.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.999988px;}
.wsc{word-spacing:-15.298549px;}
.wsd{word-spacing:-15.238789px;}
.wsa{word-spacing:-14.939990px;}
.wsb{word-spacing:-13.499991px;}
.ws7{word-spacing:-10.439993px;}
.ws8{word-spacing:-9.719994px;}
.ws2{word-spacing:-0.113574px;}
.ws4{word-spacing:-0.056787px;}
.ws9{word-spacing:0.000000px;}
.ws3{word-spacing:15.729999px;}
.ws5{word-spacing:15.900360px;}
.ws0{word-spacing:25.167998px;}
.ws1{word-spacing:31.459998px;}
._b{margin-left:-7.041588px;}
._2{margin-left:-4.088664px;}
._4{margin-left:-2.839350px;}
._0{margin-left:-1.817184px;}
._a{width:1.135740px;}
._1{width:2.271480px;}
._3{width:4.088664px;}
._13{width:5.557676px;}
._14{width:6.589363px;}
._d{width:7.727439px;}
._7{width:9.483429px;}
._f{width:10.697032px;}
._18{width:11.892232px;}
._e{width:13.146890px;}
._1e{width:15.227571px;}
._16{width:16.254408px;}
._17{width:17.270628px;}
._8{width:18.682923px;}
._9{width:19.705089px;}
._1a{width:20.855925px;}
._c{width:22.529504px;}
._22{width:23.671427px;}
._25{width:24.919902px;}
._10{width:26.174561px;}
._1d{width:27.609101px;}
._20{width:29.580878px;}
._19{width:30.979141px;}
._15{width:32.210617px;}
._23{width:33.285695px;}
._1b{width:34.780296px;}
._1f{width:35.893917px;}
._6{width:37.252272px;}
._12{width:40.038871px;}
._11{width:41.353891px;}
._5{width:44.293860px;}
._38{width:45.410483px;}
._24{width:47.747906px;}
._1c{width:49.899264px;}
._35{width:50.915484px;}
._32{width:54.919401px;}
._31{width:56.353640px;}
._34{width:57.728420px;}
._33{width:58.743738px;}
._37{width:80.616183px;}
._36{width:81.632103px;}
._2b{width:192.807834px;}
._27{width:227.767410px;}
._2f{width:363.124016px;}
._2e{width:383.083841px;}
._29{width:402.983907px;}
._2a{width:410.753003px;}
._28{width:439.557002px;}
._2c{width:442.843799px;}
._30{width:510.786130px;}
._26{width:523.699323px;}
._2d{width:550.172985px;}
._21{width:757.979513px;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:2.880000px;}
.fs9{font-size:38.879976px;}
.fs6{font-size:41.759970px;}
.fs5{font-size:48.239964px;}
.fsa{font-size:53.999964px;}
.fs2{font-size:56.787000px;}
.fs8{font-size:59.759958px;}
.fsb{font-size:59.999958px;}
.fs7{font-size:66.239952px;}
.fs4{font-size:71.999952px;}
.fs3{font-size:84.239940px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.yd8{bottom:-0.002987px;}
.y0{bottom:0.000000px;}
.y17{bottom:1.334646px;}
.yc5{bottom:3.241853px;}
.y73{bottom:30.540604px;}
.y96{bottom:88.228900px;}
.y11e{bottom:92.908859px;}
.y95{bottom:106.228883px;}
.y11d{bottom:108.388853px;}
.y4d{bottom:108.568885px;}
.y71{bottom:109.288852px;}
.yf3{bottom:110.728953px;}
.y16{bottom:111.475500px;}
.yc4{bottom:116.201646px;}
.yc6{bottom:118.108853px;}
.yc3{bottom:118.108857px;}
.y94{bottom:124.228866px;}
.y70{bottom:124.768846px;}
.y4c{bottom:126.568868px;}
.yf2{bottom:128.728936px;}
.y15{bottom:129.409500px;}
.y11c{bottom:134.668840px;}
.yc2{bottom:136.108840px;}
.y6f{bottom:140.428835px;}
.y93{bottom:142.228849px;}
.y4b{bottom:144.568852px;}
.yf1{bottom:146.728920px;}
.y14{bottom:147.342000px;}
.y152{bottom:148.168840px;}
.y184{bottom:155.362972px;}
.yc1{bottom:158.422814px;}
.y92{bottom:160.222842px;}
.y4a{bottom:162.562844px;}
.yf0{bottom:164.722912px;}
.y13{bottom:165.274500px;}
.y151{bottom:166.162832px;}
.y6e{bottom:166.522819px;}
.y183{bottom:173.362956px;}
.yc0{bottom:173.902808px;}
.y91{bottom:178.222825px;}
.y49{bottom:180.562827px;}
.yef{bottom:182.722895px;}
.y150{bottom:184.162816px;}
.ybf{bottom:189.382802px;}
.y182{bottom:191.362939px;}
.y90{bottom:196.222808px;}
.y48{bottom:198.562810px;}
.yee{bottom:200.722878px;}
.y14f{bottom:202.162799px;}
.ybe{bottom:204.862796px;}
.y181{bottom:209.362922px;}
.y8f{bottom:214.222791px;}
.y47{bottom:216.562794px;}
.yed{bottom:218.722861px;}
.y14e{bottom:220.162782px;}
.ybd{bottom:220.522786px;}
.y8e{bottom:232.222775px;}
.y46{bottom:234.562777px;}
.y180{bottom:236.362904px;}
.yec{bottom:236.722845px;}
.y12{bottom:237.006000px;}
.y14d{bottom:243.382766px;}
.ybc{bottom:246.622764px;}
.y45{bottom:252.562760px;}
.y8d{bottom:254.362748px;}
.y17f{bottom:254.362888px;}
.yeb{bottom:254.722828px;}
.y11{bottom:254.938500px;}
.y8c{bottom:270.022738px;}
.yea{bottom:272.722811px;}
.y10{bottom:272.871000px;}
.y14c{bottom:276.862822px;}
.y44{bottom:279.607741px;}
.y17e{bottom:281.407869px;}
.y8b{bottom:285.547727px;}
.ye9{bottom:290.767794px;}
.yf{bottom:290.803500px;}
.y14b{bottom:294.907805px;}
.y17d{bottom:299.407852px;}
.y43{bottom:302.827725px;}
.ye{bottom:308.736000px;}
.ye8{bottom:308.767777px;}
.y89{bottom:311.647719px;}
.y14a{bottom:312.907788px;}
.y17c{bottom:317.407836px;}
.ye7{bottom:326.767760px;}
.y149{bottom:330.907771px;}
.y17b{bottom:335.407819px;}
.y42{bottom:336.307817px;}
.ye6{bottom:344.767743px;}
.y11b{bottom:354.127708px;}
.y41{bottom:354.307800px;}
.y148{bottom:357.907754px;}
.y17a{bottom:362.407801px;}
.yd{bottom:362.535000px;}
.ye5{bottom:362.767726px;}
.y6d{bottom:366.007743px;}
.y11a{bottom:372.127691px;}
.y40{bottom:372.307783px;}
.y147{bottom:375.907737px;}
.y179{bottom:380.407784px;}
.yc{bottom:380.467500px;}
.y6c{bottom:384.007726px;}
.ye4{bottom:389.767709px;}
.y119{bottom:390.127675px;}
.y3f{bottom:390.307766px;}
.y146{bottom:393.907720px;}
.y178{bottom:398.407767px;}
.y6b{bottom:402.007709px;}
.ye3{bottom:407.767692px;}
.y118{bottom:408.127658px;}
.y3e{bottom:408.307750px;}
.y145{bottom:411.907703px;}
.yb{bottom:416.332500px;}
.y177{bottom:416.407751px;}
.y6a{bottom:420.007692px;}
.y117{bottom:426.127641px;}
.y3d{bottom:426.307733px;}
.y144{bottom:429.907686px;}
.ya{bottom:434.265000px;}
.ye2{bottom:434.767674px;}
.y69{bottom:438.007676px;}
.y176{bottom:443.407733px;}
.y3c{bottom:444.307716px;}
.y143{bottom:447.907670px;}
.y116{bottom:449.347625px;}
.y9{bottom:452.199000px;}
.ye1{bottom:452.767657px;}
.y68{bottom:456.007659px;}
.y175{bottom:461.407716px;}
.y3b{bottom:462.307699px;}
.y142{bottom:465.907653px;}
.y8{bottom:470.131500px;}
.ye0{bottom:470.767641px;}
.y67{bottom:474.007642px;}
.ybb{bottom:474.907673px;}
.y174{bottom:479.407699px;}
.y3a{bottom:480.307682px;}
.y115{bottom:482.827664px;}
.y141{bottom:483.907636px;}
.ydf{bottom:488.767624px;}
.y66{bottom:492.007625px;}
.yba{bottom:492.907656px;}
.y173{bottom:497.407683px;}
.y39{bottom:498.307666px;}
.y114{bottom:500.827647px;}
.y140{bottom:501.907619px;}
.yde{bottom:506.767607px;}
.y65{bottom:510.007608px;}
.yb9{bottom:510.907639px;}
.y7{bottom:514.963500px;}
.y172{bottom:515.407666px;}
.y38{bottom:516.307649px;}
.y113{bottom:518.827630px;}
.y13f{bottom:519.907602px;}
.ydd{bottom:524.767590px;}
.y64{bottom:528.007592px;}
.yb8{bottom:528.907622px;}
.y37{bottom:534.307632px;}
.y112{bottom:536.827613px;}
.y13e{bottom:537.907586px;}
.y8a{bottom:542.407561px;}
.y171{bottom:542.407648px;}
.ydc{bottom:542.767573px;}
.y63{bottom:546.007575px;}
.y36{bottom:552.307615px;}
.y111{bottom:554.827596px;}
.y13d{bottom:555.907569px;}
.yb7{bottom:555.907604px;}
.y170{bottom:560.407631px;}
.ydb{bottom:560.767557px;}
.y88{bottom:569.797575px;}
.y110{bottom:572.857579px;}
.y62{bottom:573.037557px;}
.yb6{bottom:573.937587px;}
.y16f{bottom:578.437614px;}
.yda{bottom:578.797539px;}
.y35{bottom:579.337597px;}
.y13c{bottom:582.937551px;}
.y87{bottom:587.797558px;}
.y10f{bottom:590.857562px;}
.y61{bottom:591.037540px;}
.yb5{bottom:591.937570px;}
.y16e{bottom:596.437597px;}
.yd9{bottom:596.797523px;}
.y34{bottom:597.337580px;}
.y13b{bottom:600.937534px;}
.y86{bottom:605.797542px;}
.y10e{bottom:608.857546px;}
.y60{bottom:609.037523px;}
.yb4{bottom:609.937554px;}
.yd7{bottom:612.895146px;}
.y33{bottom:615.337563px;}
.yd6{bottom:618.937502px;}
.y13a{bottom:618.937517px;}
.y16d{bottom:623.437579px;}
.y85{bottom:623.797525px;}
.y10d{bottom:626.857529px;}
.y5f{bottom:627.037506px;}
.yb3{bottom:627.937537px;}
.y32{bottom:633.337547px;}
.yd5{bottom:634.417496px;}
.y139{bottom:636.937500px;}
.y16c{bottom:641.437563px;}
.y84{bottom:641.797508px;}
.y10c{bottom:644.857512px;}
.y5e{bottom:645.037554px;}
.yb2{bottom:645.937520px;}
.yd4{bottom:649.897490px;}
.y31{bottom:651.337530px;}
.y138{bottom:654.937484px;}
.y16b{bottom:659.437546px;}
.y10b{bottom:662.857495px;}
.y5d{bottom:663.037537px;}
.yb1{bottom:663.937503px;}
.y83{bottom:668.797490px;}
.y30{bottom:669.337513px;}
.yd3{bottom:675.997468px;}
.y137{bottom:678.157467px;}
.y10a{bottom:680.857478px;}
.y5c{bottom:681.037520px;}
.yb0{bottom:681.937486px;}
.y16a{bottom:686.437528px;}
.y82{bottom:686.797474px;}
.y2f{bottom:687.337496px;}
.y109{bottom:698.857462px;}
.y5b{bottom:699.037504px;}
.yaf{bottom:699.937470px;}
.y169{bottom:704.437511px;}
.y81{bottom:704.797457px;}
.y2e{bottom:705.337480px;}
.y136{bottom:711.637555px;}
.y108{bottom:716.857445px;}
.y5a{bottom:717.037487px;}
.yae{bottom:717.937453px;}
.y168{bottom:722.437495px;}
.y80{bottom:722.797440px;}
.y2d{bottom:723.337463px;}
.y135{bottom:729.637538px;}
.y107{bottom:734.857428px;}
.y59{bottom:735.037470px;}
.yad{bottom:735.937436px;}
.y7f{bottom:740.797423px;}
.y2c{bottom:741.337446px;}
.y134{bottom:747.637521px;}
.y167{bottom:749.437477px;}
.y58{bottom:753.037453px;}
.yac{bottom:753.937419px;}
.y2b{bottom:759.337429px;}
.y106{bottom:763.297408px;}
.y133{bottom:765.637505px;}
.y166{bottom:767.437460px;}
.y7e{bottom:767.797405px;}
.y6{bottom:768.187500px;}
.yab{bottom:771.937402px;}
.y2a{bottom:777.337412px;}
.y57{bottom:780.037436px;}
.y132{bottom:783.637488px;}
.y165{bottom:785.437443px;}
.y105{bottom:791.017389px;}
.yaa{bottom:795.157386px;}
.y29{bottom:795.337396px;}
.y56{bottom:798.037419px;}
.y7d{bottom:798.937375px;}
.y131{bottom:801.637471px;}
.y5{bottom:804.054000px;}
.y164{bottom:812.437426px;}
.y28{bottom:813.337379px;}
.y7c{bottom:814.417369px;}
.y55{bottom:816.037402px;}
.y104{bottom:818.737371px;}
.y130{bottom:819.637454px;}
.ya9{bottom:828.637449px;}
.y163{bottom:830.437409px;}
.y27{bottom:831.337385px;}
.y54{bottom:834.037385px;}
.y12f{bottom:837.637437px;}
.y4{bottom:839.919000px;}
.y7b{bottom:840.697356px;}
.y103{bottom:846.682351px;}
.ya8{bottom:846.682431px;}
.y162{bottom:848.482391px;}
.y26{bottom:849.382368px;}
.y53{bottom:852.082368px;}
.y12e{bottom:855.682420px;}
.ya7{bottom:864.682415px;}
.y161{bottom:866.482374px;}
.y25{bottom:867.382351px;}
.y52{bottom:870.082351px;}
.y12d{bottom:873.682403px;}
.y102{bottom:874.402332px;}
.ya6{bottom:882.682398px;}
.y24{bottom:885.382334px;}
.y51{bottom:888.082334px;}
.y12c{bottom:891.682386px;}
.y160{bottom:893.482357px;}
.ya5{bottom:900.682381px;}
.y101{bottom:902.122313px;}
.y3{bottom:902.683500px;}
.y23{bottom:903.382317px;}
.y12b{bottom:909.682370px;}
.y15f{bottom:911.482340px;}
.y50{bottom:915.082316px;}
.ya4{bottom:918.682364px;}
.y22{bottom:921.382301px;}
.y12a{bottom:927.682353px;}
.y15e{bottom:929.482323px;}
.y100{bottom:929.842294px;}
.y2{bottom:932.571000px;}
.ya3{bottom:936.682347px;}
.y4f{bottom:942.082299px;}
.y21{bottom:944.602283px;}
.y129{bottom:945.682336px;}
.yd2{bottom:947.122312px;}
.ya2{bottom:954.682331px;}
.y15d{bottom:956.482305px;}
.yff{bottom:957.562275px;}
.y4e{bottom:960.082282px;}
.y1{bottom:962.460000px;}
.y128{bottom:963.682319px;}
.yd1{bottom:964.402307px;}
.ya1{bottom:972.682314px;}
.y15c{bottom:974.482289px;}
.y20{bottom:978.802260px;}
.y127{bottom:981.682302px;}
.yd0{bottom:982.402290px;}
.yfe{bottom:985.282256px;}
.ya0{bottom:990.682297px;}
.y15b{bottom:992.482272px;}
.y1f{bottom:999.142245px;}
.y126{bottom:999.682286px;}
.ycf{bottom:1000.402274px;}
.y9f{bottom:1008.682280px;}
.y15a{bottom:1010.482255px;}
.yfd{bottom:1013.182236px;}
.y125{bottom:1017.682269px;}
.yce{bottom:1018.402257px;}
.y1e{bottom:1024.162229px;}
.y9e{bottom:1026.682264px;}
.y124{bottom:1035.682252px;}
.ycd{bottom:1036.402240px;}
.y159{bottom:1037.482237px;}
.yfc{bottom:1040.902218px;}
.y1d{bottom:1043.062216px;}
.y7a{bottom:1044.682236px;}
.y9d{bottom:1044.682247px;}
.y123{bottom:1053.682235px;}
.ycc{bottom:1054.402223px;}
.y158{bottom:1055.482221px;}
.y1c{bottom:1062.322203px;}
.y79{bottom:1062.682219px;}
.yfb{bottom:1068.622198px;}
.y122{bottom:1071.682218px;}
.y9c{bottom:1071.682229px;}
.ycb{bottom:1072.402206px;}
.y157{bottom:1073.482204px;}
.y78{bottom:1080.682203px;}
.y1b{bottom:1081.582190px;}
.y121{bottom:1089.682202px;}
.y9b{bottom:1089.682212px;}
.yca{bottom:1090.402190px;}
.yf7{bottom:1097.062264px;}
.yfa{bottom:1097.062279px;}
.y77{bottom:1098.682186px;}
.y156{bottom:1100.482186px;}
.y1a{bottom:1102.282176px;}
.y120{bottom:1107.682185px;}
.y9a{bottom:1107.682195px;}
.yc9{bottom:1108.402173px;}
.yf5{bottom:1115.062247px;}
.yf9{bottom:1115.062262px;}
.y76{bottom:1116.682169px;}
.y155{bottom:1118.482169px;}
.y11f{bottom:1125.682168px;}
.y99{bottom:1125.682179px;}
.yc8{bottom:1126.402156px;}
.y19{bottom:1132.552159px;}
.yf6{bottom:1133.092230px;}
.yf8{bottom:1133.092245px;}
.y75{bottom:1134.712152px;}
.y154{bottom:1136.512152px;}
.yc7{bottom:1143.712151px;}
.y98{bottom:1143.712161px;}
.y18{bottom:1156.852138px;}
.y153{bottom:1159.732135px;}
.y74{bottom:1161.712134px;}
.y97{bottom:1161.712145px;}
.yf4{bottom:1161.712215px;}
.y72{bottom:1214.624775px;}
.h1a{height:0.439500px;}
.h1b{height:2.404800px;}
.h18{height:11.133000px;}
.h19{height:14.133000px;}
.hd{height:34.869575px;}
.hc{height:36.359972px;}
.hb{height:36.359978px;}
.h14{height:37.367975px;}
.h17{height:40.546847px;}
.h16{height:40.634737px;}
.h13{height:41.353891px;}
.h1c{height:41.493486px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.h15{height:45.089970px;}
.h10{height:48.796842px;}
.h12{height:49.823967px;}
.h11{height:49.899565px;}
.h8{height:58.294038px;}
.he{height:58.629561px;}
.hf{height:60.119960px;}
.h2{height:67.326667px;}
.h9{height:67.640346px;}
.ha{height:67.640351px;}
.h3{height:84.385482px;}
.h7{height:1261.500000px;}
.h6{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:1.500000px;}
.w5{width:12.000000px;}
.w4{width:15.000000px;}
.w3{width:892.500000px;}
.w2{width:892.913387px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.096584px;}
.xf{left:31.874978px;}
.xb{left:63.956634px;}
.x6{left:67.376646px;}
.x1e{left:69.176644px;}
.x4{left:80.336637px;}
.x12{left:90.416617px;}
.x1f{left:95.672613px;}
.x1{left:101.298000px;}
.x2{left:115.112613px;}
.x5{left:165.506560px;}
.x7{left:181.526568px;}
.x9{left:218.606541px;}
.x13{left:239.486527px;}
.x8{left:270.626507px;}
.x3{left:320.531475px;}
.x10{left:435.206695px;}
.x11{left:440.411390px;}
.xa{left:446.531385px;}
.xc{left:461.471374px;}
.x17{left:466.691372px;}
.x15{left:468.671379px;}
.x18{left:475.500000px;}
.x20{left:482.171357px;}
.xe{left:487.931343px;}
.x1a{left:490.804515px;}
.x23{left:493.151352px;}
.x24{left:496.241347px;}
.x1b{left:532.500000px;}
.x1c{left:544.543657px;}
.x14{left:631.241268px;}
.x21{left:717.326194px;}
.x1d{left:728.498499px;}
.x22{left:793.106153px;}
.xd{left:812.546133px;}
.x16{left:832.166120px;}
@media print{
.v2{vertical-align:-21.119984pt;}
.v4{vertical-align:-5.120083pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.119988pt;}
.v1{vertical-align:24.319979pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000003pt;}
.ls4{letter-spacing:0.000007pt;}
.lsb{letter-spacing:0.159360pt;}
.ls6{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.320005pt;}
.lsd{letter-spacing:0.371840pt;}
.lse{letter-spacing:0.637440pt;}
.ls5{letter-spacing:8.499194pt;}
.lsa{letter-spacing:35.431015pt;}
.ls7{letter-spacing:228.799844pt;}
.ls8{letter-spacing:240.319839pt;}
.ls9{letter-spacing:252.479828pt;}
.ws6{word-spacing:-15.999989pt;}
.wsc{word-spacing:-13.598710pt;}
.wsd{word-spacing:-13.545590pt;}
.wsa{word-spacing:-13.279991pt;}
.wsb{word-spacing:-11.999992pt;}
.ws7{word-spacing:-9.279993pt;}
.ws8{word-spacing:-8.639995pt;}
.ws2{word-spacing:-0.100955pt;}
.ws4{word-spacing:-0.050477pt;}
.ws9{word-spacing:0.000000pt;}
.ws3{word-spacing:13.982221pt;}
.ws5{word-spacing:14.133653pt;}
.ws0{word-spacing:22.371554pt;}
.ws1{word-spacing:27.964443pt;}
._b{margin-left:-6.259189pt;}
._2{margin-left:-3.634368pt;}
._4{margin-left:-2.523867pt;}
._0{margin-left:-1.615275pt;}
._a{width:1.009547pt;}
._1{width:2.019093pt;}
._3{width:3.634368pt;}
._13{width:4.940157pt;}
._14{width:5.857211pt;}
._d{width:6.868835pt;}
._7{width:8.429715pt;}
._f{width:9.508473pt;}
._18{width:10.570873pt;}
._e{width:11.686124pt;}
._1e{width:13.535619pt;}
._16{width:14.448362pt;}
._17{width:15.351669pt;}
._8{width:16.607043pt;}
._9{width:17.515635pt;}
._1a{width:18.538600pt;}
._c{width:20.026226pt;}
._22{width:21.041268pt;}
._25{width:22.151024pt;}
._10{width:23.266276pt;}
._1d{width:24.541423pt;}
._20{width:26.294114pt;}
._19{width:27.537014pt;}
._15{width:28.631660pt;}
._23{width:29.587284pt;}
._1b{width:30.915818pt;}
._1f{width:31.905704pt;}
._6{width:33.113131pt;}
._12{width:35.590108pt;}
._11{width:36.759014pt;}
._5{width:39.372320pt;}
._38{width:40.364874pt;}
._24{width:42.442583pt;}
._1c{width:44.354901pt;}
._35{width:45.258208pt;}
._32{width:48.817246pt;}
._31{width:50.092125pt;}
._34{width:51.314151pt;}
._33{width:52.216656pt;}
._37{width:71.658830pt;}
._36{width:72.561869pt;}
._2b{width:171.384742pt;}
._27{width:202.459920pt;}
._2f{width:322.776903pt;}
._2e{width:340.518970pt;}
._29{width:358.207918pt;}
._2a{width:365.113780pt;}
._28{width:390.717335pt;}
._2c{width:393.638933pt;}
._30{width:454.032116pt;}
._26{width:465.510510pt;}
._2d{width:489.042653pt;}
._21{width:673.759567pt;}
.fsc{font-size:2.560000pt;}
.fs9{font-size:34.559979pt;}
.fs6{font-size:37.119973pt;}
.fs5{font-size:42.879968pt;}
.fsa{font-size:47.999968pt;}
.fs2{font-size:50.477333pt;}
.fs8{font-size:53.119963pt;}
.fsb{font-size:53.333296pt;}
.fs7{font-size:58.879957pt;}
.fs4{font-size:63.999957pt;}
.fs3{font-size:74.879947pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.yd8{bottom:-0.002655pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:1.186352pt;}
.yc5{bottom:2.881647pt;}
.y73{bottom:27.147203pt;}
.y96{bottom:78.425689pt;}
.y11e{bottom:82.585652pt;}
.y95{bottom:94.425674pt;}
.y11d{bottom:96.345647pt;}
.y4d{bottom:96.505676pt;}
.y71{bottom:97.145646pt;}
.yf3{bottom:98.425736pt;}
.y16{bottom:99.089333pt;}
.yc4{bottom:103.290352pt;}
.yc6{bottom:104.985647pt;}
.yc3{bottom:104.985651pt;}
.y94{bottom:110.425659pt;}
.y70{bottom:110.905641pt;}
.y4c{bottom:112.505661pt;}
.yf2{bottom:114.425721pt;}
.y15{bottom:115.030667pt;}
.y11c{bottom:119.705635pt;}
.yc2{bottom:120.985636pt;}
.y6f{bottom:124.825631pt;}
.y93{bottom:126.425644pt;}
.y4b{bottom:128.505646pt;}
.yf1{bottom:130.425706pt;}
.y14{bottom:130.970667pt;}
.y152{bottom:131.705636pt;}
.y184{bottom:138.100420pt;}
.yc1{bottom:140.820279pt;}
.y92{bottom:142.420304pt;}
.y4a{bottom:144.500306pt;}
.yf0{bottom:146.420366pt;}
.y13{bottom:146.910667pt;}
.y151{bottom:147.700295pt;}
.y6e{bottom:148.020284pt;}
.y183{bottom:154.100405pt;}
.yc0{bottom:154.580274pt;}
.y91{bottom:158.420289pt;}
.y49{bottom:160.500291pt;}
.yef{bottom:162.420351pt;}
.y150{bottom:163.700281pt;}
.ybf{bottom:168.340269pt;}
.y182{bottom:170.100390pt;}
.y90{bottom:174.420274pt;}
.y48{bottom:176.500276pt;}
.yee{bottom:178.420336pt;}
.y14f{bottom:179.700266pt;}
.ybe{bottom:182.100263pt;}
.y181{bottom:186.100375pt;}
.y8f{bottom:190.420259pt;}
.y47{bottom:192.500261pt;}
.yed{bottom:194.420321pt;}
.y14e{bottom:195.700251pt;}
.ybd{bottom:196.020254pt;}
.y8e{bottom:206.420244pt;}
.y46{bottom:208.500246pt;}
.y180{bottom:210.100359pt;}
.yec{bottom:210.420306pt;}
.y12{bottom:210.672000pt;}
.y14d{bottom:216.340236pt;}
.ybc{bottom:219.220235pt;}
.y45{bottom:224.500231pt;}
.y8d{bottom:226.100221pt;}
.y17f{bottom:226.100345pt;}
.yeb{bottom:226.420291pt;}
.y11{bottom:226.612000pt;}
.y8c{bottom:240.020211pt;}
.yea{bottom:242.420276pt;}
.y10{bottom:242.552000pt;}
.y14c{bottom:246.100287pt;}
.y44{bottom:248.540215pt;}
.y17e{bottom:250.140328pt;}
.y8b{bottom:253.820202pt;}
.ye9{bottom:258.460261pt;}
.yf{bottom:258.492000pt;}
.y14b{bottom:262.140271pt;}
.y17d{bottom:266.140313pt;}
.y43{bottom:269.180200pt;}
.ye{bottom:274.432000pt;}
.ye8{bottom:274.460246pt;}
.y89{bottom:277.020195pt;}
.y14a{bottom:278.140256pt;}
.y17c{bottom:282.140298pt;}
.ye7{bottom:290.460231pt;}
.y149{bottom:294.140241pt;}
.y17b{bottom:298.140283pt;}
.y42{bottom:298.940282pt;}
.ye6{bottom:306.460216pt;}
.y11b{bottom:314.780185pt;}
.y41{bottom:314.940267pt;}
.y148{bottom:318.140225pt;}
.y17a{bottom:322.140268pt;}
.yd{bottom:322.253333pt;}
.ye5{bottom:322.460201pt;}
.y6d{bottom:325.340216pt;}
.y11a{bottom:330.780170pt;}
.y40{bottom:330.940252pt;}
.y147{bottom:334.140210pt;}
.y179{bottom:338.140253pt;}
.yc{bottom:338.193333pt;}
.y6c{bottom:341.340201pt;}
.ye4{bottom:346.460185pt;}
.y119{bottom:346.780155pt;}
.y3f{bottom:346.940237pt;}
.y146{bottom:350.140196pt;}
.y178{bottom:354.140238pt;}
.y6b{bottom:357.340186pt;}
.ye3{bottom:362.460171pt;}
.y118{bottom:362.780140pt;}
.y3e{bottom:362.940222pt;}
.y145{bottom:366.140181pt;}
.yb{bottom:370.073333pt;}
.y177{bottom:370.140223pt;}
.y6a{bottom:373.340171pt;}
.y117{bottom:378.780125pt;}
.y3d{bottom:378.940207pt;}
.y144{bottom:382.140166pt;}
.ya{bottom:386.013333pt;}
.ye2{bottom:386.460155pt;}
.y69{bottom:389.340156pt;}
.y176{bottom:394.140207pt;}
.y3c{bottom:394.940192pt;}
.y143{bottom:398.140151pt;}
.y116{bottom:399.420111pt;}
.y9{bottom:401.954667pt;}
.ye1{bottom:402.460140pt;}
.y68{bottom:405.340141pt;}
.y175{bottom:410.140192pt;}
.y3b{bottom:410.940177pt;}
.y142{bottom:414.140136pt;}
.y8{bottom:417.894667pt;}
.ye0{bottom:418.460125pt;}
.y67{bottom:421.340126pt;}
.ybb{bottom:422.140153pt;}
.y174{bottom:426.140177pt;}
.y3a{bottom:426.940162pt;}
.y115{bottom:429.180145pt;}
.y141{bottom:430.140121pt;}
.ydf{bottom:434.460110pt;}
.y66{bottom:437.340111pt;}
.yba{bottom:438.140138pt;}
.y173{bottom:442.140162pt;}
.y39{bottom:442.940147pt;}
.y114{bottom:445.180130pt;}
.y140{bottom:446.140106pt;}
.yde{bottom:450.460095pt;}
.y65{bottom:453.340096pt;}
.yb9{bottom:454.140124pt;}
.y7{bottom:457.745333pt;}
.y172{bottom:458.140147pt;}
.y38{bottom:458.940132pt;}
.y113{bottom:461.180116pt;}
.y13f{bottom:462.140091pt;}
.ydd{bottom:466.460080pt;}
.y64{bottom:469.340081pt;}
.yb8{bottom:470.140109pt;}
.y37{bottom:474.940117pt;}
.y112{bottom:477.180101pt;}
.y13e{bottom:478.140076pt;}
.y8a{bottom:482.140054pt;}
.y171{bottom:482.140132pt;}
.ydc{bottom:482.460065pt;}
.y63{bottom:485.340067pt;}
.y36{bottom:490.940102pt;}
.y111{bottom:493.180086pt;}
.y13d{bottom:494.140061pt;}
.yb7{bottom:494.140093pt;}
.y170{bottom:498.140117pt;}
.ydb{bottom:498.460050pt;}
.y88{bottom:506.486734pt;}
.y110{bottom:509.206737pt;}
.y62{bottom:509.366717pt;}
.yb6{bottom:510.166744pt;}
.y16f{bottom:514.166768pt;}
.yda{bottom:514.486702pt;}
.y35{bottom:514.966753pt;}
.y13c{bottom:518.166712pt;}
.y87{bottom:522.486719pt;}
.y10f{bottom:525.206722pt;}
.y61{bottom:525.366702pt;}
.yb5{bottom:526.166729pt;}
.y16e{bottom:530.166753pt;}
.yd9{bottom:530.486687pt;}
.y34{bottom:530.966738pt;}
.y13b{bottom:534.166697pt;}
.y86{bottom:538.486704pt;}
.y10e{bottom:541.206707pt;}
.y60{bottom:541.366687pt;}
.yb4{bottom:542.166714pt;}
.yd7{bottom:544.795685pt;}
.y33{bottom:546.966723pt;}
.yd6{bottom:550.166668pt;}
.y13a{bottom:550.166682pt;}
.y16d{bottom:554.166737pt;}
.y85{bottom:554.486689pt;}
.y10d{bottom:557.206692pt;}
.y5f{bottom:557.366672pt;}
.yb3{bottom:558.166699pt;}
.y32{bottom:562.966708pt;}
.yd5{bottom:563.926663pt;}
.y139{bottom:566.166667pt;}
.y16c{bottom:570.166722pt;}
.y84{bottom:570.486674pt;}
.y10c{bottom:573.206677pt;}
.y5e{bottom:573.366715pt;}
.yb2{bottom:574.166684pt;}
.yd4{bottom:577.686658pt;}
.y31{bottom:578.966693pt;}
.y138{bottom:582.166652pt;}
.y16b{bottom:586.166707pt;}
.y10b{bottom:589.206662pt;}
.y5d{bottom:589.366700pt;}
.yb1{bottom:590.166670pt;}
.y83{bottom:594.486658pt;}
.y30{bottom:594.966678pt;}
.yd3{bottom:600.886639pt;}
.y137{bottom:602.806637pt;}
.y10a{bottom:605.206647pt;}
.y5c{bottom:605.366685pt;}
.yb0{bottom:606.166655pt;}
.y16a{bottom:610.166692pt;}
.y82{bottom:610.486643pt;}
.y2f{bottom:610.966663pt;}
.y109{bottom:621.206633pt;}
.y5b{bottom:621.366670pt;}
.yaf{bottom:622.166640pt;}
.y169{bottom:626.166677pt;}
.y81{bottom:626.486628pt;}
.y2e{bottom:626.966648pt;}
.y136{bottom:632.566716pt;}
.y108{bottom:637.206618pt;}
.y5a{bottom:637.366655pt;}
.yae{bottom:638.166625pt;}
.y168{bottom:642.166662pt;}
.y80{bottom:642.486613pt;}
.y2d{bottom:642.966634pt;}
.y135{bottom:648.566701pt;}
.y107{bottom:653.206603pt;}
.y59{bottom:653.366640pt;}
.yad{bottom:654.166610pt;}
.y7f{bottom:658.486598pt;}
.y2c{bottom:658.966619pt;}
.y134{bottom:664.566686pt;}
.y167{bottom:666.166646pt;}
.y58{bottom:669.366625pt;}
.yac{bottom:670.166595pt;}
.y2b{bottom:674.966604pt;}
.y106{bottom:678.486585pt;}
.y133{bottom:680.566671pt;}
.y166{bottom:682.166631pt;}
.y7e{bottom:682.486583pt;}
.y6{bottom:682.833333pt;}
.yab{bottom:686.166580pt;}
.y2a{bottom:690.966589pt;}
.y57{bottom:693.366609pt;}
.y132{bottom:696.566656pt;}
.y165{bottom:698.166616pt;}
.y105{bottom:703.126568pt;}
.yaa{bottom:706.806565pt;}
.y29{bottom:706.966574pt;}
.y56{bottom:709.366594pt;}
.y7d{bottom:710.166555pt;}
.y131{bottom:712.566641pt;}
.y5{bottom:714.714667pt;}
.y164{bottom:722.166601pt;}
.y28{bottom:722.966559pt;}
.y7c{bottom:723.926550pt;}
.y55{bottom:725.366580pt;}
.y104{bottom:727.766552pt;}
.y130{bottom:728.566626pt;}
.ya9{bottom:736.566621pt;}
.y163{bottom:738.166586pt;}
.y27{bottom:738.966565pt;}
.y54{bottom:741.366565pt;}
.y12f{bottom:744.566611pt;}
.y4{bottom:746.594667pt;}
.y7b{bottom:747.286539pt;}
.y103{bottom:752.606535pt;}
.ya8{bottom:752.606606pt;}
.y162{bottom:754.206570pt;}
.y26{bottom:755.006549pt;}
.y53{bottom:757.406549pt;}
.y12e{bottom:760.606596pt;}
.ya7{bottom:768.606591pt;}
.y161{bottom:770.206555pt;}
.y25{bottom:771.006534pt;}
.y52{bottom:773.406534pt;}
.y12d{bottom:776.606581pt;}
.y102{bottom:777.246517pt;}
.ya6{bottom:784.606576pt;}
.y24{bottom:787.006519pt;}
.y51{bottom:789.406519pt;}
.y12c{bottom:792.606566pt;}
.y160{bottom:794.206539pt;}
.ya5{bottom:800.606561pt;}
.y101{bottom:801.886500pt;}
.y3{bottom:802.385333pt;}
.y23{bottom:803.006504pt;}
.y12b{bottom:808.606551pt;}
.y15f{bottom:810.206524pt;}
.y50{bottom:813.406503pt;}
.ya4{bottom:816.606546pt;}
.y22{bottom:819.006489pt;}
.y12a{bottom:824.606536pt;}
.y15e{bottom:826.206509pt;}
.y100{bottom:826.526484pt;}
.y2{bottom:828.952000pt;}
.ya3{bottom:832.606531pt;}
.y4f{bottom:837.406488pt;}
.y21{bottom:839.646474pt;}
.y129{bottom:840.606521pt;}
.yd2{bottom:841.886499pt;}
.ya2{bottom:848.606516pt;}
.y15d{bottom:850.206494pt;}
.yff{bottom:851.166467pt;}
.y4e{bottom:853.406473pt;}
.y1{bottom:855.520000pt;}
.y128{bottom:856.606506pt;}
.yd1{bottom:857.246495pt;}
.ya1{bottom:864.606501pt;}
.y15c{bottom:866.206479pt;}
.y20{bottom:870.046453pt;}
.y127{bottom:872.606491pt;}
.yd0{bottom:873.246480pt;}
.yfe{bottom:875.806449pt;}
.ya0{bottom:880.606486pt;}
.y15b{bottom:882.206464pt;}
.y1f{bottom:888.126440pt;}
.y126{bottom:888.606476pt;}
.ycf{bottom:889.246465pt;}
.y9f{bottom:896.606471pt;}
.y15a{bottom:898.206449pt;}
.yfd{bottom:900.606432pt;}
.y125{bottom:904.606461pt;}
.yce{bottom:905.246450pt;}
.y1e{bottom:910.366425pt;}
.y9e{bottom:912.606456pt;}
.y124{bottom:920.606446pt;}
.ycd{bottom:921.246436pt;}
.y159{bottom:922.206433pt;}
.yfc{bottom:925.246416pt;}
.y1d{bottom:927.166415pt;}
.y7a{bottom:928.606432pt;}
.y9d{bottom:928.606442pt;}
.y123{bottom:936.606431pt;}
.ycc{bottom:937.246421pt;}
.y158{bottom:938.206418pt;}
.y1c{bottom:944.286403pt;}
.y79{bottom:944.606417pt;}
.yfb{bottom:949.886399pt;}
.y122{bottom:952.606416pt;}
.y9c{bottom:952.606426pt;}
.ycb{bottom:953.246406pt;}
.y157{bottom:954.206403pt;}
.y78{bottom:960.606402pt;}
.y1b{bottom:961.406391pt;}
.y121{bottom:968.606401pt;}
.y9b{bottom:968.606411pt;}
.yca{bottom:969.246391pt;}
.yf7{bottom:975.166457pt;}
.yfa{bottom:975.166470pt;}
.y77{bottom:976.606387pt;}
.y156{bottom:978.206388pt;}
.y1a{bottom:979.806379pt;}
.y120{bottom:984.606387pt;}
.y9a{bottom:984.606396pt;}
.yc9{bottom:985.246376pt;}
.yf5{bottom:991.166442pt;}
.yf9{bottom:991.166455pt;}
.y76{bottom:992.606372pt;}
.y155{bottom:994.206373pt;}
.y11f{bottom:1000.606372pt;}
.y99{bottom:1000.606381pt;}
.yc8{bottom:1001.246361pt;}
.y19{bottom:1006.713030pt;}
.yf6{bottom:1007.193093pt;}
.yf8{bottom:1007.193107pt;}
.y75{bottom:1008.633024pt;}
.y154{bottom:1010.233024pt;}
.yc7{bottom:1016.633023pt;}
.y98{bottom:1016.633032pt;}
.y18{bottom:1028.313012pt;}
.y153{bottom:1030.873009pt;}
.y74{bottom:1032.633008pt;}
.y97{bottom:1032.633017pt;}
.yf4{bottom:1032.633080pt;}
.y72{bottom:1079.666467pt;}
.h1a{height:0.390667pt;}
.h1b{height:2.137600pt;}
.h18{height:9.896000pt;}
.h19{height:12.562667pt;}
.hd{height:30.995178pt;}
.hc{height:32.319975pt;}
.hb{height:32.319980pt;}
.h14{height:33.215978pt;}
.h17{height:36.041641pt;}
.h16{height:36.119766pt;}
.h13{height:36.759014pt;}
.h1c{height:36.883099pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.h15{height:40.079973pt;}
.h10{height:43.374971pt;}
.h12{height:44.287970pt;}
.h11{height:44.355169pt;}
.h8{height:51.816923pt;}
.he{height:52.115166pt;}
.hf{height:53.439964pt;}
.h2{height:59.845926pt;}
.h9{height:60.124752pt;}
.ha{height:60.124756pt;}
.h3{height:75.009317pt;}
.h7{height:1121.333333pt;}
.h6{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:1.333333pt;}
.w5{width:10.666667pt;}
.w4{width:13.333333pt;}
.w3{width:793.333333pt;}
.w2{width:793.700788pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:0.974741pt;}
.xf{left:28.333313pt;}
.xb{left:56.850341pt;}
.x6{left:59.890352pt;}
.x1e{left:61.490351pt;}
.x4{left:71.410344pt;}
.x12{left:80.370326pt;}
.x1f{left:85.042322pt;}
.x1{left:90.042667pt;}
.x2{left:102.322323pt;}
.x5{left:147.116942pt;}
.x7{left:161.356949pt;}
.x9{left:194.316925pt;}
.x13{left:212.876913pt;}
.x8{left:240.556895pt;}
.x3{left:284.916867pt;}
.x10{left:386.850396pt;}
.x11{left:391.476791pt;}
.xa{left:396.916787pt;}
.xc{left:410.196777pt;}
.x17{left:414.836775pt;}
.x15{left:416.596782pt;}
.x18{left:422.666667pt;}
.x20{left:428.596762pt;}
.xe{left:433.716750pt;}
.x1a{left:436.270680pt;}
.x23{left:438.356757pt;}
.x24{left:441.103419pt;}
.x1b{left:473.333333pt;}
.x1c{left:484.038807pt;}
.x14{left:561.103349pt;}
.x21{left:637.623283pt;}
.x1d{left:647.554221pt;}
.x22{left:704.983247pt;}
.xd{left:722.263229pt;}
.x16{left:739.703217pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
